// 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 PLATFORM_IMPL_WINDOWS_BLUETOOTH_CLASSIC_DEVICE_H_ #define PLATFORM_IMPL_WINDOWS_BLUETOOTH_CLASSIC_DEVICE_H_ #include #include "platform/api/bluetooth_classic.h" #include "platform/base/exception.h" #include "platform/base/input_stream.h" #include "platform/base/output_stream.h" #include "platform/impl/windows/generated/winrt/Windows.Devices.Bluetooth.h" #include "platform/impl/windows/generated/winrt/Windows.Devices.Enumeration.h" #include "platform/impl/windows/generated/winrt/base.h" namespace location { namespace nearby { namespace windows { // https://developer.android.com/reference/android/bluetooth/BluetoothDevice.html. class BluetoothDevice : public api::BluetoothDevice { public: BluetoothDevice(const winrt::Windows::Devices::Bluetooth::BluetoothDevice& bluetoothDevice); ~BluetoothDevice() override; BluetoothDevice(BluetoothDevice&&) = default; BluetoothDevice& operator=(BluetoothDevice&&) = default; // https://developer.android.com/reference/android/bluetooth/BluetoothDevice.html#getName() // TODO(b/184975123): replace with real implementation. std::string GetName() const override; // Returns BT MAC address assigned to this device. // TODO(b/184975123): replace with real implementation. std::string GetMacAddress() const override; std::string GetId() { return id_; } private: // https://docs.microsoft.com/en-us/uwp/api/windows.devices.bluetooth.bluetoothdevice?view=winrt-20348 winrt::Windows::Devices::Bluetooth::BluetoothDevice windows_bluetooth_device_; // Once the device is lost, we can no longer access it's id. std::string id_; // Once the device is lost, we can no longer access it's mac address. std::string mac_address_; }; } // namespace windows } // namespace nearby } // namespace location #endif // PLATFORM_IMPL_WINDOWS_BLUETOOTH_CLASSIC_DEVICE_H_