org.camunda.bpm.engine.impl.cmd.AcquireJobsCmd Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. Camunda licenses this file to you under the Apache License,
* Version 2.0; 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.camunda.bpm.engine.impl.cmd;
import org.camunda.bpm.engine.impl.Page;
import org.camunda.bpm.engine.impl.db.DbEntity;
import org.camunda.bpm.engine.impl.db.entitymanager.OptimisticLockingListener;
import org.camunda.bpm.engine.impl.db.entitymanager.operation.DbEntityOperation;
import org.camunda.bpm.engine.impl.db.entitymanager.operation.DbOperation;
import org.camunda.bpm.engine.impl.interceptor.Command;
import org.camunda.bpm.engine.impl.interceptor.CommandContext;
import org.camunda.bpm.engine.impl.jobexecutor.AcquiredJobs;
import org.camunda.bpm.engine.impl.jobexecutor.JobExecutor;
import org.camunda.bpm.engine.impl.persistence.entity.AcquirableJobEntity;
import org.camunda.bpm.engine.impl.util.ClockUtil;
import java.util.*;
/**
* @author Nick Burch
* @author Daniel Meyer
*/
public class AcquireJobsCmd implements Command, OptimisticLockingListener {
private final JobExecutor jobExecutor;
protected AcquiredJobs acquiredJobs;
protected int numJobsToAcquire;
public AcquireJobsCmd(JobExecutor jobExecutor) {
this(jobExecutor, jobExecutor.getMaxJobsPerAcquisition());
}
public AcquireJobsCmd(JobExecutor jobExecutor, int numJobsToAcquire) {
this.jobExecutor = jobExecutor;
this.numJobsToAcquire = numJobsToAcquire;
}
public AcquiredJobs execute(CommandContext commandContext) {
acquiredJobs = new AcquiredJobs(numJobsToAcquire);
List jobs = commandContext
.getJobManager()
.findNextJobsToExecute(new Page(0, numJobsToAcquire));
Map> exclusiveJobsByProcessInstance = new HashMap>();
for (AcquirableJobEntity job : jobs) {
lockJob(job);
if(job.isExclusive()) {
List list = exclusiveJobsByProcessInstance.get(job.getProcessInstanceId());
if (list == null) {
list = new ArrayList();
exclusiveJobsByProcessInstance.put(job.getProcessInstanceId(), list);
}
list.add(job.getId());
}
else {
acquiredJobs.addJobIdBatch(job.getId());
}
}
for (List jobIds : exclusiveJobsByProcessInstance.values()) {
acquiredJobs.addJobIdBatch(jobIds);
}
// register an OptimisticLockingListener which is notified about jobs which cannot be acquired.
// the listener removes them from the list of acquired jobs.
commandContext
.getDbEntityManager()
.registerOptimisticLockingListener(this);
return acquiredJobs;
}
protected void lockJob(AcquirableJobEntity job) {
String lockOwner = jobExecutor.getLockOwner();
job.setLockOwner(lockOwner);
int lockTimeInMillis = jobExecutor.getLockTimeInMillis();
GregorianCalendar gregorianCalendar = new GregorianCalendar();
gregorianCalendar.setTime(ClockUtil.getCurrentTime());
gregorianCalendar.add(Calendar.MILLISECOND, lockTimeInMillis);
job.setLockExpirationTime(gregorianCalendar.getTime());
}
public Class extends DbEntity> getEntityType() {
return AcquirableJobEntity.class;
}
public void failedOperation(DbOperation operation) {
if (operation instanceof DbEntityOperation) {
DbEntityOperation entityOperation = (DbEntityOperation) operation;
if(AcquirableJobEntity.class.isAssignableFrom(entityOperation.getEntityType())) {
// could not lock the job -> remove it from list of acquired jobs
acquiredJobs.removeJobId(entityOperation.getEntity().getId());
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy