BaseLibraryEnabler.java
package edu.udel.cis.vsl.civl.library.common;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import edu.udel.cis.vsl.civl.dynamic.IF.SymbolicUtility;
import edu.udel.cis.vsl.civl.kripke.IF.Enabler;
import edu.udel.cis.vsl.civl.kripke.IF.LibraryEnabler;
import edu.udel.cis.vsl.civl.kripke.IF.LibraryEnablerLoader;
import edu.udel.cis.vsl.civl.model.IF.ModelFactory;
import edu.udel.cis.vsl.civl.model.IF.expression.Expression;
import edu.udel.cis.vsl.civl.model.IF.statement.CallOrSpawnStatement;
import edu.udel.cis.vsl.civl.model.IF.statement.Statement;
import edu.udel.cis.vsl.civl.model.IF.statement.StatementList;
import edu.udel.cis.vsl.civl.semantics.IF.Evaluator;
import edu.udel.cis.vsl.civl.semantics.IF.LibraryEvaluatorLoader;
import edu.udel.cis.vsl.civl.semantics.IF.Semantics;
import edu.udel.cis.vsl.civl.semantics.IF.SymbolicAnalyzer;
import edu.udel.cis.vsl.civl.semantics.IF.Transition;
import edu.udel.cis.vsl.civl.state.IF.State;
import edu.udel.cis.vsl.civl.state.IF.StateFactory;
import edu.udel.cis.vsl.civl.state.IF.UnsatisfiablePathConditionException;
import edu.udel.cis.vsl.sarl.IF.expr.BooleanExpression;
import edu.udel.cis.vsl.sarl.IF.expr.SymbolicExpression;
/**
* This class provides the common data and operations of library enablers.
*
* @author Manchun Zheng (zmanchun)
*
*/
public abstract class BaseLibraryEnabler extends LibraryComponent implements
LibraryEnabler {
/* *************************** Instance Fields ************************* */
/**
* The evaluator for evaluating expressions.
*/
protected Evaluator evaluator;
/**
* The model factory of the system.
*/
protected ModelFactory modelFactory;
/**
* The enabler for normal CIVL execution.
*/
protected Enabler primaryEnabler;
/**
* The state factory for state-related computation.
*/
protected StateFactory stateFactory;
protected LibraryEnablerLoader libEnablerLoader;
/* ***************************** Constructor *************************** */
/**
* Creates a new instance of library enabler.
*
* @param primaryEnabler
* The enabler for normal CIVL execution.
* @param modelFactory
* The model factory of the system.
* @param symbolicUtil
* The symbolic utility used in the system.
* @param symbolicAnalyzer
* The symbolic analyzer used in the system.
*/
public BaseLibraryEnabler(String name, Enabler primaryEnabler,
Evaluator evaluator, ModelFactory modelFactory,
SymbolicUtility symbolicUtil, SymbolicAnalyzer symbolicAnalyzer,
LibraryEnablerLoader libEnablerLoader,
LibraryEvaluatorLoader libEvaluatorLoader) {
super(name, evaluator.universe(), symbolicUtil, symbolicAnalyzer,
libEvaluatorLoader);
this.primaryEnabler = primaryEnabler;
this.evaluator = evaluator;
this.stateFactory = evaluator.stateFactory();
this.modelFactory = modelFactory;
}
/* ********************* Methods from LibraryEnabler ******************* */
@Override
public Set<Integer> ampleSet(State state, int pid,
CallOrSpawnStatement statement,
Map<Integer, Map<SymbolicExpression, Boolean>> reachableMemUnitsMap)
throws UnsatisfiablePathConditionException {
return new HashSet<>();
}
@Override
public List<Transition> enabledTransitions(State state,
CallOrSpawnStatement call, BooleanExpression pathCondition,
int pid, int processIdentifier, Statement assignAtomicLock)
throws UnsatisfiablePathConditionException {
Statement transitionStatement;
List<Transition> localTransitions = new LinkedList<>();
if (assignAtomicLock != null) {
StatementList statementList = modelFactory
.statmentList(assignAtomicLock);
statementList.add(call);
transitionStatement = statementList;
} else {
transitionStatement = call;
}
localTransitions.add(Semantics.newTransition(pathCondition, pid,
processIdentifier, transitionStatement));
return localTransitions;
}
/**
* Computes the ample set by analyzing the given handle object for the
* statement.
*
* @param state
* The current state
* @param pid
* The pid of the process
* @param handleObj
* The expression of the given handle object
* @param handleObjValue
* The symbolic expression of the given handle object
* @param reachableMemUnitsMap
* The map contains all reachable memory units of all processes
* @return
*/
protected Set<Integer> computeAmpleSetByHandleObject(State state, int pid,
Expression handleObj, SymbolicExpression handleObjValue,
Map<Integer, Map<SymbolicExpression, Boolean>> reachableMemUnitsMap) {
Set<SymbolicExpression> handleObjMemUnits = new HashSet<>();
Set<Integer> ampleSet = new HashSet<Integer>();
try {
evaluator.memoryUnitsOfExpression(state, pid, handleObj,
handleObjMemUnits);
} catch (UnsatisfiablePathConditionException e) {
handleObjMemUnits.add(handleObjValue);
}
for (SymbolicExpression memUnit : handleObjMemUnits) {
for (int otherPid : reachableMemUnitsMap.keySet()) {
if (otherPid == pid || ampleSet.contains(otherPid))
continue;
else if (reachableMemUnitsMap.get(otherPid)
.containsKey(memUnit)) {
ampleSet.add(otherPid);
}
}
}
return ampleSet;
}
}