47 std::ostringstream oss;
48 oss.setf(std::ios::fixed, std::ios::floatfield);
49 oss << std::setprecision(accuracy);
56inline std::string
toHex(
const T i, std::streamsize numDigits = 0) {
58 std::stringstream stream;
59 stream <<
"0x" << std::setfill(
'0') << std::setw(numDigits == 0 ?
sizeof(T) * 2 : numDigits) << std::hex << i;
64inline std::string
toString(
const Named* obj, std::streamsize accuracy) {
204 std::ostringstream oss;
205 for (std::vector<std::string>::const_iterator it = strings.begin(); it != strings.end(); ++it) {
220 return dist.
toStr(accuracy);
225 return toString<V>(v.begin(), v.end(), accuracy);
230inline std::string
toString(
const typename std::vector<V*>::const_iterator& b,
const typename std::vector<V*>::const_iterator& e, std::streamsize accuracy =
gPrecision) {
232 std::ostringstream oss;
233 for (
typename std::vector<V*>::const_iterator it = b; it != e; ++it) {
244 return toString<V>(v.begin(), v.end(), accuracy);
248inline std::string
toString(
const typename std::list<V*>::const_iterator& b,
const typename std::list<V*>::const_iterator& e, std::streamsize accuracy =
gPrecision) {
250 std::ostringstream oss;
251 for (
typename std::list<V*>::const_iterator it = b; it != e; ++it) {
282template <
typename T,
typename T_BETWEEN>
283inline std::string
joinToString(
const std::vector<T>& v,
const T_BETWEEN& between, std::streamsize accuracy =
gPrecision) {
284 std::ostringstream oss;
285 bool connect =
false;
286 for (
typename std::vector<T>::const_iterator it = v.begin(); it != v.end(); ++it) {
298template <
typename T,
typename T_BETWEEN>
300 std::vector<T> sorted(v);
301 std::sort(sorted.begin(), sorted.end());
306template <
typename T,
typename T_BETWEEN>
308 std::vector<std::string> ids;
316template <
typename T,
typename C,
typename T_BETWEEN>
318 std::vector<std::string> ids;
326template <
typename KEY,
typename VAL,
typename T_BETWEEN,
typename T_BETWEEN_KEYVAL>
327inline std::string
joinNamedToString(
const std::map<KEY, VAL, ComparatorIdLess>& s,
const T_BETWEEN& between,
const T_BETWEEN_KEYVAL& between_keyval, std::streamsize accuracy =
gPrecision) {
328 std::ostringstream oss;
329 bool connect =
false;
330 for (
typename std::map<KEY, VAL>::const_iterator it = s.begin(); it != s.end(); ++it) {
345 std::vector<std::string> ids;
346 for (
typename std::set<V*>::const_iterator it = v.begin(); it != v.end(); ++it) {
347 ids.push_back((*it)->getID());
354inline std::string
toString(
const std::vector<int>& v, std::streamsize accuracy) {
360inline std::string
toString(
const std::vector<long long int>& v, std::streamsize accuracy) {
366inline std::string
toString(
const std::vector<double>& v, std::streamsize accuracy) {
371template <
typename V,
typename W>
372inline std::string
toString(
const std::vector<std::pair<V, W> >& v, std::streamsize accuracy =
gPrecision,
const std::string& between =
";",
const std::string& between2 =
",") {
373 std::ostringstream oss;
374 oss << std::setprecision(accuracy);
375 bool connect =
false;
388template <
typename T,
typename T_BETWEEN>
390 std::ostringstream oss;
391 bool connect =
false;
392 for (
typename std::set<T>::const_iterator it = s.begin(); it != s.end(); ++it) {
405inline std::string
toString(
const std::vector<std::string>& v, std::streamsize) {
411inline std::string
toString(
const std::set<std::string>& v, std::streamsize) {
416template <
typename KEY,
typename VAL,
typename T_BETWEEN,
typename T_BETWEEN_KEYVAL>
417inline std::string
joinToString(
const std::map<KEY, VAL>& s,
const T_BETWEEN& between,
const T_BETWEEN_KEYVAL& between_keyval, std::streamsize accuracy =
gPrecision) {
418 std::ostringstream oss;
419 bool connect =
false;
420 for (
typename std::map<KEY, VAL>::const_iterator it = s.begin(); it != s.end(); ++it) {
426 oss <<
toString(it->first, accuracy) << between_keyval <<
toString(it->second, accuracy);
LatAlignmentDefinition
Possible ways to choose the lateral alignment, i.e., how vehicles align themselves within their lane.
@ RIGHT
drive on the right side
@ GIVEN
The alignment as offset is given.
@ DEFAULT
No information given; use default.
@ LEFT
drive on the left side
@ ARBITRARY
maintain the current alignment
@ NICE
align with the closest sublane border
@ COMPACT
align with the rightmost sublane that allows keeping the current speed
@ CENTER
drive in the middle
StringBijection< SUMOVehicleClass > SumoVehicleClassStrings(sumoVehicleClassStringInitializer, SVC_CUSTOM2, false)
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
InsertionCheck
different checking levels for vehicle insertion
SumoXMLTag
Numbers representing SUMO-XML - element names.
PersonMode
travel modes for persons
ParkingType
Numbers representing special SUMO-XML-attribute values Information on whether a car is parking on the...
LaneSpreadFunction
Numbers representing special SUMO-XML-attribute values Information how the edge's lateral offset shal...
FringeType
classifying boundary nodes
LinkDirection
The different directions a link between two lanes may take (or a stream between two edges)....
SumoXMLEdgeFunc
Numbers representing special SUMO-XML-attribute values for representing edge functions used in netbui...
LinkState
The right-of-way state of a link between two lanes used when constructing a NBTrafficLightLogic,...
SumoXMLNodeType
Numbers representing special SUMO-XML-attribute values for representing node- (junction-) types used ...
LaneChangeAction
The state of a vehicle's lane-change behavior.
RightOfWay
algorithms for computing right of way
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
int gPrecision
the precision for floating point outputs
#define UNUSED_PARAMETER(x)
std::pair< int, double > MMVersion
(M)ajor/(M)inor version for written networks and default version for loading
std::string toHex(const T i, std::streamsize numDigits=0)
std::string joinNamedToString(const std::set< T *, C > &ns, const T_BETWEEN &between)
std::string toString< ParkingType >(const ParkingType &pt, std::streamsize accuracy)
std::string joinToStringSorting(const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
std::string toString< TrafficLightType >(const TrafficLightType &type, std::streamsize accuracy)
std::string toString< SumoXMLNodeType >(const SumoXMLNodeType &nodeType, std::streamsize accuracy)
std::string toString< Distribution_Parameterized >(const Distribution_Parameterized &dist, std::streamsize accuracy)
std::string toString< SumoXMLEdgeFunc >(const SumoXMLEdgeFunc &edgeFunc, std::streamsize accuracy)
std::string joinToString(const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
std::string toString< LaneChangeModel >(const LaneChangeModel &model, std::streamsize accuracy)
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
std::string toString< InsertionCheck >(const InsertionCheck &check, std::streamsize accuracy)
std::string toString< FringeType >(const FringeType &fringeType, std::streamsize accuracy)
std::string joinNamedToStringSorting(const std::set< T * > &ns, const T_BETWEEN &between)
std::string toString< SUMOVehicleClass >(const SUMOVehicleClass &vClass, std::streamsize accuracy)
std::string toString< LatAlignmentDefinition >(const LatAlignmentDefinition &lad, std::streamsize accuracy)
std::string toString< LaneSpreadFunction >(const LaneSpreadFunction &lsf, std::streamsize accuracy)
std::string toString< LinkState >(const LinkState &linkState, std::streamsize accuracy)
std::string toString< TrafficLightLayout >(const TrafficLightLayout &layout, std::streamsize accuracy)
std::string toString< SumoXMLAttr >(const SumoXMLAttr &attr, std::streamsize accuracy)
std::string toString< PersonMode >(const PersonMode &personMode, std::streamsize accuracy)
std::string toString< LaneChangeAction >(const LaneChangeAction &action, std::streamsize accuracy)
std::string toString< SumoXMLTag >(const SumoXMLTag &tag, std::streamsize accuracy)
std::string toString< LinkDirection >(const LinkDirection &linkDir, std::streamsize accuracy)
std::string toString< RightOfWay >(const RightOfWay &row, std::streamsize accuracy)
std::string toStr(std::streamsize accuracy) const
Returns the string representation of this distribution.
Base class for objects which have an id.
static std::string getIDSecure(const T *obj, const std::string &fallBack="NULL")
get an identifier for Named-like object which may be Null
std::map< std::string, std::string > Map
parameters map
static StringBijection< LaneSpreadFunction > LaneSpreadFunctions
lane spread functions
static StringBijection< LaneChangeAction > LaneChangeActions
lane change actions
static StringBijection< SumoXMLNodeType > NodeTypes
node types
static StringBijection< InsertionCheck > InsertionChecks
traffic light layouts
static StringBijection< TrafficLightType > TrafficLightTypes
traffic light types
static StringBijection< PersonMode > PersonModeValues
person modes
static StringBijection< LinkState > LinkStates
link states
static SequentialStringBijection Attrs
The names of SUMO-XML attributes for use in netbuild.
static StringBijection< SumoXMLEdgeFunc > EdgeFunctions
edge functions
static StringBijection< TrafficLightLayout > TrafficLightLayouts
traffic light layouts
static SequentialStringBijection Tags
The names of SUMO-XML elements for use in netbuild.
static StringBijection< ParkingType > ParkingTypes
parking types
static StringBijection< LaneChangeModel > LaneChangeModels
lane change models
static StringBijection< RightOfWay > RightOfWayValues
righ of way algorithms
static StringBijection< LinkDirection > LinkDirections
link directions
static StringBijection< FringeType > FringeTypeValues
fringe types
const std::string & getString(int key) const
const std::string & getString(const T key) const
std::vector< std::string > getStrings() const