hippox-drivers 0.3.3

🦛All indivisible atomic driver units in Hippox.
//! Service list Driver - list all system services

use anyhow::Result;
use serde_json::{Value, json};
use std::collections::HashMap;

use super::common::list_all_services;
use crate::{
    DriverCallback, DriverCategory, DriverContext,
    types::{Driver, DriverParameter},
};

#[derive(Debug)]
pub struct ServiceListDriver;

#[async_trait::async_trait]
impl Driver for ServiceListDriver {
    fn name(&self) -> &str {
        "service_list"
    }

    fn description(&self) -> &str {
        "List all system services"
    }

    fn usage_hint(&self) -> &str {
        "Use this skill to see all services on the system."
    }

    fn parameters(&self) -> Vec<DriverParameter> {
        vec![]
    }

    fn example_call(&self) -> Value {
        json!({
            "action": "service_list"
        })
    }

    fn example_output(&self) -> String {
        "Found 5 services:\n1. ssh - SSH Server (running)\n2. nginx - Web Server (stopped)"
            .to_string()
    }

    fn category(&self) -> DriverCategory {
        DriverCategory::OperatingSystemServices
    }

    async fn execute(
        &self,
        parameters: &HashMap<String, Value>,
        callback: Option<&dyn DriverCallback>,
        context: Option<&DriverContext>,
    ) -> Result<String> {
        let services = list_all_services()?;
        if services.is_empty() {
            return Ok("No services found".to_string());
        }
        let mut result = format!("Found {} services:\n", services.len());
        for (i, svc) in services.iter().enumerate() {
            result.push_str(&format!(
                "{}. {} - {} ({})\n",
                i + 1,
                svc.name,
                svc.description,
                svc.status
            ));
        }
        Ok(result)
    }
}