Skip to main content

lean_ctx/tools/
ctx_execute.rs

1use crate::core::sandbox::{self, SandboxResult};
2use crate::core::tokens::count_tokens;
3
4/// Executes a code snippet in a sandboxed environment and returns formatted output.
5pub fn handle(language: &str, code: &str, intent: Option<&str>, timeout: Option<u64>) -> String {
6    let result = sandbox::execute(language, code, timeout);
7    format_result(&result, intent)
8}
9
10/// Reads a file from disk, detects its language, and executes a processing script.
11///
12/// `project_root` is used for pathjail validation. If `None`, the current
13/// directory is used as the jail root.
14pub fn handle_file(path: &str, intent: Option<&str>, project_root: Option<&str>) -> String {
15    let jail_root = match project_root {
16        Some(r) => std::path::PathBuf::from(r),
17        None => std::env::current_dir().unwrap_or_else(|_| std::path::PathBuf::from(".")),
18    };
19    let candidate = std::path::Path::new(path);
20    let jailed = match crate::core::pathjail::jail_path(candidate, &jail_root) {
21        Ok(p) => p,
22        Err(e) => return format!("Path rejected: {e}"),
23    };
24    let path_str = jailed.to_string_lossy();
25
26    let cap = crate::core::limits::max_read_bytes();
27    let meta = match std::fs::metadata(&*jailed) {
28        Ok(m) => m,
29        Err(e) => return format!("Error reading {path_str}: {e}"),
30    };
31    if meta.len() > cap as u64 {
32        return format!(
33            "File too large ({} bytes, limit {cap} bytes). Use a line-range read instead.",
34            meta.len()
35        );
36    }
37    let content = match std::fs::read_to_string(&*jailed) {
38        Ok(c) => c,
39        Err(e) => return format!("Error reading {path_str}: {e}"),
40    };
41
42    let language = detect_language_from_extension(path);
43    let code = build_file_processing_script(&language, &content, intent);
44    let result = sandbox::execute(&language, &code, None);
45    format_result(&result, intent)
46}
47
48/// Executes multiple (language, code) pairs in parallel and returns aggregated results.
49pub fn handle_batch(items: &[(String, String)]) -> String {
50    let results = sandbox::batch_execute(items);
51    let mut output = Vec::new();
52
53    for (i, result) in results.iter().enumerate() {
54        let label = format!("[{}/{}] {}", i + 1, results.len(), result.language);
55        if result.exit_code == 0 {
56            let stdout = result.stdout.trim();
57            if stdout.is_empty() {
58                output.push(format!("{label}: (no output) [{} ms]", result.duration_ms));
59            } else {
60                output.push(format!("{label}: {stdout} [{} ms]", result.duration_ms));
61            }
62        } else {
63            let stderr = result.stderr.trim();
64            output.push(format!(
65                "{label}: EXIT {} — {stderr} [{} ms]",
66                result.exit_code, result.duration_ms
67            ));
68        }
69    }
70
71    let total_ms: u64 = results.iter().map(|r| r.duration_ms).sum();
72    output.push(format!("\n{} tasks, {} ms total", results.len(), total_ms));
73    output.join("\n")
74}
75
76fn format_result(result: &SandboxResult, intent: Option<&str>) -> String {
77    let mut parts = Vec::new();
78
79    if result.exit_code == 0 {
80        let stdout = result.stdout.trim();
81        if stdout.is_empty() {
82            parts.push("(no output)".to_string());
83        } else {
84            let raw_tokens = count_tokens(stdout);
85            parts.push(stdout.to_string());
86
87            if let Some(intent_desc) = intent {
88                if raw_tokens > 50 {
89                    parts.push(format!("[intent: {intent_desc}]"));
90                }
91            }
92        }
93    } else {
94        if !result.stdout.is_empty() {
95            parts.push(result.stdout.trim().to_string());
96        }
97        parts.push(format!(
98            "EXIT {} — {}",
99            result.exit_code,
100            result.stderr.trim()
101        ));
102    }
103
104    parts.push(format!("[{} | {} ms]", result.language, result.duration_ms));
105    parts.join("\n")
106}
107
108fn detect_language_from_extension(path: &str) -> String {
109    let ext = path.rsplit('.').next().unwrap_or("");
110    match ext {
111        "js" | "mjs" | "cjs" => "javascript",
112        "ts" | "mts" | "cts" => "typescript",
113        "py" | "json" | "csv" | "log" | "txt" | "xml" | "yaml" | "yml" | "md" | "html" => "python",
114        "rb" => "ruby",
115        "go" => "go",
116        "rs" => "rust",
117        "php" => "php",
118        "pl" => "perl",
119        "r" | "R" => "r",
120        "ex" | "exs" => "elixir",
121        _ => "shell",
122    }
123    .to_string()
124}
125
126fn sanitize_intent(raw: &str) -> String {
127    raw.chars()
128        .filter(|c| c.is_alphanumeric() || *c == ' ' || *c == '-' || *c == '_' || *c == '.')
129        .take(200)
130        .collect()
131}
132
133fn build_file_processing_script(language: &str, content: &str, intent: Option<&str>) -> String {
134    let tmp = tempfile::Builder::new()
135        .prefix("lean-ctx-exec-")
136        .suffix(".dat")
137        .tempfile()
138        .expect("failed to create temp file");
139    let _ = std::fs::write(tmp.path(), content);
140    let tmp_path = tmp.path().to_string_lossy().to_string();
141    let _keep = tmp.into_temp_path();
142    let intent_str = sanitize_intent(intent.unwrap_or("summarize the content"));
143
144    match language {
145        "python" => {
146            format!(
147                r#"
148import os
149
150with open(r"{tmp_path}", "r", encoding="utf-8") as f:
151    data = f.read()
152os.remove(r"{tmp_path}")
153
154lines = data.strip().split('\n')
155total_lines = len(lines)
156total_bytes = len(data.encode('utf-8'))
157
158word_count = sum(len(line.split()) for line in lines)
159
160print(f"{{total_lines}} lines, {{total_bytes}} bytes, {{word_count}} words")
161print("Intent: {intent_str}")
162
163if total_lines > 10:
164    print(f"First 3: {{lines[:3]}}")
165    print(f"Last 3: {{lines[-3:]}}")
166"#
167            )
168        }
169        _ => {
170            format!(
171                r#"
172data=$(cat "{tmp_path}")
173rm -f "{tmp_path}"
174lines=$(echo "$data" | wc -l | tr -d ' ')
175bytes=$(echo "$data" | wc -c | tr -d ' ')
176echo "$lines lines, $bytes bytes"
177echo 'Intent: {intent_str}'
178echo "$data" | head -3
179echo "..."
180echo "$data" | tail -3
181"#
182            )
183        }
184    }
185}
186
187#[cfg(test)]
188mod tests {
189    use super::*;
190
191    #[test]
192    fn handle_simple_python() {
193        let result = handle("python", "print(2 + 2)", None, None);
194        assert!(result.contains('4'));
195        assert!(result.contains("python"));
196    }
197
198    #[test]
199    fn handle_with_intent() {
200        let result = handle(
201            "python",
202            "print('found 5 errors')",
203            Some("count errors"),
204            None,
205        );
206        assert!(result.contains("found 5 errors"));
207    }
208
209    #[test]
210    fn handle_error_shows_stderr() {
211        let result = handle("python", "raise Exception('boom')", None, None);
212        assert!(result.contains("EXIT"));
213        assert!(result.contains("boom"));
214    }
215
216    #[test]
217    fn detect_language_from_path() {
218        assert_eq!(detect_language_from_extension("test.py"), "python");
219        assert_eq!(detect_language_from_extension("test.js"), "javascript");
220        assert_eq!(detect_language_from_extension("test.rs"), "rust");
221        assert_eq!(detect_language_from_extension("test.csv"), "python");
222        assert_eq!(detect_language_from_extension("test.log"), "python");
223    }
224
225    #[test]
226    #[cfg(not(target_os = "windows"))]
227    fn batch_multiple_tasks() {
228        let items = vec![
229            ("python".to_string(), "print('task1')".to_string()),
230            ("shell".to_string(), "echo task2".to_string()),
231        ];
232        let result = handle_batch(&items);
233        assert!(result.contains("task1"));
234        assert!(result.contains("task2"));
235        assert!(result.contains("2 tasks"));
236    }
237}