1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
|
/*
* Copyright (c) 2003-2005 Ant-Contrib project. All rights reserved.
*
* 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 net.sf.antcontrib.logic;
import java.io.File;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.taskdefs.MacroDef;
import org.apache.tools.ant.taskdefs.MacroInstance;
import org.apache.tools.ant.taskdefs.Parallel;
import org.apache.tools.ant.types.DirSet;
import org.apache.tools.ant.types.FileSet;
import org.apache.tools.ant.types.Path;
/***
* Task definition for the for task. This is based on
* the foreach task but takes a sequential element
* instead of a target and only works for ant >= 1.6Beta3
* @author Peter Reilly
*/
public class ForTask extends Task {
private String list;
private String param;
private String delimiter = ",";
private Path currPath;
private boolean trim;
private boolean keepgoing = false;
private MacroDef macroDef;
private List hasIterators = new ArrayList();
private boolean parallel = false;
private Integer threadCount;
private Parallel parallelTasks;
private int begin = 0;
private Integer end = null;
private int step = 1;
private int taskCount = 0;
private int errorCount = 0;
/**
* Creates a new <code>For</code> instance.
*/
public ForTask() {
}
/**
* Attribute whether to execute the loop in parallel or in sequence.
* @param parallel if true execute the tasks in parallel. Default is false.
*/
public void setParallel(boolean parallel) {
this.parallel = parallel;
}
/***
* Set the maximum amount of threads we're going to allow
* to execute in parallel
* @param threadCount the number of threads to use
*/
public void setThreadCount(int threadCount) {
if (threadCount < 1) {
throw new BuildException("Illegal value for threadCount " + threadCount
+ " it should be > 0");
}
this.threadCount = new Integer(threadCount);
}
/**
* Set the trim attribute.
*
* @param trim if true, trim the value for each iterator.
*/
public void setTrim(boolean trim) {
this.trim = trim;
}
/**
* Set the keepgoing attribute, indicating whether we
* should stop on errors or continue heedlessly onward.
*
* @param keepgoing a boolean, if <code>true</code> then we act in
* the keepgoing manner described.
*/
public void setKeepgoing(boolean keepgoing) {
this.keepgoing = keepgoing;
}
/**
* Set the list attribute.
*
* @param list a list of delimiter separated tokens.
*/
public void setList(String list) {
this.list = list;
}
/**
* Set the delimiter attribute.
*
* @param delimiter the delimiter used to separate the tokens in
* the list attribute. The default is ",".
*/
public void setDelimiter(String delimiter) {
this.delimiter = delimiter;
}
/**
* Set the param attribute.
* This is the name of the macrodef attribute that
* gets set for each iterator of the sequential element.
*
* @param param the name of the macrodef attribute.
*/
public void setParam(String param) {
this.param = param;
}
private Path getOrCreatePath() {
if (currPath == null) {
currPath = new Path(getProject());
}
return currPath;
}
/**
* This is a path that can be used instread of the list
* attribute to interate over. If this is set, each
* path element in the path is used for an interator of the
* sequential element.
*
* @param path the path to be set by the ant script.
*/
public void addConfigured(Path path) {
getOrCreatePath().append(path);
}
/**
* This is a path that can be used instread of the list
* attribute to interate over. If this is set, each
* path element in the path is used for an interator of the
* sequential element.
*
* @param path the path to be set by the ant script.
*/
public void addConfiguredPath(Path path) {
addConfigured(path);
}
/**
* @return a MacroDef#NestedSequential object to be configured
*/
public Object createSequential() {
macroDef = new MacroDef();
macroDef.setProject(getProject());
return macroDef.createSequential();
}
/**
* Set begin attribute.
* @param begin the value to use.
*/
public void setBegin(int begin) {
this.begin = begin;
}
/**
* Set end attribute.
* @param end the value to use.
*/
public void setEnd(Integer end) {
this.end = end;
}
/**
* Set step attribute.
*
*/
public void setStep(int step) {
this.step = step;
}
/**
* Run the for task.
* This checks the attributes and nested elements, and
* if there are ok, it calls doTheTasks()
* which constructes a macrodef task and a
* for each interation a macrodef instance.
*/
public void execute() {
if (parallel) {
parallelTasks = (Parallel) getProject().createTask("parallel");
if (threadCount != null) {
parallelTasks.setThreadCount(threadCount.intValue());
}
}
if (list == null && currPath == null && hasIterators.size() == 0
&& end == null) {
throw new BuildException(
"You must have a list or path or sequence to iterate through");
}
if (param == null) {
throw new BuildException(
"You must supply a property name to set on"
+ " each iteration in param");
}
if (macroDef == null) {
throw new BuildException(
"You must supply an embedded sequential "
+ "to perform");
}
if (end != null) {
int iEnd = end.intValue();
if (step == 0) {
throw new BuildException("step cannot be 0");
} else if (iEnd > begin && step < 0) {
throw new BuildException("end > begin, step needs to be > 0");
} else if (iEnd <= begin && step > 0) {
throw new BuildException("end <= begin, step needs to be < 0");
}
}
doTheTasks();
if (parallel) {
parallelTasks.perform();
}
}
private void doSequentialIteration(String val) {
MacroInstance instance = new MacroInstance();
instance.setProject(getProject());
instance.setOwningTarget(getOwningTarget());
instance.setMacroDef(macroDef);
instance.setDynamicAttribute(param.toLowerCase(),
val);
if (!parallel) {
instance.execute();
} else {
parallelTasks.addTask(instance);
}
}
private void doToken(String tok) {
try {
taskCount++;
doSequentialIteration(tok);
} catch (BuildException bx) {
if (keepgoing) {
log(tok + ": " + bx.getMessage(), Project.MSG_ERR);
errorCount++;
} else {
throw bx;
}
}
}
private void doTheTasks() {
errorCount = 0;
taskCount = 0;
// Create a macro attribute
if (macroDef.getAttributes().isEmpty()) {
MacroDef.Attribute attribute = new MacroDef.Attribute();
attribute.setName(param);
macroDef.addConfiguredAttribute(attribute);
}
// Take Care of the list attribute
if (list != null) {
StringTokenizer st = new StringTokenizer(list, delimiter);
while (st.hasMoreTokens()) {
String tok = st.nextToken();
if (trim) {
tok = tok.trim();
}
doToken(tok);
}
}
// Take care of the begin/end/step attributes
if (end != null) {
int iEnd = end.intValue();
if (step > 0) {
for (int i = begin; i < (iEnd + 1); i = i + step) {
doToken("" + i);
}
} else {
for (int i = begin; i > (iEnd - 1); i = i + step) {
doToken("" + i);
}
}
}
// Take Care of the path element
String[] pathElements = new String[0];
if (currPath != null) {
pathElements = currPath.list();
}
for (int i = 0; i < pathElements.length; i++) {
File nextFile = new File(pathElements[i]);
doToken(nextFile.getAbsolutePath());
}
// Take care of iterators
for (Iterator i = hasIterators.iterator(); i.hasNext();) {
Iterator it = ((HasIterator) i.next()).iterator();
while (it.hasNext()) {
doToken(it.next().toString());
}
}
if (keepgoing && (errorCount != 0)) {
throw new BuildException(
"Keepgoing execution: " + errorCount
+ " of " + taskCount + " iterations failed.");
}
}
/**
* Add a Map, iterate over the values
*
* @param map a Map object - iterate over the values.
*/
public void add(Map map) {
hasIterators.add(new MapIterator(map));
}
/**
* Add a fileset to be iterated over.
*
* @param fileset a <code>FileSet</code> value
*/
public void add(FileSet fileset) {
getOrCreatePath().addFileset(fileset);
}
/**
* Add a fileset to be iterated over.
*
* @param fileset a <code>FileSet</code> value
*/
public void addFileSet(FileSet fileset) {
add(fileset);
}
/**
* Add a dirset to be iterated over.
*
* @param dirset a <code>DirSet</code> value
*/
public void add(DirSet dirset) {
getOrCreatePath().addDirset(dirset);
}
/**
* Add a dirset to be iterated over.
*
* @param dirset a <code>DirSet</code> value
*/
public void addDirSet(DirSet dirset) {
add(dirset);
}
/**
* Add a collection that can be iterated over.
*
* @param collection a <code>Collection</code> value.
*/
public void add(Collection collection) {
hasIterators.add(new ReflectIterator(collection));
}
/**
* Add an iterator to be iterated over.
*
* @param iterator an <code>Iterator</code> value
*/
public void add(Iterator iterator) {
hasIterators.add(new IteratorIterator(iterator));
}
/**
* Add an object that has an Iterator iterator() method
* that can be iterated over.
*
* @param obj An object that can be iterated over.
*/
public void add(Object obj) {
hasIterators.add(new ReflectIterator(obj));
}
/**
* Interface for the objects in the iterator collection.
*/
private interface HasIterator {
Iterator iterator();
}
private static class IteratorIterator implements HasIterator {
private Iterator iterator;
public IteratorIterator(Iterator iterator) {
this.iterator = iterator;
}
public Iterator iterator() {
return this.iterator;
}
}
private static class MapIterator implements HasIterator {
private Map map;
public MapIterator(Map map) {
this.map = map;
}
public Iterator iterator() {
return map.values().iterator();
}
}
private static class ReflectIterator implements HasIterator {
private Object obj;
private Method method;
public ReflectIterator(Object obj) {
this.obj = obj;
try {
method = obj.getClass().getMethod(
"iterator", new Class[] {});
} catch (Throwable t) {
throw new BuildException(
"Invalid type " + obj.getClass() + " used in For task, it does"
+ " not have a public iterator method");
}
}
public Iterator iterator() {
try {
return (Iterator) method.invoke(obj, new Object[] {});
} catch (Throwable t) {
throw new BuildException(t);
}
}
}
}
|