2014-09-10 21:32:41 +00:00
|
|
|
#pragma once
|
|
|
|
|
2014-10-23 19:17:20 +00:00
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
2014-09-10 21:32:41 +00:00
|
|
|
#include <boost/functional/hash.hpp>
|
2014-10-23 19:17:20 +00:00
|
|
|
#include <unordered_map>
|
2014-09-10 21:32:41 +00:00
|
|
|
|
|
|
|
namespace crow
|
|
|
|
{
|
2020-11-18 22:13:57 +00:00
|
|
|
/// Hashing function for ci_map (unordered_multimap).
|
2014-09-10 21:32:41 +00:00
|
|
|
struct ci_hash
|
|
|
|
{
|
|
|
|
size_t operator()(const std::string& key) const
|
|
|
|
{
|
|
|
|
std::size_t seed = 0;
|
|
|
|
std::locale locale;
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
for (auto c : key)
|
2014-09-10 21:32:41 +00:00
|
|
|
{
|
|
|
|
boost::hash_combine(seed, std::toupper(c, locale));
|
|
|
|
}
|
|
|
|
|
|
|
|
return seed;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-11-18 22:13:57 +00:00
|
|
|
/// Equals function for ci_map (unordered_multimap).
|
2014-09-10 21:32:41 +00:00
|
|
|
struct ci_key_eq
|
|
|
|
{
|
|
|
|
bool operator()(const std::string& l, const std::string& r) const
|
|
|
|
{
|
|
|
|
return boost::iequals(l, r);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
using ci_map = std::unordered_multimap<std::string, std::string, ci_hash, ci_key_eq>;
|
2021-11-25 11:45:38 +00:00
|
|
|
} // namespace crow
|