Eclipse 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-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
17 // Encapsulated xml-attributes that are retrieved from the sumo-binary-xml format (already typed)
18 /****************************************************************************/
19 #ifndef SUMOSAXAttributesImpl_Binary_h
20 #define SUMOSAXAttributesImpl_Binary_h
21 
22 
23 // ===========================================================================
24 // included modules
25 // ===========================================================================
26 #include <config.h>
27 
28 #include <map>
29 #include <set>
30 #include "SUMOSAXAttributes.h"
31 
32 
33 // ===========================================================================
34 // class declarations
35 // ===========================================================================
36 class BinaryInputDevice;
37 
38 
39 // ===========================================================================
40 // class definitions
41 // ===========================================================================
49 public:
56  SUMOSAXAttributesImpl_Binary(const std::map<int, std::string>& predefinedTagsMML,
57  const std::string& objectType,
58  BinaryInputDevice* in, const char version);
59 
62 
63 
64 
65 
68 
74  bool hasAttribute(int id) const;
75 
76 
92  bool getBool(int id) const;
93 
94 
110  int getInt(int id) const;
111 
112 
128  long long int getLong(int id) const;
129 
130 
143  std::string getString(int id) const;
144 
157  std::string getStringSecure(int id,
158  const std::string& def) const;
159 
160 
176  double getFloat(int id) const;
177 
178 
182  bool hasAttribute(const std::string& id) const;
183 
184 
200  double getFloat(const std::string& id) const;
201 
202 
212  std::string getStringSecure(const std::string& id,
213  const std::string& def) const;
214  //}
215 
216 
223  SumoXMLEdgeFunc getEdgeFunc(bool& ok) const;
224 
225 
232  SumoXMLNodeType getNodeType(bool& ok) const;
233 
235  RightOfWay getRightOfWay(bool& ok) const;
236 
238  FringeType getFringeType(bool& ok) const;
239 
246  RGBColor getColor() const;
247 
248 
254  PositionVector getShape(int attr) const;
255 
256 
262  Boundary getBoundary(int attr) const;
263 
271  std::string getName(int attr) const;
272 
273 
278  void serialize(std::ostream& os) const;
279 
282  std::vector<std::string> getAttributeNames() const;
283 
285  SUMOSAXAttributes* clone() const;
286 
287 private:
289  const std::map<int, std::string>& myAttrIds;
290 
292  std::set<int> myAttrs;
293 
295  std::map<int, char> myCharValues;
296 
298  std::map<int, int> myIntValues;
299 
301  std::map<int, double> myFloatValues;
302 
304  std::map<int, std::string> myStringValues;
305 
307  std::map<int, PositionVector> myPositionVectors;
308 
309 
310 private:
313 
316 
317 
318 };
319 
320 
321 #endif
322 
323 /****************************************************************************/
324 
FringeType
FringeType
algorithms for computing right of way
Definition: SUMOXMLDefinitions.h:1105
SUMOSAXAttributesImpl_Binary::serialize
void serialize(std::ostream &os) const
Prints all attribute names and values into the given stream.
Definition: SUMOSAXAttributesImpl_Binary.cpp:339
SUMOSAXAttributesImpl_Binary::myIntValues
std::map< int, int > myIntValues
Map of attribute ids to integers.
Definition: SUMOSAXAttributesImpl_Binary.h:298
SUMOSAXAttributesImpl_Binary::getFloat
double getFloat(int id) const
Returns the double-value of the named (by its enum-value) attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:213
SUMOSAXAttributesImpl_Binary::myCharValues
std::map< int, char > myCharValues
Map of attribute ids to char.
Definition: SUMOSAXAttributesImpl_Binary.h:295
SUMOSAXAttributesImpl_Binary::myFloatValues
std::map< int, double > myFloatValues
Map of attribute ids to floats.
Definition: SUMOSAXAttributesImpl_Binary.h:301
SUMOSAXAttributesImpl_Binary::~SUMOSAXAttributesImpl_Binary
virtual ~SUMOSAXAttributesImpl_Binary()
Destructor.
Definition: SUMOSAXAttributesImpl_Binary.cpp:155
SumoXMLEdgeFunc
SumoXMLEdgeFunc
Numbers representing special SUMO-XML-attribute values for representing edge functions used in netbui...
Definition: SUMOXMLDefinitions.h:1074
SUMOSAXAttributesImpl_Binary::getString
std::string getString(int id) const
Returns the string-value of the named (by its enum-value) attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:192
SUMOSAXAttributesImpl_Binary::getColor
RGBColor getColor() const
Returns the value of the named attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:296
PositionVector
A list of positions.
Definition: PositionVector.h:46
SUMOSAXAttributesImpl_Binary::myPositionVectors
std::map< int, PositionVector > myPositionVectors
Map of attribute ids to string.
Definition: SUMOSAXAttributesImpl_Binary.h:307
SUMOSAXAttributesImpl_Binary::myAttrs
std::set< int > myAttrs
the attributes which are set
Definition: SUMOSAXAttributesImpl_Binary.h:292
RGBColor
Definition: RGBColor.h:40
SUMOSAXAttributesImpl_Binary::getShape
PositionVector getShape(int attr) const
Tries to read given attribute assuming it is a PositionVector.
Definition: SUMOSAXAttributesImpl_Binary.cpp:307
SUMOSAXAttributesImpl_Binary::getRightOfWay
RightOfWay getRightOfWay(bool &ok) const
returns rightOfWay method
Definition: SUMOSAXAttributesImpl_Binary.cpp:270
SumoXMLNodeType
SumoXMLNodeType
Numbers representing special SUMO-XML-attribute values for representing node- (junction-) types used ...
Definition: SUMOXMLDefinitions.h:1049
SUMOSAXAttributesImpl_Binary
Encapsulated Xerces-SAX-attributes.
Definition: SUMOSAXAttributesImpl_Binary.h:48
SUMOSAXAttributesImpl_Binary::clone
SUMOSAXAttributes * clone() const
return a new deep-copy attributes object
Definition: SUMOSAXAttributesImpl_Binary.cpp:357
Boundary
A class that stores a 2D geometrical boundary.
Definition: Boundary.h:42
SUMOSAXAttributesImpl_Binary::getLong
long long int getLong(int id) const
Returns the long-value of the named (by its enum-value) attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:186
SUMOSAXAttributesImpl_Binary::getBoundary
Boundary getBoundary(int attr) const
Tries to read given attribute assuming it is a Boundary.
Definition: SUMOSAXAttributesImpl_Binary.cpp:317
SUMOSAXAttributesImpl_Binary::myAttrIds
const std::map< int, std::string > & myAttrIds
Map of attribute ids to names.
Definition: SUMOSAXAttributesImpl_Binary.h:289
SUMOSAXAttributesImpl_Binary::getBool
bool getBool(int id) const
Returns the bool-value of the named (by its enum-value) attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:166
SUMOSAXAttributesImpl_Binary::getInt
int getInt(int id) const
Returns the int-value of the named (by its enum-value) attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:176
SUMOSAXAttributesImpl_Binary::hasAttribute
bool hasAttribute(int id) const
Returns the information whether the named (by its enum-value) attribute is within the current list.
Definition: SUMOSAXAttributesImpl_Binary.cpp:160
SUMOSAXAttributesImpl_Binary::getFringeType
FringeType getFringeType(bool &ok) const
returns fringe type
Definition: SUMOSAXAttributesImpl_Binary.cpp:283
RightOfWay
RightOfWay
algorithms for computing right of way
Definition: SUMOXMLDefinitions.h:1099
SUMOSAXAttributes.h
SUMOSAXAttributesImpl_Binary::getNodeType
SumoXMLNodeType getNodeType(bool &ok) const
Returns the value of the named attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:256
SUMOSAXAttributesImpl_Binary::getEdgeFunc
SumoXMLEdgeFunc getEdgeFunc(bool &ok) const
Returns the value of the named attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:242
config.h
SUMOSAXAttributesImpl_Binary::operator=
SUMOSAXAttributesImpl_Binary & operator=(const SUMOSAXAttributesImpl_Binary &src)
Invalidated assignment operator.
SUMOSAXAttributesImpl_Binary::getName
std::string getName(int attr) const
Converts the given attribute id into a man readable string.
Definition: SUMOSAXAttributesImpl_Binary.cpp:330
SUMOSAXAttributesImpl_Binary::myStringValues
std::map< int, std::string > myStringValues
Map of attribute ids to string.
Definition: SUMOSAXAttributesImpl_Binary.h:304
SUMOSAXAttributesImpl_Binary::getStringSecure
std::string getStringSecure(int id, const std::string &def) const
Returns the string-value of the named (by its enum-value) attribute.
Definition: SUMOSAXAttributesImpl_Binary.cpp:202
SUMOSAXAttributes
Encapsulated SAX-Attributes.
Definition: SUMOSAXAttributes.h:57
SUMOSAXAttributesImpl_Binary::SUMOSAXAttributesImpl_Binary
SUMOSAXAttributesImpl_Binary(const std::map< int, std::string > &predefinedTagsMML, const std::string &objectType, BinaryInputDevice *in, const char version)
Constructor.
Definition: SUMOSAXAttributesImpl_Binary.cpp:41
BinaryInputDevice
Encapsulates binary reading operations on a file.
Definition: BinaryInputDevice.h:58
SUMOSAXAttributesImpl_Binary::getAttributeNames
std::vector< std::string > getAttributeNames() const
Retrieves all attribute names.
Definition: SUMOSAXAttributesImpl_Binary.cpp:347