scribe-analysis 0.5.1

Code analysis algorithms and AST processing for Scribe
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
//! Optimized AST-based import extraction for analysis module
//!
//! This module provides a high-performance AST parser specifically for extracting
//! import statements from source code using TreeCursor for efficient traversal
//! and parser reuse for better performance.

use once_cell::sync::Lazy;
use rayon::prelude::*;
use scribe_core::Result;
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use tree_sitter::{Language, Node, Parser, Tree, TreeCursor};

/// Simple import information
#[derive(Debug, Clone)]
pub struct SimpleImport {
    /// The module being imported
    pub module: String,
    /// Line number where the import appears
    pub line_number: usize,
}

/// Supported programming languages for import extraction
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ImportLanguage {
    Python,
    JavaScript,
    TypeScript,
    Go,
    Rust,
}

impl ImportLanguage {
    /// Get the tree-sitter language for this language
    pub fn tree_sitter_language(&self) -> Language {
        match self {
            ImportLanguage::Python => tree_sitter_python::language(),
            ImportLanguage::JavaScript => tree_sitter_javascript::language(),
            ImportLanguage::TypeScript => tree_sitter_typescript::language_typescript(),
            ImportLanguage::Go => tree_sitter_go::language(),
            ImportLanguage::Rust => tree_sitter_rust::language(),
        }
    }

    /// Detect language from file extension
    pub fn from_extension(ext: &str) -> Option<Self> {
        match ext.to_lowercase().as_str() {
            "py" | "pyi" | "pyw" => Some(ImportLanguage::Python),
            "js" | "mjs" | "cjs" => Some(ImportLanguage::JavaScript),
            "ts" | "mts" | "cts" => Some(ImportLanguage::TypeScript),
            "go" => Some(ImportLanguage::Go),
            "rs" => Some(ImportLanguage::Rust),
            _ => None,
        }
    }
}

/// Thread-safe parser pool for reusing parsers
static PARSER_POOL: Lazy<Arc<Mutex<HashMap<ImportLanguage, Vec<Parser>>>>> =
    Lazy::new(|| Arc::new(Mutex::new(HashMap::new())));

/// Node types that can contain imports - for fast filtering
const IMPORT_NODE_TYPES: &[&str] = &[
    "import_statement",
    "import_from_statement",
    "use_declaration",
    "import_declaration",
    "import_spec",
    "source_file",
    "module",
];

/// Optimized AST parser for import extraction with parser reuse and TreeCursor traversal
pub struct SimpleAstParser {
    // We don't need to store parsers anymore - we use the pool
}

impl std::fmt::Debug for SimpleAstParser {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("SimpleAstParser")
            .field("parsers", &"[reusable pool]")
            .finish()
    }
}

impl SimpleAstParser {
    /// Create a new simple AST parser
    pub fn new() -> Result<Self> {
        // Initialize the parser pool on first creation
        Self::ensure_parser_pool_initialized()?;
        Ok(Self {})
    }

    /// Ensure the parser pool is initialized with all supported languages
    fn ensure_parser_pool_initialized() -> Result<()> {
        let mut pool = PARSER_POOL.lock().unwrap();

        for language in [
            ImportLanguage::Python,
            ImportLanguage::JavaScript,
            ImportLanguage::TypeScript,
            ImportLanguage::Go,
            ImportLanguage::Rust,
        ] {
            if !pool.contains_key(&language) {
                let mut parser = Parser::new();
                parser
                    .set_language(language.tree_sitter_language())
                    .map_err(|e| {
                        scribe_core::ScribeError::parse(format!(
                            "Failed to set tree-sitter language: {}",
                            e
                        ))
                    })?;
                pool.insert(language, vec![parser]);
            }
        }

        Ok(())
    }

    /// Get a parser from the pool or create a new one
    fn get_parser(&self, language: ImportLanguage) -> Result<Parser> {
        let mut pool = PARSER_POOL.lock().unwrap();

        if let Some(parsers) = pool.get_mut(&language) {
            if let Some(parser) = parsers.pop() {
                return Ok(parser);
            }
        }

        // Create a new parser if pool is empty
        let mut parser = Parser::new();
        parser
            .set_language(language.tree_sitter_language())
            .map_err(|e| {
                scribe_core::ScribeError::parse(format!(
                    "Failed to set tree-sitter language: {}",
                    e
                ))
            })?;
        Ok(parser)
    }

    /// Return a parser to the pool
    fn return_parser(&self, language: ImportLanguage, parser: Parser) {
        let mut pool = PARSER_POOL.lock().unwrap();
        pool.entry(language).or_insert_with(Vec::new).push(parser);
    }

    /// Extract imports from the given content using optimized tree-sitter traversal
    pub fn extract_imports(
        &self,
        content: &str,
        language: ImportLanguage,
    ) -> Result<Vec<SimpleImport>> {
        // Get parser from pool
        let mut parser = self.get_parser(language)?;

        let tree = parser
            .parse(content, None)
            .ok_or_else(|| scribe_core::ScribeError::parse("Failed to parse content"))?;

        let mut imports = Vec::new();

        // Use TreeCursor for efficient traversal
        let mut cursor = tree.walk();
        self.extract_imports_with_cursor(&mut cursor, content, language, &mut imports)?;

        // Return parser to pool
        self.return_parser(language, parser);

        Ok(imports)
    }

    /// Extract imports using TreeCursor for optimal performance
    fn extract_imports_with_cursor(
        &self,
        cursor: &mut TreeCursor,
        content: &str,
        language: ImportLanguage,
        imports: &mut Vec<SimpleImport>,
    ) -> Result<()> {
        let node = cursor.node();

        // Fast filter: skip nodes that can't contain imports
        if !self.node_can_contain_imports(node.kind()) {
            return Ok(());
        }

        // Process current node if it's an import
        if self.is_import_node(node.kind()) {
            self.extract_import_from_node(node, content, language, imports)?;
        }

        // Traverse children using cursor (much faster than child(i) loops)
        if cursor.goto_first_child() {
            loop {
                self.extract_imports_with_cursor(cursor, content, language, imports)?;
                if !cursor.goto_next_sibling() {
                    break;
                }
            }
            cursor.goto_parent();
        }

        Ok(())
    }

    /// Check if a node type can contain imports (fast filter)
    fn node_can_contain_imports(&self, kind: &str) -> bool {
        IMPORT_NODE_TYPES.contains(&kind)
            || kind.contains("import")
            || kind.contains("use")
            || kind == "program"
            || kind == "translation_unit"
            || kind == "block"
            || kind == "statement_block"
    }

    /// Check if a node is an import statement
    fn is_import_node(&self, kind: &str) -> bool {
        matches!(
            kind,
            "import_statement"
                | "import_from_statement"
                | "use_declaration"
                | "import_declaration"
                | "import_spec"
        )
    }

    /// Extract import from a specific node (no recursion needed)
    fn extract_import_from_node(
        &self,
        node: Node,
        content: &str,
        language: ImportLanguage,
        imports: &mut Vec<SimpleImport>,
    ) -> Result<()> {
        match language {
            ImportLanguage::Python => {
                self.extract_python_import_node(node, content, imports)?;
            }
            ImportLanguage::JavaScript | ImportLanguage::TypeScript => {
                self.extract_js_ts_import_node(node, content, imports)?;
            }
            ImportLanguage::Go => {
                self.extract_go_import_node(node, content, imports)?;
            }
            ImportLanguage::Rust => {
                self.extract_rust_import_node(node, content, imports)?;
            }
        }
        Ok(())
    }

    /// Extract Python import from a single node (optimized, no recursion)
    fn extract_python_import_node(
        &self,
        node: Node,
        content: &str,
        imports: &mut Vec<SimpleImport>,
    ) -> Result<()> {
        if node.kind() == "import_statement" {
            // Handle import statements like "import os" or "import sys as system"
            let mut cursor = node.walk();
            if cursor.goto_first_child() {
                loop {
                    let child = cursor.node();
                    if child.kind() == "dotted_name" || child.kind() == "identifier" {
                        let module = self.node_text(child, content);
                        let line_number = child.start_position().row + 1;

                        imports.push(SimpleImport {
                            module,
                            line_number,
                        });
                    }
                    if !cursor.goto_next_sibling() {
                        break;
                    }
                }
            }
        } else if node.kind() == "import_from_statement" {
            if let Some(module_node) = node.child_by_field_name("module_name") {
                let module = self.node_text(module_node, content);
                let line_number = node.start_position().row + 1;
                imports.push(SimpleImport {
                    module,
                    line_number,
                });
            }
        }
        Ok(())
    }

    /// Extract JavaScript/TypeScript import from a single node (optimized, no recursion)
    fn extract_js_ts_import_node(
        &self,
        node: Node,
        content: &str,
        imports: &mut Vec<SimpleImport>,
    ) -> Result<()> {
        if node.kind() == "import_statement" {
            // Find the source
            let mut cursor = node.walk();
            if cursor.goto_first_child() {
                loop {
                    let child = cursor.node();
                    if child.kind() == "string" {
                        let mut module = self.node_text(child, content);
                        // Remove quotes
                        module = module.trim_matches('"').trim_matches('\'').to_string();
                        let line_number = node.start_position().row + 1;
                        imports.push(SimpleImport {
                            module,
                            line_number,
                        });
                        break;
                    }
                    if !cursor.goto_next_sibling() {
                        break;
                    }
                }
            }
        }
        Ok(())
    }

    /// Extract Go import from a single node (optimized, no recursion)
    fn extract_go_import_node(
        &self,
        node: Node,
        content: &str,
        imports: &mut Vec<SimpleImport>,
    ) -> Result<()> {
        if node.kind() == "import_spec" {
            let mut cursor = node.walk();
            if cursor.goto_first_child() {
                loop {
                    let child = cursor.node();
                    if child.kind() == "interpreted_string_literal" {
                        let module = self.node_text(child, content);
                        let module = module.trim_matches('"').to_string();
                        let line_number = child.start_position().row + 1;

                        imports.push(SimpleImport {
                            module,
                            line_number,
                        });
                    }
                    if !cursor.goto_next_sibling() {
                        break;
                    }
                }
            }
        }
        Ok(())
    }

    /// Extract Rust import from a single node (optimized, no recursion)
    fn extract_rust_import_node(
        &self,
        node: Node,
        content: &str,
        imports: &mut Vec<SimpleImport>,
    ) -> Result<()> {
        if node.kind() == "use_declaration" {
            if let Some(use_tree) = node.child_by_field_name("argument") {
                let module = self.node_text(use_tree, content);
                let line_number = node.start_position().row + 1;

                imports.push(SimpleImport {
                    module,
                    line_number,
                });
            }
        }
        Ok(())
    }

    /// Helper to extract text from a node
    fn node_text(&self, node: Node, content: &str) -> String {
        content[node.start_byte()..node.end_byte()].to_string()
    }

    /// Extract imports from multiple files in parallel for maximum performance
    pub fn extract_imports_parallel(
        &self,
        files: &[(String, String, ImportLanguage)], // (path, content, language)
    ) -> Result<Vec<(String, Vec<SimpleImport>)>> {
        // Use rayon for parallel processing
        files
            .par_iter()
            .map(|(path, content, language)| {
                let imports = self.extract_imports(content, *language)?;
                Ok((path.clone(), imports))
            })
            .collect()
    }

    /// Batch extract imports for multiple contents with the same language
    pub fn extract_imports_batch(
        &self,
        contents: &[&str],
        language: ImportLanguage,
    ) -> Result<Vec<Vec<SimpleImport>>> {
        contents
            .par_iter()
            .map(|content| self.extract_imports(content, language))
            .collect()
    }
}

impl Default for SimpleAstParser {
    fn default() -> Self {
        Self::new().expect("Failed to create SimpleAstParser")
    }
}