X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.agent%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fant%2FAntSlcApplication.java;h=1a69c493bf7509eac155dfbc3d4e4e10ab15f8da;hb=80389feff3ab8e8743db4abfb6493285f72b24dd;hp=79f325a9c781dbd0032ecaac10330804498254dc;hpb=787d5761e4d125e527104a0455ab47d4eaf38ac1;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.agent/src/main/java/org/argeo/slc/ant/AntSlcApplication.java b/org.argeo.slc.agent/src/main/java/org/argeo/slc/ant/AntSlcApplication.java index 79f325a9c..1a69c493b 100644 --- a/org.argeo.slc.agent/src/main/java/org/argeo/slc/ant/AntSlcApplication.java +++ b/org.argeo.slc.agent/src/main/java/org/argeo/slc/ant/AntSlcApplication.java @@ -17,18 +17,21 @@ import org.apache.tools.ant.Project; import org.apache.tools.ant.ProjectHelper; import org.apache.tools.ant.helper.ProjectHelper2; import org.apache.tools.ant.listener.CommonsLoggingListener; +import org.argeo.slc.core.SlcException; import org.argeo.slc.core.process.SlcExecution; import org.argeo.slc.core.structure.DefaultSRegistry; import org.argeo.slc.core.structure.SimpleSElement; import org.argeo.slc.core.structure.StructureRegistry; import org.argeo.slc.core.structure.tree.TreeSPath; import org.argeo.slc.core.structure.tree.TreeSRegistry; +import org.argeo.slc.runtime.SlcExecutionContext; import org.argeo.slc.runtime.SlcRuntime; import org.springframework.beans.factory.BeanDefinitionStoreException; import org.springframework.beans.factory.xml.XmlBeanDefinitionReader; import org.springframework.context.ApplicationContext; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.support.GenericApplicationContext; +import org.springframework.core.io.FileSystemResource; import org.springframework.core.io.Resource; public class AntSlcApplication { @@ -41,10 +44,24 @@ public class AntSlcApplication { private Resource rootDir; private Resource confDir; - private Resource workDir; + private File workDir; public void init() { try { + try { + if (rootDir != null) + System.setProperty(SlcAntConstants.ROOT_DIR_PROPERTY, + rootDir.getURL().toString()); + if (confDir != null) + System.setProperty(SlcAntConstants.CONF_DIR_PROPERTY, + confDir.getURL().toString()); + } catch (IOException e) { + throw new SlcAntException("Cannot interpret dir as URL.", e); + } + if (workDir != null) + System.setProperty(SlcAntConstants.WORK_DIR_PROPERTY, workDir + .toString()); + if (confDir != null && contextLocation == null) { contextLocation = confDir .createRelative("applicationContext.xml"); @@ -66,11 +83,10 @@ public class AntSlcApplication { } - public void execute(SlcExecution slcExecution, Properties properties, - Map references) { + public SlcExecutionContext execute(SlcExecution slcExecution, + Properties properties, Map references) { + log.info("### Start SLC execution " + slcExecution.getUuid() + " ###"); if (log.isDebugEnabled()) { - log.debug("### Start SLC execution " + slcExecution.getUuid() - + " ###"); log.debug("rootDir=" + rootDir); log.debug("confDir=" + confDir); log.debug("workDir=" + workDir); @@ -80,9 +96,10 @@ public class AntSlcApplication { Resource script = findAntScript(slcExecution); List targets = findAntTargets(slcExecution); - ConfigurableApplicationContext ctx = createExecutionContext(); + ConfigurableApplicationContext ctx = createExecutionContext(properties); Project project = new Project(); + AntExecutionContext executionContext = new AntExecutionContext(project); project.addReference(SlcAntConstants.REF_ROOT_CONTEXT, ctx); project.addReference(SlcAntConstants.REF_SLC_EXECUTION, slcExecution); initProject(project, properties, references); @@ -90,8 +107,10 @@ public class AntSlcApplication { initStructure(project, script); runProject(project, targets); - + ctx.close(); + + return executionContext; } protected Resource findAntScript(SlcExecution slcExecution) { @@ -119,10 +138,17 @@ public class AntSlcApplication { if (script.exists()) return script; - throw new SlcAntException("Cannot find Ant script " + scriptStr); + script = new FileSystemResource(scriptStr); + if (log.isTraceEnabled()) + log.trace("script(fs)=" + script); + if (script.exists()) + return script; + } catch (Exception e) { throw new SlcAntException("Cannot find Ant script " + scriptStr, e); } + + throw new SlcAntException("Cannot find Ant script " + scriptStr); } protected List findAntTargets(SlcExecution slcExecution) { @@ -138,7 +164,20 @@ public class AntSlcApplication { return targets; } - protected ConfigurableApplicationContext createExecutionContext() { + protected ConfigurableApplicationContext createExecutionContext( + Properties userProperties) { + // Set user properties as system properties so that Spring can access + // them + for (Object key : userProperties.keySet()) { + System.setProperty(key.toString(), userProperties.getProperty(key + .toString())); + } + + if (System.getProperty(SlcAntConstants.DEFAULT_TEST_RUN_PROPERTY) == null) { + System.setProperty(SlcAntConstants.DEFAULT_TEST_RUN_PROPERTY, + "defaultTestRun"); + } + try { GenericApplicationContext ctx = new GenericApplicationContext( context); @@ -223,7 +262,6 @@ public class AntSlcApplication { } log.debug("scriptPath=" + scriptPath); - List dirNames = new Vector(); StringTokenizer st = new StringTokenizer(scriptPath, "/"); TreeSPath currPath = null; while (st.hasMoreTokens()) { @@ -311,7 +349,7 @@ public class AntSlcApplication { this.confDir = confDir; } - public void setWorkDir(Resource workDir) { + public void setWorkDir(File workDir) { this.workDir = workDir; }