X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fexecution%2FProcessThread.java;h=3a184808e4fdd7fe347a53a0d97d7af23b629fb7;hb=a75c0516aca20f9a8c8fdd32feee402257ff2b61;hp=61ff30789edbd3eee2e2cf22105c1cc5a36dbc46;hpb=db3956bb988a67ab966ca7f44b0058674dacb1f8;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java index 61ff30789..3a184808e 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Mathieu Baudier + * Copyright (C) 2007-2012 Argeo GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.argeo.slc.core.execution; import java.util.ArrayList; @@ -21,8 +20,6 @@ import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set; -import java.util.concurrent.ArrayBlockingQueue; -import java.util.concurrent.BlockingQueue; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -30,10 +27,13 @@ import org.argeo.slc.SlcException; import org.argeo.slc.execution.ExecutionModulesManager; import org.argeo.slc.execution.ExecutionProcess; import org.argeo.slc.execution.ExecutionStep; -import org.argeo.slc.process.RealizedFlow; +import org.argeo.slc.execution.RealizedFlow; import org.argeo.slc.process.SlcExecution; +import org.springframework.security.Authentication; +import org.springframework.security.context.SecurityContextHolder; /** Thread of the SLC Process, starting the sub executions. */ +@SuppressWarnings("deprecation") public class ProcessThread extends Thread { private final static Log log = LogFactory.getLog(ProcessThread.class); @@ -47,10 +47,6 @@ public class ProcessThread extends Thread { private Boolean hadAnError = false; private Boolean killed = false; - private final static Integer STEPS_BUFFER_CAPACITY = 10000; - private BlockingQueue steps = new ArrayBlockingQueue( - STEPS_BUFFER_CAPACITY); - public ProcessThread(ThreadGroup processesThreadGroup, ExecutionModulesManager executionModulesManager, ExecutionProcess process) { @@ -62,6 +58,16 @@ public class ProcessThread extends Thread { } public final void run() { + // authenticate thread + Authentication authentication = getProcessThreadGroup() + .getAuthentication(); + if (authentication == null) + throw new SlcException("Can only execute authenticated threads"); + SecurityContextHolder.getContext().setAuthentication(authentication); + + // log.info("\n##\n## SLC Process #" + process.getUuid() + + // " STARTED by " + // + authentication.getName() + "\n##\n"); log.info("\n##\n## SLC Process #" + process.getUuid() + " STARTED\n##\n"); @@ -130,7 +136,6 @@ public class ProcessThread extends Thread { * Implementation specific execution. To be overridden in order to deal with * custom process types. Default expects an {@link SlcExecution}. */ - @SuppressWarnings("deprecation") protected void process() throws InterruptedException { if (!(process instanceof SlcExecution)) throw new SlcException("Unsupported process type "