1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
///\file
/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2014 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#ifndef ETL_FNV_1_INCLUDED
#define ETL_FNV_1_INCLUDED
#include "platform.h"
#include "static_assert.h"
#include "type_traits.h"
#include "ihash.h"
#include "frame_check_sequence.h"
#include <stdint.h>
#if defined(ETL_COMPILER_KEIL)
#pragma diag_suppress 1300
#endif
///\defgroup fnv_1 FNV-1 & FNV-1a 32 & 64 bit hash calculations
///\ingroup maths
namespace etl
{
#if ETL_USING_64BIT_TYPES
//***************************************************************************
/// fnv_1 policy.
/// Calculates FNV1.
//***************************************************************************
struct fnv_1_policy_64
{
typedef uint64_t value_type;
uint64_t initial() const
{
return OFFSET_BASIS;
}
uint64_t add(uint64_t hash, uint8_t value) const
{
hash *= PRIME;
hash ^= value;
return hash;
}
uint64_t final(uint64_t hash) const
{
return hash;
}
static ETL_CONSTANT uint64_t OFFSET_BASIS = 0xCBF29CE484222325ull;
static ETL_CONSTANT uint64_t PRIME = 0x00000100000001b3ull;
};
//***************************************************************************
/// Calculates the fnv_1_64 hash.
///\ingroup fnv_1_64
//***************************************************************************
class fnv_1_64 : public etl::frame_check_sequence<fnv_1_policy_64>
{
public:
//*************************************************************************
/// Default constructor.
//*************************************************************************
fnv_1_64()
{
this->reset();
}
//*************************************************************************
/// Constructor from range.
/// \param begin Start of the range.
/// \param end End of the range.
//*************************************************************************
template<typename TIterator>
fnv_1_64(TIterator begin, const TIterator end)
{
this->reset();
this->add(begin, end);
}
};
//***************************************************************************
/// fnv_1a policy.
/// Calculates FNV1A.
//***************************************************************************
struct fnv_1a_policy_64
{
typedef uint64_t value_type;
uint64_t initial() const
{
return OFFSET_BASIS;
}
uint64_t add(uint64_t hash, uint8_t value) const
{
hash ^= value;
hash *= PRIME;
return hash;
}
uint64_t final(uint64_t hash) const
{
return hash;
}
static ETL_CONSTANT uint64_t OFFSET_BASIS = 0xCBF29CE484222325ull;
static ETL_CONSTANT uint64_t PRIME = 0x00000100000001b3ull;
};
//***************************************************************************
/// Calculates the fnv_1a_64 hash.
///\ingroup fnv_1a_64
//***************************************************************************
class fnv_1a_64 : public etl::frame_check_sequence<fnv_1a_policy_64>
{
public:
//*************************************************************************
/// Default constructor.
//*************************************************************************
fnv_1a_64()
{
this->reset();
}
//*************************************************************************
/// Constructor from range.
/// \param begin Start of the range.
/// \param end End of the range.
//*************************************************************************
template<typename TIterator>
fnv_1a_64(TIterator begin, const TIterator end)
{
this->reset();
this->add(begin, end);
}
};
#endif
//***************************************************************************
/// fnv_1 policy.
/// Calculates FNV1.
//***************************************************************************
struct fnv_1_policy_32
{
typedef uint32_t value_type;
uint32_t initial() const
{
return OFFSET_BASIS;
}
uint32_t add(uint32_t hash, uint8_t value) const
{
hash *= PRIME;
hash ^= value;
return hash;
}
uint32_t final(uint32_t hash) const
{
return hash;
}
static ETL_CONSTANT uint32_t OFFSET_BASIS = 0x811C9DC5UL;
static ETL_CONSTANT uint32_t PRIME = 0x01000193UL;
};
//***************************************************************************
/// Calculates the fnv_1_32 hash.
///\ingroup fnv_1_32
//***************************************************************************
class fnv_1_32 : public etl::frame_check_sequence<fnv_1_policy_32>
{
public:
//*************************************************************************
/// Default constructor.
//*************************************************************************
fnv_1_32()
{
this->reset();
}
//*************************************************************************
/// Constructor from range.
/// \param begin Start of the range.
/// \param end End of the range.
//*************************************************************************
template<typename TIterator>
fnv_1_32(TIterator begin, const TIterator end)
{
this->reset();
this->add(begin, end);
}
};
//***************************************************************************
/// fnv_1a policy.
/// Calculates FNV1A.
//***************************************************************************
struct fnv_1a_policy_32
{
typedef uint32_t value_type;
uint32_t initial() const
{
return OFFSET_BASIS;
}
uint32_t add(uint32_t hash, uint8_t value) const
{
hash ^= value;
hash *= PRIME;
return hash;
}
uint32_t final(uint32_t hash) const
{
return hash;
}
static ETL_CONSTANT uint32_t OFFSET_BASIS = 0x811C9DC5UL;
static ETL_CONSTANT uint32_t PRIME = 0x01000193UL;
};
//***************************************************************************
/// Calculates the fnv_1a_32 hash.
///\ingroup fnv_1a_32
//***************************************************************************
class fnv_1a_32 : public etl::frame_check_sequence<fnv_1a_policy_32>
{
public:
//*************************************************************************
/// Default constructor.
//*************************************************************************
fnv_1a_32()
{
this->reset();
}
//*************************************************************************
/// Constructor from range.
/// \param begin Start of the range.
/// \param end End of the range.
//*************************************************************************
template<typename TIterator>
fnv_1a_32(TIterator begin, const TIterator end)
{
this->reset();
this->add(begin, end);
}
};
}
#endif
|