SUMO - Simulation of Urban MObility
netconvert_main.cpp
Go to the documentation of this file.
1 /****************************************************************************/
9 // Main for NETCONVERT
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 #ifdef HAVE_VERSION_H
34 #include <version.h>
35 #endif
36 
37 #include <iostream>
38 #include <string>
39 #include <netimport/NIFrame.h>
40 #include <netimport/NILoader.h>
41 #include <netbuild/NBFrame.h>
42 #include <netbuild/NBNetBuilder.h>
44 #include <netwrite/NWFrame.h>
51 #include <utils/xml/XMLSubSys.h>
54 
55 #ifdef CHECK_MEMORY_LEAKS
56 #include <foreign/nvwa/debug_new.h>
57 #endif // CHECK_MEMORY_LEAKS
58 
59 
60 // ===========================================================================
61 // method definitions
62 // ===========================================================================
63 void
66  oc.addCallExample("-c <CONFIGURATION>", "generate net with options read from file");
67  oc.addCallExample("-n ./nodes.xml -e ./edges.xml -v -t ./owntypes.xml",
68  "generate net with given nodes, edges, and edge types doing verbose output");
69 
70  // insert options sub-topics
71  SystemFrame::addConfigurationOptions(oc); // this subtopic is filled here, too
72  oc.addOptionSubTopic("Input");
73  oc.addOptionSubTopic("Output");
75  oc.addOptionSubTopic("TLS Building");
76  oc.addOptionSubTopic("Ramp Guessing");
77  oc.addOptionSubTopic("Edge Removal");
78  oc.addOptionSubTopic("Unregulated Nodes");
79  oc.addOptionSubTopic("Processing");
80  oc.addOptionSubTopic("Building Defaults");
81  SystemFrame::addReportOptions(oc); // this subtopic is filled here, too
82 
84  NBFrame::fillOptions(false);
85  NWFrame::fillOptions(false);
87 }
88 
89 
90 bool
92  bool ok = NIFrame::checkOptions();
93  ok &= NBFrame::checkOptions();
94  ok &= NWFrame::checkOptions();
95  return ok;
96 }
97 
98 
99 /* -------------------------------------------------------------------------
100  * main
101  * ----------------------------------------------------------------------- */
102 int
103 main(int argc, char** argv) {
105  // give some application descriptions
106  oc.setApplicationDescription("Road network importer / builder for the road traffic simulation SUMO.");
107  oc.setApplicationName("netconvert", "SUMO netconvert Version " VERSION_STRING);
108  int ret = 0;
109  try {
110  XMLSubSys::init();
111  fillOptions();
112  OptionsIO::setArgs(argc, argv);
114  if (oc.processMetaOptions(argc < 2)) {
116  return 0;
117  }
118  XMLSubSys::setValidation(oc.getString("xml-validation"), oc.getString("xml-validation.net"));
120  if (!checkOptions()) {
121  throw ProcessError();
122  }
124  // build the projection
125  if (!GeoConvHelper::init(oc)) {
126  throw ProcessError("Could not build projection!");
127  }
128  NBNetBuilder nb;
129  nb.applyOptions(oc);
130  // load data
131  NILoader nl(nb);
132  nl.load(oc);
133  if (oc.getBool("ignore-errors")) {
135  }
136  // check whether any errors occured
137  if (MsgHandler::getErrorInstance()->wasInformed()) {
138  throw ProcessError();
139  }
140  nb.compute(oc);
141  // check whether any errors occured
142  if (MsgHandler::getErrorInstance()->wasInformed()) {
143  throw ProcessError();
144  }
145  NWFrame::writeNetwork(oc, nb);
146  } catch (const ProcessError& e) {
147  if (std::string(e.what()) != std::string("Process Error") && std::string(e.what()) != std::string("")) {
148  WRITE_ERROR(e.what());
149  }
150  MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
151  ret = 1;
152 #ifndef _DEBUG
153  } catch (const std::exception& e) {
154  if (std::string(e.what()) != std::string("")) {
155  WRITE_ERROR(e.what());
156  }
157  MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
158  ret = 1;
159  } catch (...) {
160  MsgHandler::getErrorInstance()->inform("Quitting (on unknown error).", false);
161  ret = 1;
162 #endif
163  }
166  // report about ending
167  if (ret == 0) {
168  std::cout << "Success." << std::endl;
169  }
170  return ret;
171 }
172 
173 
174 
175 /****************************************************************************/
176 
bool checkOptions()
static void init()
Initialises the xml-subsystem.
Definition: XMLSubSys.cpp:58
static MsgHandler * getErrorInstance()
Returns the instance to add errors to.
Definition: MsgHandler.cpp:80
static void insertRandOptions()
Initialises the given options container with random number options.
Definition: RandHelper.cpp:53
static bool checkOptions()
Checks set options from the OptionsCont-singleton for being valid.
Definition: NWFrame.cpp:111
static bool checkOptions()
Checks set options from the OptionsCont-singleton for being valid.
Definition: NBFrame.cpp:419
static void getOptions(const bool commandLineOnly=false)
Parses the command line arguments and loads the configuration.
Definition: OptionsIO.cpp:72
static void addReportOptions(OptionsCont &oc)
Adds reporting options to the given container.
Definition: SystemFrame.cpp:75
static void setValidation(const std::string &validationScheme, const std::string &netValidationScheme)
Enables or disables validation.
Definition: XMLSubSys.cpp:69
void compute(OptionsCont &oc, const std::set< std::string > &explicitTurnarounds=std::set< std::string >(), bool removeElements=true)
Performs the network building steps.
void addCallExample(const std::string &example, const std::string &desc)
Add a call example.
void setApplicationDescription(const std::string &appDesc)
Sets the application description.
bool getBool(const std::string &name) const
Returns the boolean-value of the named option (only for Option_Bool)
static void fillOptions()
Inserts options used by the network importer and network building modules.
Definition: NIFrame.cpp:59
static void close()
Closes all of an applications subsystems.
static void addConfigurationOptions(OptionsCont &oc)
Adds configuration options to the given container.
Definition: SystemFrame.cpp:50
int main(int argc, char **argv)
static void setArgs(int argc, char **argv)
Stores the command line arguments for later parsing.
Definition: OptionsIO.cpp:65
static OptionsCont & getOptions()
Retrieves the options.
Definition: OptionsCont.cpp:69
static void initRandGlobal(MTRand *which=0)
Reads the given random number options and initialises the random number generator in accordance...
Definition: RandHelper.cpp:68
void applyOptions(OptionsCont &oc)
Initialises the storage by applying given options.
Perfoms network import.
Definition: NILoader.h:59
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
bool processMetaOptions(bool missingOptions)
Checks for help and configuration output, returns whether we should exit.
static bool init(OptionsCont &oc)
Initialises the processing and the final instance using the given options.
void load(OptionsCont &oc)
Definition: NILoader.cpp:86
void addOptionSubTopic(const std::string &topic)
Adds an option subtopic.
static void clear()
static bool checkOptions()
Checks set options from the OptionsCont-singleton for being valid.
Definition: NIFrame.cpp:277
static void addProjectionOptions(OptionsCont &oc)
Adds projection options to the given container.
#define VERSION_STRING
Definition: config.h:225
static void writeNetwork(const OptionsCont &oc, NBNetBuilder &nb)
Writes the network stored in the given net builder.
Definition: NWFrame.cpp:137
#define WRITE_ERROR(msg)
Definition: MsgHandler.h:206
Instance responsible for building networks.
Definition: NBNetBuilder.h:112
void inform(std::string msg, bool addType=true)
adds a new error to the list
Definition: MsgHandler.cpp:89
A storage for options typed value containers)
Definition: OptionsCont.h:99
void fillOptions()
static void fillOptions(bool forNetgen)
Inserts options used by the network converter.
Definition: NBFrame.cpp:61
static void fillOptions(bool forNetgen)
Inserts options used by the network writer.
Definition: NWFrame.cpp:63
void clear()
Clears information whether an error occured previously.
Definition: MsgHandler.cpp:149
static void initOutputOptions()
Definition: MsgHandler.cpp:197
void setApplicationName(const std::string &appName, const std::string &fullName)
Sets the application name.