Ignition Common

API Reference

4.5.0
include/ignition/common/Util.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef IGNITION_COMMON_UTIL_HH_
18 #define IGNITION_COMMON_UTIL_HH_
19 
20 #include <cassert>
21 #include <chrono>
22 #include <future>
23 #include <memory>
24 #include <string>
25 #include <thread>
26 #include <vector>
27 
28 #include <ignition/common/Export.hh>
31 #include <ignition/common/URI.hh>
32 
34 // Defines
35 
36 #ifdef _WIN32
37 # define IGN_HOMEDIR "USERPROFILE"
38 #else
39 # define IGN_HOMEDIR "HOME"
40 #endif
41 
43 #define IGN_NANO_TO_SEC 1e-9
44 
46 #define IGN_SEC_TO_NANO 1000000000
47 
49 #define IGN_MS_TO_NANO 1000000
50 
52 #define IGN_US_TO_NANO 1000
53 
55 #define IGN_SPEED_OF_LIGHT = 299792458.0
56 
58 #define IGN_SLEEP_S(_s) (std::this_thread::sleep_for(\
59  std::chrono::seconds(_s)))
60 
62 #define IGN_SLEEP_US(_us) (std::this_thread::sleep_for(\
63  std::chrono::microseconds(_us)))
64 
66 #define IGN_SLEEP_MS(_ms) (std::this_thread::sleep_for(\
67  std::chrono::milliseconds(_ms)))
68 
70 #define IGN_SLEEP_NS(_ns) (std::this_thread::sleep_for(\
71  std::chrono::nanoseconds(_ns)))
72 
74 #define IGN_SYSTEM_TIME() (std::chrono::system_clock::now())
75 
77 #define IGN_SYSTEM_TIME_S() (std::chrono::duration_cast<std::chrono::seconds>(\
78  std::chrono::system_clock::now().time_since_epoch()).count())
79 
81 #define IGN_SYSTEM_TIME_US() (\
82  std::chrono::duration_cast<std::chrono::microseconds>(\
83  std::chrono::system_clock::now().time_since_epoch()).count())
84 
86 #define IGN_SYSTEM_TIME_MS() (\
87  std::chrono::duration_cast<std::chrono::milliseconds>(\
88  std::chrono::system_clock::now().time_since_epoch()).count())
89 
91 #define IGN_SYSTEM_TIME_NS() (\
92  std::chrono::duration_cast<std::chrono::nanoseconds>(\
93  std::chrono::system_clock::now().time_since_epoch()).count())
94 
97 #define IGN_ASSERT(_expr, _msg) assert((_msg, _expr))
98 
100 namespace ignition
101 {
102  namespace common
103  {
106 
109 
115  std::string IGNITION_COMMON_VISIBLE systemTimeISO();
116 
119  std::string IGNITION_COMMON_VISIBLE systemTimeIso();
120 
125  std::string IGNITION_COMMON_VISIBLE timeToIso(
127 
130  std::string IGNITION_COMMON_VISIBLE logPath();
131 
134  void IGNITION_COMMON_VISIBLE addSearchPathSuffix(
135  const std::string &_suffix);
136 
140  std::string IGNITION_COMMON_VISIBLE findFile(const std::string &_file);
141 
147  std::string IGNITION_COMMON_VISIBLE findFile(const std::string &_file,
148  bool _searchLocalPath);
149 
153  std::string IGNITION_COMMON_VISIBLE findFilePath(const std::string &_file);
154 
163  void IGNITION_COMMON_VISIBLE addFindFileURICallback(
164  std::function<std::string(const URI &)> _cb);
165 
172  common::SystemPaths IGNITION_COMMON_VISIBLE *systemPaths();
173 
178  template<typename T>
179  std::string sha1(const T &_buffer);
180 
187  std::string IGNITION_COMMON_VISIBLE sha1(
188  void const *_buffer, std::size_t _byteCount);
189 
194  constexpr uint64_t IGNITION_COMMON_VISIBLE hash64(std::string_view _key)
195  {
196  const char *data = _key.data();
197  const auto len = _key.size();
198  const uint64_t prime = 0x100000001b3;
199  uint64_t hash = 0xcbf29ce484222325;
200 
201  for (auto i = 0u; i < len; ++i)
202  {
203  uint8_t value = static_cast<uint8_t>(data[i]);
204  hash = hash ^ value;
205  hash *= prime;
206  }
207 
208  return hash;
209  }
210 
218  bool IGNITION_COMMON_VISIBLE env(
219  const std::string &_name, std::string &_value);
220 
227  bool IGNITION_COMMON_VISIBLE env(
228  const std::string &_name, std::string &_value,
229  bool _allowEmpty);
230 
239  bool IGNITION_COMMON_VISIBLE setenv(
240  const std::string &_name, const std::string &_value);
241 
245  bool IGNITION_COMMON_VISIBLE unsetenv(const std::string &_name);
246 
249  std::string IGNITION_COMMON_VISIBLE uuid();
250 
255  std::vector<std::string> IGNITION_COMMON_VISIBLE split(
256  const std::string &_str, const std::string &_delim);
257 
260  void IGNITION_COMMON_VISIBLE ltrim(std::string &_s);
261 
264  void IGNITION_COMMON_VISIBLE rtrim(std::string &_s);
265 
268  void IGNITION_COMMON_VISIBLE trim(std::string &_s);
269 
273  std::string IGNITION_COMMON_VISIBLE ltrimmed(std::string _s);
274 
278  std::string IGNITION_COMMON_VISIBLE rtrimmed(std::string _s);
279 
283  std::string IGNITION_COMMON_VISIBLE trimmed(std::string _s);
284 
288  std::string IGNITION_COMMON_VISIBLE lowercase(const std::string &_in);
289 
293  std::string IGNITION_COMMON_VISIBLE lowercase(const char *_in);
294 
303  void IGNITION_COMMON_VISIBLE replaceAll(std::string &_result,
304  const std::string &_orig,
305  const std::string &_key,
306  const std::string &_replacement);
307 
316  std::string IGNITION_COMMON_VISIBLE replaceAll(const std::string &_orig,
317  const std::string &_key,
318  const std::string &_replacement);
319  }
320 }
321 
323 // Implementation of get_sha1
324 template<typename T>
326 {
327  if (_buffer.size() == 0)
328  return ignition::common::sha1(NULL, 0);
329  else
330  {
331  return ignition::common::sha1(
332  &(_buffer[0]), _buffer.size() * sizeof(_buffer[0]));
333  }
334 }
335 #endif
bool setenv(const std::string &_name, const std::string &_value)
Set the environment variable &#39;_name&#39;.
std::string sha1(const T &_buffer)
Compute the SHA1 hash of an array of bytes.
Definition: include/ignition/common/Util.hh:325
std::string findFilePath(const std::string &_file)
search for a file in common::SystemPaths
std::string uuid()
Get a UUID.
void addSearchPathSuffix(const std::string &_suffix)
add path suffix to common::SystemPaths
std::string systemTimeISO()
Please use systemTimeIso() as this function will be deprecated in Ignition Common 4...
void replaceAll(std::string &_result, const std::string &_orig, const std::string &_key, const std::string &_replacement)
Replace all occurances of _key with _replacement.
std::string ltrimmed(std::string _s)
Copying left trim.
bool unsetenv(const std::string &_name)
Unset the environment variable &#39;_name&#39;.
common::SystemPaths * systemPaths()
Get a pointer to the global system paths that is used by all the findFile functions. The returned instance has global shared state for a given process. Care should be taken when manipulating global system paths Caller should not assume ownership of the pointer.
std::runtime_error exception
A runtime error.
Definition: include/ignition/common/Util.hh:108
std::string systemTimeIso()
Get the wall time as an ISO string: YYYY-MM-DDTHH:MM:SS.NS.
void rtrim(std::string &_s)
In place right trim.
STL class.
bool env(const std::string &_name, std::string &_value)
Find the environment variable &#39;_name&#39; and return its value.
std::string logPath()
Get the log path.
A complete URI which has the following components:
Definition: URI.hh:406
Definition: include/ignition/common/Util.hh:105
Functions to handle getting system paths, keeps track of:
Definition: SystemPaths.hh:51
Definition: include/ignition/common/Util.hh:105
constexpr uint64_t hash64(std::string_view _key)
fnv1a algorithm for 64-bit platforms.
Definition: include/ignition/common/Util.hh:194
std::string lowercase(const std::string &_in)
Transforms a string to its lowercase equivalent.
NodeTransformType
Enumeration of the transform types.
Definition: include/ignition/common/Util.hh:105
std::string findFile(const std::string &_file)
search for file in common::SystemPaths
std::vector< std::string > split(const std::string &_str, const std::string &_delim)
Splits a string into tokens.
std::string timeToIso(const std::chrono::time_point< std::chrono::system_clock > &_time)
Converts a time point to an ISO string: YYYY-MM-DDTHH:MM:SS.NS.
STL class.
void addFindFileURICallback(std::function< std::string(const URI &)> _cb)
Add a callback to use when findFile() can&#39;t find a file that is a valid URI. The callback should retu...
std::string rtrimmed(std::string _s)
Copying right trim.
std::string trimmed(std::string _s)
Copying trim from both ends.
Forward declarations for the common classes.
void trim(std::string &_s)
In place trim from both ends.
Definition: include/ignition/common/Util.hh:105
Definition: include/ignition/common/Util.hh:105
void ltrim(std::string &_s)
In place left trim.