SUMO - Simulation of Urban MObility
ROFrame.cpp
Go to the documentation of this file.
1 /****************************************************************************/
9 // Sets and checks options for routing
10 /****************************************************************************/
11 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
12 // Copyright (C) 2001-2016 DLR (http://www.dlr.de/) and contributors
13 /****************************************************************************/
14 //
15 // This file is part of SUMO.
16 // SUMO is free software: you can redistribute it and/or modify
17 // it under the terms of the GNU General Public License as published by
18 // the Free Software Foundation, either version 3 of the License, or
19 // (at your option) any later version.
20 //
21 /****************************************************************************/
22 
23 
24 // ===========================================================================
25 // included modules
26 // ===========================================================================
27 #ifdef _MSC_VER
28 #include <windows_config.h>
29 #else
30 #include <config.h>
31 #endif
32 
33 #include <iostream>
34 #include <ctime>
35 #include <stdlib.h>
37 #include <utils/options/Option.h>
41 #include <utils/common/ToString.h>
42 #include <utils/common/SUMOTime.h>
43 #include "ROFrame.h"
44 
45 #ifdef CHECK_MEMORY_LEAKS
46 #include <foreign/nvwa/debug_new.h>
47 #endif // CHECK_MEMORY_LEAKS
48 
49 
50 // ===========================================================================
51 // method definitions
52 // ===========================================================================
53 void
54 ROFrame::fillOptions(OptionsCont& oc, bool forDuarouter) {
55  // register options
56  // register I/O options
57  oc.doRegister("output-file", 'o', new Option_FileName());
58  oc.addSynonyme("output-file", "output");
59  oc.addDescription("output-file", "Output", "Write generated routes to FILE");
60 
61  oc.doRegister("vtype-output", new Option_FileName(""));
62  oc.addSynonyme("vtype-output", "vtype");
63  oc.addDescription("vtype-output", "Output", "Write used vehicle types into separate FILE");
64 
65  oc.doRegister("net-file", 'n', new Option_FileName());
66  oc.addSynonyme("net-file", "net");
67  oc.addDescription("net-file", "Input", "Use FILE as SUMO-network to route on");
68 
69  oc.doRegister("additional-files", 'd', new Option_FileName());
70  oc.addSynonyme("additional-files", "additional");
71  oc.addSynonyme("additional-files", "taz-files");
72  oc.addSynonyme("additional-files", "districts", true);
73  oc.addDescription("additional-files", "Input", "Read additional network data (districts, bus stops) from FILE");
74 
75  oc.doRegister("alternative-files", 'a', new Option_FileName());
76  oc.addSynonyme("alternative-files", "alternatives-files");
77  oc.addSynonyme("alternative-files", "alternatives", true);
78  oc.addDescription("alternative-files", "Input", "Read alternatives from FILE");
79 
80  oc.doRegister("flow-files", 'f', new Option_FileName());
81  oc.addSynonyme("flow-files", "flows");
82  oc.addSynonyme("flow-files", "flow-definition", true);
83  oc.addDescription("flow-files", "Input", "Read flow-definitions from FILE(s)");
84 
85  if (forDuarouter) {
86  oc.doRegister("weight-files", 'w', new Option_FileName());
87  oc.addSynonyme("weight-files", "weights");
88  oc.addDescription("weight-files", "Input", "Read network weights from FILE(s)");
89 
90  oc.doRegister("lane-weight-files", new Option_FileName());
91  oc.addDescription("lane-weight-files", "Input", "Read lane-based network weights from FILE(s)");
92 
93  oc.doRegister("weight-attribute", 'x', new Option_String("traveltime"));
94  oc.addSynonyme("weight-attribute", "measure", true);
95  oc.addDescription("weight-attribute", "Input", "Name of the xml attribute which gives the edge weight");
96 
97  oc.doRegister("phemlight-path", new Option_FileName("./PHEMlight/"));
98  oc.addDescription("phemlight-path", "Input", "Determines where to load PHEMlight definitions from.");
99  }
100 
101  // register the time settings
102  oc.doRegister("begin", 'b', new Option_String("0", "TIME"));
103  oc.addDescription("begin", "Time", "Defines the begin time; Previous trips will be discarded");
104 
105  oc.doRegister("end", 'e', new Option_String(SUMOTIME_MAXSTRING, "TIME"));
106  oc.addDescription("end", "Time", "Defines the end time; Later trips will be discarded; Defaults to the maximum time that SUMO can represent");
107 
108  // register the processing options
109  oc.doRegister("ignore-errors", new Option_Bool(false));
110  oc.addSynonyme("ignore-errors", "continue-on-unbuild", true);
111  oc.addDescription("ignore-errors", "Processing", "Continue if a route could not be build");
112 
113  oc.doRegister("unsorted-input", new Option_Bool(false));
114  oc.addSynonyme("unsorted-input", "unsorted");
115  oc.addDescription("unsorted-input", "Processing", "Assume input is unsorted");
116 
117  oc.doRegister("route-steps", 's', new Option_String("200", "TIME"));
118  oc.addDescription("route-steps", "Processing", "Load routes for the next number of seconds ahead");
119 
120  oc.doRegister("randomize-flows", new Option_Bool(false));
121  oc.addDescription("randomize-flows", "Processing", "generate random departure times for flow input");
122 
123  oc.doRegister("max-alternatives", new Option_Integer(5));
124  oc.addDescription("max-alternatives", "Processing", "Prune the number of alternatives to INT");
125 
126  oc.doRegister("remove-loops", new Option_Bool(false));
127  oc.addDescription("remove-loops", "Processing", "Remove loops within the route; Remove turnarounds at start and end of the route");
128 
129  oc.doRegister("repair", new Option_Bool(false));
130  oc.addDescription("repair", "Processing", "Tries to correct a false route");
131 
132  oc.doRegister("repair.from", new Option_Bool(false));
133  oc.addDescription("repair.from", "Processing", "Tries to correct an invalid starting edge by using the first usable edge instead");
134 
135  oc.doRegister("repair.to", new Option_Bool(false));
136  oc.addDescription("repair.to", "Processing", "Tries to correct an invalid destination edge by using the last usable edge instead");
137 
138  oc.doRegister("weights.interpolate", new Option_Bool(false));
139  oc.addSynonyme("weights.interpolate", "interpolate", true);
140  oc.addDescription("weights.interpolate", "Processing", "Interpolate edge weights at interval boundaries");
141 
142  oc.doRegister("with-taz", new Option_Bool(false));
143  oc.addDescription("with-taz", "Processing", "Use origin and destination zones (districts) for in- and output");
144 
145  if (forDuarouter) {
146  oc.doRegister("routing-algorithm", new Option_String("dijkstra"));
147  oc.addDescription("routing-algorithm", "Processing", "Select among routing algorithms ['dijkstra', 'astar', 'CH', 'CHWrapper']");
148 
149  oc.doRegister("weight-period", new Option_String("3600", "TIME"));
150  oc.addDescription("weight-period", "Processing", "Aggregation period for the given weight files; triggers rebuilding of Contraction Hierarchy");
151  }
152 
153  oc.doRegister("bulk-routing", new Option_Bool(false));
154  oc.addDescription("bulk-routing", "Processing", "Aggregate routing queries with the same origin");
155 
156  oc.doRegister("routing-threads", new Option_Integer(0));
157  oc.addDescription("routing-threads", "Processing", "The number of parallel execution threads used for routing");
158 
159  // register defaults options
160  oc.doRegister("departlane", new Option_String());
161  oc.addDescription("departlane", "Defaults", "Assigns a default depart lane");
162 
163  oc.doRegister("departpos", new Option_String());
164  oc.addDescription("departpos", "Defaults", "Assigns a default depart position");
165 
166  oc.doRegister("departspeed", new Option_String());
167  oc.addDescription("departspeed", "Defaults", "Assigns a default depart speed");
168 
169  oc.doRegister("arrivallane", new Option_String());
170  oc.addDescription("arrivallane", "Defaults", "Assigns a default arrival lane");
171 
172  oc.doRegister("arrivalpos", new Option_String());
173  oc.addDescription("arrivalpos", "Defaults", "Assigns a default arrival position");
174 
175  oc.doRegister("arrivalspeed", new Option_String());
176  oc.addDescription("arrivalspeed", "Defaults", "Assigns a default arrival speed");
177 
178  oc.doRegister("defaults-override", new Option_Bool(false));
179  oc.addDescription("defaults-override", "Defaults", "Defaults will override given values");
180 
181 
182  // register report options
183  oc.doRegister("stats-period", new Option_Integer(-1));
184  oc.addDescription("stats-period", "Report", "Defines how often statistics shall be printed");
185 
186  oc.doRegister("no-step-log", new Option_Bool(false));
187  oc.addDescription("no-step-log", "Report", "Disable console output of route parsing step");
188 }
189 
190 
191 bool
193  // check whether the output is valid and can be build
194  if (!oc.isSet("output-file")) {
195  WRITE_ERROR("No output specified.");
196  return false;
197  }
198  //
199  if (oc.getInt("max-alternatives") < 2) {
200  WRITE_ERROR("At least two alternatives should be enabled.");
201  return false;
202  }
203 #ifndef HAVE_FOX
204  if (oc.getInt("routing-threads") > 1) {
205  WRITE_ERROR("Parallel routing is only possible when compiled with Fox.");
206  return false;
207  }
208 #endif
209  return true;
210 }
211 
212 
213 
214 /****************************************************************************/
215 
void doRegister(const std::string &name, Option *v)
Adds an option under the given name.
Definition: OptionsCont.cpp:86
int getInt(const std::string &name) const
Returns the int-value of the named option (only for Option_Integer)
void addSynonyme(const std::string &name1, const std::string &name2, bool isDeprecated=false)
Adds a synonyme for an options name (any order)
bool isSet(const std::string &name, bool failOnNonExistant=true) const
Returns the information whether the named option is set.
static void fillOptions(OptionsCont &oc, bool forDuarouter)
Inserts options used by routing applications into the OptionsCont-singleton.
Definition: ROFrame.cpp:54
static bool checkOptions(OptionsCont &oc)
Checks whether options are valid.
Definition: ROFrame.cpp:192
#define SUMOTIME_MAXSTRING
Definition: SUMOTime.h:46
#define WRITE_ERROR(msg)
Definition: MsgHandler.h:206
An integer-option.
Definition: Option.h:313
A storage for options typed value containers)
Definition: OptionsCont.h:99
void addDescription(const std::string &name, const std::string &subtopic, const std::string &description)
Adds a description for an option.