All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sakaiproject.component.app.scheduler.AutoRun Maven / Gradle / Ivy

The newest version!
/**********************************************************************************
 * $URL$
 * $Id$
 **********************************************************************************
 *
 * Copyright (c) 2017 The Sakai Foundation
 *
 * Licensed under the Educational Community License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.opensource.org/licenses/ECL-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 **********************************************************************************/
package org.sakaiproject.component.app.scheduler;

import java.util.List;

import org.quartz.JobBuilder;
import org.quartz.JobDataMap;
import org.quartz.JobDetail;
import org.quartz.Scheduler;
import org.quartz.SchedulerException;
import org.sakaiproject.api.app.scheduler.JobBeanWrapper;
import org.sakaiproject.api.app.scheduler.SchedulerManager;
import org.sakaiproject.component.api.ServerConfigurationService;

import lombok.extern.slf4j.Slf4j;

/**
 * This class runs some quartz jobs automatically at startup.
 */
@Slf4j
public class AutoRun {

    private SchedulerManager schedulerManager;
    private ServerConfigurationService serverConfigurationService;
    private List startup;
    private String config;

    public void setSchedulerManager(SchedulerManager schedulerManager) {
        this.schedulerManager = schedulerManager;
    }

    public void setServerConfigurationService(ServerConfigurationService serverConfigurationService) {
        this.serverConfigurationService = serverConfigurationService;
    }

    public void setStartup(List startup) {
        this.startup = startup;
    }

    public void setConfig(String config) {
        this.config = config;
    }

    public void init() {
        if (config == null || serverConfigurationService.getBoolean(config, false)) {
            log.info("AutoRun running");
            Scheduler scheduler = schedulerManager.getScheduler();

            for (JobBeanWrapper job : startup) {
                try {
                    JobDataMap jobData = new JobDataMap();
                    jobData.put(JobBeanWrapper.SPRING_BEAN_NAME, job.getBeanId());
                    jobData.put(JobBeanWrapper.JOB_NAME, job.getJobName());

                    JobDetail jobDetail = JobBuilder.newJob(job.getJobClass())
                            .withIdentity(job.getJobName(), null)
                            .setJobData(jobData)
                            .build();

                    // Non durable job that will get removed
                    scheduler.addJob(jobDetail, true, true);
                    scheduler.triggerJob(jobDetail.getKey());
                    log.info("Triggered job: {}", job.getJobName());
                } catch (SchedulerException se) {
                    log.warn("Failed to run job: {}", startup, se);
                }

            }
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy