18 #ifndef _COMMONIFACE_HH_
19 #define _COMMONIFACE_HH_
23 #include <boost/uuid/sha1.hpp>
49 std::string
find_file(
const std::string &_file);
57 std::string
find_file(
const std::string &_file,
58 bool _searchLocalPath);
71 std::string
get_sha1(
const T &_buffer);
77 const char *
getEnv(
const char *_name);
84 std::vector<std::string>
split(
const std::string &_str,
85 const std::string &_delim);
94 boost::uuids::detail::sha1 sha1;
96 std::stringstream stream;
98 if (_buffer.size() == 0)
100 sha1.process_bytes(
NULL, 0);
104 sha1.process_bytes(&(_buffer[0]), _buffer.size() *
sizeof(_buffer[0]));
107 sha1.get_digest(hash);
109 for (std::size_t i = 0; i <
sizeof(hash) /
sizeof(hash[0]); ++i)
111 stream << std::setfill(
'0')
112 << std::setw(
sizeof(hash[0]) * 2)
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