123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- /**
- * @file hbxxh.cpp
- * @brief High performances vectorized hashing based on xxHash.
- *
- * $LicenseInfo:firstyear=2023&license=viewergpl$
- *
- * Copyright (c) 2023, Henri Beauchamp.
- *
- * Second Life Viewer Source Code
- * The source code in this file ("Source Code") is provided by Linden Lab
- * to you under the terms of the GNU General Public License, version 2.0
- * ("GPL"), unless you have obtained a separate licensing agreement
- * ("Other License"), formally executed by you and Linden Lab. Terms of
- * the GPL can be found in doc/GPL-license.txt in this distribution, or
- * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
- *
- * There are special exceptions to the terms and conditions of the GPL as
- * it is applied to this Source Code. View the full text of the exception
- * in the file doc/FLOSS-exception.txt in this software distribution, or
- * online at
- * http://secondlifegrid.net/programs/open_source/licensing/flossexception
- *
- * By copying, modifying or distributing this software, you acknowledge
- * that you have read and understood your obligations described above,
- * and agree to abide by those obligations.
- *
- * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
- * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
- * COMPLETENESS OR PERFORMANCE.
- * $/LicenseInfo$
- */
- #include "linden_common.h"
- // This define ensures that xxHash will be compiled within this module, with
- // vectorized (*) and inlined functions (with no exported API symbol); our
- // xxhash "pre-built library" package actually only contains the xxhash.h
- // header (no library needed at link time).
- // (*) SSE2 is normally used for x86(_64) builds, unless you enabled AVX2
- // in your build, in which case the latter would be used instead. For ARM64
- // builds, this would also automatically enable NEON vectorization.
- #define XXH_INLINE_ALL
- #include "xxhash.h"
- #include "hbxxh.h"
- // How many bytes to grab at a time when hashing files or streams
- constexpr size_t BLOCK_LEN = 4096;
- ///////////////////////////////////////////////////////////////////////////////
- // HBXXH64 class
- ///////////////////////////////////////////////////////////////////////////////
- //static
- U64 HBXXH64::digest(const void* buffer, size_t len)
- {
- return XXH3_64bits(buffer, len);
- }
- //static
- U64 HBXXH64::digest(const char* str)
- {
- return XXH3_64bits((const void*)str, strlen(str));
- }
- //static
- U64 HBXXH64::digest(const std::string& str)
- {
- return XXH3_64bits((const void*)str.c_str(), str.size());
- }
- // Must be called by all constructors.
- void HBXXH64::init()
- {
- mDigest = 0;
- mState = (void*)XXH3_createState();
- if (!mState || XXH3_64bits_reset((XXH3_state_t*)mState) != XXH_OK)
- {
- llwarns << "Failed to initialize state !" << llendl;
- }
- }
- HBXXH64::~HBXXH64()
- {
- if (mState)
- {
- XXH3_freeState((XXH3_state_t*)mState);
- }
- }
- void HBXXH64::update(const void* buffer, size_t len)
- {
- if (mState)
- {
- XXH3_64bits_update((XXH3_state_t*)mState, buffer, len);
- }
- else
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- }
- }
- void HBXXH64::update(const std::string& str)
- {
- if (mState)
- {
- XXH3_64bits_update((XXH3_state_t*)mState, (const void*)str.c_str(),
- str.length());
- }
- else
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- }
- }
- void HBXXH64::update(std::istream& stream)
- {
- if (!mState)
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- return;
- }
- char buffer[BLOCK_LEN];
- size_t len;
- while (stream.good())
- {
- stream.read(buffer, BLOCK_LEN);
- len = stream.gcount();
- XXH3_64bits_update((XXH3_state_t*)mState, (const void*)buffer, len);
- }
- }
- void HBXXH64::update(FILE* file)
- {
- if (!mState)
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- return;
- }
- char buffer[BLOCK_LEN];
- size_t len;
- while ((len = fread((void*)buffer, 1, BLOCK_LEN, file)))
- {
- XXH3_64bits_update((XXH3_state_t*)mState, (const void*)buffer, len);
- }
- fclose(file);
- }
- void HBXXH64::finalize()
- {
- if (!mState)
- {
- llwarns << "Already finalized !" << llendl;
- return;
- }
- mDigest = XXH3_64bits_digest((XXH3_state_t*)mState);
- XXH3_freeState((XXH3_state_t*)mState);
- mState = NULL;
- }
- U64 HBXXH64::digest() const
- {
- return mState ? XXH3_64bits_digest((XXH3_state_t*)mState) : mDigest;
- }
- std::ostream& operator<<(std::ostream& stream, HBXXH64 context)
- {
- stream << context.digest();
- return stream;
- }
- ///////////////////////////////////////////////////////////////////////////////
- // HBXXH128 class
- ///////////////////////////////////////////////////////////////////////////////
- //static
- LLUUID HBXXH128::digest(const void* buffer, size_t len)
- {
- XXH128_hash_t hash = XXH3_128bits(buffer, len);
- LLUUID id;
- U64* data = (U64*)id.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- return id;
- }
- //static
- LLUUID HBXXH128::digest(const char* str)
- {
- XXH128_hash_t hash = XXH3_128bits((const void*)str, strlen(str));
- LLUUID id;
- U64* data = (U64*)id.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- return id;
- }
- //static
- LLUUID HBXXH128::digest(const std::string& str)
- {
- XXH128_hash_t hash = XXH3_128bits((const void*)str.c_str(), str.size());
- LLUUID id;
- U64* data = (U64*)id.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- return id;
- }
- //static
- void HBXXH128::digest(LLUUID& result, const void* buffer, size_t len)
- {
- XXH128_hash_t hash = XXH3_128bits(buffer, len);
- U64* data = (U64*)result.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- }
- //static
- void HBXXH128::digest(LLUUID& result, const char* str)
- {
- XXH128_hash_t hash = XXH3_128bits((const void*)str, strlen(str));
- U64* data = (U64*)result.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- }
- //static
- void HBXXH128::digest(LLUUID& result, const std::string& str)
- {
- XXH128_hash_t hash = XXH3_128bits((const void*)str.c_str(), str.size());
- U64* data = (U64*)result.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- }
- // Must be called by all constructors.
- void HBXXH128::init()
- {
- mState = (void*)XXH3_createState();
- if (!mState || XXH3_128bits_reset((XXH3_state_t*)mState) != XXH_OK)
- {
- llwarns << "Failed to initialize state !" << llendl;
- }
- }
- HBXXH128::~HBXXH128()
- {
- if (mState)
- {
- XXH3_freeState((XXH3_state_t*)mState);
- }
- }
- void HBXXH128::update(const void* buffer, size_t len)
- {
- if (mState)
- {
- XXH3_128bits_update((XXH3_state_t*)mState, buffer, len);
- }
- else
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- }
- }
- void HBXXH128::update(const std::string& str)
- {
- if (mState)
- {
- XXH3_128bits_update((XXH3_state_t*)mState, (const void*)str.c_str(),
- str.length());
- }
- else
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- }
- }
- void HBXXH128::update(std::istream& stream)
- {
- if (!mState)
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- return;
- }
- char buffer[BLOCK_LEN];
- size_t len;
- while (stream.good())
- {
- stream.read(buffer, BLOCK_LEN);
- len = stream.gcount();
- XXH3_128bits_update((XXH3_state_t*)mState, (const void*)buffer, len);
- }
- }
- void HBXXH128::update(FILE* file)
- {
- if (!mState)
- {
- llwarns << "Cannot update a finalized digest !" << llendl;
- return;
- }
- char buffer[BLOCK_LEN];
- size_t len;
- while ((len = fread((void*)buffer, 1, BLOCK_LEN, file)))
- {
- XXH3_128bits_update((XXH3_state_t*)mState, (const void*)buffer, len);
- }
- fclose(file);
- }
- void HBXXH128::finalize()
- {
- if (!mState)
- {
- llwarns << "Already finalized !" << llendl;
- return;
- }
- XXH128_hash_t hash = XXH3_128bits_digest((XXH3_state_t*)mState);
- U64* data = (U64*)mDigest.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- XXH3_freeState((XXH3_state_t*)mState);
- mState = NULL;
- }
- const LLUUID& HBXXH128::digest() const
- {
- if (mState)
- {
- XXH128_hash_t hash = XXH3_128bits_digest((XXH3_state_t*)mState);
- // We cheat the const-ness of the method here, but this is OK, since
- // mDigest is private and cannot be accessed indirectly by other
- // methods than digest() ones, that do check for mState to decide
- // whether mDigest's current value may be provided as is or not. This
- // cheat saves us a temporary LLLUID copy.
- U64* data = (U64*)mDigest.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- }
- return mDigest;
- }
- void HBXXH128::digest(LLUUID& result) const
- {
- if (!mState)
- {
- result = mDigest;
- return;
- }
- XXH128_hash_t hash = XXH3_128bits_digest((XXH3_state_t*)mState);
- U64* data = (U64*)result.mData;
- // Note: we do not check endianness here and we just store in the same
- // order as XXH128_hash_t, that is low word "first".
- data[0] = hash.low64;
- data[1] = hash.high64;
- }
- std::ostream& operator<<(std::ostream& stream, HBXXH128 context)
- {
- stream << context.digest();
- return stream;
- }
|