blob: 25e70aec1db6740da0cf903884cbae55afbb3e33 (
plain)
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
|
/*
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Array.h>
#include <AK/ByteBuffer.h>
#include <AK/StringView.h>
#include <AK/Types.h>
namespace AK {
class UUID {
public:
UUID();
UUID(Array<u8, 16> uuid_buffer);
UUID(const StringView&);
~UUID() = default;
bool operator==(const UUID&) const;
bool operator!=(const UUID& other) const { return !(*this == other); }
bool operator<=(const UUID&) const = delete;
bool operator>=(const UUID&) const = delete;
bool operator<(const UUID&) const = delete;
bool operator>(const UUID&) const = delete;
String to_string() const;
bool is_zero() const;
private:
void convert_string_view_to_uuid(const StringView&);
void fill_buffer(ByteBuffer);
Array<u8, 16> m_uuid_buffer {};
};
}
using AK::UUID;
|