/* * 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 task 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 ByTaskIdContainerLocator implements ContainerLocator { private static final Logger logger = LoggerFactory.getLogger(ByTaskIdContainerLocator.class); private static final String CONTAINER_ID_QUERY = "select log.deploymentId from AuditTaskImpl log where log.taskId = :taskId"; private Long taskId; private String containerId; public ByTaskIdContainerLocator(Long taskId) { this.taskId = taskId; } @Override public String locateContainer(String alias, List<? extends KieContainerInstance> containerInstances) { if (containerId != null) { logger.debug("Container id has already be found for task {} and is {}", taskId, containerId); return containerId; } logger.debug("Searching for container id for task id {} and alias {}", taskId, alias); EntityManager em = EntityManagerFactoryManager.get().getOrCreate(KieServerConstants.KIE_SERVER_PERSISTENCE_UNIT_NAME).createEntityManager(); try { containerId = (String)em.createQuery(CONTAINER_ID_QUERY) .setParameter("taskId", taskId) .getSingleResult(); logger.debug("Found container id '{}' for task id {}", containerId, taskId); return containerId; } catch (NoResultException | NonUniqueResultException e) { throw new IllegalArgumentException("Task with id " + taskId + " not found"); } finally { em.close(); } } }