com.github.dbourdette.otto.source.schedule.SourceScheduleWatcher.java Source code

Java tutorial

Introduction

Here is the source code for com.github.dbourdette.otto.source.schedule.SourceScheduleWatcher.java

Source

/*
 * Copyright 2011 Damien Bourdette
 *
 * Licensed under the Apache 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.apache.org/licenses/LICENSE-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 com.github.dbourdette.otto.source.schedule;

import java.text.ParseException;
import java.util.Calendar;

import javax.inject.Inject;

import org.apache.commons.lang.StringUtils;
import org.joda.time.DateTime;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import com.github.dbourdette.otto.service.logs.Logs;
import com.github.dbourdette.otto.source.Source;
import com.kenai.crontabparser.CronTabExpression;

/**
 * Finds and executes all eligible schedule every minute
 *
 */
@Component
public class SourceScheduleWatcher {
    @Inject
    private SourceScheduleExecutor executor;

    @Inject
    private SourceSchedules sourceSchedules;

    @Inject
    private Logs logs;

    @Scheduled(cron = "0 * * * * *")
    public void run() {
        DateTime now = new DateTime();

        for (Source source : Source.findAll()) {
            for (MailSchedule schedule : sourceSchedules.findForSource(source)) {
                if (isEligible(schedule.getCronExpression(), now)) {
                    logs.trace("Executing schedule " + schedule.getTitle() + " for source " + source.getName());

                    executor.execute(schedule);
                }
            }
        }

        for (MailSchedule schedule : sourceSchedules.findForAllSources()) {
            if (isEligible(schedule.getCronExpression(), now)) {
                logs.trace("Executing global schedule " + schedule.getTitle());

                executor.execute(schedule);
            }
        }
    }

    public boolean isEligible(String cronExpression, DateTime dateTime) {
        if (StringUtils.isEmpty(cronExpression)) {
            return false;
        }

        Calendar calendar = Calendar.getInstance();
        calendar.setTime(dateTime.toDate());

        try {
            return CronTabExpression.parse(cronExpression).matches(calendar);
        } catch (ParseException e) {
            logs.error("Failed to see if schedule is eligible for running, reason : " + e.getMessage(), e);

            return false;
        }

    }

    public CronTabExpression parse(String cronExpression) throws ParseException {
        return CronTabExpression.parse(cronExpression);
    }
}