use std::rc::Rc;
use dom_struct::dom_struct;
use js::context::JSContext;
use js::realm::CurrentRealm;
use script_bindings::reflector::reflect_dom_object_with_cx;
use servo_bluetooth_traits::{BluetoothResponse, GATTType};
use crate::dom::bindings::codegen::Bindings::BluetoothRemoteGATTServerBinding::BluetoothRemoteGATTServerMethods;
use crate::dom::bindings::codegen::Bindings::BluetoothRemoteGATTServiceBinding::BluetoothRemoteGATTServiceMethods;
use crate::dom::bindings::error::Error;
use crate::dom::bindings::root::{Dom, DomRoot};
use crate::dom::bindings::str::DOMString;
use crate::dom::bluetooth::{AsyncBluetoothListener, get_gatt_children};
use crate::dom::bluetoothdevice::BluetoothDevice;
use crate::dom::bluetoothuuid::{BluetoothCharacteristicUUID, BluetoothServiceUUID, BluetoothUUID};
use crate::dom::eventtarget::EventTarget;
use crate::dom::globalscope::GlobalScope;
use crate::dom::promise::Promise;
#[dom_struct]
pub(crate) struct BluetoothRemoteGATTService {
eventtarget: EventTarget,
device: Dom<BluetoothDevice>,
uuid: DOMString,
is_primary: bool,
instance_id: String,
}
impl BluetoothRemoteGATTService {
pub(crate) fn new_inherited(
device: &BluetoothDevice,
uuid: DOMString,
is_primary: bool,
instance_id: String,
) -> BluetoothRemoteGATTService {
BluetoothRemoteGATTService {
eventtarget: EventTarget::new_inherited(),
device: Dom::from_ref(device),
uuid,
is_primary,
instance_id,
}
}
#[expect(non_snake_case)]
pub(crate) fn new(
cx: &mut JSContext,
global: &GlobalScope,
device: &BluetoothDevice,
uuid: DOMString,
isPrimary: bool,
instanceID: String,
) -> DomRoot<BluetoothRemoteGATTService> {
reflect_dom_object_with_cx(
Box::new(BluetoothRemoteGATTService::new_inherited(
device, uuid, isPrimary, instanceID,
)),
global,
cx,
)
}
fn get_instance_id(&self) -> String {
self.instance_id.clone()
}
}
impl BluetoothRemoteGATTServiceMethods<crate::DomTypeHolder> for BluetoothRemoteGATTService {
fn Device(&self) -> DomRoot<BluetoothDevice> {
DomRoot::from_ref(&self.device)
}
fn IsPrimary(&self) -> bool {
self.is_primary
}
fn Uuid(&self) -> DOMString {
self.uuid.clone()
}
fn GetCharacteristic(
&self,
cx: &mut CurrentRealm,
characteristic: BluetoothCharacteristicUUID,
) -> Rc<Promise> {
let is_connected = self.Device().get_gatt(cx).Connected();
get_gatt_children(
cx,
self,
true,
BluetoothUUID::characteristic,
Some(characteristic),
self.get_instance_id(),
is_connected,
GATTType::Characteristic,
)
}
fn GetCharacteristics(
&self,
cx: &mut CurrentRealm,
characteristic: Option<BluetoothCharacteristicUUID>,
) -> Rc<Promise> {
let is_connected = self.Device().get_gatt(cx).Connected();
get_gatt_children(
cx,
self,
false,
BluetoothUUID::characteristic,
characteristic,
self.get_instance_id(),
is_connected,
GATTType::Characteristic,
)
}
fn GetIncludedService(
&self,
cx: &mut CurrentRealm,
service: BluetoothServiceUUID,
) -> Rc<Promise> {
let is_connected = self.Device().get_gatt(cx).Connected();
get_gatt_children(
cx,
self,
false,
BluetoothUUID::service,
Some(service),
self.get_instance_id(),
is_connected,
GATTType::IncludedService,
)
}
fn GetIncludedServices(
&self,
cx: &mut CurrentRealm,
service: Option<BluetoothServiceUUID>,
) -> Rc<Promise> {
let is_connected = self.Device().get_gatt(cx).Connected();
get_gatt_children(
cx,
self,
false,
BluetoothUUID::service,
service,
self.get_instance_id(),
is_connected,
GATTType::IncludedService,
)
}
event_handler!(serviceadded, GetOnserviceadded, SetOnserviceadded);
event_handler!(servicechanged, GetOnservicechanged, SetOnservicechanged);
event_handler!(serviceremoved, GetOnserviceremoved, SetOnserviceremoved);
}
impl AsyncBluetoothListener for BluetoothRemoteGATTService {
fn handle_response(
&self,
cx: &mut JSContext,
response: BluetoothResponse,
promise: &Rc<Promise>,
) {
let device = self.Device();
match response {
BluetoothResponse::GetCharacteristics(characteristics_vec, single) => {
if single {
let characteristic =
device.get_or_create_characteristic(cx, &characteristics_vec[0], self);
promise.resolve_native(cx, &characteristic);
return;
}
let mut characteristics = vec![];
for characteristic in characteristics_vec {
let bt_characteristic =
device.get_or_create_characteristic(cx, &characteristic, self);
characteristics.push(bt_characteristic);
}
promise.resolve_native(cx, &characteristics);
},
BluetoothResponse::GetIncludedServices(services_vec, single) => {
let gatt_server = device.get_gatt(cx);
if single {
let characteristic =
device.get_or_create_service(cx, &services_vec[0], &gatt_server);
return promise.resolve_native(cx, &characteristic);
}
let mut services = vec![];
for service in services_vec {
let bt_service = device.get_or_create_service(cx, &service, &gatt_server);
services.push(bt_service);
}
promise.resolve_native(cx, &services);
},
_ => promise.reject_error(cx, Error::Type(c"Something went wrong...".to_owned())),
}
}
}