/*! * \file uppertester_geonetworking_codec.hh * \brief Header file for ITS UpperTester GeoNetworking codec definition. * \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 "codec.hh" #include "params.hh" class Base_Type; class Record_Type; class TTCN_Typedescriptor_t; class TTCN_Buffer; namespace LibItsGeoNetworking__TypesAndValues { class UtGnResults; class UtGnEventInd; } class uppertester_geonetworking_codec: public codec < Record_Type, Record_Type> { public: const unsigned char c_utGnInitialize = 0x00; const unsigned char c_utGnInitializeResult = 0x01; const unsigned char c_utGnChangePosition = 0x02; const unsigned char c_utGnChangePositionResult = 0x03; const unsigned char c_utGnTriggerResult = 0x41; const unsigned char c_utGnTrigger_GeoUnicast = 0x50; const unsigned char c_utGnTrigger_GeoBroadcast = 0x51; const unsigned char c_utGnTrigger_GeoAnycast = 0x52; const unsigned char c_utGnTrigger_Shb = 0x53; const unsigned char c_utGnTrigger_Tsb = 0x54; const unsigned char c_utGnEventIndication = 0x55; private: int encode_ (const Base_Type& type, const TTCN_Typedescriptor_t& field_descriptor, TTCN_Buffer& encoding_buffer); public: uppertester_geonetworking_codec() : codec() { }; virtual ~uppertester_geonetworking_codec() { }; virtual int encode (const Record_Type&, OCTETSTRING& data); virtual int encode (const Base_Type&, OCTETSTRING& data); virtual int decode (const OCTETSTRING& data, Record_Type&, params* params = NULL); virtual std::unique_ptr decode (const OCTETSTRING& data, params* params = NULL); private: int decode (const OCTETSTRING& data, LibItsGeoNetworking__TypesAndValues::UtGnResults& msg, params* params = NULL); int decode (const OCTETSTRING& data, LibItsGeoNetworking__TypesAndValues::UtGnEventInd& msg, params* params = NULL); }; // End of class uppertester_geonetworking_codec