rbdlsim/3rdparty/tracy/server/TracyCharUtil.hpp

79 lines
1.3 KiB
C++
Raw Normal View History

2021-08-06 12:10:32 +02:00
#ifndef __TRACY__CHARUTIL_HPP__
#define __TRACY__CHARUTIL_HPP__
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#ifndef XXH_STATIC_LINKING_ONLY
# define XXH_STATIC_LINKING_ONLY
#endif
#include "tracy_xxh3.h"
namespace tracy
{
namespace charutil
{
static inline size_t hash( const char* str )
{
const auto sz = strlen( str );
return XXH3_64bits( str, sz );
}
static inline size_t hash( const char* str, size_t sz )
{
return XXH3_64bits( str, sz );
}
struct Hasher
{
size_t operator()( const char* key ) const
{
return hash( key );
}
};
struct Comparator
{
bool operator()( const char* lhs, const char* rhs ) const
{
return strcmp( lhs, rhs ) == 0;
}
};
struct LessComparator
{
bool operator()( const char* lhs, const char* rhs ) const
{
return strcmp( lhs, rhs ) < 0;
}
};
struct StringKey
{
const char* ptr;
size_t sz;
struct Hasher
{
size_t operator()( const StringKey& key ) const
{
return hash( key.ptr, key.sz );
}
};
struct Comparator
{
bool operator()( const StringKey& lhs, const StringKey& rhs ) const
{
return lhs.sz == rhs.sz && memcmp( lhs.ptr, rhs.ptr, lhs.sz ) == 0;
}
};
};
}
}
#endif