All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.bpm.engine.impl.history.DefaultHistoryRemovalTimeProvider Maven / Gradle / Ivy

There is a newer version: 7.22.0-alpha1
Show newest version
/*
 * 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.history;

import org.camunda.bpm.engine.impl.batch.history.HistoricBatchEntity;
import org.camunda.bpm.engine.impl.context.Context;
import org.camunda.bpm.engine.impl.history.event.HistoricDecisionInstanceEntity;
import org.camunda.bpm.engine.impl.history.event.HistoricProcessInstanceEventEntity;
import org.camunda.bpm.engine.repository.DecisionDefinition;
import org.camunda.bpm.engine.repository.ProcessDefinition;

import java.util.Calendar;
import java.util.Date;

/**
 * @author Tassilo Weidner
 */
public class DefaultHistoryRemovalTimeProvider implements HistoryRemovalTimeProvider {

  public Date calculateRemovalTime(HistoricProcessInstanceEventEntity historicRootProcessInstance, ProcessDefinition processDefinition) {

    Integer historyTimeToLive = processDefinition.getHistoryTimeToLive();

    if (historyTimeToLive != null) {
      if (isProcessInstanceRunning(historicRootProcessInstance)) {
        Date startTime = historicRootProcessInstance.getStartTime();
        return determineRemovalTime(startTime, historyTimeToLive);

      } else if (isProcessInstanceEnded(historicRootProcessInstance)) {
        Date endTime = historicRootProcessInstance.getEndTime();
        return determineRemovalTime(endTime, historyTimeToLive);

      }
    }

    return null;
  }

  public Date calculateRemovalTime(HistoricDecisionInstanceEntity historicRootDecisionInstance, DecisionDefinition decisionDefinition) {

    Integer historyTimeToLive = decisionDefinition.getHistoryTimeToLive();

    if (historyTimeToLive != null) {
      Date evaluationTime = historicRootDecisionInstance.getEvaluationTime();
      return determineRemovalTime(evaluationTime, historyTimeToLive);
    }

    return null;
  }

  public Date calculateRemovalTime(HistoricBatchEntity historicBatch) {
    String batchOperation = historicBatch.getType();
    if (batchOperation != null) {
      Integer historyTimeToLive = getTTLByBatchOperation(batchOperation);
      if (historyTimeToLive != null) {
        if (isBatchRunning(historicBatch)) {
          Date startTime = historicBatch.getStartTime();
          return determineRemovalTime(startTime, historyTimeToLive);

        } else if (isBatchEnded(historicBatch)) {
          Date endTime = historicBatch.getEndTime();
          return determineRemovalTime(endTime, historyTimeToLive);

        }
      }
    }

    return null;
  }

  protected boolean isBatchRunning(HistoricBatchEntity historicBatch) {
    return historicBatch.getEndTime() == null;
  }

  protected boolean isBatchEnded(HistoricBatchEntity historicBatch) {
    return historicBatch.getEndTime() != null;
  }

  protected Integer getTTLByBatchOperation(String batchOperation) {
    return Context.getCommandContext()
      .getProcessEngineConfiguration()
      .getParsedBatchOperationsForHistoryCleanup()
      .get(batchOperation);
  }

  protected boolean isProcessInstanceRunning(HistoricProcessInstanceEventEntity historicProcessInstance) {
    return historicProcessInstance.getEndTime() == null;
  }

  protected boolean isProcessInstanceEnded(HistoricProcessInstanceEventEntity historicProcessInstance) {
    return historicProcessInstance.getEndTime() != null;
  }

  public static Date determineRemovalTime(Date initTime, Integer timeToLive) {
    Calendar removalTime = Calendar.getInstance();
    removalTime.setTime(initTime);
    removalTime.add(Calendar.DATE, timeToLive);
    
    return removalTime.getTime();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy