You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

196 lines
4.5 KiB

//==============================================================================
//
// Copyright (c) 2002-
// Authors:
// * Dave Parker <dxp@cs.bham.uc.uk> (University of Birmingham)
//
//------------------------------------------------------------------------------
//
// This file is part of PRISM.
//
// PRISM is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PRISM is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with PRISM; if not, write to the Free Software Foundation,
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
//==============================================================================
package parser;
import java.util.Vector;
import prism.PrismException;
public class Command
{
// action label
String synch;
// reward (defunct)
Expression reward;
// guard
Expression guard;
// list of updates
Updates updates;
// parent Module
Module parent;
// constructor
public Command()
{
synch = "";
reward = null;
guard = null;
updates = null;
}
// set methods
public void setSynch(String s)
{
synch = s;
}
public void setReward(Expression r)
{
reward = r;
}
public void setGuard(Expression g)
{
guard = g;
}
public void setUpdates(Updates u)
{
updates = u;
u.setParent(this);
}
public void setParent(Module m)
{
parent = m;
}
// get methods
public String getSynch()
{
return synch;
}
public Expression getReward()
{
return reward;
}
public Expression getGuard()
{
return guard;
}
public Updates getUpdates()
{
return updates;
}
public Module getParent()
{
return parent;
}
// find all formulas (i.e. locate idents which are formulas)
public void findAllFormulas(FormulaList formulaList) throws PrismException
{
if (reward != null) reward = reward.findAllFormulas(formulaList);
guard = guard.findAllFormulas(formulaList);
updates.findAllFormulas(formulaList);
}
// expand any formulas
public void expandFormulas(FormulaList formulaList) throws PrismException
{
if (reward != null) reward = reward.expandFormulas(formulaList);
guard = guard.expandFormulas(formulaList);
updates.expandFormulas(formulaList);
}
// create and return a new Command by renaming
public Command rename(RenamedModule rm) throws PrismException
{
Command c = new Command();
String s;
// change synch if it has been renamed
s = rm.getNewName(synch);
c.setSynch((s == null) ? synch : s);
// rename guard/updates
if (reward != null) c.setReward(reward.rename(rm));
c.setGuard(guard.rename(rm));
c.setUpdates(updates.rename(rm));
return c;
}
// find all constants (i.e. locate idents which are constants)
public void findAllConstants(ConstantList constantList) throws PrismException
{
if (reward != null) reward = reward.findAllConstants(constantList);
guard = guard.findAllConstants(constantList);
updates.findAllConstants(constantList);
}
// find all variables (i.e. locate idents which are variables)
public void findAllVars(Vector varIdents, Vector varTypes) throws PrismException
{
if (reward != null) reward = reward.findAllVars(varIdents, varTypes);
guard = guard.findAllVars(varIdents, varTypes);
updates.findAllVars(varIdents, varTypes);
}
// check everything is ok
public void check() throws PrismException
{
// check reward expression ok
if (reward != null) reward.check();
// check reward is of type double
if (reward != null) if (Expression.canAssignTypes(Expression.DOUBLE, guard.getType())) {
throw new PrismException("Command reward \"" + reward + "\" is the wrong type");
}
// check guard expression ok
guard.check();
// check guard is of type boolean
if (guard.getType() != Expression.BOOLEAN) {
throw new PrismException("Guard \"" + guard + "\" is not of type boolean");
}
// check updates
updates.check();
}
// convert to string
public String toString()
{
String s = "[" + synch;
if (reward != null) s += "," + reward;
s += "] " + guard + " -> " + updates;
return s;
}
}
//------------------------------------------------------------------------------