View Javadoc

1   /**
2    * This file Copyright (c) 2006-2011 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.module.scheduler;
35  
36  import info.magnolia.module.ModuleLifecycle;
37  import info.magnolia.module.ModuleLifecycleContext;
38  
39  import java.text.ParseException;
40  import java.util.ArrayList;
41  import java.util.Iterator;
42  import java.util.List;
43  
44  import org.apache.commons.lang.StringUtils;
45  import org.quartz.CronTrigger;
46  import org.quartz.JobDetail;
47  import org.quartz.Scheduler;
48  import org.quartz.SchedulerException;
49  import org.quartz.SchedulerFactory;
50  import org.quartz.Trigger;
51  import org.quartz.impl.StdSchedulerFactory;
52  import org.slf4j.Logger;
53  import org.slf4j.LoggerFactory;
54  
55  
56  /**
57   * Scheduler module. Under the node jobs one can create jobs by defining the command to use. The scheduling is done
58   * based on a cron syntax scheduling expression. The job definition can contain a params node which can hold values
59   * passed to the command in the execution-context.
60   *
61   * @author philipp
62   * @version $Id$
63   */
64  public class SchedulerModule implements ModuleLifecycle {
65      private static final Logger log = LoggerFactory.getLogger(JobDefinition.class);
66  
67      private static SchedulerModule instance;
68  
69      private List jobs = new ArrayList();
70  
71      private boolean running = false;
72  
73      /**
74       * The quartz scheduler.
75       */
76      protected Scheduler scheduler;
77  
78      public SchedulerModule() {
79          instance = this;
80      }
81  
82  
83      public List getJobs() {
84          return this.jobs;
85      }
86  
87  
88      public void setJobs(List jobs) {
89          this.jobs = jobs;
90      }
91  
92      public void addJob(JobDefinition job) throws SchedulerException{
93          jobs.add(job);
94          if(running){
95              initJob(job);
96          }
97      }
98  
99      /**
100      * Stops the scheduler.
101      */
102     public void stop(ModuleLifecycleContext moduleLifecycleContext) {
103         try {
104             scheduler.shutdown(true);
105             log.info("Waiting up to 30 seconds for scheduled jobs to stop...");
106             int count = 0;
107             while (count < 30) {
108                 try {
109                     Thread.sleep(1000);
110                 } catch (InterruptedException e) {
111                     Thread.interrupted();
112                 }
113                 if (scheduler.isShutdown()) {
114                     break;
115                 } else {
116                     count++;
117                 }
118             }
119             if (!scheduler.isShutdown()) {
120                 log.info("Scheduled jobs failed to finish in 30 seconds interval, forcing shutdown now...");
121                 scheduler.shutdown(false);
122             }
123             running = false;
124         }
125         catch (SchedulerException e) {
126             log.error("Can't stop scheduler properly", e);
127         }
128     }
129 
130     /**
131      * Start scheduler and add jobs.
132      */
133     public void start(ModuleLifecycleContext moduleLifecycleContext) {
134         try {
135             initScheduler();
136             running = true;
137         }
138         catch (SchedulerException e) {
139             log.error("Can't start scheduler", e);
140             return;
141         }
142 
143         initJobs();
144     }
145 
146     /**
147      * Add all the jobs defined in the jobs node.
148      */
149     protected void initJobs() {
150         for (Iterator iter = jobs.iterator(); iter.hasNext();) {
151             JobDefinition job = (JobDefinition) iter.next();
152             try {
153                 initJob(job);
154             }
155             catch (SchedulerException e) {
156                 log.error("Can't initialize job [" + job.getName() + "]", e);
157             }
158         }
159     }
160 
161     /**
162      * Initialize a single job.
163      */
164     protected void initJob(JobDefinition job) throws SchedulerException {
165         if (job.isActive()) {
166             try {
167                 stopJob(job.getName());
168                 startJob(job);
169             }
170             catch (SchedulerException e) {
171                 throw new SchedulerException("Can't schedule job" + job.getName(), e);
172             }
173         }
174         else {
175             try {
176                 stopJob(job.getName());
177             } catch (SchedulerException e) {
178                 throw new SchedulerException("Can't delete inactive job " + job.getName(), e);
179             }
180         }
181     }
182 
183     protected void startJob(JobDefinition job) throws SchedulerException {
184         Trigger trigger;
185         try {
186             String cron = cronToQuarzCron(job.getCron());
187             trigger = new CronTrigger(job.getName(), SchedulerConsts.SCHEDULER_GROUP_NAME, cron);
188         }
189         catch (ParseException e) {
190             log.error("Can't parse the job's cron expression [" + job.getCron() + "]", e);
191             return;
192         }
193 
194         final Class jobClass = job.isConcurrent() ? CommandJob.class : StatefulCommandJob.class;
195         final JobDetail jd = new JobDetail(job.getName(), SchedulerConsts.SCHEDULER_GROUP_NAME, jobClass);
196         jd.getJobDataMap().put(SchedulerConsts.CONFIG_JOB_COMMAND, job.getCommand());
197         jd.getJobDataMap().put(SchedulerConsts.CONFIG_JOB_COMMAND_CATALOG, job.getCatalog());
198         jd.getJobDataMap().put(SchedulerConsts.CONFIG_JOB_PARAMS, job.getParams());
199         scheduler.scheduleJob(jd, trigger);
200         log.info("Job " + job.getName() + " added [" + job.getCron() + "]. Will fire first time at " + trigger.getNextFireTime());
201     }
202 
203 
204     protected String cronToQuarzCron(String cron) {
205         // Quartz does not support * for both day of week and day of month. We simply handle this here.
206         String[] tokens = StringUtils.split(cron);
207         if (tokens.length >= 6) {
208             if (!tokens[3].equals("?") && !tokens[5].equals("?")) {
209                 if(tokens[5].equals("*")){
210                     tokens[5] = "?";
211                 }
212                 else if(tokens[3].equals("*")){
213                     tokens[3] = "?";
214                 }
215             }
216         }
217         cron = StringUtils.join(tokens, " ");
218         return cron;
219     }
220 
221     /**
222      * Deletes the job safely. If the job is not defined, the method does NOT throw an exception.
223      */
224     public void stopJob(String name) throws SchedulerException {
225         scheduler.deleteJob(name, SchedulerConsts.SCHEDULER_GROUP_NAME);
226     }
227 
228     /**
229      * Start the scheduler. No special configuration done yet.
230      * @throws SchedulerException
231      */
232     protected void initScheduler() throws SchedulerException {
233         SchedulerFactory sf = new StdSchedulerFactory();
234         scheduler = sf.getScheduler();
235         scheduler.start();
236     }
237 
238     /**
239      * If you need to get the scheduler handled by the module.
240      */
241     public Scheduler getScheduler() {
242         return scheduler;
243     }
244 
245     /**
246      * Singleton instance of the module.
247      */
248     public static SchedulerModule getInstance() {
249         return instance;
250     }
251 
252 }