X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fexecution%2FExecutionAspect.java;h=b50b78f512d35c2f81ba35da24bb2465bd624bf5;hb=6de9c4036be9e318f59a0ffa187570f5999c53cb;hp=29942817d4e2343808d6a010a491def5e47bc829;hpb=ee6c3543a0ff9403420ce6a9c647723269f14331;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionAspect.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionAspect.java index 29942817d..b50b78f51 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionAspect.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionAspect.java @@ -1,59 +1,113 @@ +/* + * 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. + * 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.argeo.slc.core.execution; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.argeo.slc.execution.ExecutionContext; import org.argeo.slc.execution.ExecutionFlow; -import org.aspectj.lang.JoinPoint; -import org.aspectj.lang.annotation.After; +import org.argeo.slc.execution.ExecutionStack; +import org.aspectj.lang.ProceedingJoinPoint; +import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; -import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; @Aspect +/** Aspect intercepting calls on execution flows and contexts. */ public class ExecutionAspect { - static ThreadLocal inModuleExecution = new ThreadLocal() { - protected Boolean initialValue() { - return false; - } - }; + private final static Log log = LogFactory.getLog(ExecutionAspect.class); + private ExecutionStack executionStack; private ExecutionContext executionContext; - public ExecutionContext getExecutionContext() { - return executionContext; + @Around("flowExecution()") + public void aroundFlow(ProceedingJoinPoint pjp) throws Throwable { + // IMPORTANT: Make sure that the execution context is called before the + // execution stack + executionContext.getUuid(); + + ExecutionFlow executionFlow = (ExecutionFlow) pjp.getTarget(); + executionStack.enterFlow(executionFlow); + executionContext.setVariable(ExecutionContext.VAR_FLOW_ID, + executionStack.getCurrentStackLevelUuid()); + executionContext.setVariable(ExecutionContext.VAR_FLOW_NAME, + executionFlow.getName()); + + logStackEvent("=> ", executionFlow); + try { + // Actually execute the flow + pjp.proceed(); + } finally { + logStackEvent("<= ", executionFlow); + executionStack.leaveFlow(executionFlow); + } } - public void setExecutionContext(ExecutionContext executionContext) { - this.executionContext = executionContext; + @Around("getVariable()") + public Object aroundGetVariable(ProceedingJoinPoint pjp) throws Throwable { + Object obj = pjp.proceed(); + // if the variable was not found, look in the stack starting at the + // upper flows + if (obj == null) { + String key = pjp.getArgs()[0].toString(); + obj = executionStack.findLocalVariable(key); + } + return obj; } - @Before("flowExecution()") - public void beforeFlow(JoinPoint jp) throws Throwable { - ExecutionFlow executionFlow = (ExecutionFlow) jp.getTarget(); - executionContext.enterFlow(executionFlow); + @Pointcut("execution(void org.argeo.slc.execution.ExecutionFlow.run())") + public void flowExecution() { } - @After("flowExecution()") - public void afterFlow(JoinPoint jp) throws Throwable { - ExecutionFlow executionFlow = (ExecutionFlow) jp.getTarget(); - executionContext.leaveFlow(executionFlow); + @Pointcut("execution(* org.argeo.slc.execution.ExecutionContext.getVariable(..))") + public void getVariable() { } - @Before("moduleExecution()") - public void beforeModuleExecution(JoinPoint jp) throws Throwable { - inModuleExecution.set(true); + public void setExecutionStack(ExecutionStack executionStack) { + this.executionStack = executionStack; } - @After("moduleExecution()") - public void afterModuleExecution(JoinPoint jp) throws Throwable { - inModuleExecution.set(false); + public void setExecutionContext(ExecutionContext executionContext) { + this.executionContext = executionContext; } - @Pointcut("execution(void org.argeo.slc.execution.ExecutionFlow.run())") - public void flowExecution() { + protected void logStackEvent(String symbol, ExecutionFlow executionFlow) { + Integer stackSize = executionStack.getStackSize(); + if (log.isTraceEnabled()) + log.debug(depthSpaces(stackSize) + symbol + executionFlow + " #" + + executionStack.getCurrentStackLevelUuid() + ", depth=" + + stackSize); + if (log.isDebugEnabled()) + log.debug(depthSpaces(stackSize) + symbol + executionFlow); + } + + protected void logRunnableExecution(ExecutionFlow executionFlow, + Runnable runnable) { + Integer stackSize = executionStack.getStackSize(); + if (log.isDebugEnabled()) + log.debug(depthSpaces(stackSize + 1) + + runnable.getClass().getSimpleName() + " in " + + executionFlow); } - @Pointcut("execution(void org.argeo.slc.execution.ExecutionModule.execute(..))") - public void moduleExecution() { + private String depthSpaces(int depth) { + StringBuffer buf = new StringBuffer(depth * 2); + for (int i = 0; i < depth; i++) + buf.append(" "); + return buf.toString(); } }