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

org.activiti.engine.impl.context.Context Maven / Gradle / Ivy

/* 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 org.activiti.engine.impl.context;

import com.fasterxml.jackson.databind.node.ObjectNode;

import org.activiti.engine.ActivitiEngineAgenda;
import org.activiti.engine.compatibility.Activiti5CompatibilityHandler;
import org.activiti.engine.impl.cfg.ProcessEngineConfigurationImpl;
import org.activiti.engine.impl.cfg.TransactionContext;
import org.activiti.engine.impl.interceptor.CommandContext;
import org.activiti.engine.impl.persistence.deploy.ProcessDefinitionInfoCacheObject;

import java.util.*;

/**



 */
public class Context {

  protected static ThreadLocal> commandContextThreadLocal = new ThreadLocal>();
  protected static ThreadLocal> processEngineConfigurationStackThreadLocal = new ThreadLocal>();
  protected static ThreadLocal> transactionContextThreadLocal = new ThreadLocal>();
  protected static ThreadLocal> bpmnOverrideContextThreadLocal = new ThreadLocal>();

  protected static ThreadLocal activiti5CompatibilityHandlerThreadLocal = new ThreadLocal();
  // Fallback handler is only set by the v5 CommandContextInterceptor
  protected static ThreadLocal fallbackActiviti5CompatibilityHandlerThreadLocal = new ThreadLocal();

  protected static ResourceBundle.Control resourceBundleControl = new ResourceBundleControl();

  public static CommandContext getCommandContext() {
    Stack stack = getStack(commandContextThreadLocal);
    if (stack.isEmpty()) {
      return null;
    }
    return stack.peek();
  }

  public static ActivitiEngineAgenda getAgenda() {
    return getCommandContext().getAgenda();
  }

  public static void setCommandContext(CommandContext commandContext) {
    getStack(commandContextThreadLocal).push(commandContext);
  }

  public static void removeCommandContext() {
    getStack(commandContextThreadLocal).pop();
  }

  public static ProcessEngineConfigurationImpl getProcessEngineConfiguration() {
    Stack stack = getStack(processEngineConfigurationStackThreadLocal);
    if (stack.isEmpty()) {
      return null;
    }
    return stack.peek();
  }

  public static void setProcessEngineConfiguration(ProcessEngineConfigurationImpl processEngineConfiguration) {
    getStack(processEngineConfigurationStackThreadLocal).push(processEngineConfiguration);
  }

  public static void removeProcessEngineConfiguration() {
    getStack(processEngineConfigurationStackThreadLocal).pop();
  }

  public static TransactionContext getTransactionContext() {
    Stack stack = getStack(transactionContextThreadLocal);
    if (stack.isEmpty()) {
      return null;
    }
    return stack.peek();
  }

  public static void setTransactionContext(TransactionContext transactionContext) {
    getStack(transactionContextThreadLocal).push(transactionContext);
  }

  public static void removeTransactionContext() {
    getStack(transactionContextThreadLocal).pop();
  }

  protected static  Stack getStack(ThreadLocal> threadLocal) {
    Stack stack = threadLocal.get();
    if (stack == null) {
      stack = new Stack();
      threadLocal.set(stack);
    }
    return stack;
  }

  public static ObjectNode getBpmnOverrideElementProperties(String id, String processDefinitionId) {
    ObjectNode definitionInfoNode = getProcessDefinitionInfoNode(processDefinitionId);
    ObjectNode elementProperties = null;
    if (definitionInfoNode != null) {
      elementProperties = getProcessEngineConfiguration().getDynamicBpmnService().getBpmnElementProperties(id, definitionInfoNode);
    }
    return elementProperties;
  }

  public static ObjectNode getLocalizationElementProperties(String language, String id, String processDefinitionId, boolean useFallback) {
    ObjectNode definitionInfoNode = getProcessDefinitionInfoNode(processDefinitionId);
    ObjectNode localizationProperties = null;
    if (definitionInfoNode != null) {
      if (!useFallback) {
        localizationProperties = getProcessEngineConfiguration().getDynamicBpmnService().getLocalizationElementProperties(
            language, id, definitionInfoNode);

      } else {
        HashSet candidateLocales = new LinkedHashSet();
        candidateLocales.addAll(resourceBundleControl.getCandidateLocales(id, Locale.forLanguageTag(language)));
        for (Locale locale : candidateLocales) {
          localizationProperties = getProcessEngineConfiguration().getDynamicBpmnService().getLocalizationElementProperties(
              locale.toLanguageTag(), id, definitionInfoNode);

          if (localizationProperties != null) {
            break;
          }
        }
      }
    }
    return localizationProperties;
  }

  public static void removeBpmnOverrideContext() {
    bpmnOverrideContextThreadLocal.remove();
  }

  protected static ObjectNode getProcessDefinitionInfoNode(String processDefinitionId) {
    Map bpmnOverrideMap = getBpmnOverrideContext();
    if (!bpmnOverrideMap.containsKey(processDefinitionId)) {
      ProcessDefinitionInfoCacheObject cacheObject = getProcessEngineConfiguration().getDeploymentManager()
          .getProcessDefinitionInfoCache()
          .get(processDefinitionId);

      addBpmnOverrideElement(processDefinitionId, cacheObject.getInfoNode());
    }

    return getBpmnOverrideContext().get(processDefinitionId);
  }

  protected static Map getBpmnOverrideContext() {
    Map bpmnOverrideMap = bpmnOverrideContextThreadLocal.get();
    if (bpmnOverrideMap == null) {
      bpmnOverrideMap = new HashMap();
    }
    return bpmnOverrideMap;
  }

  protected static void addBpmnOverrideElement(String id, ObjectNode infoNode) {
    Map bpmnOverrideMap = bpmnOverrideContextThreadLocal.get();
    if (bpmnOverrideMap == null) {
      bpmnOverrideMap = new HashMap();
      bpmnOverrideContextThreadLocal.set(bpmnOverrideMap);
    }
    bpmnOverrideMap.put(id, infoNode);
  }

  public static Activiti5CompatibilityHandler getActiviti5CompatibilityHandler() {
    return activiti5CompatibilityHandlerThreadLocal.get();
  }

  public static void setActiviti5CompatibilityHandler(Activiti5CompatibilityHandler activiti5CompatibilityHandler) {
    activiti5CompatibilityHandlerThreadLocal.set(activiti5CompatibilityHandler);
  }

  public static void removeActiviti5CompatibilityHandler() {
    activiti5CompatibilityHandlerThreadLocal.remove();
  }

  public static Activiti5CompatibilityHandler getFallbackActiviti5CompatibilityHandler() {
    return fallbackActiviti5CompatibilityHandlerThreadLocal.get();
  }

  public static void setFallbackActiviti5CompatibilityHandler(Activiti5CompatibilityHandler activiti5CompatibilityHandler) {
    fallbackActiviti5CompatibilityHandlerThreadLocal.set(activiti5CompatibilityHandler);
  }

  public static void removeFallbackActiviti5CompatibilityHandler() {
    fallbackActiviti5CompatibilityHandlerThreadLocal.remove();
  }

  public static class ResourceBundleControl extends ResourceBundle.Control {
    @Override
    public List getCandidateLocales(String baseName, Locale locale) {
      return super.getCandidateLocales(baseName, locale);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy