/*
* Copyright 2017 LinkedIn Corp.
*
* 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 azkaban.flowtrigger.quartz;
import azkaban.flowtrigger.FlowTriggerService;
import azkaban.project.FlowTrigger;
import azkaban.project.Project;
import azkaban.project.ProjectManager;
import azkaban.scheduler.AbstractQuartzJob;
import javax.inject.Inject;
import org.quartz.JobDataMap;
import org.quartz.JobExecutionContext;
public class FlowTriggerQuartzJob extends AbstractQuartzJob {
public static final String SUBMIT_USER = "SUBMIT_USER";
public static final String PROJECT_ID = "PROJECT_ID";
public static final String FLOW_TRIGGER = "FLOW_TRIGGER";
public static final String FLOW_ID = "FLOW_ID";
public static final String FLOW_VERSION = "FLOW_VERSION";
private final FlowTriggerService triggerService;
private final ProjectManager projectManager;
@Inject
public FlowTriggerQuartzJob(final FlowTriggerService service,
final ProjectManager projectManager) {
this.triggerService = service;
this.projectManager = projectManager;
}
@Override
public void execute(final JobExecutionContext context) {
final JobDataMap data = context.getMergedJobDataMap();
final int projectId = data.getInt(PROJECT_ID);
final Project project = this.projectManager.getProject(projectId);
final String flowId = data.getString(FLOW_ID);
final int flowVersion = data.getInt(FLOW_VERSION);
final String submitUser = data.getString(SUBMIT_USER);
final FlowTrigger flowTrigger = (FlowTrigger) data.get(FLOW_TRIGGER);
this.triggerService.startTrigger(flowTrigger, flowId, flowVersion, submitUser, project);
}
}