org.eclipse.dirigible.engine.job.synchronizer.JobClasspathContentHandler Maven / Gradle / Ivy
/*
* Copyright (c) 2022 SAP SE or an SAP affiliate company and Eclipse Dirigible contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and Eclipse Dirigible contributors
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.dirigible.engine.job.synchronizer;
import java.io.IOException;
import org.eclipse.dirigible.commons.api.content.AbstractClasspathContentHandler;
import org.eclipse.dirigible.core.scheduler.api.ISchedulerCoreService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The Class JobClasspathContentHandler.
*/
public class JobClasspathContentHandler extends AbstractClasspathContentHandler {
/** The Constant logger. */
private static final Logger logger = LoggerFactory.getLogger(JobClasspathContentHandler.class);
/** The job synchronizer. */
private JobSynchronizer jobSynchronizer = new JobSynchronizer();
/**
* Checks if is valid.
*
* @param path the path
* @return true, if is valid
*/
/*
* (non-Javadoc)
* @see org.eclipse.dirigible.commons.api.content.AbstractClasspathContentHandler#isValid(java.lang.String)
*/
@Override
protected boolean isValid(String path) {
try {
if (path.endsWith(ISchedulerCoreService.FILE_EXTENSION_JOB)) {
jobSynchronizer.registerPredeliveredJob(path);
return true;
}
} catch (IOException e) {
logger.error("Predelivered Job at path [" + path + "] is not valid", e);
}
return false;
}
/**
* Gets the logger.
*
* @return the logger
*/
/*
* (non-Javadoc)
* @see org.eclipse.dirigible.commons.api.content.AbstractClasspathContentHandler#getLogger()
*/
@Override
protected Logger getLogger() {
return logger;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy