]> git.ipfire.org Git - thirdparty/squid.git/blame - src/sbuf/Algorithms.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / sbuf / Algorithms.cc
CommitLineData
25436c30 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
25436c30
FC
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9#include "squid.h"
517fc64c 10#include "sbuf/Algorithms.h"
25436c30 11
e37f2b5a 12// private common implementation for SBuf hash variants
ae72213d 13static std::size_t
e37f2b5a 14SBufHashCommon_ (const SBuf & sbuf, bool caseInsensitive) noexcept
25436c30
FC
15{
16 //ripped and adapted from hash_string
17 const char *s = sbuf.rawContent();
18 size_t rv = 0;
19 SBuf::size_type len=sbuf.length();
20 while (len != 0) {
ae72213d 21 rv ^= 271 * (caseInsensitive? xtolower(*s) : *s);
25436c30
FC
22 ++s;
23 --len;
24 }
25 return rv ^ (sbuf.length() * 271);
26}
132d9943 27
ae72213d
FC
28std::size_t
29std::hash<SBuf>::operator() (const SBuf & sbuf) const noexcept
30{
e37f2b5a 31 return SBufHashCommon_(sbuf, false);
ae72213d
FC
32}
33
34std::size_t
35CaseInsensitiveSBufHash::operator() (const SBuf & sbuf) const noexcept
36{
e37f2b5a 37 return SBufHashCommon_(sbuf, true);
ae72213d
FC
38}
39