CommonModel.java
/**
*
*/
package edu.udel.cis.vsl.civl.model.common;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Map;
import java.util.Set;
import edu.udel.cis.vsl.civl.model.IF.CIVLFunction;
import edu.udel.cis.vsl.civl.model.IF.CIVLSource;
import edu.udel.cis.vsl.civl.model.IF.Model;
import edu.udel.cis.vsl.civl.model.IF.ModelFactory;
import edu.udel.cis.vsl.civl.model.IF.statement.MallocStatement;
import edu.udel.cis.vsl.civl.model.IF.type.CIVLType;
import edu.udel.cis.vsl.civl.model.IF.variable.Variable;
/**
* A model of a Chapel program.
*
* @author Timothy K. Zirkel (zirkel)
*
*/
public class CommonModel extends CommonSourceable implements Model {
private LinkedList<CIVLFunction> functions;
private CIVLFunction system;
private ModelFactory modelFactory;
private String name = "";
private Map<String, Variable> externVariables;
private CIVLType queueType;
private CIVLType messageType;
private CIVLType commType;
private ArrayList<MallocStatement> mallocStatements;
/**
* A model of a Chapel program.
*
* @param factory
* The ModelFactory responsible for creating this model.
* @param system
* The designated outermost function, called "System."
*/
public CommonModel(CIVLSource source, ModelFactory factory, CIVLFunction system) {
super(source);
this.modelFactory = factory;
this.system = system;
functions = new LinkedList<CIVLFunction>();
functions.add(system);
}
/**
* A model of a CIVL program.
*
* @param factory
* The ModelFactory responsible for creating this model.
* @param system
* The designated outermost function, called "System."
* @param functions
* The set of all functions in the model, including "System."
*/
public CommonModel(CIVLSource source, ModelFactory factory,
CIVLFunction system, Set<CIVLFunction> functions) {
super(source);
this.modelFactory = factory;
this.system = system;
this.functions = new LinkedList<CIVLFunction>(functions);
}
/**
* @return The model factory that created this model.
*/
public ModelFactory factory() {
return modelFactory;
}
/**
* @param name
* The name of this model.
*/
public void setName(String name) {
this.name = name;
}
/**
* @return The name of this model.
*/
public String name() {
return name;
}
/**
* @return The set of all functions in the model.
*/
public Set<CIVLFunction> functions() {
return new HashSet<CIVLFunction>(functions);
}
/**
* @return The designated outermost function "System."
*/
public CIVLFunction system() {
return system;
}
/**
* @param functions
* The set of all functions in the model.
*/
public void setFunctions(Set<CIVLFunction> functions) {
this.functions = new LinkedList<CIVLFunction>(functions);
}
/**
* @param system
* The designated outermost function "System."
*/
public void setSystem(CIVLFunction system) {
this.system = system;
}
/**
* @param function
* The function to be added to the model.
*/
public void addFunction(CIVLFunction function) {
functions.add(function);
}
/**
* @param queueType The queue type used by this model.
*/
public void setQueueType(CIVLType queueType) {
this.queueType = queueType;
}
/**
* @param messageType The message type used by this model.
*/
public void setMessageType(CIVLType messageType) {
this.messageType = messageType;
}
/**
* @param commType The comm type used by this model.
*/
public void setCommType(CIVLType commType) {
this.commType = commType;
}
/**
* Get a function based on its name.
*
* @param name
* The name of the function.
* @return The function with the given name. Null if not found.
*/
public CIVLFunction function(String name) {
for (CIVLFunction f : functions) {
if (f.name().name().equals(name)) {
return f;
}
}
return null;
}
/**
* Print the model.
*
* @param out
* The PrintStream used to print the model.
*/
public void print(PrintStream out) {
out.println("Model");
for (CIVLFunction function : functions) {
function.print(" | ", out);
}
out.flush();
}
/**
* @param externVariables
* Map of names to variables for all extern variables used in
* this model.
*/
public void setExternVariables(Map<String, Variable> externVariables) {
this.externVariables = externVariables;
}
/**
* @return Map of names to variables for all extern variables used in this
* model.
*/
public Map<String, Variable> externVariables() {
return externVariables;
}
public void setMallocStatements(ArrayList<MallocStatement> mallocStatements) {
this.mallocStatements=mallocStatements;
}
@Override
public int getNumMallocs() {
return mallocStatements.size();
}
@Override
public MallocStatement getMalloc(int index) {
return mallocStatements.get(index);
}
@Override
public CIVLType queueType() {
return queueType;
}
@Override
public CIVLType mesageType() {
return messageType;
}
@Override
public CIVLType commType() {
return commType;
}
}