org.eclipse.ocl.internal.evaluation.IterationTemplateOne Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2005, 2007 IBM Corporation 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:
* IBM - Initial API and implementation
*
*
*
* $Id: IterationTemplateOne.java,v 1.3 2009/09/01 20:11:23 ewillink Exp $
*/
package org.eclipse.ocl.internal.evaluation;
import java.util.List;
import org.eclipse.ocl.EvaluationEnvironment;
import org.eclipse.ocl.EvaluationVisitor;
import org.eclipse.ocl.expressions.Variable;
/**
*
*/
public class IterationTemplateOne
extends IterationTemplate {
private IterationTemplateOne(
EvaluationVisitor v) {
super(v);
}
public static
IterationTemplate
getInstance(EvaluationVisitor v) {
return new IterationTemplateOne(v);
}
@Override
protected Object evaluateResult(List> iterators, String resultName,
Object body) {
EvaluationEnvironment env = getEvalEnvironment();
// should be exactly one iterator
// String iterName = ((VariableDeclaration)iterators.get(0)).getVarName();
// Object currObj = env.getValueOf(iterName);
Boolean resultVal = (Boolean) env.getValueOf(resultName);
// If the body result is undefined then the entire expression's value
// is invalid
if ((body == null) || (body == getInvalid())) {
setDone(true);
return getInvalid();
}
Boolean bodyVal = (Boolean) body;
boolean bodyCond = bodyVal.booleanValue();
if (bodyCond) {
if (!foundOne) {
// if this is the first element satsifying the body condition
// make a note of it.
foundOne = true;
return Boolean.TRUE;
} else {
// this is the second satisfying element. The result is false
// and we can stop iterating.
setDone(true);
return Boolean.FALSE;
}
}
return resultVal.booleanValue() ? Boolean.TRUE : Boolean.FALSE;
}
private boolean foundOne = false;
}