#include <config.h>
#include <string>
#include <utils/xml/XMLSubSys.h>
#include <utils/common/StdDefs.h>
#include <utils/common/MsgHandler.h>
#include <utils/options/OptionsCont.h>
#include <utils/iodevices/OutputDevice.h>
#include "RandHelper.h"
#include "SystemFrame.h"
void
SystemFrame::addConfigurationOptions(OptionsCont& oc) {
oc.addOptionSubTopic("Configuration");
oc.doRegister("configuration-file", 'c', new Option_FileName());
oc.addSynonyme("configuration-file", "configuration");
oc.addDescription("configuration-file", "Configuration", TL("Loads the named config on startup"));
oc.addXMLDefault("configuration-file");
oc.doRegister("save-configuration", 'C', new Option_FileName());
oc.addSynonyme("save-config", "save-configuration");
oc.addDescription("save-configuration", "Configuration", TL("Saves current configuration into FILE"));
oc.doRegister("save-configuration.relative", new Option_Bool(false));
oc.addSynonyme("save-config.relative", "save-configuration.relative");
oc.addDescription("save-configuration.relative", "Configuration", TL("Enforce relative paths when saving the configuration"));
oc.doRegister("save-template", new Option_FileName());
oc.addDescription("save-template", "Configuration", TL("Saves a configuration template (empty) into FILE"));
oc.doRegister("save-schema", new Option_FileName());
oc.addDescription("save-schema", "Configuration", TL("Saves the configuration schema into FILE"));
oc.doRegister("save-commented", new Option_Bool(false));
oc.addSynonyme("save-commented", "save-template.commented");
oc.addDescription("save-commented", "Configuration", TL("Adds comments to saved template, configuration, or schema"));
}
void
SystemFrame::addReportOptions(OptionsCont& oc) {
oc.addOptionSubTopic("Report");
oc.doRegister("verbose", 'v', new Option_Bool(false));
oc.addDescription("verbose", "Report", TL("Switches to verbose output"));
oc.doRegister("print-options", new Option_Bool(false));
oc.addDescription("print-options", "Report", TL("Prints option values before processing"));
oc.doRegister("help", '?', new Option_BoolExtended(false));
oc.addDescription("help", "Report", TL("Prints this screen or selected topics"));
oc.doRegister("version", 'V', new Option_Bool(false));
oc.addDescription("version", "Report", TL("Prints the current version"));
oc.doRegister("xml-validation", 'X', new Option_String("local"));
oc.addDescription("xml-validation", "Report", "Set schema validation scheme of XML inputs (\"never\", \"local\", \"auto\" or \"always\")");
if (oc.exists("net-file")) {
oc.doRegister("xml-validation.net", new Option_String("never"));
oc.addDescription("xml-validation.net", "Report", "Set schema validation scheme of SUMO network inputs (\"never\", \"local\", \"auto\" or \"always\")");
}
if (oc.exists("route-files")) {
oc.doRegister("xml-validation.routes", new Option_String("local"));
oc.addDescription("xml-validation.routes", "Report", "Set schema validation scheme of SUMO route inputs (\"never\", \"local\", \"auto\" or \"always\")");
}
oc.doRegister("no-warnings", 'W', new Option_Bool(false));
oc.addSynonyme("no-warnings", "suppress-warnings", true);
oc.addDescription("no-warnings", "Report", TL("Disables output of warnings"));
oc.doRegister("aggregate-warnings", new Option_Integer(-1));
oc.addDescription("aggregate-warnings", "Report", TL("Aggregate warnings of the same type whenever more than INT occur"));
oc.doRegister("log", 'l', new Option_FileName());
oc.addSynonyme("log", "log-file");
oc.addDescription("log", "Report", TL("Writes all messages to FILE (implies verbose)"));
oc.doRegister("message-log", new Option_FileName());
oc.addDescription("message-log", "Report", TL("Writes all non-error messages to FILE (implies verbose)"));
oc.doRegister("error-log", new Option_FileName());
oc.addDescription("error-log", "Report", TL("Writes all warnings and errors to FILE"));
oc.doRegister("log.timestamps", new Option_Bool(false));
oc.addDescription("log.timestamps", "Report", TL("Writes timestamps in front of all messages"));
oc.doRegister("log.processid", new Option_Bool(false));
oc.addDescription("log.processid", "Report", TL("Writes process ID in front of all messages"));
oc.doRegister("language", new Option_String(gLanguage));
oc.addDescription("language", "Report", TL("Language to use in messages"));
oc.doRegister("write-license", new Option_Bool(false));
oc.addDescription("write-license", "Output", TL("Include license info into every output file"));
oc.doRegister("write-metadata", new Option_Bool(false));
oc.addDescription("write-metadata", "Output", TL("Write parsable metadata (configuration etc.) instead of comments"));
oc.doRegister("output-prefix", new Option_String());
oc.addDescription("output-prefix", "Output", TL("Prefix which is applied to all output files. The special string 'TIME' is replaced by the current time."));
oc.doRegister("precision", new Option_Integer(2));
oc.addDescription("precision", "Output", TL("Defines the number of digits after the comma for floating point output"));
oc.doRegister("precision.geo", new Option_Integer(6));
oc.addDescription("precision.geo", "Output", TL("Defines the number of digits after the comma for lon,lat output"));
oc.doRegister("output.compression", new Option_String());
oc.addDescription("output.compression", "Output", TL("Defines the standard compression algorithm (currently only for parquet output)"));
oc.doRegister("output.format", new Option_String("xml"));
oc.addDescription("output.format", "Output", TL("Defines the standard output format if not derivable from the file name ('xml', 'csv', 'parquet')"));
oc.doRegister("output.column-header", new Option_String("tag"));
oc.addDescription("output.column-header", "Output", TL("How to derive column headers from attribute names ('none', 'tag', 'auto', 'plain')"));
oc.doRegister("output.column-separator", new Option_String(";"));
oc.addDescription("output.column-separator", "Output", TL("Separator in CSV output"));
oc.doRegister("human-readable-time", 'H', new Option_Bool(false));
oc.addDescription("human-readable-time", "Output", TL("Write time values as hour:minute:second or day:hour:minute:second rather than seconds"));
}
bool
SystemFrame::checkOptions(OptionsCont& oc) {
gPrecision = oc.getInt("precision");
if (oc.exists("emission-output.precision")) {
gPrecisionEmissions = oc.getInt("emission-output.precision");
}
gPrecisionGeo = oc.getInt("precision.geo");
gHumanReadableTime = oc.getBool("human-readable-time");
if (oc.exists("weights.random-factor")) {
gWeightsRandomFactor = oc.getFloat("weights.random-factor");
}
if (oc.exists("persontrip.walk-opposite-factor")) {
gWeightsWalkOppositeFactor = oc.getFloat("persontrip.walk-opposite-factor");
}
if (oc.exists("xml-validation.routes") && oc.isDefault("xml-validation.routes") && !oc.isDefault("xml-validation")) {
oc.setDefault("xml-validation.routes", oc.getString("xml-validation"));
}
if ((oc.exists("ignore-errors") && oc.getBool("ignore-errors")) || gSimulation) {
gIgnoreUnknownVClass = true;
}
std::cout << std::setprecision(gPrecision);
return true;
}
void
SystemFrame::close() {
MsgHandler::getWarningInstance()->clear();
OutputDevice::closeAll();
XMLSubSys::close();
OptionsCont::getOptions().clear();
MsgHandler::cleanupOnEnd();
}