msgpack_parser.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 /*
3  * @brief msgpack_parser unpacks and parses msgpack data for the sick 3D lidar multiScan136.
4  *
5  * Usage example:
6  *
7  * std::ifstream msgpack_istream("polarscan_testdata_000.msg", std::ios::binary);
8  * sick_scansegment_xd::ScanSegmentParserOutput msgpack_output;
9  * sick_scansegment_xd::MsgPackParser::Parse(msgpack_istream, msgpack_output);
10  *
11  * sick_scansegment_xd::MsgPackParser::WriteCSV({ msgpack_output }, "polarscan_testdata_000.csv")
12  *
13  * for (int groupIdx = 0; groupIdx < msgpack_output.scandata.size(); groupIdx++)
14  * {
15  * for (int echoIdx = 0; echoIdx < msgpack_output.scandata[groupIdx].size(); echoIdx++)
16  * {
17  * std::vector<sick_scansegment_xd::ScanSegmentParserOutput::LidarPoint>& scanline = msgpack_output.scandata[groupIdx][echoIdx];
18  * std::cout << (groupIdx + 1) << ". group, " << (echoIdx + 1) << ". echo: ";
19  * for (int pointIdx = 0; pointIdx < scanline.size(); pointIdx++)
20  * {
21  * sick_scansegment_xd::ScanSegmentParserOutput::PointXYZI& point = scanline[pointIdx];
22  * std::cout << (pointIdx > 0 ? "," : "") << "(" << point.x << "," << point.y << "," << point.z << "," << point.i << ")";
23  * }
24  * std::cout << std::endl;
25  * }
26  * }
27  *
28  * Copyright (C) 2020 Ing.-Buero Dr. Michael Lehning, Hildesheim
29  * Copyright (C) 2020 SICK AG, Waldkirch
30  *
31  * Licensed under the Apache License, Version 2.0 (the "License");
32  * you may not use this file except in compliance with the License.
33  * You may obtain a copy of the License at
34  *
35  * http://www.apache.org/licenses/LICENSE-2.0
36  *
37  * Unless required by applicable law or agreed to in writing, software
38  * distributed under the License is distributed on an "AS IS" BASIS,
39  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
40  * See the License for the specific language governing permissions and
41  * limitations under the License.
42  *
43  * All rights reserved.
44  *
45  * Redistribution and use in source and binary forms, with or without
46  * modification, are permitted provided that the following conditions are met:
47  *
48  * * Redistributions of source code must retain the above copyright
49  * notice, this list of conditions and the following disclaimer.
50  * * Redistributions in binary form must reproduce the above copyright
51  * notice, this list of conditions and the following disclaimer in the
52  * documentation and/or other materials provided with the distribution.
53  * * Neither the name of SICK AG nor the names of its
54  * contributors may be used to endorse or promote products derived from
55  * this software without specific prior written permission
56  * * Neither the name of Ing.-Buero Dr. Michael Lehning nor the names of its
57  * contributors may be used to endorse or promote products derived from
58  * this software without specific prior written permission
59  *
60  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
61  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
62  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
63  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
64  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
65  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
66  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
67  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
68  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
69  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
70  * POSSIBILITY OF SUCH DAMAGE.
71  *
72  * Authors:
73  * Michael Lehning <michael.lehning@lehning.de>
74  *
75  * Copyright 2020 SICK AG
76  * Copyright 2020 Ing.-Buero Dr. Michael Lehning
77  *
78  */
79 #ifndef __SICK_SCANSEGMENT_XD_MSGPACK_PARSER_H
80 #define __SICK_SCANSEGMENT_XD_MSGPACK_PARSER_H
81 
89 
90 namespace sick_scansegment_xd
91 {
92  /*
93  * @brief class MsgPackParser unpacks and parses msgpack data for the sick 3D lidar multiScan136.
94  */
96  {
97  public:
98 
99  /*
100  * @brief reads a file in binary mode and returns all bytes.
101  * @param[in] filepath input file incl. path
102  * @param[out] list of bytes
103  */
104  static std::vector<uint8_t> ReadFile(const std::string& filepath);
105 
106  /*
107  * @brief unpacks and parses msgpack data from a binary input stream.
108  *
109  * Usage example:
110  *
111  * std::vector<uint8_t> msgpack_data = sick_scansegment_xd::MsgPackParser::ReadFile("polarscan_testdata_000.msg");
112  * sick_scansegment_xd::ScanSegmentParserOutput msgpack_output;
113  * sick_scansegment_xd::MsgPackParser::Parse(msgpack_data, msgpack_output);
114  * sick_scansegment_xd::MsgPackParser::WriteCSV({ msgpack_output }, "polarscan_testdata_000.csv")
115  *
116  * @param[in+out] msgpack_ifstream the binary input stream delivering the binary msgpack data
117  * @param[in] msgpack_timestamp receive timestamp of msgpack_data
118  * @param[in] add_transform_xyz_rpy Apply an additional transform to the cartesian pointcloud, default: "0,0,0,0,0,0" (i.e. no transform)
119  * @param[out] result msgpack data converted to scanlines of type ScanSegmentParserOutput
120  * @param[in+out] msgpack_validator_data_collector collects MsgPackValidatorData over N msgpacks
121  * @param[in] msgpack_validator msgpack validation, see MsgPackValidator for details
122  * @param[in] msgpack_validator_enabled true: check msgpack data for out of bounds and missing scan data, false: no msgpack validation
123  * @param[in] discard_msgpacks_not_validated true: msgpacks are discarded if not validated, false: error message if a msgpack is not validated
124  * @param[in] use_software_pll true (default): result timestamp from sensor ticks by software pll, false: result timestamp from msg receiving
125  * @param[in] verbose true: enable debug output, false: quiet mode
126  */
127  static bool Parse(const std::vector<uint8_t>& msgpack_data, fifo_timestamp msgpack_timestamp, sick_scan_xd::SickCloudTransform& add_transform_xyz_rpy, ScanSegmentParserOutput& result,
129  bool msgpack_validator_enabled = false, bool discard_msgpacks_not_validated = false, bool use_software_pll = true, bool verbose = false);
130 
131  /*
132  * @brief unpacks and parses msgpack data from a binary input stream.
133  *
134  * Usage example:
135  *
136  * std::ifstream msgpack_istream("polarscan_testdata_000.msg", std::ios::binary);
137  * sick_scansegment_xd::ScanSegmentParserOutput msgpack_output;
138  * sick_scansegment_xd::MsgPackParser::Parse(msgpack_istream, msgpack_output);
139  *
140  * sick_scansegment_xd::MsgPackParser::WriteCSV({ msgpack_output }, "polarscan_testdata_000.csv")
141  *
142  * for (int groupIdx = 0; groupIdx < msgpack_output.scandata.size(); groupIdx++)
143  * {
144  * for (int echoIdx = 0; echoIdx < msgpack_output.scandata[groupIdx].size(); echoIdx++)
145  * {
146  * std::vector<sick_scansegment_xd::ScanSegmentParserOutput::LidarPoint>& scanline = msgpack_output.scandata[groupIdx][echoIdx];
147  * std::cout << (groupIdx + 1) << ". group, " << (echoIdx + 1) << ". echo: ";
148  * for (int pointIdx = 0; pointIdx < scanline.size(); pointIdx++)
149  * {
150  * sick_scansegment_xd::ScanSegmentParserOutput::LidarPoint& point = scanline[pointIdx];
151  * std::cout << (pointIdx > 0 ? "," : "") << "(" << point.x << "," << point.y << "," << point.z << "," << point.i << ")";
152  * }
153  * std::cout << std::endl;
154  * }
155  * }
156  *
157  * @param[in+out] msgpack_ifstream the binary input stream delivering the binary msgpack data
158  * @param[in] msgpack_timestamp receive timestamp of msgpack_data
159  * @param[in] add_transform_xyz_rpy Apply an additional transform to the cartesian pointcloud, default: "0,0,0,0,0,0" (i.e. no transform)
160  * @param[out] result msgpack data converted to scanlines of type ScanSegmentParserOutput
161  * @param[in+out] msgpack_validator_data_collector collects MsgPackValidatorData over N msgpacks
162  * @param[in] msgpack_validator msgpack validation, see MsgPackValidator for details
163  * @param[in] msgpack_validator_enabled true: check msgpack data for out of bounds and missing scan data, false: no msgpack validation
164  * @param[in] discard_msgpacks_not_validated true: msgpacks are discarded if not validated, false: error message if a msgpack is not validated
165  * @param[in] use_software_pll true (default): result timestamp from sensor ticks by software pll, false: result timestamp from msg receiving
166  * @param[in] verbose true: enable debug output, false: quiet mode
167  */
168  static bool Parse(std::istream& msgpack_istream, fifo_timestamp msgpack_timestamp, sick_scan_xd::SickCloudTransform& add_transform_xyz_rpy, ScanSegmentParserOutput& result,
169  sick_scansegment_xd::MsgPackValidatorData& msgpack_validator_data_collector,
171  bool msgpack_validator_enabled = false, bool discard_msgpacks_not_validated = false,
172  bool use_software_pll = true, bool verbose = false);
173 
174  /*
175  * @brief Returns a hexdump of a msgpack. To get a well formatted json struct from a msgpack,
176  * just paste the returned string to https://toolslick.com/conversion/data/messagepack-to-json
177  */
178  static std::string MsgpackToHexDump(const std::vector<uint8_t>& msgpack_data, bool pretty_print = true);
179 
180  /*
181  * @brief exports msgpack data to csv file.
182  *
183  * Usage example:
184  *
185  * std::ifstream msgpack_istream("polarscan_testdata_000.msg", std::ios::binary);
186  * sick_scansegment_xd::ScanSegmentParserOutput msgpack_output;
187  * sick_scansegment_xd::MsgPackParser::Parse(msgpack_istream, msgpack_output);
188  *
189  * sick_scansegment_xd::MsgPackParser::WriteCSV({ msgpack_output }, "polarscan_testdata_000.csv")
190  *
191  * @param[in] result converted msgpack data, output from Parse function
192  * @param[in] csvFile name of output csv file incl. optional file path
193  * @param[in] overwrite_existing_file if overwrite_existing_file is true and csvFile already exists, the file will be overwritten. otherwise all results are appended to the file.
194  */
195  static bool WriteCSV(const std::vector<ScanSegmentParserOutput>& results, const std::string& csvFile, bool overwrite_existing_file);
196 
197  /*
198  * @brief exports x, y, z, intensity, group, echo and message index of msgpack data.
199  * @param[in] result converted msgpack data, output from Parse function
200  * Note: All output vectors x, y, z, i, group_idx, echo_idx, msg_idx identical size, i.e. it's safe to
201  * assert(x.size() == y.size() && x.size() == z.size() && x.size() == i.size() && x.size() == group_idx.size() && echo_idx.size() == msg_idx.size());
202  */
203  static bool ExportXYZI(const std::vector<ScanSegmentParserOutput>& results, std::vector<float>& x, std::vector<float>& y, std::vector<float>& z, std::vector<float>& i, std::vector<int>& group_idx, std::vector<int>& echo_idx, std::vector<int>& msg_idx);
204 
205  /*
206  * @brief return a timestamp of the current time (i.e. std::chrono::system_clock::now() formatted by "YYYY-MM-DD hh-mm-ss.msec").
207  */
208  static std::string Timestamp(const std::chrono::system_clock::time_point& now = std::chrono::system_clock::now());
209 
210  /*
211  * @brief return a formatted timestamp "<sec>.<millisec>".
212  * @param[in] sec second part of timestamp
213  * @param[in] nsec nanosecond part of timestamp
214  * @return "<sec>.<millisec>"
215  */
216  static std::string Timestamp(uint32_t sec, uint32_t nsec);
217 
218  /*
219  * @brief Returns the tokenized integer of a msgpack key.
220  * Example: MsgpackKeyToInt("data") returns 0x11.
221  */
222  // static int MsgpackKeyToInt(const std::string& key); // replaced by MsgpackKeyToInt preprocessor defines for performance
223 
224  /*
225  * @brief Returns the name of a tokenized msgpack key.
226  * Example: MsgpackKeyToStr(0x11) returns "data".
227  */
228  // static std::string MsgpackKeyToStr(int key);
229 
230  protected:
231 
232  /*
233  * @brief Counter for each message (each scandata decoded from msgpack data)
234  */
235  static int messageCount;
236  static int telegramCount;
237 
238  }; // class MsgPackParser
239 
240 } // namespace sick_scansegment_xd
241 #endif // __SICK_SCANSEGMENT_XD_MSGPACK_PARSER_H
common.h
sick_cloud_transform.h
sick_scan_xd::SickCloudTransform
Definition: sick_cloud_transform.h:85
sick_scansegment_xd::MsgPackParser::telegramCount
static int telegramCount
Definition: msgpack_parser.h:236
sick_scansegment_xd::MsgPackValidatorData
Definition: msgpack_validator.h:86
sick_scansegment_xd
Definition: include/sick_scansegment_xd/common.h:138
sick_scansegment_xd::MsgPackParser
Definition: msgpack_parser.h:95
fifo.h
scansegment_parser_output.h
sick_range_filter.h
sick_ros_wrapper.h
multiscan_pcap_player.verbose
int verbose
Definition: multiscan_pcap_player.py:142
ROS::now
ROS::Time now(void)
Definition: ros_wrapper.cpp:116
nsec
uint32_t nsec(const rosTime &time)
Definition: sick_ros_wrapper.h:175
sick_scansegment_xd::ScanSegmentParserOutput
Definition: scansegment_parser_output.h:118
msgpack_validator.h
sick_scansegment_xd::MsgPackParser::messageCount
static int messageCount
Definition: msgpack_parser.h:235
sick_scansegment_xd::MsgPackParser::ExportXYZI
static bool ExportXYZI(const std::vector< ScanSegmentParserOutput > &results, std::vector< float > &x, std::vector< float > &y, std::vector< float > &z, std::vector< float > &i, std::vector< int > &group_idx, std::vector< int > &echo_idx, std::vector< int > &msg_idx)
Definition: msgpack_parser.cpp:933
sick_scansegment_xd::MsgPackParser::Parse
static bool Parse(const std::vector< uint8_t > &msgpack_data, fifo_timestamp msgpack_timestamp, sick_scan_xd::SickCloudTransform &add_transform_xyz_rpy, ScanSegmentParserOutput &result, sick_scansegment_xd::MsgPackValidatorData &msgpack_validator_data_collector, const sick_scansegment_xd::MsgPackValidator &msgpack_validator=sick_scansegment_xd::MsgPackValidator(), bool msgpack_validator_enabled=false, bool discard_msgpacks_not_validated=false, bool use_software_pll=true, bool verbose=false)
Definition: msgpack_parser.cpp:481
fifo_timestamp
std::chrono::time_point< std::chrono::system_clock > fifo_timestamp
Definition: fifo.h:68
sec
uint32_t sec(const rosTime &time)
Definition: sick_ros_wrapper.h:174
sick_scansegment_xd::MsgPackParser::ReadFile
static std::vector< uint8_t > ReadFile(const std::string &filepath)
Definition: msgpack_parser.cpp:431
sick_scansegment_xd::MsgPackParser::MsgpackToHexDump
static std::string MsgpackToHexDump(const std::vector< uint8_t > &msgpack_data, bool pretty_print=true)
Definition: msgpack_parser.cpp:443
sick_scan_base.h
sick_scansegment_xd::MsgPackValidator
Definition: msgpack_validator.h:201
sick_scansegment_xd::MsgPackParser::WriteCSV
static bool WriteCSV(const std::vector< ScanSegmentParserOutput > &results, const std::string &csvFile, bool overwrite_existing_file)
Definition: msgpack_parser.cpp:874
sick_scansegment_xd::MsgPackParser::Timestamp
static std::string Timestamp(const std::chrono::system_clock::time_point &now=std::chrono::system_clock::now())


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:09