utils.cpp
Go to the documentation of this file.
1 /*
2  * @brief sim_loc_utils contains a collection of utility functions for SIM Localization.
3  *
4  * Copyright (C) 2019 Ing.-Buero Dr. Michael Lehning, Hildesheim
5  * Copyright (C) 2019 SICK AG, Waldkirch
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * All rights reserved.
20  *
21  * Redistribution and use in source and binary forms, with or without
22  * modification, are permitted provided that the following conditions are met:
23  *
24  * * Redistributions of source code must retain the above copyright
25  * notice, this list of conditions and the following disclaimer.
26  * * Redistributions in binary form must reproduce the above copyright
27  * notice, this list of conditions and the following disclaimer in the
28  * documentation and/or other materials provided with the distribution.
29  * * Neither the name of SICK AG nor the names of its
30  * contributors may be used to endorse or promote products derived from
31  * this software without specific prior written permission
32  * * Neither the name of Ing.-Buero Dr. Michael Lehning nor the names of its
33  * contributors may be used to endorse or promote products derived from
34  * this software without specific prior written permission
35  *
36  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
37  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
39  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
40  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
41  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
42  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
43  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
44  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
46  * POSSIBILITY OF SUCH DAMAGE.
47  *
48  * Authors:
49  * Michael Lehning <michael.lehning@lehning.de>
50  *
51  * Copyright 2019 SICK AG
52  * Copyright 2019 Ing.-Buero Dr. Michael Lehning
53  *
54  */
55 
56 #include "sick_scan/ros_wrapper.h"
57 #include <iomanip>
58 #include <string>
59 #include <vector>
60 //#include <boost/algorithm/hex.hpp>
61 //#include <boost/algorithm/string.hpp>
62 #include "sick_scan/utils.h"
63 
64 /*
65  * Converts and returns binary data to hex string
66  * @param[in] binary_data binary input data
67  * @return hex string
68  */
69 std::string sick_scan_xd::Utils::toHexString(const std::vector<uint8_t> & binary_data)
70 {
71  //std::string hex_string;
72  //hex_string.reserve(binary_data.size() * 2);
73  //boost::algorithm::hex(binary_data.begin(), binary_data.end(), std::back_inserter(hex_string));
74  //return hex_string;
75  std::stringstream hex_string;
76  for(int n = 0; n < binary_data.size(); n++)
77  hex_string << std::setfill('0') << std::setw(2) << std::hex << (int)(binary_data[n]);
78  return hex_string.str();
79 }
80 
86 std::string sick_scan_xd::Utils::toAsciiString(const uint8_t* binary_data, int length)
87 {
88  std::stringstream out;
89  for(int n = 0; n < length; n++)
90  {
91  int val = (int)(binary_data[n] & 0xFF);
92  if ((val == 0x20) || (val >= 48 && val <= 57) || (val >= 65 && val <= 90) || (val >= 97 && val <= 122))
93  {
94  out << std::string(1,(char)(val & 0xFF));
95  /*char s[2] = {0};
96  sprintf(s, "%c", (char)(val & 0xFF));
97  out << s;*/
98  }
99  else
100  {
101  out << "\\x" << std::setfill('0') << std::setw(2) << std::hex << val;
102  }
103  }
104  return out.str();
105 }
106 
111 void sick_scan_xd::Utils::replaceAll(std::string& str, const std::string& from, const std::string& to)
112 {
113  // boost::replace_all(str, from, to);
114  if(!str.empty() && !from.empty())
115  {
116  size_t start_pos = 0;
117  while((start_pos = str.find(from, start_pos)) != std::string::npos)
118  {
119  str.replace(start_pos, from.length(), to);
120  start_pos += to.length();
121  }
122  }
123 }
124 
125 /*
126  * Shortcut to replace linefeeds by colon-separators
127  */
129 {
130  replaceAll(s, "\n", ", ");
131  replaceAll(s, ": , ", ": ");
132  while(s.find(" ") != std::string::npos)
133  replaceAll(s, " ", " ");
134 }
135 
139 std::vector<std::string> sick_scan_xd::Utils::splitSpaces(const std::string & s)
140 {
141  std::vector<std::string> parts;
142  parts.push_back("");
143  for(int n = 0; n < s.size(); n++)
144  {
145  if(isspace(s[n]))
146  {
147  if(!parts.back().empty())
148  {
149  parts.push_back("");
150  parts.back().reserve(s.size() + 1 - n);
151  }
152  }
153  else
154  {
155  parts.back().push_back(s[n]);
156  }
157  }
158  // std::vector<std::string> boost_parts;
159  // boost::split(boost_parts, s, boost::algorithm::is_space());
160  // assert(parts.size() == boost_parts.size());
161  // for(int n = 0; n < parts.size() && n < boost_parts.size(); n++)
162  // assert(parts[n] == boost_parts[n]);
163  return parts;
164 }
sick_scan_xd::Utils::toAsciiString
static std::string toAsciiString(const uint8_t *binary_data, int length)
Definition: utils.cpp:86
sick_scan_xd::Utils::toHexString
static std::string toHexString(const std::vector< uint8_t > &binary_data)
Definition: utils.cpp:69
sick_scan_xd::Utils::replaceAll
static void replaceAll(std::string &str, const std::string &from, const std::string &to)
Definition: utils.cpp:111
s
XmlRpcServer s
utils.h
sick_scan_xd::Utils::flattenString
static void flattenString(std::string &s)
Definition: utils.cpp:128
sick_scan_xd::Utils::splitSpaces
static std::vector< std::string > splitSpaces(const std::string &s)
Definition: utils.cpp:139
length
TFSIMD_FORCE_INLINE tfScalar length(const Quaternion &q)
ros_wrapper.h


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