summaryrefslogtreecommitdiff
path: root/chromium/third_party/nearby/src/cpp/core/internal/bluetooth_device_name.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/nearby/src/cpp/core/internal/bluetooth_device_name.h')
-rw-r--r--chromium/third_party/nearby/src/cpp/core/internal/bluetooth_device_name.h93
1 files changed, 0 insertions, 93 deletions
diff --git a/chromium/third_party/nearby/src/cpp/core/internal/bluetooth_device_name.h b/chromium/third_party/nearby/src/cpp/core/internal/bluetooth_device_name.h
deleted file mode 100644
index 44e3c07d1cb..00000000000
--- a/chromium/third_party/nearby/src/cpp/core/internal/bluetooth_device_name.h
+++ /dev/null
@@ -1,93 +0,0 @@
-// Copyright 2020 Google LLC
-//
-// 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
-//
-// https://www.apache.org/licenses/LICENSE-2.0
-//
-// 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.
-
-#ifndef CORE_INTERNAL_BLUETOOTH_DEVICE_NAME_H_
-#define CORE_INTERNAL_BLUETOOTH_DEVICE_NAME_H_
-
-#include <cstdint>
-
-#include "absl/strings/string_view.h"
-#include "core/internal/base_pcp_handler.h"
-#include "core/internal/pcp.h"
-#include "platform/base/byte_array.h"
-
-namespace location {
-namespace nearby {
-namespace connections {
-
-// Represents the format of the Bluetooth device name used in Advertising +
-// Discovery.
-//
-// <p>See go/nearby-offline-data-interchange-formats for the specification.
-class BluetoothDeviceName {
- public:
- // Versions of the BluetoothDeviceName.
- enum class Version {
- kUndefined = 0,
- kV1 = 1,
- // Version is only allocated 3 bits in the BluetoothDeviceName, so this
- // can never go beyond V7.
- };
-
- static constexpr int kServiceIdHashLength = 3;
-
- BluetoothDeviceName() = default;
- BluetoothDeviceName(Version version, Pcp pcp, absl::string_view endpoint_id,
- const ByteArray& service_id_hash,
- const ByteArray& endpoint_info,
- const ByteArray& uwb_address, WebRtcState web_rtc_state);
- explicit BluetoothDeviceName(absl::string_view bluetooth_device_name_string);
- BluetoothDeviceName(const BluetoothDeviceName&) = default;
- BluetoothDeviceName& operator=(const BluetoothDeviceName&) = default;
- BluetoothDeviceName(BluetoothDeviceName&&) = default;
- BluetoothDeviceName& operator=(BluetoothDeviceName&&) = default;
- ~BluetoothDeviceName() = default;
-
- explicit operator std::string() const;
-
- bool IsValid() const { return !endpoint_id_.empty(); }
- Version GetVersion() const { return version_; }
- Pcp GetPcp() const { return pcp_; }
- std::string GetEndpointId() const { return endpoint_id_; }
- ByteArray GetServiceIdHash() const { return service_id_hash_; }
- ByteArray GetEndpointInfo() const { return endpoint_info_; }
- ByteArray GetUwbAddress() const { return uwb_address_; }
- WebRtcState GetWebRtcState() const { return web_rtc_state_; }
-
- private:
- static constexpr int kEndpointIdLength = 4;
- static constexpr int kReservedLength = 6;
- static constexpr int kMaxEndpointInfoLength = 131;
- static constexpr int kMinBluetoothDeviceNameLength = 16;
-
- static constexpr int kVersionBitmask = 0x0E0;
- static constexpr int kPcpBitmask = 0x01F;
- static constexpr int kEndpointNameLengthBitmask = 0x0FF;
- static constexpr int kWebRtcConnectableFlagBitmask = 0x01;
-
- Version version_{Version::kUndefined};
- Pcp pcp_{Pcp::kUnknown};
- std::string endpoint_id_;
- ByteArray service_id_hash_;
- ByteArray endpoint_info_;
- // TODO(b/169550050): Define UWB address field.
- ByteArray uwb_address_;
- WebRtcState web_rtc_state_{WebRtcState::kUndefined};
-};
-
-} // namespace connections
-} // namespace nearby
-} // namespace location
-
-#endif // CORE_INTERNAL_BLUETOOTH_DEVICE_NAME_H_