blob: fed885c6cb7a12354cc630924685f9cdf39aff01 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The SF licenses this file
* to you 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 org.apache.felix.hc.core.impl.executor.async;
import static org.quartz.CronScheduleBuilder.cronSchedule;
import static org.quartz.JobBuilder.newJob;
import static org.quartz.TriggerBuilder.newTrigger;
import org.apache.felix.hc.api.execution.HealthCheckMetadata;
import org.osgi.framework.BundleContext;
import org.quartz.CronTrigger;
import org.quartz.Job;
import org.quartz.JobDataMap;
import org.quartz.JobDetail;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.quartz.JobKey;
import org.quartz.Scheduler;
import org.quartz.SchedulerException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** Runs health checks that are configured with a cron expression for asynchronous execution.
*
* This implementation uses quartz to support the cron syntax (which is not supported by executors from standard java java.util.concurrent
* package) */
public class AsyncHealthCheckQuartzCronJob extends AsyncHealthCheckJob implements Runnable {
private static final Logger LOG = LoggerFactory.getLogger(AsyncHealthCheckExecutor.class);
private static final String JOB_DATA_KEY_JOB = "asyncHcJob";
protected final QuartzCronScheduler quartzCronScheduler;
private JobKey jobKey = null;
public AsyncHealthCheckQuartzCronJob(HealthCheckMetadata healthCheckDescriptor, AsyncHealthCheckExecutor asyncHealthCheckExecutor,
BundleContext bundleContext, QuartzCronScheduler quartzScheduler) {
super(healthCheckDescriptor, asyncHealthCheckExecutor, bundleContext);
this.quartzCronScheduler = quartzScheduler;
}
public JobKey getJobKey() {
return jobKey;
}
private JobDetail getQuartzJobDetail() {
JobDataMap jobData = new JobDataMap();
jobData.put(JOB_DATA_KEY_JOB, this);
JobDetail job = newJob(AsyncHealthCheckQuartzCronJob.QuartzJob.class).setJobData(jobData)
.withIdentity("job-hc-" + healthCheckDescriptor.getServiceId(), "async-healthchecks")
.build();
jobKey = job.getKey();
return job;
}
public boolean schedule() {
try {
Scheduler scheduler = quartzCronScheduler.getScheduler();
JobDetail job = getQuartzJobDetail();
CronTrigger cronTrigger = newTrigger().withSchedule(cronSchedule(healthCheckDescriptor.getAsyncCronExpression())).forJob(job)
.build();
scheduler.scheduleJob(job, cronTrigger);
LOG.info("Scheduled job {} with trigger {}", job, cronTrigger);
return true;
} catch (SchedulerException e) {
LOG.error("Could not schedule job for " + healthCheckDescriptor + ": " + e, e);
return false;
}
}
@Override
public boolean unschedule() {
Scheduler scheduler = quartzCronScheduler.getScheduler();
LOG.debug("Unscheduling job {}", jobKey);
try {
scheduler.deleteJob(jobKey);
return true;
} catch (SchedulerException e) {
LOG.error("Could not unschedule job for " + jobKey + ": " + e, e);
return false;
}
}
// quartz forces to pass in a class object (and not an instance), hence this helper class is needed
public static class QuartzJob implements Job {
@Override
public void execute(JobExecutionContext context) throws JobExecutionException {
AsyncHealthCheckQuartzCronJob hc = (AsyncHealthCheckQuartzCronJob) context.getJobDetail().getJobDataMap().get(JOB_DATA_KEY_JOB);
hc.run();
}
}
}