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.
135 lines
5.2 KiB
135 lines
5.2 KiB
#include "storm-gspn/builder/ExplicitGspnModelBuilder.h"
|
|
#include "storm-gspn/parser/GspnParser.h"
|
|
#include "storm-gspn/storage/gspn/GSPN.h"
|
|
#include "storm-gspn/storage/gspn/GspnBuilder.h"
|
|
#include "storm-gspn/builder/JaniGSPNBuilder.h"
|
|
#include "storm-gspn/api/storm-gspn.h"
|
|
|
|
#include "storm/exceptions/BaseException.h"
|
|
#include "storm/exceptions/WrongFormatException.h"
|
|
|
|
#include "storm/utility/macros.h"
|
|
#include "storm/utility/initialize.h"
|
|
|
|
#include "api/storm.h"
|
|
|
|
#include "storm-parsers/api/storm-parsers.h"
|
|
#include "storm-cli-utilities/cli.h"
|
|
|
|
#include "storm-parsers/parser/FormulaParser.h"
|
|
|
|
#include "storm/storage/expressions/ExpressionManager.h"
|
|
#include "storm/storage/jani/Model.h"
|
|
#include "storm/storage/jani/JSONExporter.h"
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include "storm/exceptions/FileIoException.h"
|
|
|
|
#include "storm/settings/modules/GeneralSettings.h"
|
|
#include "storm/settings/modules/IOSettings.h"
|
|
#include "storm-gspn/settings/modules/GSPNSettings.h"
|
|
#include "storm-gspn/settings/modules/GSPNExportSettings.h"
|
|
#include "storm/settings/modules/CoreSettings.h"
|
|
#include "storm/settings/modules/DebugSettings.h"
|
|
#include "storm-conv/settings/modules/JaniExportSettings.h"
|
|
#include "storm/settings/modules/ResourceSettings.h"
|
|
|
|
|
|
/*!
|
|
* Initialize the settings manager.
|
|
*/
|
|
void initializeSettings() {
|
|
storm::settings::mutableManager().setName("Storm-GSPN", "storm-gspn");
|
|
|
|
// Register all known settings modules.
|
|
storm::settings::addModule<storm::settings::modules::GeneralSettings>();
|
|
storm::settings::addModule<storm::settings::modules::IOSettings>();
|
|
storm::settings::addModule<storm::settings::modules::GSPNSettings>();
|
|
storm::settings::addModule<storm::settings::modules::GSPNExportSettings>();
|
|
storm::settings::addModule<storm::settings::modules::CoreSettings>();
|
|
storm::settings::addModule<storm::settings::modules::DebugSettings>();
|
|
storm::settings::addModule<storm::settings::modules::JaniExportSettings>();
|
|
storm::settings::addModule<storm::settings::modules::ResourceSettings>();
|
|
}
|
|
|
|
|
|
std::unordered_map<std::string, uint64_t> parseCapacitiesList(std::string const& filename) {
|
|
std::unordered_map<std::string, uint64_t> map;
|
|
|
|
std::ifstream stream;
|
|
storm::utility::openFile(filename, stream);
|
|
|
|
std::string line;
|
|
while ( std::getline(stream, line) ) {
|
|
std::vector<std::string> strs;
|
|
boost::split(strs, line, boost::is_any_of("\t "));
|
|
STORM_LOG_THROW(strs.size() == 2, storm::exceptions::WrongFormatException, "Expect key value pairs");
|
|
std::cout << std::stoll(strs[1]) << std::endl;
|
|
map[strs[0]] = std::stoll(strs[1]);
|
|
}
|
|
storm::utility::closeFile(stream);
|
|
return map;
|
|
}
|
|
|
|
|
|
int main(const int argc, const char **argv) {
|
|
try {
|
|
storm::utility::setUp();
|
|
storm::cli::printHeader("Storm-GSPN", argc, argv);
|
|
initializeSettings();
|
|
|
|
bool optionsCorrect = storm::cli::parseOptions(argc, argv);
|
|
if (!optionsCorrect) {
|
|
return -1;
|
|
}
|
|
|
|
// parse gspn from file
|
|
if (!storm::settings::getModule<storm::settings::modules::GSPNSettings>().isGspnFileSet()) {
|
|
return -1;
|
|
}
|
|
|
|
auto parser = storm::parser::GspnParser();
|
|
auto gspn = parser.parse(storm::settings::getModule<storm::settings::modules::GSPNSettings>().getGspnFilename());
|
|
|
|
std::string formulaString = "";
|
|
if (storm::settings::getModule<storm::settings::modules::IOSettings>().isPropertySet()) {
|
|
formulaString = storm::settings::getModule<storm::settings::modules::IOSettings>().getProperty();
|
|
}
|
|
boost::optional<std::set<std::string>> propertyFilter;
|
|
storm::parser::FormulaParser formulaParser(gspn->getExpressionManager());
|
|
std::vector<storm::jani::Property> properties = storm::api::parseProperties(formulaParser, formulaString, propertyFilter);
|
|
|
|
if (!gspn->isValid()) {
|
|
STORM_LOG_ERROR("The gspn is not valid.");
|
|
}
|
|
|
|
if(storm::settings::getModule<storm::settings::modules::GSPNSettings>().isCapacitiesFileSet()) {
|
|
auto capacities = parseCapacitiesList(storm::settings::getModule<storm::settings::modules::GSPNSettings>().getCapacitiesFilename());
|
|
gspn->setCapacities(capacities);
|
|
}
|
|
|
|
storm::api::handleGSPNExportSettings(*gspn, [&](storm::builder::JaniGSPNBuilder const&) { return properties; });
|
|
|
|
delete gspn;
|
|
return 0;
|
|
|
|
//
|
|
// // construct ma
|
|
// auto builder = storm::builder::ExplicitGspnModelBuilder<>();
|
|
// auto ma = builder.translateGspn(gspn, formula);
|
|
//
|
|
// All operations have now been performed, so we clean up everything and terminate.
|
|
storm::utility::cleanUp();
|
|
return 0;
|
|
} catch (storm::exceptions::BaseException const& exception) {
|
|
STORM_LOG_ERROR("An exception caused Storm to terminate. The message of the exception is: " << exception.what());
|
|
return 1;
|
|
} catch (std::exception const& exception) {
|
|
STORM_LOG_ERROR("An unexpected exception occurred and caused Storm to terminate. The message of this exception is: " << exception.what());
|
|
return 2;
|
|
}
|
|
}
|