2017-05-21 23:07:13 +00:00
|
|
|
#ifndef ENGINE_SHARED_UUID_MANAGER_H
|
|
|
|
#define ENGINE_SHARED_UUID_MANAGER_H
|
|
|
|
|
|
|
|
#include <base/tl/array.h>
|
2020-10-10 09:51:06 +00:00
|
|
|
#include <base/tl/sorted_array.h>
|
2017-05-21 23:07:13 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
UUID_MAXSTRSIZE = 37, // 12345678-0123-5678-0123-567890123456
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
UUID_INVALID = -2,
|
|
|
|
UUID_UNKNOWN = -1,
|
2017-05-21 23:07:13 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
OFFSET_UUID = 1 << 16,
|
2017-05-21 23:07:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CUuid
|
|
|
|
{
|
|
|
|
unsigned char m_aData[16];
|
|
|
|
|
2020-10-10 09:51:06 +00:00
|
|
|
bool operator==(const CUuid &Other) const;
|
|
|
|
bool operator!=(const CUuid &Other) const;
|
|
|
|
bool operator<(const CUuid &Other) const { return mem_comp(m_aData, Other.m_aData, sizeof(m_aData)) < 0; }
|
2017-05-21 23:07:13 +00:00
|
|
|
};
|
|
|
|
|
2017-09-12 12:58:44 +00:00
|
|
|
CUuid RandomUuid();
|
2017-05-21 23:07:13 +00:00
|
|
|
CUuid CalculateUuid(const char *pName);
|
2020-05-20 19:21:40 +00:00
|
|
|
// The buffer length should be at least UUID_MAXSTRSIZE.
|
2017-05-21 23:07:13 +00:00
|
|
|
void FormatUuid(CUuid Uuid, char *pBuffer, unsigned BufferLength);
|
2021-01-22 20:04:18 +00:00
|
|
|
// Returns nonzero on failure.
|
|
|
|
int ParseUuid(CUuid *pUuid, const char *pBuffer);
|
2017-05-21 23:07:13 +00:00
|
|
|
|
|
|
|
struct CName
|
|
|
|
{
|
|
|
|
CUuid m_Uuid;
|
|
|
|
const char *m_pName;
|
|
|
|
};
|
|
|
|
|
2020-10-10 09:51:06 +00:00
|
|
|
struct CNameIndexed
|
|
|
|
{
|
|
|
|
CUuid m_Uuid;
|
|
|
|
int m_ID;
|
|
|
|
|
|
|
|
bool operator<(const CNameIndexed &Other) const { return m_Uuid < Other.m_Uuid; }
|
|
|
|
bool operator<(const CUuid &Other) const { return m_Uuid < Other; }
|
|
|
|
bool operator==(const CUuid &Other) const { return m_Uuid == Other; }
|
|
|
|
};
|
|
|
|
|
2017-05-21 23:07:13 +00:00
|
|
|
class CPacker;
|
|
|
|
class CUnpacker;
|
|
|
|
|
|
|
|
class CUuidManager
|
|
|
|
{
|
|
|
|
array<CName> m_aNames;
|
2020-10-10 09:51:06 +00:00
|
|
|
sorted_array<CNameIndexed> m_aNamesSorted;
|
2020-09-26 19:41:58 +00:00
|
|
|
|
2017-05-21 23:07:13 +00:00
|
|
|
public:
|
|
|
|
void RegisterName(int ID, const char *pName);
|
|
|
|
CUuid GetUuid(int ID) const;
|
|
|
|
const char *GetName(int ID) const;
|
|
|
|
int LookupUuid(CUuid Uuid) const;
|
2017-11-18 02:08:16 +00:00
|
|
|
int NumUuids() const;
|
2017-05-21 23:07:13 +00:00
|
|
|
|
|
|
|
int UnpackUuid(CUnpacker *pUnpacker) const;
|
|
|
|
int UnpackUuid(CUnpacker *pUnpacker, CUuid *pOut) const;
|
|
|
|
void PackUuid(int ID, CPacker *pPacker) const;
|
|
|
|
|
|
|
|
void DebugDump() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern CUuidManager g_UuidManager;
|
|
|
|
|
|
|
|
#endif // ENGINE_SHARED_UUID_MANAGER_H
|