diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-10-05 19:47:39 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-11-03 15:38:18 +0000 |
commit | f4d3af296c05260dfbb3deea4f8fa400cb6887d3 (patch) | |
tree | 169db2cc68e01a755b30500dd525f1a2ec2da861 /components/shared/bluetooth/lib.rs | |
parent | 863529d9622c68f0a9535225237eb5e5c5b8c757 (diff) | |
download | servo-f4d3af296c05260dfbb3deea4f8fa400cb6887d3.tar.gz servo-f4d3af296c05260dfbb3deea4f8fa400cb6887d3.zip |
Move `*_traits` and other shared types to `shared`
This is the start of the organization of types that are in their own
crates in order to break dependency cycles between other crates. The
idea here is that putting these packages into their own directory is the
first step toward cleaning them up. They have grown organically and it
is difficult to explain to new folks where to put new shared types. Many
of these crates contain more than traits or don't contain traits at all.
Notably, `script_traits` isn't touched because it is vendored from
Gecko. Eventually this will move to `third_party`.
Diffstat (limited to 'components/shared/bluetooth/lib.rs')
-rw-r--r-- | components/shared/bluetooth/lib.rs | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/components/shared/bluetooth/lib.rs b/components/shared/bluetooth/lib.rs new file mode 100644 index 00000000000..5910aa3c284 --- /dev/null +++ b/components/shared/bluetooth/lib.rs @@ -0,0 +1,119 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ + +pub mod blocklist; +pub mod scanfilter; + +use ipc_channel::ipc::IpcSender; +use serde::{Deserialize, Serialize}; + +use crate::scanfilter::{BluetoothScanfilterSequence, RequestDeviceoptions}; + +#[derive(Debug, Deserialize, Serialize)] +pub enum BluetoothError { + Type(String), + Network, + NotFound, + NotSupported, + Security, + InvalidState, +} + +#[derive(Debug, Deserialize, Serialize)] +pub enum GATTType { + PrimaryService, + Characteristic, + IncludedService, + Descriptor, +} + +#[derive(Debug, Deserialize, Serialize)] +pub struct BluetoothDeviceMsg { + // Bluetooth Device properties + pub id: String, + pub name: Option<String>, +} + +#[derive(Debug, Deserialize, Serialize)] +pub struct BluetoothServiceMsg { + pub uuid: String, + pub is_primary: bool, + pub instance_id: String, +} + +#[derive(Debug, Deserialize, Serialize)] +pub struct BluetoothCharacteristicMsg { + // Characteristic + pub uuid: String, + pub instance_id: String, + // Characteristic properties + pub broadcast: bool, + pub read: bool, + pub write_without_response: bool, + pub write: bool, + pub notify: bool, + pub indicate: bool, + pub authenticated_signed_writes: bool, + pub reliable_write: bool, + pub writable_auxiliaries: bool, +} + +#[derive(Debug, Deserialize, Serialize)] +pub struct BluetoothDescriptorMsg { + pub uuid: String, + pub instance_id: String, +} + +pub type BluetoothServicesMsg = Vec<BluetoothServiceMsg>; + +pub type BluetoothCharacteristicsMsg = Vec<BluetoothCharacteristicMsg>; + +pub type BluetoothDescriptorsMsg = Vec<BluetoothDescriptorMsg>; + +pub type BluetoothResult<T> = Result<T, BluetoothError>; + +pub type BluetoothResponseResult = Result<BluetoothResponse, BluetoothError>; + +#[derive(Debug, Deserialize, Serialize)] +pub enum BluetoothRequest { + RequestDevice(RequestDeviceoptions, IpcSender<BluetoothResponseResult>), + GATTServerConnect(String, IpcSender<BluetoothResponseResult>), + GATTServerDisconnect(String, IpcSender<BluetoothResult<()>>), + GetGATTChildren( + String, + Option<String>, + bool, + GATTType, + IpcSender<BluetoothResponseResult>, + ), + ReadValue(String, IpcSender<BluetoothResponseResult>), + WriteValue(String, Vec<u8>, IpcSender<BluetoothResponseResult>), + EnableNotification(String, bool, IpcSender<BluetoothResponseResult>), + WatchAdvertisements(String, IpcSender<BluetoothResponseResult>), + SetRepresentedToNull(Vec<String>, Vec<String>, Vec<String>), + IsRepresentedDeviceNull(String, IpcSender<bool>), + GetAvailability(IpcSender<BluetoothResponseResult>), + MatchesFilter( + String, + BluetoothScanfilterSequence, + IpcSender<BluetoothResult<bool>>, + ), + Test(String, IpcSender<BluetoothResult<()>>), + Exit, +} + +#[derive(Debug, Deserialize, Serialize)] +pub enum BluetoothResponse { + RequestDevice(BluetoothDeviceMsg), + GATTServerConnect(bool), + GetPrimaryServices(BluetoothServicesMsg, bool), + GetIncludedServices(BluetoothServicesMsg, bool), + GetCharacteristics(BluetoothCharacteristicsMsg, bool), + GetDescriptors(BluetoothDescriptorsMsg, bool), + ReadValue(Vec<u8>), + WriteValue(Vec<u8>), + EnableNotification(()), + WatchAdvertisements(()), + GetAvailability(bool), +} |