/*! * \file Params.hh * \brief Header file for the parameter dictionary. * \author ETSI STF525 * \copyright ETSI Copyright Notification * No part may be reproduced except as authorized by written permission. * The copyright and the foregoing restriction extend to reproduction in all media. * All rights reserved. * \version 0.1 */ #pragma once #include #include /*! * \class Params * \brief This class provides basic functionalities for an ITS dictionary * \implements std::map */ class Params : public std::map { public: // TODO Use static constexpr (see CommsigniaLayer.hh) static const std::string& mac_src; //! Source MAC address parameter name static const std::string& mac_dst; //! Destination MAC address parameter name static const std::string& mac_bc; //! Broadcast MAC address parameter name static const std::string& eth_type; //! Ethernet type parameter name static const std::string& beaconing; //! Beaconing mode parameter name static const std::string& ssp; //! SSP parameter name static const std::string& its_aid; //! ITS-AID parameter name static const std::string& gn_payload; //! GeoNetworking Payload parameter name static const std::string& gn_next_header; //! GeoNetworking NextHeader parameter name static const std::string& gn_header_type; //! GeoNetworking HeaderType parameter name static const std::string& gn_header_sub_type; //! GeoNetworking HeaderSubType parameter name static const std::string& gn_lifetime; //! GeoNetworking Lifetime parameter name static const std::string& gn_traffic_class; //! GeoNetworking Traffic class parameter name static const std::string& btp_type; //! BTP Type parameter name static const std::string& btp_payload; //! BTP Payload parameter name static const std::string& btp_destination_port; //! BTP DestinationPort parameter name static const std::string& btp_info; //! BTP Info parameter name static const std::string& nic; //! Network Interface Card parameter name static const std::string& ll_address; //! Test system GeoNetworking LL-Address parameter name static const std::string& latitude; //! Test system Latitude parameter name static const std::string& longitude; //! Test system Longitude parameter name static const std::string& expiry; //! Test system GeoNetworking Lifetime parameter name (in ms) static const std::string& device_mode; //! To indicate to the lower layer to act as a standalone device static const std::string& distanceA; //! Test system GeoNetworking DistanceA parameter name static const std::string& distanceB; //! Test system GeoNetworking DistanceB parameter name static const std::string& angle; //! Test system GeoNetworking Angle parameter name static const std::string& next_header; //! Upper layer settings static const std::string& header_type; //! Upper layer settings static const std::string& header_sub_type; //! Upper layer settings static const std::string& interface_id; //! Commsignia antenna selector /*! * \brief Default constructor * Create a new instance of the Params class */ Params() : std::map() {}; /*! * \brief Copy constructor * Clone an existing instance of a Params object * \param[in] p_params An existing instance of a Params object */ Params(const Params& p_params) : std::map(p_params.begin(), p_params.end()) {}; /*! * \brief Default destructor */ virtual ~Params() { }; /*! * \fn void log(); * \brief Provides a dump of the content of this instance */ void log(); /*! * \fn void reset(); * \brief Reset the content of this instance */ void reset(); /*! * \static * \fn void convert(Params& p_param, const std::string p_parameters); * \brief Create a new instance of a Params object by converting a list of ITS parameters in string format (t1=v1,T2=(v0,v1v2)...) * \return a new instance of a Params object */ static void convert(Params& p_param, const std::string p_parameters); }; // End of class Params