]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java
Improve RPM Factory
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / ProcessThread.java
index c119127ad20b71f1ab269321db7df1f08deb33fc..b64639a8cd55be014788e9e1e419277248c0f857 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ * 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.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.argeo.slc.core.execution;
 
 import java.util.ArrayList;
-import java.util.Iterator;
+import java.util.Collections;
+import java.util.HashSet;
 import java.util.List;
+import java.util.Set;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.argeo.slc.process.RealizedFlow;
-import org.argeo.slc.process.SlcExecution;
-import org.argeo.slc.process.SlcExecutionNotifier;
-
-/** Thread of the SLC Process, starting the sub executions. */
+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.execution.RealizedFlow;
+import org.springframework.security.Authentication;
+import org.springframework.security.context.SecurityContextHolder;
+
+/**
+ * Main thread coordinating an {@link ExecutionProcess}, launching parallel or
+ * sequential {@link ExecutionThread}s.
+ */
 public class ProcessThread extends Thread {
        private final static Log log = LogFactory.getLog(ProcessThread.class);
 
-       private final AbstractExecutionModulesManager executionModulesManager;
-       private final SlcExecution slcProcess;
+       private final ExecutionModulesManager executionModulesManager;
+       private final ExecutionProcess process;
        private final ProcessThreadGroup processThreadGroup;
-       private final List<RealizedFlow> flowsToProcess = new ArrayList<RealizedFlow>();
 
-       private Boolean hadAnError = false;
+       private Set<ExecutionThread> executionThreads = Collections
+                       .synchronizedSet(new HashSet<ExecutionThread>());
+
+       // private Boolean hadAnError = false;
+       private Boolean killed = false;
 
-       public ProcessThread(
-                       AbstractExecutionModulesManager executionModulesManager,
-                       SlcExecution slcExecution) {
-               super(executionModulesManager.getProcessesThreadGroup(),
-                               "SLC Process #" + slcExecution.getUuid());
+       public ProcessThread(ThreadGroup processesThreadGroup,
+                       ExecutionModulesManager executionModulesManager,
+                       ExecutionProcess process) {
+               super(processesThreadGroup, "SLC Process #" + process.getUuid());
                this.executionModulesManager = executionModulesManager;
-               this.slcProcess = slcExecution;
-               processThreadGroup = new ProcessThreadGroup(this);
+               this.process = process;
+               processThreadGroup = new ProcessThreadGroup(process);
        }
 
-       public void run() {
-               log.info("\n##\n## Process SLC Execution " + slcProcess + "\n##\n");
-
-               slcProcess.setStatus(SlcExecution.STATUS_RUNNING);
-               dispatchUpdateStatus(slcProcess, SlcExecution.STATUS_SCHEDULED,
-                               SlcExecution.STATUS_RUNNING);
-
-               flowsToProcess.addAll(slcProcess.getRealizedFlows());
-
-               while (flowsToProcess.size() > 0) {
-                       RealizedFlow flow = flowsToProcess.remove(0);
-                       ExecutionThread thread = new ExecutionThread(this, flow);
-                       thread.start();
+       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\n##\n");
+
+               // Start logging
+               new LoggingThread().start();
+
+               process.setStatus(ExecutionProcess.RUNNING);
+               try {
+                       process();
+               } catch (InterruptedException e) {
+                       die();
+                       return;
+               } catch (Exception e) {
+                       String msg = "Process " + getProcess().getUuid()
+                                       + " failed unexpectedly.";
+                       log.error(msg, e);
+                       getProcessThreadGroup().dispatchAddStep(
+                                       new ExecutionStep("Process", ExecutionStep.ERROR, msg + " "
+                                                       + e.getMessage()));
+               }
 
-                       synchronized (this) {
+               // waits for all execution threads to complete (in case they were
+               // started asynchronously)
+               for (ExecutionThread executionThread : executionThreads) {
+                       if (executionThread.isAlive()) {
                                try {
-                                       wait();
+                                       executionThread.join();
                                } catch (InterruptedException e) {
-                                       // silent
+                                       die();
+                                       return;
                                }
                        }
                }
 
-               if (hadAnError)
-                       slcProcess.setStatus(SlcExecution.STATUS_ERROR);
+               computeFinalStatus();
+       }
+
+       /** Make sure this is called BEFORE all the threads are interrupted. */
+       private void computeFinalStatus() {
+               // String oldStatus = process.getStatus();
+               // TODO: error management at flow level?
+               if (killed)
+                       process.setStatus(ExecutionProcess.KILLED);
+               else if (processThreadGroup.hadAnError())
+                       process.setStatus(ExecutionProcess.ERROR);
                else
-                       slcProcess.setStatus(SlcExecution.STATUS_FINISHED);
-               dispatchUpdateStatus(slcProcess, SlcExecution.STATUS_RUNNING,
-                               slcProcess.getStatus());
+                       process.setStatus(ExecutionProcess.COMPLETED);
+               // executionModulesManager.dispatchUpdateStatus(process, oldStatus,
+               // process.getStatus());
+               log.info("\n## SLC Process #" + process.getUuid() + " "
+                               + process.getStatus() + "\n");
        }
 
-       protected void dispatchUpdateStatus(SlcExecution slcExecution,
-                       String oldStatus, String newStatus) {
-               for (Iterator<SlcExecutionNotifier> it = executionModulesManager
-                               .getSlcExecutionNotifiers().iterator(); it.hasNext();) {
-                       it.next().updateStatus(slcExecution, oldStatus, newStatus);
+       /** Called when being killed */
+       private synchronized void die() {
+               killed = true;
+               computeFinalStatus();
+               for (ExecutionThread executionThread : executionThreads) {
+                       try {
+                               executionThread.interrupt();
+                       } catch (Exception e) {
+                               log.error("Cannot interrupt " + executionThread);
+                       }
                }
+               processThreadGroup.interrupt();
        }
 
-       public void notifyError() {
-               hadAnError = true;
+       /**
+        * Implementation specific execution. To be overridden in order to deal with
+        * custom process types. Default expects an {@link SlcExecution}.
+        */
+       protected void process() throws InterruptedException {
+               List<RealizedFlow> flowsToProcess = new ArrayList<RealizedFlow>();
+               flowsToProcess.addAll(process.getRealizedFlows());
+               while (flowsToProcess.size() > 0) {
+                       RealizedFlow realizedFlow = flowsToProcess.remove(0);
+                       execute(realizedFlow, true);
+               }
        }
 
-       public synchronized void flowCompleted() {
-               notifyAll();
+       /** @return the (distinct) thread used for this execution */
+       protected final void execute(RealizedFlow realizedFlow, Boolean synchronous)
+                       throws InterruptedException {
+               if (killed)
+                       return;
+
+               ExecutionThread thread = new ExecutionThread(processThreadGroup,
+                               executionModulesManager, realizedFlow);
+               executionThreads.add(thread);
+               thread.start();
+
+               if (synchronous)
+                       thread.join();
+
+               return;
        }
 
-       public SlcExecution getSlcProcess() {
-               return slcProcess;
+       // public void notifyError() {
+       // hadAnError = true;
+       // }
+       //
+       // public synchronized void flowCompleted() {
+       // // notifyAll();
+       // }
+
+       public ExecutionProcess getProcess() {
+               return process;
        }
 
        public ProcessThreadGroup getProcessThreadGroup() {
                return processThreadGroup;
        }
 
-       public AbstractExecutionModulesManager getExecutionModulesManager() {
+       public ExecutionModulesManager getExecutionModulesManager() {
                return executionModulesManager;
        }
+
+       private class LoggingThread extends Thread {
+
+               public LoggingThread() {
+                       super("SLC Process Logger #" + process.getUuid());
+               }
+
+               public void run() {
+                       boolean run = true;
+                       while (run) {
+                               List<ExecutionStep> newSteps = new ArrayList<ExecutionStep>();
+                               processThreadGroup.getSteps().drainTo(newSteps);
+                               if (newSteps.size() > 0) {
+                                       // System.out.println(steps.size() + " steps");
+                                       process.addSteps(newSteps);
+                               }
+
+                               try {
+                                       Thread.sleep(1000);
+                               } catch (InterruptedException e) {
+                                       break;
+                               }
+
+                               if (!ProcessThread.this.isAlive()
+                                               && processThreadGroup.getSteps().size() == 0)
+                                       run = false;
+                       }
+               }
+
+       }
 }