use super::common::set_volume;
use crate::DriverCallback;
use crate::DriverContext;
use crate::{
DriverCategory,
types::{Driver, DriverParameter},
};
use anyhow::Result;
use serde_json::{Value, json};
use std::collections::HashMap;
#[derive(Debug)]
pub struct AudioControlVolumeSetDriver;
#[async_trait::async_trait]
impl Driver for AudioControlVolumeSetDriver {
fn name(&self) -> &str {
"audio_control_volume_set"
}
fn description(&self) -> &str {
"Set the system volume level"
}
fn usage_hint(&self) -> &str {
"Use this skill to adjust the volume to a specific level (0-100)."
}
fn parameters(&self) -> Vec<DriverParameter> {
vec![DriverParameter {
name: "volume".to_string(),
param_type: "integer".to_string(),
description: "Volume level from 0 to 100".to_string(),
required: true,
default: None,
example: Some(Value::Number(50.into())),
enum_values: None,
}]
}
fn example_call(&self) -> Value {
json!({
"action": "audio_control_volume_set",
"parameters": {
"volume": 50
}
})
}
fn example_output(&self) -> String {
"Volume set to 50%".to_string()
}
fn category(&self) -> DriverCategory {
DriverCategory::Audio
}
async fn execute(
&self,
parameters: &HashMap<String, Value>,
callback: Option<&dyn DriverCallback>,
context: Option<&DriverContext>,
) -> Result<String> {
let volume = parameters
.get("volume")
.and_then(|v| v.as_u64())
.ok_or_else(|| anyhow::anyhow!("Missing 'volume' parameter"))?
as u32;
let volume = volume.clamp(0, 100);
set_volume(volume)?;
Ok(format!("Volume set to {}%", volume))
}
}