use super::common::connect_device;
use crate::DriverCallback;
use crate::DriverContext;
use crate::{
DriverCategory, DriverError, DriverResult,
types::{Driver, DriverParameter},
};
use serde_json::{Value, json};
use std::collections::HashMap;
use tracing::{debug, info, warn};
#[derive(Debug)]
pub struct BluetoothConnectDriver;
#[async_trait::async_trait]
impl Driver for BluetoothConnectDriver {
fn name(&self) -> &str {
"bluetooth_connect"
}
fn description(&self) -> &str {
"Connect to a paired Bluetooth device (establish RFCOMM channel)"
}
fn usage_hint(&self) -> &str {
"Use this skill to connect to a device that is already paired. The device must be in range and powered on."
}
fn parameters(&self) -> Vec<DriverParameter> {
return vec![DriverParameter {
name: "mac_address".to_string(),
param_type: "string".to_string(),
description: "MAC address of the device to connect to".to_string(),
required: true,
default: None,
example: Some(Value::String("AA:BB:CC:DD:EE:FF".to_string())),
enum_values: None,
}];
}
fn example_call(&self) -> DriverResult<Value> {
return Ok(json!({
"action": "bluetooth_connect",
"parameters": {
"mac_address": "AA:BB:CC:DD:EE:FF"
}
}));
}
fn example_output(&self) -> String {
"Connected to device: AA:BB:CC:DD:EE:FF".to_string()
}
fn category(&self) -> DriverCategory {
DriverCategory::Bluetooth
}
async fn execute(
&self,
parameters: &HashMap<String, Value>,
callback: Option<&dyn DriverCallback>,
context: Option<&DriverContext>,
) -> DriverResult<String> {
debug!("Executing bluetooth_connect driver");
let mac_address = parameters.get("mac_address").and_then(|v| v.as_str()).ok_or_else(|| {
debug!("Missing 'mac_address' parameter");
DriverError::missing_parameter("mac_address")
})?;
debug!("Attempting to connect to device: {}", mac_address);
connect_device(mac_address).map_err(|e| DriverError::execution(format!("Failed to connect to device: {}", e)))?;
debug!("Waiting for connection to establish");
tokio::time::sleep(std::time::Duration::from_secs(2)).await;
info!("Connected to device: {}", mac_address);
Ok(format!("Connected to device: {}", mac_address))
}
}