SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RONetHandler.h
Go to the documentation of this file.
1 /****************************************************************************/
9 // The handler that parses a SUMO-network for its usage in a router
10 /****************************************************************************/
11 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/
12 // Copyright (C) 2001-2012 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 #ifndef RONetHandler_h
23 #define RONetHandler_h
24 
25 
26 // ===========================================================================
27 // included modules
28 // ===========================================================================
29 #ifdef _MSC_VER
30 #include <windows_config.h>
31 #else
32 #include <config.h>
33 #endif
34 
35 #include <string>
39 
40 
41 // ===========================================================================
42 // class declarations
43 // ===========================================================================
44 class RONet;
45 class OptionsCont;
46 class ROEdge;
48 
49 
50 // ===========================================================================
51 // class definitions
52 // ===========================================================================
60 class RONetHandler : public SUMOSAXHandler {
61 public:
68 
69 
71  virtual ~RONetHandler() ;
72 
73 
74 protected:
76 
77 
85  virtual void myStartElement(int element,
86  const SUMOSAXAttributes& attrs) ;
88 
89 protected:
91 
92 
104  void parseEdge(const SUMOSAXAttributes& attrs);
105 
106 
115  virtual void parseLane(const SUMOSAXAttributes& attrs);
116 
117 
126  void parseJunction(const SUMOSAXAttributes& attrs);
127 
128 
139  void parseConnectingEdge(const SUMOSAXAttributes& attrs) ;
140 
141 
152  void parseConnectedEdge(const SUMOSAXAttributes& attrs);
153 
154 
159  void parseConnection(const SUMOSAXAttributes& attrs);
160 
161 
171  void parseDistrict(const SUMOSAXAttributes& attrs) ;
172 
173 
185  void parseDistrictEdge(const SUMOSAXAttributes& attrs, bool isSource);
186 
188 
189 
190 protected:
193 
195  std::string myCurrentName;
196 
199 
201  bool myProcess;
202 
205 
207 
208 
209 private:
211  RONetHandler(const RONetHandler& src);
212 
214  RONetHandler& operator=(const RONetHandler& src);
215 
216 };
217 
218 
219 #endif
220 
221 /****************************************************************************/
222