9
9
// granted to it by virtue of its status as an Intergovernmental Organization
10
10
// or submit itself to any jurisdiction.
11
11
12
- #include < iostream >
12
+ #include < iomanip >
13
13
#include < sstream>
14
14
15
15
#include " QualityControl/HashDataDescription.h"
@@ -20,29 +20,36 @@ namespace o2::quality_control::core
20
20
namespace hash
21
21
{
22
22
23
+ // djb2 is used instead of std::hash<std::string> to be consisted over different architectures
24
+ auto djb2 (const std::string& input) -> size_t
25
+ {
26
+ size_t hash = 5381 ;
27
+ for (const auto c : input) {
28
+ hash = ((hash << 5 ) + hash) + c; /* hash * 33 + c */
29
+ }
30
+ return hash;
31
+ }
32
+
23
33
// creates hash of input string and returns hexadecimal representation
24
- auto to_hexa (const std::string& input, size_t hash_length) -> std::string
34
+ // if created hash has smaller amount of digits than requested, required number of zeros is appended
35
+ auto to_hex (const std::string& input, size_t hashLength) -> std::string
25
36
{
26
37
std::stringstream ss;
27
- ss << std::hex << std::hash< std::string>{} (input);
28
- return std::move (ss).str ().substr (0 , hash_length );
38
+ ss << std::setfill ( ' 0 ' ) << std::left << std::setw (hashLength) << std::noshowbase << std::hex << djb2 (input);
39
+ return std::move (ss).str ().substr (0 , hashLength );
29
40
};
30
41
31
42
} // namespace hash
32
43
33
- o2::header::DataDescription createDataDescription (const std::string& name, size_t hashLength)
44
+ auto createDataDescription (const std::string& name, size_t hashLength) -> o2::header::DataDescription
34
45
{
35
46
o2::header::DataDescription description{};
47
+
36
48
if (name.size () <= o2::header::DataDescription::size) {
37
49
description.runtimeInit (name.c_str ());
38
50
return description;
39
51
} else {
40
-
41
- std::stringstream ss{};
42
- ss << std::hex << std::hash<std::string>{}(name);
43
-
44
- description.runtimeInit (name.substr (0 , o2::header::DataDescription::size - hashLength).append (hash::to_hexa (name, hashLength)).c_str ());
45
- std::cout << description.str << " \n " ;
52
+ description.runtimeInit (name.substr (0 , o2::header::DataDescription::size - hashLength).append (hash::to_hex (name, hashLength)).c_str ());
46
53
return description;
47
54
}
48
55
}
0 commit comments