Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
SystemFrame.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2024 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
20// A set of actions common to all applications
21/****************************************************************************/
22#include <config.h>
23
24#include <string>
25#include <utils/xml/XMLSubSys.h>
30#include "RandHelper.h"
31#include "SystemFrame.h"
32
33
34// ===========================================================================
35// method definitions
36// ===========================================================================
37void
39 oc.addOptionSubTopic("Configuration");
40
41 oc.doRegister("configuration-file", 'c', new Option_FileName());
42 oc.addSynonyme("configuration-file", "configuration");
43 oc.addDescription("configuration-file", "Configuration", TL("Loads the named config on startup"));
44 oc.addXMLDefault("configuration-file");
45
46 oc.doRegister("save-configuration", 'C', new Option_FileName());
47 oc.addSynonyme("save-config", "save-configuration");
48 oc.addDescription("save-configuration", "Configuration", TL("Saves current configuration into FILE"));
49
50 oc.doRegister("save-configuration.relative", new Option_Bool(false));
51 oc.addSynonyme("save-config.relative", "save-configuration.relative");
52 oc.addDescription("save-configuration.relative", "Configuration", TL("Enforce relative paths when saving the configuration"));
53
54 oc.doRegister("save-template", new Option_FileName());
55 oc.addDescription("save-template", "Configuration", TL("Saves a configuration template (empty) into FILE"));
56
57 oc.doRegister("save-schema", new Option_FileName());
58 oc.addDescription("save-schema", "Configuration", TL("Saves the configuration schema into FILE"));
59
60 oc.doRegister("save-commented", new Option_Bool(false));
61 oc.addSynonyme("save-commented", "save-template.commented");
62 oc.addDescription("save-commented", "Configuration", TL("Adds comments to saved template, configuration, or schema"));
63}
64
65
66void
68 oc.addOptionSubTopic("Report");
69
70 oc.doRegister("verbose", 'v', new Option_Bool(false));
71 oc.addDescription("verbose", "Report", TL("Switches to verbose output"));
72
73 oc.doRegister("print-options", new Option_Bool(false));
74 oc.addDescription("print-options", "Report", TL("Prints option values before processing"));
75
76 oc.doRegister("help", '?', new Option_BoolExtended(false));
77 oc.addDescription("help", "Report", TL("Prints this screen or selected topics"));
78
79 oc.doRegister("version", 'V', new Option_Bool(false));
80 oc.addDescription("version", "Report", TL("Prints the current version"));
81
82 oc.doRegister("xml-validation", 'X', new Option_String("local"));
83 oc.addDescription("xml-validation", "Report", "Set schema validation scheme of XML inputs (\"never\", \"local\", \"auto\" or \"always\")");
84
85 if (oc.exists("net-file")) {
86 oc.doRegister("xml-validation.net", new Option_String("never"));
87 oc.addDescription("xml-validation.net", "Report", "Set schema validation scheme of SUMO network inputs (\"never\", \"local\", \"auto\" or \"always\")");
88 }
89
90 if (oc.exists("route-files")) {
91 oc.doRegister("xml-validation.routes", new Option_String("local"));
92 oc.addDescription("xml-validation.routes", "Report", "Set schema validation scheme of SUMO route inputs (\"never\", \"local\", \"auto\" or \"always\")");
93 }
94
95 oc.doRegister("no-warnings", 'W', new Option_Bool(false));
96 oc.addSynonyme("no-warnings", "suppress-warnings", true);
97 oc.addDescription("no-warnings", "Report", TL("Disables output of warnings"));
98
99 oc.doRegister("aggregate-warnings", new Option_Integer(-1));
100 oc.addDescription("aggregate-warnings", "Report", TL("Aggregate warnings of the same type whenever more than INT occur"));
101
102 oc.doRegister("log", 'l', new Option_FileName());
103 oc.addSynonyme("log", "log-file");
104 oc.addDescription("log", "Report", TL("Writes all messages to FILE (implies verbose)"));
105
106 oc.doRegister("message-log", new Option_FileName());
107 oc.addDescription("message-log", "Report", TL("Writes all non-error messages to FILE (implies verbose)"));
108
109 oc.doRegister("error-log", new Option_FileName());
110 oc.addDescription("error-log", "Report", TL("Writes all warnings and errors to FILE"));
111
112 oc.doRegister("log.timestamps", new Option_Bool(false));
113 oc.addDescription("log.timestamps", "Report", TL("Writes timestamps in front of all messages"));
114
115 oc.doRegister("log.processid", new Option_Bool(false));
116 oc.addDescription("log.processid", "Report", TL("Writes process ID in front of all messages"));
117
118 oc.doRegister("language", new Option_String(gLanguage));
119 oc.addDescription("language", "Report", TL("Language to use in messages"));
120
121 oc.doRegister("write-license", new Option_Bool(false));
122 oc.addDescription("write-license", "Output", TL("Include license info into every output file"));
123
124 oc.doRegister("output-prefix", new Option_String());
125 oc.addDescription("output-prefix", "Output", TL("Prefix which is applied to all output files. The special string 'TIME' is replaced by the current time."));
126
127 oc.doRegister("precision", new Option_Integer(2));
128 oc.addDescription("precision", "Output", TL("Defines the number of digits after the comma for floating point output"));
129
130 oc.doRegister("precision.geo", new Option_Integer(6));
131 oc.addDescription("precision.geo", "Output", TL("Defines the number of digits after the comma for lon,lat output"));
132
133 oc.doRegister("human-readable-time", 'H', new Option_Bool(false));
134 oc.addDescription("human-readable-time", "Output", TL("Write time values as hour:minute:second or day:hour:minute:second rather than seconds"));
135}
136
137
138bool
140 gPrecision = oc.getInt("precision");
141 gPrecisionGeo = oc.getInt("precision.geo");
142 gHumanReadableTime = oc.getBool("human-readable-time");
143 if (oc.exists("weights.random-factor")) {
144 gWeightsRandomFactor = oc.getFloat("weights.random-factor");
145 }
146 if (oc.exists("persontrip.walk-opposite-factor")) {
147 gWeightsWalkOppositeFactor = oc.getFloat("persontrip.walk-opposite-factor");
148 }
149 if (oc.exists("xml-validation.routes") && oc.isDefault("xml-validation.routes") && !oc.isDefault("xml-validation")) {
150 oc.setDefault("xml-validation.routes", oc.getString("xml-validation"));
151 }
152 if ((oc.exists("ignore-errors") && oc.getBool("ignore-errors")) || gSimulation) {
154 }
155 std::cout << std::setprecision(gPrecision);
156 return true;
157}
158
159
160void
162 // flush aggregated warnings
164 // close all output devices
166 // close the xml-subsystem
168 // delete build program options
170 // delete messages
172}
173
174
175/****************************************************************************/
#define TL(string)
Definition MsgHandler.h:315
int gPrecision
the precision for floating point outputs
Definition StdDefs.cpp:26
double gWeightsRandomFactor
Definition StdDefs.cpp:32
double gWeightsWalkOppositeFactor
Definition StdDefs.cpp:33
std::string gLanguage
the language for GUI elements and messages
Definition StdDefs.cpp:34
bool gSimulation
Definition StdDefs.cpp:30
bool gHumanReadableTime
Definition StdDefs.cpp:29
bool gIgnoreUnknownVClass
Definition StdDefs.cpp:31
int gPrecisionGeo
Definition StdDefs.cpp:27
static MsgHandler * getWarningInstance()
Returns the instance to add warnings to.
virtual void clear(bool resetInformed=true)
Clears information whether an error occurred previously and print aggregated message summary.
static void cleanupOnEnd()
Removes pending handler.
A storage for options typed value containers)
Definition OptionsCont.h:89
void addDescription(const std::string &name, const std::string &subtopic, const std::string &description)
Adds a description for an option.
double getFloat(const std::string &name) const
Returns the double-value of the named option (only for Option_Float)
int getInt(const std::string &name) const
Returns the int-value of the named option (only for Option_Integer)
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
void addSynonyme(const std::string &name1, const std::string &name2, bool isDeprecated=false)
Adds a synonyme for an options name (any order)
bool isDefault(const std::string &name) const
Returns the information whether the named option has still the default value.
bool setDefault(const std::string &name, const std::string &value)
Sets the given value for the named option as new default value.
void doRegister(const std::string &name, Option *o)
Adds an option under the given name.
bool exists(const std::string &name) const
Returns the information whether the named option is known.
void clear()
Removes all information from the container.
void addOptionSubTopic(const std::string &topic)
Adds an option subtopic.
bool getBool(const std::string &name) const
Returns the boolean-value of the named option (only for Option_Bool)
void addXMLDefault(const std::string &name, const std::string &xmlRoot="")
Adds an XML root element to handle by default. The special root "" denotes the default handler.
static OptionsCont & getOptions()
Retrieves the options.
static void closeAll(bool keepErrorRetrievers=false)
static void close()
Closes all of an applications subsystems.
static bool checkOptions(OptionsCont &oc)
checks shared options and sets StdDefs
static void addConfigurationOptions(OptionsCont &oc)
Adds configuration options to the given container.
static void addReportOptions(OptionsCont &oc)
Adds reporting options to the given container.
static void close()
Closes the xml-subsystem.