mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
91 lines
3.6 KiB
C++
91 lines
3.6 KiB
C++
// 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 <string>
|
|
|
|
#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 {
|
|
|
|
// Represents an asynchronous operation, which returns a result upon completion.
|
|
// https://docs.microsoft.com/en-us/uwp/api/windows.foundation.iasyncoperation-1?view=winrt-20348
|
|
using winrt::Windows::Foundation::IAsyncOperation;
|
|
|
|
// The result of an Rfcomm device service request.
|
|
// https://docs.microsoft.com/en-us/uwp/api/windows.devices.bluetooth.rfcomm.rfcommdeviceservicesresult?view=winrt-20348
|
|
using winrt::Windows::Devices::Bluetooth::Rfcomm::RfcommDeviceServicesResult;
|
|
|
|
// Represents an RFCOMM service ID.
|
|
// https://docs.microsoft.com/en-us/uwp/api/windows.devices.bluetooth.rfcomm.rfcommserviceid?view=winrt-20348
|
|
using winrt::Windows::Devices::Bluetooth::Rfcomm::RfcommServiceId;
|
|
|
|
// Indicates whether applicable Bluetooth API methods should operate on values
|
|
// cached in the system, or whether they should retrieve those values from the
|
|
// Bluetooth device.
|
|
// https://docs.microsoft.com/en-us/uwp/api/windows.devices.bluetooth.bluetoothcachemode?view=winrt-20348
|
|
using winrt::Windows::Devices::Bluetooth::BluetoothCacheMode;
|
|
|
|
// 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()
|
|
std::string GetName() const override;
|
|
|
|
// Returns BT MAC address assigned to this device.
|
|
std::string GetMacAddress() const override;
|
|
|
|
std::string GetId() { return id_; }
|
|
|
|
winrt::Windows::Foundation::IAsyncOperation<
|
|
winrt::Windows::Devices::Bluetooth::Rfcomm::RfcommDeviceServicesResult>
|
|
GetRfcommServicesForIdAsync(
|
|
const winrt::Windows::Devices::Bluetooth::Rfcomm::RfcommServiceId
|
|
serviceId);
|
|
|
|
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_
|