NcEngine
Hash.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <string_view>
8
9namespace nc::utility
10{
12namespace detail
13{
14constexpr size_t FnvOffsetBasis = 14695981039346656037ull;
15constexpr size_t FnvPrime = 1099511628211ull;
16}
20constexpr auto Fnv1a(std::string_view path) -> size_t
21{
22 auto hash = detail::FnvOffsetBasis;
23 for(auto c : path)
24 {
25 hash = (hash ^ static_cast<uint8_t>(c)) * detail::FnvPrime;
26 }
27 return hash;
28}
29
32{
33 public:
34 constexpr explicit StringHash(std::string_view path)
35 : m_hash{Fnv1a(path)}
36 {
37 }
38
39 constexpr auto Hash() const noexcept -> size_t
40 {
41 return m_hash;
42 }
43
44 private:
45 size_t m_hash;
46};
47
48constexpr bool operator==(StringHash lhs, StringHash rhs)
49{
50 return lhs.Hash() == rhs.Hash();
51}
52
53constexpr bool operator!=(StringHash lhs, StringHash rhs)
54{
55 return !(lhs == rhs);
56}
57} // namespace nc::hash
constexpr auto Fnv1a(std::string_view path) -> size_t
FNV1-a hash algorithm.
Definition: Hash.h:20
A constexpr string hash wrapper.
Definition: Hash.h:32