#include <message_parser.h>
Public Member Functions | |
virtual uint32_t | GetMessageId () const =0 |
virtual const std::string | GetMessageName () const =0 |
virtual T | ParseAscii (const NovatelSentence &sentence) throw (ParseException) |
Converts sentence into a ROS message pointer and returns it. | |
virtual T | ParseAscii (const NmeaSentence &sentence) throw (ParseException) |
Converts sentence into a ROS message pointer and returns it. | |
virtual T | ParseBinary (const BinaryMessage &bin_msg) throw (ParseException) |
Converts bin_msg into a ROS message pointer and returns it. | |
virtual | ~MessageParser () |
Base class for converting extracted NMEA and NovAtel sentences into ROS messages
Subclasses that parse NMEA messages should implement ParseAscii(const NmeaSentence&); subclasses that parse NovAtel messages should implement both ParseAscii(const NovatelSentence&) and ParseBinary(const BinaryMessage&).
For documentation on exact message structures, see: http://docs.novatel.com/OEM7/Content/Logs/Core_Logs.htm
T | The ROS message Ptr type that the parser should produce. |
Definition at line 59 of file message_parser.h.
virtual novatel_gps_driver::MessageParser< T >::~MessageParser | ( | ) | [inline, virtual] |
Definition at line 62 of file message_parser.h.
virtual uint32_t novatel_gps_driver::MessageParser< T >::GetMessageId | ( | ) | const [pure virtual] |
Implemented in novatel_gps_driver::GprmcParser, novatel_gps_driver::GpggaParser, novatel_gps_driver::BestposParser, novatel_gps_driver::HeaderParser, novatel_gps_driver::BestvelParser, novatel_gps_driver::CorrImuDataParser, novatel_gps_driver::GpgsaParser, novatel_gps_driver::GpgsvParser, novatel_gps_driver::InscovParser, novatel_gps_driver::InspvaParser, novatel_gps_driver::InsstdevParser, novatel_gps_driver::RangeParser, novatel_gps_driver::TrackstatParser, and novatel_gps_driver::TimeParser.
virtual const std::string novatel_gps_driver::MessageParser< T >::GetMessageName | ( | ) | const [pure virtual] |
Implemented in novatel_gps_driver::GprmcParser, novatel_gps_driver::GpggaParser, novatel_gps_driver::BestposParser, novatel_gps_driver::HeaderParser, novatel_gps_driver::BestvelParser, novatel_gps_driver::CorrImuDataParser, novatel_gps_driver::GpgsaParser, novatel_gps_driver::GpgsvParser, novatel_gps_driver::InscovParser, novatel_gps_driver::InspvaParser, novatel_gps_driver::InsstdevParser, novatel_gps_driver::RangeParser, novatel_gps_driver::TrackstatParser, and novatel_gps_driver::TimeParser.
virtual T novatel_gps_driver::MessageParser< T >::ParseAscii | ( | const NovatelSentence & | sentence | ) | throw (ParseException) [inline, virtual] |
Converts sentence into a ROS message pointer and returns it.
The returned value must not be NULL. ParseException should be thrown if there are any issues parsing the message.
[in] | bin_msg | The message to convert. |
Reimplemented in novatel_gps_driver::BestposParser, novatel_gps_driver::HeaderParser, novatel_gps_driver::BestvelParser, novatel_gps_driver::CorrImuDataParser, novatel_gps_driver::InscovParser, novatel_gps_driver::InspvaParser, novatel_gps_driver::InsstdevParser, novatel_gps_driver::RangeParser, novatel_gps_driver::TrackstatParser, and novatel_gps_driver::TimeParser.
Definition at line 95 of file message_parser.h.
virtual T novatel_gps_driver::MessageParser< T >::ParseAscii | ( | const NmeaSentence & | sentence | ) | throw (ParseException) [inline, virtual] |
Converts sentence into a ROS message pointer and returns it.
The returned value must not be NULL. ParseException should be thrown if there are any issues parsing the message.
[in] | bin_msg | The message to convert. |
Reimplemented in novatel_gps_driver::GprmcParser, novatel_gps_driver::GpggaParser, novatel_gps_driver::GpgsaParser, and novatel_gps_driver::GpgsvParser.
Definition at line 108 of file message_parser.h.
virtual T novatel_gps_driver::MessageParser< T >::ParseBinary | ( | const BinaryMessage & | bin_msg | ) | throw (ParseException) [inline, virtual] |
Converts bin_msg into a ROS message pointer and returns it.
The returned value must not be NULL. ParseException should be thrown if there are any issues parsing the message.
[in] | bin_msg | The message to convert. |
Reimplemented in novatel_gps_driver::BestposParser, novatel_gps_driver::HeaderParser, novatel_gps_driver::BestvelParser, novatel_gps_driver::CorrImuDataParser, novatel_gps_driver::InscovParser, novatel_gps_driver::InspvaParser, novatel_gps_driver::InsstdevParser, novatel_gps_driver::RangeParser, novatel_gps_driver::TrackstatParser, and novatel_gps_driver::TimeParser.
Definition at line 82 of file message_parser.h.