Skip to content

Commit 0999b06

Browse files
author
Michal Tichák
committed
use djb2 instead of std::hash for multiplatform stability
1 parent 6bc3aab commit 0999b06

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

Framework/src/HashDataDescription.cxx

+18-11
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
#include <iostream>
12+
#include <iomanip>
1313
#include <sstream>
1414

1515
#include "QualityControl/HashDataDescription.h"
@@ -20,29 +20,36 @@ namespace o2::quality_control::core
2020
namespace hash
2121
{
2222

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+
2333
// 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
2536
{
2637
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);
2940
};
3041

3142
} // namespace hash
3243

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
3445
{
3546
o2::header::DataDescription description{};
47+
3648
if (name.size() <= o2::header::DataDescription::size) {
3749
description.runtimeInit(name.c_str());
3850
return description;
3951
} 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());
4653
return description;
4754
}
4855
}

Framework/test/testAggregatorRunner.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ std::pair<AggregatorRunnerConfig, std::vector<AggregatorConfig>> getAggregatorCo
5353
TEST_CASE("test_aggregator_runner_static")
5454
{
5555
CHECK((AggregatorRunner::createAggregatorRunnerDataDescription("qwertyuiop") == DataDescription("qwertyuiop")));
56-
CHECK((AggregatorRunner::createAggregatorRunnerDataDescription("012345678901234567890") == DataDescription("012345678901a4a0")));
56+
CHECK((AggregatorRunner::createAggregatorRunnerDataDescription("012345678901234567890") == DataDescription("012345678901639b")));
5757
CHECK_THROWS_AS(AggregatorRunner::createAggregatorRunnerDataDescription(""), AliceO2::Common::FatalException);
5858
}
5959

Framework/test/testCheck.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ BOOST_AUTO_TEST_CASE(test_check_long_description)
7878
BOOST_REQUIRE_EQUAL(check.getInputs().size(), 1);
7979
BOOST_CHECK_EQUAL(check.getInputs()[0], (InputSpec{ { "mo" }, "QTST", "skeletonTask", 0, Lifetime::Sporadic }));
8080

81-
BOOST_CHECK_EQUAL(check.getOutputSpec(), (OutputSpec{ "CDET", "singleCheckLa881", 0, Lifetime::Sporadic }));
81+
BOOST_CHECK_EQUAL(check.getOutputSpec(), (OutputSpec{ "CDET", "singleCheckL9fdb", 0, Lifetime::Sporadic }));
8282
}
8383

8484
std::shared_ptr<MonitorObject> dummyMO(const std::string& objName)

Framework/test/testTaskRunner.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ BOOST_AUTO_TEST_CASE(test_task_runner_static)
8181
{
8282
BOOST_CHECK_EQUAL(TaskRunner::createTaskDataOrigin("DET"), DataOrigin("QDET"));
8383
BOOST_CHECK(TaskRunner::createTaskDataDescription("qwertyuiop") == DataDescription("qwertyuiop"));
84-
BOOST_CHECK(TaskRunner::createTaskDataDescription("012345678901234567890") == DataDescription("012345678901a4a0"));
84+
BOOST_CHECK(TaskRunner::createTaskDataDescription("012345678901234567890") == DataDescription("012345678901639b"));
8585
BOOST_CHECK_THROW(TaskRunner::createTaskDataDescription(""), AliceO2::Common::FatalException);
8686
BOOST_CHECK_EQUAL(TaskRunner::createTaskRunnerIdString(), "qc-task");
8787
}

0 commit comments

Comments
 (0)