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
|
/*
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2020 Gothel Software e.K.
* Copyright (c) 2020 ZAFENA AB
*
* 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 UUID_HPP_
#define UUID_HPP_
#include <cstring>
#include <string>
#include <memory>
#include <cstdint>
#include <vector>
#include "BasicTypes.hpp"
namespace direct_bt {
class uuid128_t; // forward
/**
* Bluetooth UUID <https://www.bluetooth.com/specifications/assigned-numbers/service-discovery/>
* <p>
* Bluetooth is LSB or Little-Endian!
* </p>
* <p>
* BASE_UUID '00000000-0000-1000-8000-00805F9B34FB'
* </p>
*/
extern uuid128_t BT_BASE_UUID;
class uuid_t {
public:
/** Underlying integer value present octet count */
enum class TypeSize : int {
UUID16_SZ=2, UUID32_SZ=4, UUID128_SZ=16
};
static inline int number(const TypeSize rhs) noexcept {
return static_cast<int>(rhs);
}
private:
TypeSize type;
protected:
uuid_t(TypeSize const type) : type(type) {}
public:
static TypeSize toTypeSize(const int size);
static std::shared_ptr<const uuid_t> create(TypeSize const t, uint8_t const * const buffer, int const byte_offset, bool const littleEndian);
virtual ~uuid_t() noexcept {}
uuid_t(const uuid_t &o) noexcept = default;
uuid_t(uuid_t &&o) noexcept = default;
uuid_t& operator=(const uuid_t &o) noexcept = default;
uuid_t& operator=(uuid_t &&o) noexcept = default;
virtual bool operator==(uuid_t const &o) const noexcept {
if( this == &o ) {
return true;
}
return type == o.type;
}
bool operator!=(uuid_t const &o) const noexcept
{ return !(*this == o); }
TypeSize getTypeSize() const noexcept { return type; }
int getTypeSizeInt() const noexcept { return uuid_t::number(type); }
uuid128_t toUUID128(uuid128_t const & base_uuid=BT_BASE_UUID, int const uuid32_le_octet_index=12) const noexcept;
/** returns the pointer to the uuid data of size getTypeSize() */
virtual const uint8_t * data() const noexcept { return nullptr; }
virtual std::string toString() const noexcept { return ""; }
virtual std::string toUUID128String(uuid128_t const & base_uuid=BT_BASE_UUID, int const le_octet_index=12) const noexcept;
};
class uuid16_t : public uuid_t {
public:
uint16_t value;
uuid16_t(uint16_t const v) noexcept
: uuid_t(TypeSize::UUID16_SZ), value(v) { }
uuid16_t(uint8_t const * const buffer, int const byte_offset, bool const littleEndian) noexcept
: uuid_t(TypeSize::UUID16_SZ), value(get_uint16(buffer, byte_offset, littleEndian)) { }
uuid16_t(const uuid16_t &o) noexcept = default;
uuid16_t(uuid16_t &&o) noexcept = default;
uuid16_t& operator=(const uuid16_t &o) noexcept = default;
uuid16_t& operator=(uuid16_t &&o) noexcept = default;
bool operator==(uuid_t const &o) const noexcept override {
if( this == &o ) {
return true;
}
return getTypeSize() == o.getTypeSize() && value == static_cast<uuid16_t const *>(&o)->value;
}
const uint8_t * data() const noexcept override { return static_cast<uint8_t*>(static_cast<void*>(const_cast<uint16_t*>(&value))); }
std::string toString() const noexcept override;
std::string toUUID128String(uuid128_t const & base_uuid=BT_BASE_UUID, int const le_octet_index=12) const noexcept override;
};
class uuid32_t : public uuid_t {
public:
uint32_t value;
uuid32_t(uint32_t const v) noexcept
: uuid_t(TypeSize::UUID32_SZ), value(v) {}
uuid32_t(uint8_t const * const buffer, int const byte_offset, bool const littleEndian) noexcept
: uuid_t(TypeSize::UUID32_SZ), value(get_uint32(buffer, byte_offset, littleEndian)) { }
uuid32_t(const uuid32_t &o) noexcept = default;
uuid32_t(uuid32_t &&o) noexcept = default;
uuid32_t& operator=(const uuid32_t &o) noexcept = default;
uuid32_t& operator=(uuid32_t &&o) noexcept = default;
bool operator==(uuid_t const &o) const noexcept override {
if( this == &o ) {
return true;
}
return getTypeSize() == o.getTypeSize() && value == static_cast<uuid32_t const *>(&o)->value;
}
const uint8_t * data() const noexcept override { return static_cast<uint8_t*>(static_cast<void*>(const_cast<uint32_t*>(&value))); }
std::string toString() const noexcept override;
std::string toUUID128String(uuid128_t const & base_uuid=BT_BASE_UUID, int const le_octet_index=12) const noexcept override;
};
class uuid128_t : public uuid_t {
public:
uint128_t value;
uuid128_t() noexcept : uuid_t(TypeSize::UUID128_SZ) { bzero(value.data, sizeof(value)); }
uuid128_t(uint128_t const v) noexcept
: uuid_t(TypeSize::UUID128_SZ), value(v) {}
uuid128_t(const std::string str);
uuid128_t(uint8_t const * const buffer, int const byte_offset, bool const littleEndian) noexcept
: uuid_t(TypeSize::UUID128_SZ), value(get_uint128(buffer, byte_offset, littleEndian)) { }
uuid128_t(uuid16_t const & uuid16, uuid128_t const & base_uuid=BT_BASE_UUID, int const uuid16_le_octet_index=12) noexcept;
uuid128_t(uuid32_t const & uuid32, uuid128_t const & base_uuid=BT_BASE_UUID, int const uuid32_le_octet_index=12) noexcept;
uuid128_t(const uuid128_t &o) noexcept = default;
uuid128_t(uuid128_t &&o) noexcept = default;
uuid128_t& operator=(const uuid128_t &o) noexcept = default;
uuid128_t& operator=(uuid128_t &&o) noexcept = default;
bool operator==(uuid_t const &o) const noexcept override {
if( this == &o ) {
return true;
}
return getTypeSize() == o.getTypeSize() && value == static_cast<uuid128_t const *>(&o)->value;
}
const uint8_t * data() const noexcept override { return value.data; }
std::string toString() const noexcept override;
std::string toUUID128String(uuid128_t const & base_uuid=BT_BASE_UUID, int const le_octet_index=12) const noexcept override {
(void)base_uuid;
(void)le_octet_index;
return toString();
}
};
inline void put_uuid(uint8_t * buffer, int const byte_offset, const uuid_t &v) noexcept
{
switch(v.getTypeSize()) {
case uuid_t::TypeSize::UUID16_SZ:
put_uint16(buffer, byte_offset, static_cast<const uuid16_t &>(v).value);
break;
case uuid_t::TypeSize::UUID32_SZ:
put_uint32(buffer, byte_offset, static_cast<const uuid32_t &>(v).value);
break;
case uuid_t::TypeSize::UUID128_SZ:
put_uint128(buffer, byte_offset, static_cast<const uuid128_t &>(v).value);
break;
}
}
inline void put_uuid(uint8_t * buffer, int const byte_offset, const uuid_t &v, bool littleEndian) noexcept
{
switch(v.getTypeSize()) {
case uuid_t::TypeSize::UUID16_SZ:
put_uint16(buffer, byte_offset, static_cast<const uuid16_t &>(v).value, littleEndian);
break;
case uuid_t::TypeSize::UUID32_SZ:
put_uint32(buffer, byte_offset, static_cast<const uuid32_t &>(v).value, littleEndian);
break;
case uuid_t::TypeSize::UUID128_SZ:
put_uint128(buffer, byte_offset, static_cast<const uuid128_t &>(v).value, littleEndian);
break;
}
}
inline uuid16_t get_uuid16(uint8_t const * buffer, int const byte_offset) noexcept
{
return uuid16_t(get_uint16(buffer, byte_offset));
}
inline uuid16_t get_uuid16(uint8_t const * buffer, int const byte_offset, bool littleEndian) noexcept
{
return uuid16_t(get_uint16(buffer, byte_offset, littleEndian));
}
inline uuid32_t get_uuid32(uint8_t const * buffer, int const byte_offset) noexcept
{
return uuid32_t(get_uint32(buffer, byte_offset));
}
inline uuid32_t get_uuid32(uint8_t const * buffer, int const byte_offset, bool littleEndian) noexcept
{
return uuid32_t(get_uint32(buffer, byte_offset, littleEndian));
}
inline uuid128_t get_uuid128(uint8_t const * buffer, int const byte_offset) noexcept
{
return uuid128_t(get_uint128(buffer, byte_offset));
}
inline uuid128_t get_uuid128(uint8_t const * buffer, int const byte_offset, bool littleEndian) noexcept
{
return uuid128_t(get_uint128(buffer, byte_offset, littleEndian));
}
} /* namespace direct_bt */
#endif /* UUID_HPP_ */
|