use of de.hpi.bpt.scylla.model.process.ProcessModel in project scylla by bptlab.
the class DateTimeUtils method getTaskTerminationTime.
/**
* Calculates the relative end time of a task. Consideres timetables of resources instances. If any resource
* instance is idle, the duration is extended by the idle time.
*
* @param timeSpan
* the original duration of the task without any interruptions
* @param presentTime
* current simulation time
* @param tuple
* resource instances assigned to the task
* @param event
* source event (for logging purposes)
* @return the end time of the task
*/
public static TimeInstant getTaskTerminationTime(TimeSpan timeSpan, TimeInstant presentTime, ResourceObjectTuple tuple, ScyllaEvent event) {
SimulationModel model = (SimulationModel) event.getModel();
ProcessInstance processInstance = event.getProcessInstance();
ProcessModel processModel = processInstance.getProcessModel();
String source = event.getSource();
String taskName = event.getDisplayName();
int nodeId = event.getNodeId();
String processScopeNodeId = SimulationUtils.getProcessScopeNodeId(processModel, nodeId);
Set<String> resources = new HashSet<String>();
Set<ResourceObject> resourceObjects = tuple.getResourceObjects();
for (ResourceObject res : resourceObjects) {
String resourceName = res.getResourceType() + "_" + res.getId();
resources.add(resourceName);
}
// start
long duration = timeSpan.getTimeRounded(timeUnit);
if (duration == 0) {
return presentTime;
}
ZonedDateTime dateTime = DateTimeUtils.getDateTime(presentTime);
List<TimetableItem> timetable = tuple.getSharedTimetable();
if (timetable == null) {
return new TimeInstant(presentTime.getTimeRounded(timeUnit) + duration);
}
Integer index = null;
for (int i = 0; i < timetable.size(); i++) {
TimetableItem item = timetable.get(i);
if (isWithin(dateTime, item)) {
index = i;
break;
}
}
long timePassed = 0;
while (timePassed < duration) {
TimetableItem item = timetable.get(index);
DayOfWeek untilWeekday = item.getWeekdayTo();
LocalTime untilTime = item.getEndTime();
ZonedDateTime dateTimeUntilEnd = getNextOrSameZonedDateTime(dateTime, untilWeekday, untilTime);
long durationUntilEnd = chronoUnit.between(dateTime, dateTimeUntilEnd);
long amountToAdd;
if (timePassed + durationUntilEnd >= duration) {
// task completes in current timetable item
amountToAdd = duration - timePassed;
} else {
// until end of timetable item
amountToAdd = durationUntilEnd;
}
timePassed += amountToAdd;
dateTime = dateTime.plus(amountToAdd, chronoUnit);
if (timePassed + durationUntilEnd < duration) {
// task is not completed in current timetable item, so jump to the start of the next timetable item
if (model.isOutputLoggingOn()) {
// log idle during use
ResourceStatus status = ResourceStatus.IN_USE_IDLE;
long timeRelativeToStart = getTimeInstant(dateTime).getTimeRounded(timeUnit);
ResourceInfo info = new ResourceInfo(timeRelativeToStart, status, processInstance, nodeId);
for (ResourceObject obj : tuple.getResourceObjects()) {
String resourceType = obj.getResourceType();
String resourceId = obj.getId();
model.addResourceInfo(resourceType, resourceId, info);
}
ProcessNodeTransitionType transition = ProcessNodeTransitionType.PAUSE;
ProcessNodeInfo nodeInfo = new ProcessNodeInfo(nodeId, processScopeNodeId, source, timeRelativeToStart, taskName, resources, transition);
model.addNodeInfo(processModel, processInstance, nodeInfo);
}
index++;
if (index == timetable.size()) {
index = 0;
}
TimetableItem nextItem = timetable.get(index);
untilWeekday = nextItem.getWeekdayFrom();
untilTime = nextItem.getBeginTime();
dateTime = getNextZonedDateTime(dateTime, untilWeekday, untilTime);
if (model.isOutputLoggingOn()) {
// log back to work
ResourceStatus status = ResourceStatus.IN_USE;
long timeRelativeToStart = getTimeInstant(dateTime).getTimeRounded(timeUnit);
ResourceInfo info = new ResourceInfo(timeRelativeToStart, status, processInstance, nodeId);
for (ResourceObject obj : tuple.getResourceObjects()) {
String resourceType = obj.getResourceType();
String resourceId = obj.getId();
model.addResourceInfo(resourceType, resourceId, info);
}
ProcessNodeTransitionType transition = ProcessNodeTransitionType.RESUME;
ProcessNodeInfo nodeInfo = new ProcessNodeInfo(nodeId, processScopeNodeId, source, timeRelativeToStart, taskName, resources, transition);
model.addNodeInfo(processModel, processInstance, nodeInfo);
}
}
}
TimeInstant timeInstant = getTimeInstant(dateTime);
return timeInstant;
}
use of de.hpi.bpt.scylla.model.process.ProcessModel in project scylla by bptlab.
the class SimulationManager method run.
/**
* parses input, runs DesmoJ simulation experiment, writes BPS output logs
*/
public String run() {
try {
SAXBuilder builder = new SAXBuilder();
if (globalConfigurationFilename == null || globalConfigurationFilename.isEmpty()) {
throw new ScyllaValidationException("No global configuration provided.");
} else {
// parse global configuration XML
Document gcDoc = builder.build(globalConfigurationFilename);
Element gcRootElement = gcDoc.getRootElement();
GlobalConfigurationParser globalConfigurationParser = new GlobalConfigurationParser(this);
globalConfiguration = globalConfigurationParser.parse(gcDoc.getRootElement());
String fileNameWithoutExtension = // filename.lastIndexOf("\\") +
globalConfigurationFilename.substring(// 1,
globalConfigurationFilename.lastIndexOf(Scylla.FILEDELIM) + 1, globalConfigurationFilename.lastIndexOf(".xml"));
globalConfiguration.setFileNameWithoutExtension(fileNameWithoutExtension);
// plugins to parse global configuration
GlobalConfigurationParserPluggable.runPlugins(this, globalConfiguration, gcRootElement);
DateTimeUtils.setZoneId(globalConfiguration.getZoneId());
}
CommonProcessElementsParser cpeParser = new CommonProcessElementsParser(this);
for (String filename : processModelFilenames) {
Document pmDoc = builder.build(filename);
Element pmRootElement = pmDoc.getRootElement();
// parse common process elements from XML (BPMN)
CommonProcessElements commonProcessElementsFromFile = cpeParser.parse(pmRootElement);
String fileNameWithoutExtension = // filename.lastIndexOf("\\") + 1,
filename.substring(filename.lastIndexOf(Scylla.FILEDELIM) + 1, filename.lastIndexOf(".bpmn"));
commonProcessElementsFromFile.setBpmnFileNameWithoutExtension(fileNameWithoutExtension);
// plugins to parse common process elements
CommonProcessElementsParserPluggable.runPlugins(this, commonProcessElementsFromFile, pmRootElement);
// parse process model(s) from XML (BPMN)
ProcessModelParser pmParser = new ProcessModelParser(this);
pmParser.setCommonProcessElements(commonProcessElementsFromFile);
ProcessModel processModelFromFile = pmParser.parse(pmDoc.getRootElement());
String processId = processModelFromFile.getId();
if (processModels.containsKey(processId)) {
throw new ScyllaValidationException("Duplicate process model with id " + processId + ".");
}
// plugins to parse process model(s)
ProcessModelParserPluggable.runPlugins(this, processModelFromFile, pmRootElement);
processModels.put(processId, processModelFromFile);
commonProcessElements.put(processId, commonProcessElementsFromFile);
}
SimulationConfigurationParser simParser = new SimulationConfigurationParser(this);
// parse each simulation configuration XML
for (String filename : simulationConfigurationFilenames) {
Document scDoc = builder.build(filename);
SimulationConfiguration simulationConfigurationFromFile = simParser.parse(scDoc.getRootElement());
String processId = simulationConfigurationFromFile.getProcessModel().getId();
if (simulationConfigurations.containsKey(processId)) {
throw new ScyllaValidationException("Multiple simulation configurations for process with id " + processId + ".");
}
// plugins to parse simulation configuration
SimulationConfigurationParserPluggable.runPlugins(this, simulationConfigurationFromFile, scDoc);
simulationConfigurations.put(processId, simulationConfigurationFromFile);
}
} catch (JDOMException | IOException | ScyllaValidationException e) {
DebugLogger.error(e.getMessage());
e.printStackTrace();
}
// TODO validate resources in process models (i.e. check if they are all covered in resource data)
TimeUnit epsilon = TimeUnit.SECONDS;
DateTimeUtils.setReferenceTimeUnit(epsilon);
String experimentName = Long.toString((new Date()).getTime());
Experiment.setEpsilon(epsilon);
Experiment exp = new Experiment(experimentName, experimentOutputFolder);
exp.setShowProgressBar(false);
// XXX each simulation configuration may have its own seed
Long randomSeed = globalConfiguration.getRandomSeed();
if (randomSeed != null) {
exp.setSeedGenerator(randomSeed);
} else {
exp.setSeedGenerator((new Random()).nextLong());
}
SimulationModel sm = new SimulationModel(null, globalConfiguration, commonProcessElements, processModels, simulationConfigurations, enableBpsLogging, enableDesLogging);
sm.connectToExperiment(exp);
int lambda = 1;
if (sm.getEndDateTime() != null) {
// have to use time which is slightly after intended end time (epsilon)
// otherwise the AbortProcessSimulationEvent(s) may not fire
long simulationDuration = DateTimeUtils.getDuration(sm.getStartDateTime(), sm.getEndDateTime());
TimeInstant simulationTimeInstant = new TimeInstant(simulationDuration + lambda, epsilon);
exp.stop(simulationTimeInstant);
exp.tracePeriod(new TimeInstant(0), simulationTimeInstant);
exp.debugPeriod(new TimeInstant(0), simulationTimeInstant);
} else {
exp.traceOn(new TimeInstant(0));
exp.debugOn(new TimeInstant(0));
}
if (!enableDesLogging) {
exp.debugOff(new TimeInstant(0));
exp.traceOff(new TimeInstant(0));
}
exp.start();
exp.report();
exp.finish();
try {
// log process execution
// log resources, process, tasks
StringBuilder strb = new StringBuilder(globalConfigurationFilename.substring(0, globalConfigurationFilename.lastIndexOf(Scylla.FILEDELIM) + 1));
outputPath = strb.substring(0, strb.lastIndexOf(Scylla.FILEDELIM) + 1) + "output_" + new SimpleDateFormat("yy_MM_dd_HH_mm_ss").format(new Date()) + Scylla.FILEDELIM;
File outputPathFolder = new File(outputPath);
if (!outputPathFolder.exists())
outputPathFolder.mkdir();
OutputLoggerPluggable.runPlugins(sm, outputPath);
} catch (IOException e) {
e.printStackTrace();
}
return outputPath;
}
use of de.hpi.bpt.scylla.model.process.ProcessModel in project scylla by bptlab.
the class SimulationConfigurationParser method parseSimulationConfiguration.
private SimulationConfiguration parseSimulationConfiguration(Element sim, Namespace simNamespace, String processIdFromSimElement, ProcessModel processModel, Long randomSeed) throws ScyllaValidationException {
Map<String, Resource> resources = simulationEnvironment.getGlobalConfiguration().getResources();
if (processModel == null) {
throw new ScyllaValidationException("Simulation configuration is for (sub)process '" + processIdFromSimElement + "', which is not found in the simulation environment.");
}
String processRef = processIdFromSimElement;
String simId = null;
Integer numberOfProcessInstances = null;
ZonedDateTime startDateTime = null;
ZonedDateTime endDateTime = null;
if (processModel.getParent() == null) {
List<Element> startEvents = sim.getChildren("startEvent", simNamespace);
if (startEvents.size() == 0)
throw new ScyllaValidationException("No definition of start event in simulation scenario.");
else {
for (Element el : startEvents) {
// it is sufficient if at least one of the start events has an arrival rate defined
if (el.getChild("arrivalRate", simNamespace) != null) {
break;
}
throw new ScyllaValidationException("No arrival rate defined in any of the start events in simulation scenario.");
}
}
// store identifier of simulation configuration only if it is for top level process
simId = sim.getAttributeValue("id");
numberOfProcessInstances = Integer.valueOf(sim.getAttributeValue("processInstances"));
startDateTime = DateTimeUtils.parse(sim.getAttributeValue("startDateTime"));
String endDateTimeString = sim.getAttributeValue("endDateTime");
if (endDateTimeString != null) {
endDateTime = DateTimeUtils.parse(endDateTimeString);
}
String randomSeedString = sim.getAttributeValue("randomSeed");
if (randomSeedString != null) {
randomSeed = Long.valueOf(sim.getAttributeValue("randomSeed"));
DebugLogger.log("Random seed for simulation configuration " + processRef + ": " + randomSeed);
}
}
Map<Integer, TimeDistributionWrapper> arrivalRates = new HashMap<Integer, TimeDistributionWrapper>();
Map<Integer, TimeDistributionWrapper> durations = new HashMap<Integer, TimeDistributionWrapper>();
Map<Integer, TimeDistributionWrapper> setUpDurations = new HashMap<Integer, TimeDistributionWrapper>();
Map<Integer, Set<ResourceReference>> resourceReferences = new HashMap<Integer, Set<ResourceReference>>();
// gateways and events
// Map<Integer, BranchingBehavior> branchingBehaviors = new HashMap<Integer, BranchingBehavior>();
Map<Integer, SimulationConfiguration> configurationsOfSubProcesses = new HashMap<Integer, SimulationConfiguration>();
// take resource definitions from process model
Map<Integer, Set<String>> resourceReferencesFromProcessModel = processModel.getResourceReferences();
for (Integer nodeId : resourceReferencesFromProcessModel.keySet()) {
Set<String> resourceRefFromModel = resourceReferencesFromProcessModel.get(nodeId);
Set<ResourceReference> resourceRefs = new HashSet<ResourceReference>();
for (String resourceId : resourceRefFromModel) {
int amount = 1;
Map<String, String> assignmentDefinition = new HashMap<String, String>();
ResourceReference resourceReference = new ResourceReference(resourceId, amount, assignmentDefinition);
resourceRefs.add(resourceReference);
}
resourceReferences.put(nodeId, resourceRefs);
}
for (Element el : sim.getChildren()) {
String elementName = el.getName();
if (isKnownElement(elementName)) {
if (elementName.equals("resources")) {
// in parent process
continue;
}
String identifier = el.getAttributeValue("id");
if (identifier == null) {
DebugLogger.log("Warning: Simulation configuration definition element '" + elementName + "' does not have an identifier, skip.");
// no matching element in process, so skip definition
continue;
}
Integer nodeId = processModel.getIdentifiersToNodeIds().get(identifier);
if (nodeId == null) {
DebugLogger.log("Simulation configuration definition for process element '" + identifier + "', but not available in process, skip.");
// no matching element in process, so skip definition
continue;
}
if (elementName.equals("startEvent")) {
Element elem = el.getChild("arrivalRate", simNamespace);
if (elem != null) {
TimeDistributionWrapper distribution = getTimeDistributionWrapper(elem, simNamespace);
arrivalRates.put(nodeId, distribution);
}
} else if (elementName.equals("task") || elementName.endsWith("Task") || elementName.equals("subProcess")) {
Element durationElem = el.getChild("duration", simNamespace);
if (durationElem != null) {
TimeDistributionWrapper distribution = getTimeDistributionWrapper(durationElem, simNamespace);
durations.put(nodeId, distribution);
}
Element setUpDurationElem = el.getChild("setUpDuration", simNamespace);
if (setUpDurationElem != null) {
TimeDistributionWrapper distribution = getTimeDistributionWrapper(setUpDurationElem, simNamespace);
setUpDurations.put(nodeId, distribution);
}
Element resourcesElem = el.getChild("resources", simNamespace);
if (resourcesElem != null) {
List<Element> resourceElements = resourcesElem.getChildren("resource", simNamespace);
// process model)
if (resourceElements.size() > 0) {
Set<ResourceReference> resourceRefs = new HashSet<ResourceReference>();
Set<String> resourceIdentifiers = new HashSet<String>();
for (Element elem : resourceElements) {
String resourceId = elem.getAttributeValue("id");
if (resources.get(resourceId) == null) {
throw new ScyllaValidationException("Simulation configuration " + simId + " refers to unknown resource " + resourceId + ".");
}
if (resourceIdentifiers.contains(resourceId)) {
throw new ScyllaValidationException("Simulation configuration " + simId + " defines multiple resources for task / subprocess " + identifier);
}
resourceIdentifiers.add(resourceId);
// XXX implementation currently supports more than one instance per resource. however
// BPMN standard does not support that.
// int amount = 1;
int amount = Integer.parseInt(elem.getAttributeValue("amount"));
Map<String, String> assignmentDefinition = new HashMap<String, String>();
Element assignmentDefinitionElement = elem.getChild("assignmentDefinition", simNamespace);
if (assignmentDefinitionElement != null) {
List<Element> adElements = assignmentDefinitionElement.getChildren(null, simNamespace);
for (Element adElem : adElements) {
assignmentDefinition.put(adElem.getName(), adElem.getText());
}
}
ResourceReference resourceReference = new ResourceReference(resourceId, amount, assignmentDefinition);
resourceRefs.add(resourceReference);
}
resourceReferences.put(nodeId, resourceRefs);
}
}
if (elementName.equals("subProcess")) {
ProcessModel subProcess = processModel.getSubProcesses().get(nodeId);
String subProcessIdFromSimElement = el.getAttributeValue("id");
SimulationConfiguration simulationConfiguration = parseSimulationConfiguration(el, simNamespace, subProcessIdFromSimElement, subProcess, randomSeed);
configurationsOfSubProcesses.put(nodeId, simulationConfiguration);
}
} else {
DebugLogger.log("Element " + el.getName() + " of simulation scenario is expected to be known, but not supported.");
}
} else {
DebugLogger.log("Element " + el.getName() + " of simulation scenario not supported.");
}
}
SimulationConfiguration simulationConfiguration = new SimulationConfiguration(simId, processModel, numberOfProcessInstances, startDateTime, endDateTime, randomSeed, arrivalRates, durations, setUpDurations, resourceReferences, configurationsOfSubProcesses);
return simulationConfiguration;
}
use of de.hpi.bpt.scylla.model.process.ProcessModel in project scylla by bptlab.
the class SimulationConfigurationParser method parse.
@Override
public SimulationConfiguration parse(Element rootElement) throws ScyllaValidationException {
Namespace simNamespace = rootElement.getNamespace();
List<Element> simElements = rootElement.getChildren("simulationConfiguration", simNamespace);
if (simElements.isEmpty()) {
throw new ScyllaValidationException("No simulation configuration in file.");
} else if (simElements.size() > 1) {
throw new ScyllaValidationException("Multiple simulation configurations in file. If you want to simulate mulitple scenarios, then store them in separate simulation configuration files.");
}
Element sim = simElements.get(0);
String processRef = sim.getAttributeValue("processRef");
ProcessModel processModel = simulationEnvironment.getProcessModels().get(processRef);
Long randomSeed = simulationEnvironment.getGlobalConfiguration().getRandomSeed();
SimulationConfiguration simulationConfiguration = parseSimulationConfiguration(sim, simNamespace, processRef, processModel, randomSeed);
// }
return simulationConfiguration;
}
use of de.hpi.bpt.scylla.model.process.ProcessModel in project scylla by bptlab.
the class BatchPluginUtils method setClusterToTerminated.
void setClusterToTerminated(ProcessInstance processInstance, int nodeId) {
ProcessModel processModel = processInstance.getProcessModel();
String processId = processModel.getId();
if (batchClusters.containsKey(processId)) {
Map<Integer, List<BatchCluster>> batchClustersOfProcess = batchClusters.get(processId);
if (batchClustersOfProcess.containsKey(nodeId)) {
List<BatchCluster> clusters = batchClustersOfProcess.get(nodeId);
for (BatchCluster bc : clusters) {
List<ProcessInstance> clusterProcessInstances = bc.getProcessInstances();
if (bc.getState() == BatchClusterState.RUNNING && clusterProcessInstances.contains(processInstance)) {
bc.setState(BatchClusterState.TERMINATED);
// return clusters.remove(bc);
}
}
}
}
// return false;
}
Aggregations