use crate::DriverCallback;
use crate::DriverContext;
use crate::DriverResult;
use crate::{
DriverCategory,
types::{Driver, DriverParameter},
};
use crate::{file_exists, read_file_content, validate_path};
use serde_json::{Value, json};
use std::collections::HashMap;
use std::time::Instant;
use tracing::{debug, info, warn};
#[derive(Debug)]
pub struct ReadFileDriver;
#[async_trait::async_trait]
impl Driver for ReadFileDriver {
fn name(&self) -> &str {
"file_read"
}
fn description(&self) -> &str {
"Read content from a file"
}
fn usage_hint(&self) -> &str {
"Use this skill when the user wants to read, view, or display the contents of a file"
}
fn parameters(&self) -> Vec<DriverParameter> {
return vec![
DriverParameter {
name: "path".to_string(),
param_type: "string".to_string(),
description: "Absolute or relative path to the file to read".to_string(),
required: true,
default: None,
example: Some(Value::String("/home/user/document.txt".to_string())),
enum_values: None,
},
DriverParameter {
name: "max_size".to_string(),
param_type: "integer".to_string(),
description: "Maximum number of bytes to read (prevents huge files)".to_string(),
required: false,
default: Some(Value::Number(1048576.into())),
example: Some(Value::Number(1024.into())),
enum_values: None,
},
];
}
fn example_call(&self) -> DriverResult<Value> {
return Ok(json!({
"action": "file_read",
"parameters": {
"path": "/tmp/config.json"
}
}));
}
fn example_output(&self) -> String {
return "{\n \"name\": \"example\",\n \"version\": \"1.0\"\n}".to_string();
}
fn category(&self) -> DriverCategory {
return DriverCategory::File;
}
async fn execute(
&self,
parameters: &HashMap<String, Value>,
callback: Option<&dyn DriverCallback>,
context: Option<&DriverContext>,
) -> DriverResult<String> {
debug!("Executing file_read driver");
let start_time = Instant::now();
let task_id = context.as_ref().and_then(|c| c.task_id()).map(String::from);
let driver_index = context.as_ref().and_then(|c| c.driver_index());
let step_name = context.as_ref().and_then(|c| c.driver_name()).map(String::from);
let cb = callback;
if let Some(cb) = cb {
cb.on_start(task_id.clone(), driver_index, step_name.clone());
cb.on_log(task_id.clone(), driver_index, Some("Starting file read operation".to_string()));
cb.on_progress(task_id.clone(), driver_index, Some(10), None);
}
let path = parameters.get("path").and_then(|v| v.as_str()).ok_or_else(|| {
debug!("Missing 'path' parameter");
return crate::DriverError::missing_parameter("path");
})?;
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some(format!("Target path: {}", path)));
cb.on_progress(task_id.clone(), driver_index, Some(20), None);
}
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some("Validating file path".to_string()));
cb.on_progress(task_id.clone(), driver_index, Some(30), None);
}
let validated_path = validate_path(path, None).map_err(|e| {
debug!("Failed to validate path: {}", e);
return crate::DriverError::execution(format!("Failed to validate path: {}", e));
})?;
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some("Checking if file exists".to_string()));
cb.on_progress(task_id.clone(), driver_index, Some(40), None);
}
if !file_exists(&validated_path.to_string_lossy()) {
warn!("File not found: {}", path);
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some(format!("File not found: {}", path)));
cb.on_progress(task_id.clone(), driver_index, Some(100), None);
cb.on_complete(task_id.clone(), driver_index, step_name, Some(format!("File not found: {}", path)));
}
return Err(crate::DriverError::execution(format!("File not found: {}", path)));
}
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some("Reading file content".to_string()));
cb.on_progress(task_id.clone(), driver_index, Some(60), None);
}
let content = read_file_content(&validated_path.to_string_lossy()).map_err(|e| {
debug!("Failed to read file: {}", e);
return crate::DriverError::io(format!("Failed to read file: {}", e));
})?;
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some(format!("Read {} bytes", content.len())));
cb.on_progress(task_id.clone(), driver_index, Some(70), None);
}
let max_size = parameters.get("max_size").and_then(|v| v.as_u64()).unwrap_or(1024 * 1024);
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some(format!("Max size limit: {} bytes", max_size)));
cb.on_progress(task_id.clone(), driver_index, Some(80), None);
}
let result = if content.len() > max_size as usize {
warn!("File exceeds max size: {} > {}", content.len(), max_size);
if let Some(cb) = cb {
cb.on_log(task_id.clone(), driver_index, Some(format!("File exceeds max size ({} > {})", content.len(), max_size)));
}
format!("File too large ({} bytes). Showing first {} bytes:\n{}", content.len(), max_size, &content[..max_size as usize])
} else {
content
};
info!("File read complete: {} bytes", result.len());
if let Some(cb) = cb {
let duration = start_time.elapsed().as_millis() as u64;
cb.on_log(task_id.clone(), driver_index, Some(format!("Completed in {}ms", duration)));
cb.on_progress(task_id.clone(), driver_index, Some(100), None);
cb.on_complete(task_id.clone(), driver_index, step_name, Some(result.clone()));
}
return Ok(result);
}
fn validate(&self, parameters: &HashMap<String, Value>) -> DriverResult<()> {
if parameters.get("path").and_then(|v| v.as_str()).is_none() {
return Err(crate::DriverError::missing_parameter("path"));
}
return Ok(());
}
}