2020-03-30 01:44:20 +02:00
|
|
|
/*
|
2024-12-13 03:21:03 +01:00
|
|
|
* Copyright 2020-2024 Ryan Powell <ryan@nable-embedded.io> and
|
|
|
|
* esp-nimble-cpp, NimBLE-Arduino contributors.
|
2020-03-30 01:44:20 +02:00
|
|
|
*
|
2024-12-13 03:21:03 +01:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2020-07-09 03:27:26 +02:00
|
|
|
*
|
2024-12-13 03:21:03 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2020-03-30 01:44:20 +02:00
|
|
|
*
|
2024-12-13 03:21:03 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2020-03-30 01:44:20 +02:00
|
|
|
*/
|
|
|
|
|
2024-07-13 04:42:53 +02:00
|
|
|
#ifndef NIMBLE_CPP_UUID_H_
|
|
|
|
#define NIMBLE_CPP_UUID_H_
|
2021-09-07 05:14:43 +02:00
|
|
|
|
|
|
|
#include "nimconfig.h"
|
2020-03-30 01:44:20 +02:00
|
|
|
#if defined(CONFIG_BT_ENABLED)
|
|
|
|
|
2024-07-13 04:42:53 +02:00
|
|
|
# if defined(CONFIG_NIMBLE_CPP_IDF)
|
|
|
|
# include "host/ble_uuid.h"
|
|
|
|
# else
|
|
|
|
# include "nimble/nimble/host/include/host/ble_uuid.h"
|
|
|
|
# endif
|
2021-09-07 05:14:43 +02:00
|
|
|
|
2024-11-19 19:51:32 +01:00
|
|
|
/**** FIX COMPILATION ****/
|
|
|
|
# undef min
|
|
|
|
# undef max
|
|
|
|
/**************************/
|
|
|
|
|
2024-07-13 04:42:53 +02:00
|
|
|
# include <string>
|
|
|
|
# include <cstring>
|
2020-03-30 01:44:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief A model of a %BLE UUID.
|
|
|
|
*/
|
|
|
|
class NimBLEUUID {
|
2024-07-13 04:42:53 +02:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @brief Created a blank UUID.
|
|
|
|
*/
|
|
|
|
NimBLEUUID() = default;
|
2024-07-26 22:47:36 +02:00
|
|
|
NimBLEUUID(const ble_uuid_any_t& uuid);
|
2024-07-13 04:42:53 +02:00
|
|
|
NimBLEUUID(const std::string& uuid);
|
2020-03-30 01:44:20 +02:00
|
|
|
NimBLEUUID(uint16_t uuid);
|
|
|
|
NimBLEUUID(uint32_t uuid);
|
2020-05-10 15:21:46 +02:00
|
|
|
NimBLEUUID(const ble_uuid128_t* uuid);
|
2024-07-13 04:42:53 +02:00
|
|
|
NimBLEUUID(const uint8_t* pData, size_t size);
|
2020-05-03 21:50:49 +02:00
|
|
|
NimBLEUUID(uint32_t first, uint16_t second, uint16_t third, uint64_t fourth);
|
2020-07-09 03:27:26 +02:00
|
|
|
|
2024-07-13 04:42:53 +02:00
|
|
|
uint8_t bitSize() const;
|
|
|
|
const uint8_t* getValue() const;
|
|
|
|
const ble_uuid_t* getBase() const;
|
|
|
|
bool equals(const NimBLEUUID& uuid) const;
|
|
|
|
std::string toString() const;
|
|
|
|
static NimBLEUUID fromString(const std::string& uuid);
|
|
|
|
const NimBLEUUID& to128();
|
|
|
|
const NimBLEUUID& to16();
|
|
|
|
const NimBLEUUID& reverseByteOrder();
|
2020-03-30 01:44:20 +02:00
|
|
|
|
2024-07-13 04:42:53 +02:00
|
|
|
bool operator==(const NimBLEUUID& rhs) const;
|
|
|
|
bool operator!=(const NimBLEUUID& rhs) const;
|
2024-12-13 03:21:03 +01:00
|
|
|
operator std::string() const;
|
2020-05-07 05:08:50 +02:00
|
|
|
|
2024-07-13 04:42:53 +02:00
|
|
|
private:
|
|
|
|
ble_uuid_any_t m_uuid{};
|
2020-03-30 01:44:20 +02:00
|
|
|
}; // NimBLEUUID
|
2024-07-13 04:42:53 +02:00
|
|
|
|
2020-03-30 01:44:20 +02:00
|
|
|
#endif /* CONFIG_BT_ENABLED */
|
2024-07-13 04:42:53 +02:00
|
|
|
#endif /* NIMBLE_CPP_UUID_H_ */
|