inspva.cpp
Go to the documentation of this file.
1 // *****************************************************************************
2 //
3 // Copyright (c) 2017, Southwest Research Institute® (SwRI®)
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of Southwest Research Institute® (SwRI®) nor the
14 // names of its contributors may be used to endorse or promote products
15 // derived from this software without specific prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL SOUTHWEST RESEARCH INSTITUTE BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 //
28 // *****************************************************************************
29 
31 #include <boost/make_shared.hpp>
33 
34 const std::string novatel_gps_driver::InspvaParser::MESSAGE_NAME = "INSPVA";
35 
37 {
38  return MESSAGE_ID;
39 }
40 
42 {
43  return MESSAGE_NAME;
44 }
45 
46 novatel_gps_msgs::InspvaPtr
48 {
49  if (bin_msg.data_.size() != BINARY_LENGTH)
50  {
51  std::stringstream error;
52  error << "Unexpected inspva message size: " << bin_msg.data_.size();
53  throw ParseException(error.str());
54  }
55  novatel_gps_msgs::InspvaPtr ros_msg = boost::make_shared<novatel_gps_msgs::Inspva>();
56  HeaderParser h_parser;
57  ros_msg->novatel_msg_header = h_parser.ParseBinary(bin_msg);
58  ros_msg->novatel_msg_header.message_name = GetMessageName();
59 
60  ros_msg->week = ParseUInt32(&bin_msg.data_[0]);
61  ros_msg->seconds = ParseDouble(&bin_msg.data_[4]);
62  ros_msg->latitude = ParseDouble(&bin_msg.data_[12]);
63  ros_msg->longitude = ParseDouble(&bin_msg.data_[20]);
64  ros_msg->height = ParseDouble(&bin_msg.data_[28]);
65  ros_msg->north_velocity = ParseDouble(&bin_msg.data_[36]);
66  ros_msg->east_velocity = ParseDouble(&bin_msg.data_[44]);
67  ros_msg->up_velocity = ParseDouble(&bin_msg.data_[52]);
68  ros_msg->roll = ParseDouble(&bin_msg.data_[60]);
69  ros_msg->pitch = ParseDouble(&bin_msg.data_[68]);
70  ros_msg->azimuth = ParseDouble(&bin_msg.data_[76]);
71  uint32_t status = ParseUInt32(&bin_msg.data_[84]);
72 
73  switch (status)
74  {
75  case 0:
76  ros_msg->status = "INS_INACTIVE";
77  break;
78  case 1:
79  ros_msg->status = "INS_ALIGNING";
80  break;
81  case 2:
82  ros_msg->status = "INS_HIGH_VARIANCE";
83  break;
84  case 3:
85  ros_msg->status = "INS_SOLUTION_GOOD";
86  break;
87  case 6:
88  ros_msg->status = "INS_SOLUTION_FREE";
89  break;
90  case 7:
91  ros_msg->status = "INS_ALIGNMENT_COMPLETE";
92  break;
93  case 8:
94  ros_msg->status = "DETERMINING_ORIENTATION";
95  break;
96  case 9:
97  ros_msg->status = "WAITING_INITIALPOS";
98  break;
99  case 10:
100  ros_msg->status = "WAITING_AZIMUTH";
101  break;
102  case 11:
103  ros_msg->status = "INITIALIZING_BASES";
104  break;
105  case 12:
106  ros_msg->status = "MOTION_DETECT";
107  break;
108  default:
109  {
110  std::stringstream error;
111  error << "Unexpected inertial solution status: " << status;
112  throw ParseException(error.str());
113  }
114  }
115 
116  return ros_msg;
117 }
118 
119 novatel_gps_msgs::InspvaPtr
121 {
122  if (sentence.body.size() != ASCII_FIELDS)
123  {
124  std::stringstream error;
125  error << "Unexpected number of fields in INSPVA log: " << sentence.body.size();
126  throw ParseException(error.str());
127  }
128  novatel_gps_msgs::InspvaPtr msg = boost::make_shared<novatel_gps_msgs::Inspva>();
129  HeaderParser h_parser;
130  msg->novatel_msg_header = h_parser.ParseAscii(sentence);
131 
132  bool valid = true;
133 
134  valid &= ParseUInt32(sentence.body[0], msg->week);
135  valid &= ParseDouble(sentence.body[1], msg->seconds);
136  valid &= ParseDouble(sentence.body[2], msg->latitude);
137  valid &= ParseDouble(sentence.body[3], msg->longitude);
138  valid &= ParseDouble(sentence.body[4], msg->height);
139  valid &= ParseDouble(sentence.body[5], msg->north_velocity);
140  valid &= ParseDouble(sentence.body[6], msg->east_velocity);
141  valid &= ParseDouble(sentence.body[7], msg->up_velocity);
142  valid &= ParseDouble(sentence.body[8], msg->roll);
143  valid &= ParseDouble(sentence.body[9], msg->pitch);
144  valid &= ParseDouble(sentence.body[10], msg->azimuth);
145  msg->status = sentence.body[11];
146 
147  if (!valid)
148  {
149  throw ParseException("Error parsing INSPVA log.");
150  }
151 
152  return msg;
153 }
novatel_gps_msgs::InspvaPtr ParseBinary(const BinaryMessage &bin_msg) noexcept(false) override
Converts bin_msg into a ROS message pointer and returns it.
Definition: inspva.cpp:47
msg
uint32_t GetMessageId() const override
Definition: inspva.cpp:36
novatel_gps_msgs::NovatelMessageHeader ParseAscii(const NovatelSentence &sentence) noexcept(false) override
Converts sentence into a ROS message pointer and returns it.
Definition: header.cpp:103
static const std::string MESSAGE_NAME
Definition: inspva.h:50
double ParseDouble(const uint8_t *buffer)
Converts a buffer containing 8 bytes into a double.
uint32_t ParseUInt32(const uint8_t *buffer)
Converts a buffer containing 4 bytes into an unsigned 32-bit int.
novatel_gps_msgs::NovatelMessageHeader ParseBinary(const BinaryMessage &bin_msg) noexcept(false) override
Converts bin_msg into a ROS message pointer and returns it.
Definition: header.cpp:44
const std::string GetMessageName() const override
Definition: inspva.cpp:41
static constexpr size_t BINARY_LENGTH
Definition: inspva.h:51
novatel_gps_msgs::InspvaPtr ParseAscii(const NovatelSentence &sentence) noexcept(false) override
Converts sentence into a ROS message pointer and returns it.
Definition: inspva.cpp:120
static constexpr uint32_t MESSAGE_ID
Definition: inspva.h:49
static constexpr size_t ASCII_FIELDS
Definition: inspva.h:52


novatel_gps_driver
Author(s):
autogenerated on Thu Jul 16 2020 03:17:30