Skip to main content
summaryrefslogtreecommitdiffstats
blob: 65b2859efb50b05d1fd132ccca1b03c97105be6c (plain) (blame)
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
/*
 * <copyright>
 *
 * Copyright (c) 2005-2006 Markus Voelter and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Markus Voelter - Initial API and implementation
 *
 * </copyright>
 */
package org.eclipse.m2t.common.recipe.core;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.eclipse.m2t.common.recipe.eval.EvaluationContext;


public class CompositeCheck extends Check {
	
	private static final long serialVersionUID = 1L;

	private List<Check> children = new ArrayList<Check>();
	
	public CompositeCheck( String name, String description ) {
		super(name, description );
	}
	
	public void evaluate( EvaluationContext ctx ) {
		if ( children == null ) return;
		for (Iterator<Check> iter = children.iterator(); iter.hasNext();) {
			Check c = iter.next();
			try {
				ctx.getEvaluator().evaluate( c );
			} catch ( EvaluationStop ignore ) {}
		}
	}
	
	public int getStatus() {
		int stat = EvalStatus.OK;
		for (Iterator<Check> iter = children.iterator(); iter.hasNext();) {
			Check c = iter.next();
			int s = c.getStatus();
			if ( s == EvalStatus.FAILED ) stat = EvalStatus.SOMECHILDRENFAILED;
			if ( s == EvalStatus.SOMECHILDRENFAILED ) stat = EvalStatus.SOMECHILDRENFAILED;
			if ( s == EvalStatus.UNDETERMINED ) stat = EvalStatus.SOMECHILDRENFAILED;
		}
		return stat;
	}
	
	public List<Check> getChildren() {
		return children;
	}
	
	public void addChild(Check c) {
		children.add( c );
		c.setParent( this );
	}
	
	public boolean hasChildren() {
		return children != null;
	}
	
	public void collectChildren( List<Check> l ) {
		for (Iterator<Check> iter = children.iterator(); iter.hasNext();) {
			Check c = iter.next();
			l.add( c );
			c.collectChildren(l);
		}
	}
	
	public int getCheckCount() {
		int count = 0;
		for (Iterator<Check> iter = children.iterator(); iter.hasNext();) {
			Check c = iter.next();
			count += c.getCheckCount();
		}
		return count;
	}
	
	public int getTrigger() {
		for (Iterator<Check> iter = children.iterator(); iter.hasNext();) {
			Check c = iter.next();
			if ( c.getTrigger() == EvalTrigger.ON_CHANGE ) return EvalTrigger.ON_CHANGE;
		}
		return EvalTrigger.ON_REQUEST;
	}
	
}

Back to the top