~ubuntu-branches/ubuntu/jaunty/ant/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/main/org/apache/tools/ant/taskdefs/Parallel.java

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Gybas
  • Date: 2002-02-14 14:28:48 UTC
  • Revision ID: james.westby@ubuntu.com-20020214142848-2ww7ynmqkj31vlmn
Tags: upstream-1.4.1
ImportĀ upstreamĀ versionĀ 1.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * The Apache Software License, Version 1.1
 
3
 *
 
4
 * Copyright (c) 2001 The Apache Software Foundation.  All rights
 
5
 * reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions
 
9
 * are met:
 
10
 *
 
11
 * 1. Redistributions of source code must retain the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer.
 
13
 *
 
14
 * 2. Redistributions in binary form must reproduce the above copyright
 
15
 *    notice, this list of conditions and the following disclaimer in
 
16
 *    the documentation and/or other materials provided with the
 
17
 *    distribution.
 
18
 *
 
19
 * 3. The end-user documentation included with the redistribution, if
 
20
 *    any, must include the following acknowlegement:
 
21
 *       "This product includes software developed by the
 
22
 *        Apache Software Foundation (http://www.apache.org/)."
 
23
 *    Alternately, this acknowlegement may appear in the software itself,
 
24
 *    if and wherever such third-party acknowlegements normally appear.
 
25
 *
 
26
 * 4. The names "The Jakarta Project", "Ant", and "Apache Software
 
27
 *    Foundation" must not be used to endorse or promote products derived
 
28
 *    from this software without prior written permission. For written
 
29
 *    permission, please contact apache@apache.org.
 
30
 *
 
31
 * 5. Products derived from this software may not be called "Apache"
 
32
 *    nor may "Apache" appear in their names without prior written
 
33
 *    permission of the Apache Group.
 
34
 *
 
35
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 
36
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
37
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
38
 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 
39
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
40
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
41
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 
42
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
43
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 
44
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 
45
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
46
 * SUCH DAMAGE.
 
47
 * ====================================================================
 
48
 *
 
49
 * This software consists of voluntary contributions made by many
 
50
 * individuals on behalf of the Apache Software Foundation.  For more
 
51
 * information on the Apache Software Foundation, please see
 
52
 * <http://www.apache.org/>.
 
53
 */
 
54
package org.apache.tools.ant.taskdefs;
 
55
 
 
56
import org.apache.tools.ant.*;
 
57
import org.apache.tools.ant.types.*;
 
58
import java.util.*;
 
59
import java.text.*;
 
60
import java.lang.RuntimeException;
 
61
 
 
62
/**
 
63
 * Implements a multi threaded task execution.
 
64
 * <p>
 
65
 * @author Thomas Christen <a href="mailto:chr@active.ch">chr@active.ch</a>
 
66
 * @author <a href="mailto:conor@apache.org">Conor MacNeill </a>
 
67
 */
 
68
public class Parallel extends Task
 
69
                      implements TaskContainer {
 
70
 
 
71
    /** Collection holding the nested tasks */
 
72
    private Vector nestedTasks = new Vector();
 
73
 
 
74
 
 
75
    /**
 
76
     * Add a nested task to execute parallel (asynchron).
 
77
     * <p>
 
78
     * @param nestedTask  Nested task to be executed in parallel
 
79
     */
 
80
    public void addTask(Task nestedTask) throws BuildException {
 
81
        nestedTasks.addElement(nestedTask);
 
82
    }
 
83
 
 
84
    /**
 
85
     * Block execution until the specified time or for a
 
86
     * specified amount of milliseconds and if defined,
 
87
     * execute the wait status.
 
88
     */
 
89
    public void execute() throws BuildException {
 
90
        TaskThread[] threads = new TaskThread[nestedTasks.size()];
 
91
        int threadNumber = 0;
 
92
        for (Enumeration e = nestedTasks.elements(); e.hasMoreElements(); threadNumber++) {
 
93
            Task nestedTask = (Task)e.nextElement();
 
94
            threads[threadNumber] = new TaskThread(threadNumber, nestedTask);
 
95
        }
 
96
 
 
97
        // now start all threads        
 
98
        for (int i = 0; i < threads.length; ++i) {
 
99
            threads[i].start();
 
100
        }
 
101
 
 
102
        // now join to all the threads 
 
103
        for (int i = 0; i < threads.length; ++i) {
 
104
            try {
 
105
                threads[i].join();
 
106
            }
 
107
            catch (InterruptedException ie) {
 
108
                // who would interrupt me at a time like this?
 
109
            }
 
110
        }
 
111
        
 
112
        // now did any of the threads throw an exception
 
113
        StringBuffer exceptionMessage = new StringBuffer();
 
114
        String lSep = System.getProperty("line.separator");
 
115
        int numExceptions = 0;
 
116
        Throwable firstException = null;
 
117
        Location firstLocation = Location.UNKNOWN_LOCATION;;
 
118
        for (int i = 0; i < threads.length; ++i) {
 
119
            Throwable t = threads[i].getException();
 
120
            if (t != null) {
 
121
                numExceptions++;
 
122
                if (firstException == null) {
 
123
                    firstException = t;
 
124
                }
 
125
                if (t instanceof BuildException && 
 
126
                        firstLocation == Location.UNKNOWN_LOCATION) {
 
127
                    firstLocation = ((BuildException)t).getLocation();
 
128
                }
 
129
                exceptionMessage.append(lSep);
 
130
                exceptionMessage.append(t.getMessage());
 
131
            }
 
132
        }
 
133
        
 
134
        if (numExceptions == 1) {
 
135
            if (firstException instanceof BuildException) {
 
136
                throw (BuildException)firstException;
 
137
            }
 
138
            else {
 
139
                throw new BuildException(firstException);
 
140
            }
 
141
        }
 
142
        else if (numExceptions > 1) {
 
143
            throw new BuildException(exceptionMessage.toString(), firstLocation);
 
144
        }
 
145
    }
 
146
 
 
147
    class TaskThread extends Thread {
 
148
        private Throwable exception;
 
149
        private Task task;
 
150
        private int taskNumber;
 
151
 
 
152
        /**
 
153
         * Construct a new TaskThread<p>
 
154
         *
 
155
         * @param task the Task to be executed in a seperate thread
 
156
         */
 
157
        TaskThread(int taskNumber, Task task) {
 
158
            this.task = task;
 
159
            this.taskNumber = taskNumber;
 
160
        }
 
161
 
 
162
        /**
 
163
         * Executes the task within a thread and takes care about
 
164
         * Exceptions raised within the task.
 
165
         */
 
166
        public void run() {
 
167
            try {
 
168
                task.perform();
 
169
            }
 
170
            catch (Throwable t) {
 
171
                exception = t;
 
172
            }
 
173
        }
 
174
        
 
175
        public Throwable getException() { 
 
176
            return exception;
 
177
        }
 
178
    }
 
179
}