Subversion Repositories XServices

Rev

Rev 11 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 brianR 1
/*
2
 *   Copyright 2010 Brian Rosenberger (Brutex Network)
3
 *
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
5
 *   you may not use this file except in compliance with the License.
6
 *   You may obtain a copy of the License at
7
 *
8
 *       http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 *   Unless required by applicable law or agreed to in writing, software
11
 *   distributed under the License is distributed on an "AS IS" BASIS,
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *   See the License for the specific language governing permissions and
14
 *   limitations under the License.
15
 */
16
package net.brutex.xservices.util;
17
 
11 brianR 18
import java.io.ByteArrayOutputStream;
19
import java.io.PrintStream;
12 brianR 20
import java.util.HashMap;
6 brianR 21
import java.util.Map;
12 brianR 22
import net.brutex.xservices.types.AntProperty;
23
import net.brutex.xservices.types.ReturnCode;
6 brianR 24
import org.apache.tools.ant.BuildException;
25
import org.apache.tools.ant.Project;
26
import org.apache.tools.ant.Target;
27
import org.apache.tools.ant.Task;
11 brianR 28
import org.apache.tools.ant.listener.TimestampedLogger;
6 brianR 29
import org.apache.tools.ant.taskdefs.Echo;
30
 
31
/**
32
 *
33
 * @author Brian Rosenberger, bru@brutex.de
34
 */
35
public class RunTask {
36
 
37
    Project antproject;
38
    Target anttarget;
39
    Task anttask;
11 brianR 40
    ByteArrayOutputStream out = new ByteArrayOutputStream();
41
    ByteArrayOutputStream err = new ByteArrayOutputStream();
42
    TimestampedLogger log = null;
43
 
6 brianR 44
    public RunTask(Task anttask) {
45
 
46
        antproject = new Project();
47
        antproject.init();
48
        antproject.setBasedir(System.getProperty("java.io.tmpdir"));
11 brianR 49
        log = new TimestampedLogger();
50
        log.setOutputPrintStream(new PrintStream(out));
51
        log.setErrorPrintStream(new PrintStream(err));
52
        log.setMessageOutputLevel(Echo.EchoLevel.VERBOSE.getLevel());
53
 
6 brianR 54
        antproject.addBuildListener(log);
12 brianR 55
 
6 brianR 56
        anttarget = new Target();
57
        anttarget.setName("XBridgeNGDynamicTarget");
58
        anttarget.setProject(antproject);
59
        antproject.addTarget(anttarget);
60
 
61
        this.anttask = anttask;
62
        prepareTask();
63
    }
64
 
65
    private void prepareTask()
66
            throws BuildException {
12 brianR 67
        anttask.init();
68
        anttask.setProject(antproject);
69
        anttask.setOwningTarget(anttarget);
70
        anttarget.addTask(anttask);
71
        antproject.addOrReplaceTarget(anttarget);
6 brianR 72
    }
73
 
12 brianR 74
    public ReturnCode postTask() {
75
        int returnCode = 0;
76
        Map<String, String> origMap = new HashMap<String, String>();
77
        Map<String, String> newMap = null;
78
        origMap.putAll(antproject.getProperties());
6 brianR 79
        try {
12 brianR 80
            antproject.executeTarget(anttarget.getName());
81
        } catch (BuildException ex) {
11 brianR 82
            new PrintStream(err).println(ex.getMessage());
12 brianR 83
            returnCode = 1;
6 brianR 84
        }
12 brianR 85
        newMap = antproject.getProperties();
86
 
87
        for (Map.Entry<String, String> e : origMap.entrySet()) {
88
            newMap.remove(e.getKey());
89
        }
90
 
11 brianR 91
        //anttask.execute();
12 brianR 92
        return new ReturnCode(returnCode,
93
                out.toString(),
94
                err.toString(),
95
                AntProperty.createAntPropertyList(newMap));
96
 
6 brianR 97
    }
98
}