View Javadoc

1   /**
2    * Copyright 2005-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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 org.kuali.rice.krms.framework.engine;
17  
18  import java.util.Collection;
19  
20  import org.kuali.rice.krms.api.engine.ExecutionEnvironment;
21  import org.kuali.rice.krms.api.engine.ResultEvent;
22  import org.kuali.rice.krms.api.engine.Term;
23  import org.kuali.rice.krms.api.engine.TermResolutionException;
24  import org.kuali.rice.krms.framework.engine.result.BasicResult;
25  
26  public class CollectionOfComparablesTermBasedProposition<T> extends ComparableTermBasedProposition<T> {
27  	private static final ResultLogger LOG = ResultLogger.getInstance();
28  
29  	private CollectionOperator collectionOper;
30  	private Term term;
31  
32  	public CollectionOfComparablesTermBasedProposition(CollectionOperator collectionOper, ComparisonOperator compareOper, Term term, T expectedValue) {
33  		super(compareOper, term, expectedValue);
34  		this.term = term;
35  		this.collectionOper = collectionOper;
36  	}
37  
38  	/**
39  	 * @see org.kuali.rice.krms.framework.engine.ComparableTermBasedProposition#evaluate(org.kuali.rice.krms.api.engine.ExecutionEnvironment)
40  	 * @throws TermResolutionException if there is a problem resolving a {@link Term}
41  	 */
42  	@Override
43  	public PropositionResult evaluate(ExecutionEnvironment environment) {
44  		boolean collatedResult = collectionOper.getInitialCollatedResult();
45  
46  		Collection<? extends Comparable<T>> termValue;
47  
48  		termValue = environment.resolveTerm(term, this);
49  
50  		if (termValue != null) {
51  			for (Comparable<T> item : termValue) {
52  				collatedResult = collectionOper.reduce(compare(item), collatedResult);
53  				if (collectionOper.shortCircuit(collatedResult)) break;
54  			}
55  		}
56  
57  		// TODO: log this appropriately
58  		if (LOG.isEnabled(environment)) {
59  			LOG.logResult(new BasicResult(ResultEvent.PropositionEvaluated, this, environment, collatedResult));
60  		}
61  
62  		return new PropositionResult(collatedResult);
63  	}
64  
65  	public String toString() {
66  		StringBuilder sb = new StringBuilder();
67  		sb.append(collectionOper.toString());
68  		sb.append(" "+super.toString());
69  		return sb.toString();
70  	}
71  }