SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MSRoute.h
Go to the documentation of this file.
1 /****************************************************************************/
10 // A vehicle route
11 /****************************************************************************/
12 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/
13 // Copyright (C) 2001-2013 DLR (http://www.dlr.de/) and contributors
14 /****************************************************************************/
15 //
16 // This file is part of SUMO.
17 // SUMO is free software: you can redistribute it and/or modify
18 // it under the terms of the GNU General Public License as published by
19 // the Free Software Foundation, either version 3 of the License, or
20 // (at your option) any later version.
21 //
22 /****************************************************************************/
23 #ifndef MSRoute_h
24 #define MSRoute_h
25 
26 
27 // ===========================================================================
28 // included modules
29 // ===========================================================================
30 #ifdef _MSC_VER
31 #include <windows_config.h>
32 #else
33 #include <config.h>
34 #endif
35 
36 #include <string>
37 #include <map>
38 #include <vector>
39 #include <algorithm>
40 #include <utils/common/Named.h>
42 #include <utils/common/RGBColor.h>
44 
45 
46 // ===========================================================================
47 // class declarations
48 // ===========================================================================
49 class MSEdge;
50 class BinaryInputDevice;
52 
53 
54 typedef std::vector<const MSEdge*> MSEdgeVector;
55 typedef MSEdgeVector::const_iterator MSRouteIterator;
56 
57 
58 // ===========================================================================
59 // class definitions
60 // ===========================================================================
64 class MSRoute : public Named {
65 public:
67  MSRoute(const std::string& id, const MSEdgeVector& edges,
68  unsigned int references, const RGBColor* const c,
69  const std::vector<SUMOVehicleParameter::Stop>& stops);
70 
72  virtual ~MSRoute();
73 
75  MSRouteIterator begin() const;
76 
78  MSRouteIterator end() const;
79 
81  unsigned size() const;
82 
84  const MSEdge* getLastEdge() const;
85 
87  void addReference() const;
88 
90  void release() const;
91 
98  int writeEdgeIDs(OutputDevice& os, const MSEdge* const from, const MSEdge* const upTo = 0) const;
99 
100  bool contains(const MSEdge* const edge) const {
101  return std::find(myEdges.begin(), myEdges.end(), edge) != myEdges.end();
102  }
103 
104  bool containsAnyOf(const std::vector<MSEdge*>& edgelist) const;
105 
106  const MSEdge* operator[](unsigned index) const;
107 
108 #ifdef HAVE_INTERNAL
109 
110 
111 
116  static void dict_saveState(OutputDevice& out);
118 #endif
119 
120  const MSEdgeVector& getEdges() const {
121  return myEdges;
122  }
123 
124  SUMOReal getLength() const;
125 
134  SUMOReal getDistanceBetween(SUMOReal fromPos, SUMOReal toPos, const MSEdge* fromEdge, const MSEdge* toEdge) const;
135 
137  const RGBColor& getColor() const;
138 
140  const std::vector<SUMOVehicleParameter::Stop>& getStops() const;
141 
142 public:
152  static bool dictionary(const std::string& id, const MSRoute* route);
153 
163  static bool dictionary(const std::string& id, RandomDistributor<const MSRoute*>* routeDist);
164 
173  static const MSRoute* dictionary(const std::string& id);
174 
182  static RandomDistributor<const MSRoute*>* distDictionary(const std::string& id);
183 
185  static void clear();
186 
187  static void insertIDs(std::vector<std::string>& into);
188 
190  static void releaseRoute(const MSRoute* route) {
191  route->release();
192  }
193 
194  static void setMaxRouteDistSize(unsigned int size) {
196  }
197 
198  static unsigned int getMaxRouteDistSize() {
199  return MaxRouteDistSize;
200  }
201 
202 private:
205 
207  mutable unsigned int myReferenceCounter;
208 
210  const RGBColor* const myColor;
211 
213  std::vector<SUMOVehicleParameter::Stop> myStops;
214 
215 private:
217  typedef std::map<std::string, const MSRoute*> RouteDict;
218 
221 
223  typedef std::map<std::string, RandomDistributor<const MSRoute*>*> RouteDistDict;
224 
227 
229  static unsigned int MaxRouteDistSize;
230 
231 private:
233  MSRoute& operator=(const MSRoute& s);
234 
235 };
236 
237 
238 #endif
239 
240 /****************************************************************************/
241