use super::common::find_window;
use crate::{
DriverCallback, DriverCategory, DriverContext, DriverError, DriverResult,
types::{Driver, DriverParameter},
};
use serde_json::{Value, json};
use std::collections::HashMap;
use tracing::{debug, info};
#[derive(Debug)]
pub struct WindowControlSendKeysDriver;
#[async_trait::async_trait]
impl Driver for WindowControlSendKeysDriver {
fn name(&self) -> &str {
"window_control_send_keys"
}
fn description(&self) -> &str {
"Send keyboard input to a specified window"
}
fn usage_hint(&self) -> &str {
"Use this skill to type text into a window"
}
fn parameters(&self) -> Vec<DriverParameter> {
return vec![
DriverParameter {
name: "title".to_string(),
param_type: "string".to_string(),
description: "Window title (partial match)".to_string(),
required: false,
default: None,
example: Some(Value::String("记事本".to_string())),
enum_values: None,
},
DriverParameter {
name: "process".to_string(),
param_type: "string".to_string(),
description: "Process name".to_string(),
required: false,
default: None,
example: Some(Value::String("notepad.exe".to_string())),
enum_values: None,
},
DriverParameter {
name: "text".to_string(),
param_type: "string".to_string(),
description: "Text to type".to_string(),
required: true,
default: None,
example: Some(Value::String("Hello World".to_string())),
enum_values: None,
},
];
}
fn example_call(&self) -> DriverResult<Value> {
return Ok(json!({
"action": "window_control_send_keys",
"parameters": {
"title": "记事本",
"text": "Hello World"
}
}));
}
fn example_output(&self) -> String {
return "Text sent to window".to_string();
}
fn category(&self) -> DriverCategory {
return DriverCategory::Window;
}
async fn execute(
&self,
parameters: &HashMap<String, Value>,
_callback: Option<&dyn DriverCallback>,
_context: Option<&DriverContext>,
) -> DriverResult<String> {
debug!("Executing window_control_send_keys driver");
let title = parameters.get("title").and_then(|v| v.as_str());
let process = parameters.get("process").and_then(|v| v.as_str());
let text = parameters.get("text").and_then(|v| v.as_str()).ok_or_else(|| DriverError::missing_parameter("text"))?;
info!("Sending keys: title={:?}, process={:?}, text_len={}", title, process, text.len());
if let Some(window_id) = find_window(title, process).ok() {
info!("Found window ID: {}, will send keys", window_id);
}
info!("Text: {}", text);
return Ok("Text sent to window (implementation pending)".to_string());
}
}