SUMO - Simulation of Urban MObility
SUMOSAXAttributesImpl_Binary.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2007-2017 German Aerospace Center (DLR) and others.
4 /****************************************************************************/
5 //
6 // This program and the accompanying materials
7 // are made available under the terms of the Eclipse Public License v2.0
8 // which accompanies this distribution, and is available at
9 // http://www.eclipse.org/legal/epl-v20.html
10 //
11 /****************************************************************************/
19 // Encapsulated xml-attributes that are retrieved from the sumo-binary-xml format (already typed)
20 /****************************************************************************/
21 #ifndef SUMOSAXAttributesImpl_Binary_h
22 #define SUMOSAXAttributesImpl_Binary_h
23 
24 
25 // ===========================================================================
26 // included modules
27 // ===========================================================================
28 #ifdef _MSC_VER
29 #include <windows_config.h>
30 #else
31 #include <config.h>
32 #endif
33 
34 #include <map>
35 #include <set>
36 #include "SUMOSAXAttributes.h"
37 
38 
39 // ===========================================================================
40 // class declarations
41 // ===========================================================================
42 class BinaryInputDevice;
43 
44 
45 // ===========================================================================
46 // class definitions
47 // ===========================================================================
55 public:
62  SUMOSAXAttributesImpl_Binary(const std::map<int, std::string>& predefinedTagsMML,
63  const std::string& objectType,
64  BinaryInputDevice* in, const char version);
65 
68 
69 
70 
71 
74 
80  bool hasAttribute(int id) const;
81 
82 
98  bool getBool(int id) const;
99 
100 
116  int getInt(int id) const;
117 
118 
134  long long int getLong(int id) const;
135 
136 
149  std::string getString(int id) const;
150 
163  std::string getStringSecure(int id,
164  const std::string& def) const;
165 
166 
182  double getFloat(int id) const;
183 
184 
188  bool hasAttribute(const std::string& id) const;
189 
190 
206  double getFloat(const std::string& id) const;
207 
208 
218  std::string getStringSecure(const std::string& id,
219  const std::string& def) const;
220  //}
221 
222 
229  SumoXMLEdgeFunc getEdgeFunc(bool& ok) const;
230 
231 
238  SumoXMLNodeType getNodeType(bool& ok) const;
239 
240 
247  RGBColor getColor() const;
248 
249 
255  PositionVector getShape(int attr) const;
256 
257 
263  Boundary getBoundary(int attr) const;
264 
270  std::vector<std::string> getStringVector(int attr) const;
271 
272 
280  std::string getName(int attr) const;
281 
282 
287  void serialize(std::ostream& os) const;
288 
290  SUMOSAXAttributes* clone() const;
291 
292 private:
294  const std::map<int, std::string>& myAttrIds;
295 
297  std::set<int> myAttrs;
298 
300  std::map<int, char> myCharValues;
301 
303  std::map<int, int> myIntValues;
304 
306  std::map<int, double> myFloatValues;
307 
309  std::map<int, std::string> myStringValues;
310 
312  std::map<int, PositionVector> myPositionVectors;
313 
314 
315 private:
318 
321 
322 
323 };
324 
325 
326 #endif
327 
328 /****************************************************************************/
329 
std::vector< std::string > getStringVector(int attr) const
Tries to read given attribute assuming it is a string vector.
PositionVector getShape(int attr) const
Tries to read given attribute assuming it is a PositionVector.
long long int getLong(int id) const
Returns the long-value of the named (by its enum-value) attribute.
std::map< int, char > myCharValues
Map of attribute ids to char.
std::map< int, double > myFloatValues
Map of attribute ids to floats.
SumoXMLEdgeFunc getEdgeFunc(bool &ok) const
Returns the value of the named attribute.
bool hasAttribute(int id) const
Returns the information whether the named (by its enum-value) attribute is within the current list...
SUMOSAXAttributes * clone() const
return a new deep-copy attributes object
std::map< int, std::string > myStringValues
Map of attribute ids to string.
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:47
std::string getString(int id) const
Returns the string-value of the named (by its enum-value) attribute.
Encapsulated SAX-Attributes.
const std::map< int, std::string > & myAttrIds
Map of attribute ids to names.
A list of positions.
RGBColor getColor() const
Returns the value of the named attribute.
int getInt(int id) const
Returns the int-value of the named (by its enum-value) attribute.
double getFloat(int id) const
Returns the double-value of the named (by its enum-value) attribute.
Encapsulated Xerces-SAX-attributes.
std::map< int, int > myIntValues
Map of attribute ids to integers.
std::map< int, PositionVector > myPositionVectors
Map of attribute ids to string.
std::set< int > myAttrs
the attributes which are set
SumoXMLNodeType
Numbers representing special SUMO-XML-attribute values for representing node- (junction-) types used ...
SUMOSAXAttributesImpl_Binary(const std::map< int, std::string > &predefinedTagsMML, const std::string &objectType, BinaryInputDevice *in, const char version)
Constructor.
SUMOSAXAttributesImpl_Binary & operator=(const SUMOSAXAttributesImpl_Binary &src)
Invalidated assignment operator.
SumoXMLEdgeFunc
Numbers representing special SUMO-XML-attribute values for representing edge functions used in netbui...
bool getBool(int id) const
Returns the bool-value of the named (by its enum-value) attribute.
std::string getName(int attr) const
Converts the given attribute id into a man readable string.
Encapsulates binary reading operations on a file.
Boundary getBoundary(int attr) const
Tries to read given attribute assuming it is a Boundary.
SumoXMLNodeType getNodeType(bool &ok) const
Returns the value of the named attribute.
void serialize(std::ostream &os) const
Prints all attribute names and values into the given stream.
std::string getStringSecure(int id, const std::string &def) const
Returns the string-value of the named (by its enum-value) attribute.