/* * Copyright 2016 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * 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.kie.server.services.jbpm.locator; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.NoResultException; import javax.persistence.NonUniqueResultException; import org.jbpm.runtime.manager.impl.jpa.EntityManagerFactoryManager; import org.kie.server.api.KieServerConstants; import org.kie.server.services.api.ContainerLocator; import org.kie.server.services.api.KieContainerInstance; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Locates container id for given process instance id. * To improve performance the operation of locating the container id is done only once * and stored as part of the instance of this class so in case of multiple method calls will require it * single instance of this class should be used to avoid too many look ups. */ public class ByProcessInstanceIdContainerLocator implements ContainerLocator { private static final Logger logger = LoggerFactory.getLogger(ByProcessInstanceIdContainerLocator.class); private static final String CONTAINER_ID_QUERY = "select log.externalId from ProcessInstanceLog log where log.processInstanceId = :piId"; private Long processInstanceId; private String containerId; public ByProcessInstanceIdContainerLocator(Long processInstanceId) { this.processInstanceId = processInstanceId; } @Override public String locateContainer(String alias, List<? extends KieContainerInstance> containerInstances) { if (containerId != null) { logger.debug("Container id has already be found for process instance {} and is {}", processInstanceId, containerId); return containerId; } logger.debug("Searching for container id for process instance id {} and alias {}", processInstanceId, alias); EntityManager em = EntityManagerFactoryManager.get().getOrCreate(KieServerConstants.KIE_SERVER_PERSISTENCE_UNIT_NAME).createEntityManager(); try { containerId = (String)em.createQuery(CONTAINER_ID_QUERY) .setParameter("piId", processInstanceId) .getSingleResult(); logger.debug("Found container id '{}' for process instance id {}", containerId, processInstanceId); return containerId; } catch (NoResultException | NonUniqueResultException e) { throw new IllegalArgumentException("ProcessInstance with id " + processInstanceId + " not found"); } finally { em.close(); } } }