CommonIface.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-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 
18 #ifndef _COMMONIFACE_HH_
19 #define _COMMONIFACE_HH_
20 
21 #include <string>
22 #include <vector>
23 #include <boost/uuid/sha1.hpp>
24 #include <iomanip>
25 #include <sstream>
26 
27 #include "gazebo/util/system.hh"
28 
29 namespace gazebo
30 {
31  namespace common
32  {
35 
37  GZ_COMMON_VISIBLE
38  void load();
39 
42  GZ_COMMON_VISIBLE
43  void add_search_path_suffix(const std::string &_suffix);
44 
48  GZ_COMMON_VISIBLE
49  std::string find_file(const std::string &_file);
50 
56  GZ_COMMON_VISIBLE
57  std::string find_file(const std::string &_file,
58  bool _searchLocalPath);
59 
63  GZ_COMMON_VISIBLE
64  std::string find_file_path(const std::string &_file);
65 
70  template<typename T>
71  std::string get_sha1(const T &_buffer);
72 
76  GZ_COMMON_VISIBLE
77  const char *getEnv(const char *_name);
78 
83  GZ_COMMON_VISIBLE
84  std::vector<std::string> split(const std::string &_str,
85  const std::string &_delim);
87  }
88 
90  // Implementation of get_sha1
91  template<typename T>
92  std::string common::get_sha1(const T &_buffer)
93  {
94  boost::uuids::detail::sha1 sha1;
95  unsigned int hash[5];
96  std::stringstream stream;
97 
98  if (_buffer.size() == 0)
99  {
100  sha1.process_bytes(NULL, 0);
101  }
102  else
103  {
104  sha1.process_bytes(&(_buffer[0]), _buffer.size() * sizeof(_buffer[0]));
105  }
106 
107  sha1.get_digest(hash);
108 
109  for (std::size_t i = 0; i < sizeof(hash) / sizeof(hash[0]); ++i)
110  {
111  stream << std::setfill('0')
112  << std::setw(sizeof(hash[0]) * 2)
113  << std::hex
114  << hash[i];
115  }
116 
117  return stream.str();
118  }
119 }
120 #endif
std::string get_sha1(const T &_buffer)
Compute the SHA1 hash of an array of bytes.
Definition: CommonIface.hh:92
const char * getEnv(const char *_name)
Cross platform retrieval of an environment variable.
std::vector< std::string > split(const std::string &_str, const std::string &_delim)
Splits a string into tokens.
std::string find_file_path(const std::string &_file)
search for a file in common::SystemPaths
void load()
Load the common library.
std::string find_file(const std::string &_file)
search for file in common::SystemPaths
#define NULL
Definition: CommonTypes.hh:31
void add_search_path_suffix(const std::string &_suffix)
add path sufix to common::SystemPaths