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.
165 lines
5.1 KiB
165 lines
5.1 KiB
#ifndef STORM_PARSER_GSPNPARSER_H_
|
|
#define STORM_PARSER_GSPNPARSER_H_
|
|
|
|
#include <string>
|
|
|
|
#include <xercesc/parsers/XercesDOMParser.hpp>
|
|
#include <xercesc/util/XMLString.hpp>
|
|
|
|
#include "src/storage/gspn/GSPN.h"
|
|
|
|
namespace storm {
|
|
namespace parser {
|
|
|
|
/* Parses a pnml-file to a gspn.
|
|
IMPORTANT: The names of places, transitions and arcs must differ from each other.
|
|
*/
|
|
class GspnParser {
|
|
public:
|
|
|
|
/*!
|
|
* Parses the given file into the GSPN.
|
|
*
|
|
* @param filename The name of the file to parse.
|
|
* @return The resulting GSPN.
|
|
*/
|
|
storm::gspn::GSPN const& parse(std::string const& filename);
|
|
private:
|
|
|
|
/*!
|
|
* Traverse the root element.
|
|
*
|
|
* @param element The root element of the DOM object.
|
|
*/
|
|
void traversePnmlElement(xercesc::DOMElement const* const element);
|
|
|
|
/*!
|
|
* Traverse a net or page node.
|
|
*
|
|
* @param node The net or page node.
|
|
*/
|
|
void traverseNetOrPage(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse a place node.
|
|
*
|
|
* @param node The place node.
|
|
*/
|
|
void traversePlace(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse a transition node.
|
|
*
|
|
* @param node The transition node.
|
|
*/
|
|
void traverseTransition(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse an arc node.
|
|
*
|
|
* @param node The arc node.
|
|
*/
|
|
void traverseArc(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse an initial marking node.
|
|
*
|
|
* @param node the initial marking node.
|
|
* @return The number of initial tokens.
|
|
*/
|
|
uint_fast64_t traverseInitialMarking(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse a capacity node.
|
|
*
|
|
* @param node The capacity node.
|
|
* @return The capacity for the place.
|
|
*/
|
|
int_fast64_t traverseCapacity(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse a inscription node.
|
|
*
|
|
* @param node The inscription node.
|
|
* @return The multiplicty for the arc.
|
|
*/
|
|
uint_fast64_t traverseMultiplicity(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse a rate node.
|
|
*
|
|
* @param node The rate node.
|
|
* @return The rate or weight of the transition.
|
|
*/
|
|
std::string traverseTransitionValue(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse a timed node.
|
|
*
|
|
* @param node The timed node.
|
|
* @return False if the tranisition is immediate
|
|
*/
|
|
bool traverseTransitionType(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Traverse a type node.
|
|
*
|
|
* @param node The type node.
|
|
* @return Returns a string with the arc type.
|
|
*/
|
|
std::string traverseArcType(xercesc::DOMNode const* const node);
|
|
|
|
/**
|
|
* Traverse a priority node.
|
|
* @param node The priority node.
|
|
* @return Returns the priority of the transition.
|
|
*/
|
|
uint_fast64_t traversePriority(xercesc::DOMNode const* const node);
|
|
|
|
/*!
|
|
* Gives the name of the current node.
|
|
*
|
|
* @param node The node.
|
|
* @return The name of the node.
|
|
*/
|
|
std::string getName(xercesc::DOMNode* node);
|
|
|
|
/*!
|
|
* Transforms the given XML String to a std::string.
|
|
*
|
|
* @param xmlString The given String in the XML format
|
|
* @return The corresponding std::string.
|
|
*/
|
|
static std::string XMLtoString(const XMLCh* xmlString);
|
|
|
|
// the constructed gspn
|
|
storm::gspn::GSPN gspn;
|
|
|
|
// contains the id for a new node
|
|
uint_fast64_t newNode = 0;
|
|
|
|
// default value for initial tokens
|
|
uint_fast64_t defaultNumberOfInitialTokens = 0;
|
|
|
|
// default value for capacities
|
|
int_fast64_t defaultCapacity = -1;
|
|
|
|
// default value for the transition type (false == immediate transition)
|
|
bool defaultTransitionType = false;
|
|
|
|
// default value for the transition weight or rate
|
|
std::string defaultTransitionValue = "1"; // TODO set to 0
|
|
|
|
// default value for the arc type
|
|
std::string defaultArcType = "normal";
|
|
|
|
// default multiplicity for arcs
|
|
uint_fast64_t defaultMultiplicity = 1;
|
|
|
|
//default priority for transitions
|
|
uint_fast64_t defaultPriority = 0;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //STORM_PARSER_GSPNPARSER_H_
|