leindex 1.9.0

LeIndex MCP and semantic code search engine for AI tools and large codebases
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
// Python language parser implementation

use crate::cfg_builder;
use crate::parse::traits::calculate_complexity;
use crate::parse::traits::{Block, Edge, EdgeType, Parameter, Visibility, find_node_by_id};
use crate::parse::traits::{
    CodeIntelligence, ComplexityMetrics, Error, Graph, ImportInfo, Result, SignatureInfo,
};
use tree_sitter::Parser;

/// Python language parser with full CodeIntelligence implementation
pub struct PythonParser;

impl Default for PythonParser {
    fn default() -> Self {
        Self::new()
    }
}

impl PythonParser {
    /// Create a new Python parser
    pub fn new() -> Self {
        Self
    }

    /// Extract all function and class definitions from Python source
    ///
    /// This is the unified entry point for signature extraction that avoids
    /// duplicate extraction by traversing the AST once and handling both
    /// top-level functions and class methods appropriately.
    ///
    /// Tracks the full qualified name path including nested functions.
    fn extract_all_definitions(
        &self,
        source: &[u8],
        root: tree_sitter::Node<'_>,
    ) -> Vec<SignatureInfo> {
        let mut signatures = Vec::new();

        // Traverse the AST to find all definitions
        // We track the full qualified name path as a vector of name components
        fn visit_node(
            node: &tree_sitter::Node<'_>,
            source: &[u8],
            signatures: &mut Vec<SignatureInfo>,
            parent_path: &[String],
        ) {
            match node.kind() {
                "function_definition" => {
                    // Extract function name
                    let func_name = node
                        .child_by_field_name("name")
                        .and_then(|n| n.utf8_text(source).ok())
                        .map(|s| s.to_string());

                    if let Some(name) = func_name {
                        // Build the full qualified path
                        let mut qualified_path = parent_path.to_vec();
                        qualified_path.push(name.clone());
                        let qualified_name = qualified_path.join(".");

                        // Extract function signature with full qualified name
                        if let Some(sig) =
                            extract_function_signature_with_path(node, source, &qualified_name)
                        {
                            signatures.push(sig);
                        }

                        // Continue recursion to find nested functions with updated path
                        let mut cursor = node.walk();
                        for child in node.children(&mut cursor) {
                            visit_node(&child, source, signatures, &qualified_path);
                        }
                    } else {
                        // Continue recursion without adding to path
                        let mut cursor = node.walk();
                        for child in node.children(&mut cursor) {
                            visit_node(&child, source, signatures, parent_path);
                        }
                    }
                }
                "class_definition" => {
                    // Extract class name
                    let class_name = node
                        .child_by_field_name("name")
                        .and_then(|n| n.utf8_text(source).ok())
                        .map(|s| s.to_string());

                    if let Some(name) = class_name {
                        // Add class to path
                        let mut class_path = parent_path.to_vec();
                        class_path.push(name);

                        // Continue recursion into class body
                        let mut cursor = node.walk();
                        for child in node.children(&mut cursor) {
                            visit_node(&child, source, signatures, &class_path);
                        }
                    } else {
                        // Continue recursion without adding to path
                        let mut cursor = node.walk();
                        for child in node.children(&mut cursor) {
                            visit_node(&child, source, signatures, parent_path);
                        }
                    }
                }
                _ => {
                    // Recursively visit children for all other node types
                    let mut cursor = node.walk();
                    for child in node.children(&mut cursor) {
                        visit_node(&child, source, signatures, parent_path);
                    }
                }
            }
        }

        visit_node(&root, source, &mut signatures, &[]);
        signatures
    }
}

impl CodeIntelligence for PythonParser {
    fn get_signatures(&self, source: &[u8]) -> Result<Vec<SignatureInfo>> {
        let mut parser = Parser::new();
        self.get_signatures_with_parser(source, &mut parser)
    }

    fn get_signatures_with_parser(
        &self,
        source: &[u8],
        parser: &mut tree_sitter::Parser,
    ) -> Result<Vec<SignatureInfo>> {
        parser
            .set_language(&crate::parse::traits::languages::python::language())
            .map_err(|e| Error::ParseFailed(e.to_string()))?;

        let tree = parser
            .parse(source, None)
            .ok_or_else(|| Error::ParseFailed("Failed to parse Python source".to_string()))?;

        let root_node = tree.root_node();

        let imports = extract_python_imports(root_node, source);

        // Extract signatures - extract_class_definitions handles both classes AND top-level functions
        // by calling the shared extract_function_signature helper
        let mut signatures = self.extract_all_definitions(source, root_node);

        for sig in &mut signatures {
            sig.imports = imports.clone();
        }

        Ok(signatures)
    }

    fn compute_cfg(&self, source: &[u8], node_id: usize) -> Result<Graph<Block, Edge>> {
        let mut parser = Parser::new();
        parser
            .set_language(&crate::parse::traits::languages::python::language())
            .map_err(|e| Error::ParseFailed(e.to_string()))?;

        let tree = parser
            .parse(source, None)
            .ok_or_else(|| Error::ParseFailed("Failed to parse Python source".to_string()))?;

        let root_node = tree.root_node();

        // Find the node with the given ID
        let node = find_node_by_id(&root_node, node_id)
            .ok_or_else(|| Error::ParseFailed(format!("Node {} not found", node_id)))?;

        // Build control flow graph
        let mut cfg_builder = CfgBuilder::new(source);
        cfg_builder.build_from_node(&node)?;

        Ok(cfg_builder.finish())
    }

    fn extract_complexity(&self, node: &tree_sitter::Node<'_>) -> ComplexityMetrics {
        let mut complexity = ComplexityMetrics {
            cyclomatic: 1,
            nesting_depth: 0,
            line_count: 0,
            token_count: 0,
        };

        calculate_complexity(node, &mut complexity, 0, DECISION_KINDS);
        complexity
    }
}

fn extract_python_imports(root: tree_sitter::Node<'_>, source: &[u8]) -> Vec<ImportInfo> {
    let mut imports = Vec::new();

    fn add_import(imports: &mut Vec<ImportInfo>, path: &str, alias: Option<String>) {
        let path = path.trim().trim_end_matches(';').trim();
        if path.is_empty() {
            return;
        }
        imports.push(ImportInfo {
            path: path.to_string(),
            alias,
        });
    }

    fn parse_import_text(imports: &mut Vec<ImportInfo>, text: &str) {
        let text = text.trim();
        if text.starts_with("import ") {
            let rest = text.trim_start_matches("import ");
            for part in rest.split(',') {
                let part = part.trim();
                if part.is_empty() {
                    continue;
                }
                if let Some((path, alias)) = part.split_once(" as ") {
                    add_import(imports, path.trim(), Some(alias.trim().to_string()));
                } else {
                    add_import(
                        imports,
                        part,
                        part.split('.').next_back().map(|s| s.to_string()),
                    );
                }
            }
        } else if text.starts_with("from ") {
            let rest = text.trim_start_matches("from ");
            if let Some((module, items)) = rest.split_once(" import ") {
                let module = module.trim();
                for item in items.split(',') {
                    let item = item.trim();
                    if item.is_empty() || item == "*" {
                        continue;
                    }
                    if let Some((name, alias)) = item.split_once(" as ") {
                        let path = format!("{}.{}", module, name.trim());
                        add_import(imports, &path, Some(alias.trim().to_string()));
                    } else {
                        let path = format!("{}.{}", module, item);
                        add_import(
                            imports,
                            &path,
                            item.split('.').next_back().map(|s| s.to_string()),
                        );
                    }
                }
            }
        }
    }

    fn visit(node: &tree_sitter::Node<'_>, source: &[u8], imports: &mut Vec<ImportInfo>) {
        match node.kind() {
            "import_statement" | "import_from_statement" => {
                if let Ok(text) = node.utf8_text(source) {
                    parse_import_text(imports, text);
                }
            }
            _ => {}
        }

        let mut cursor = node.walk();
        for child in node.children(&mut cursor) {
            visit(&child, source, imports);
        }
    }

    visit(&root, source, &mut imports);
    imports
}

/// Extract function signature from a function_definition node with a pre-computed qualified name
///
/// This version supports full qualified name paths including nested functions.
fn extract_function_signature_with_path(
    node: &tree_sitter::Node<'_>,
    source: &[u8],
    qualified_name: &str,
) -> Option<SignatureInfo> {
    // Extract function name (the last component of the qualified name)
    let name = qualified_name
        .split('.')
        .next_back()
        .unwrap_or(qualified_name)
        .to_string();

    // Extract parameters
    let parameters_node = node.child_by_field_name("parameters")?;
    let parameters = extract_parameters(&parameters_node, source);

    // Extract return type (if present)
    let return_type = node
        .child_by_field_name("return_type")
        .and_then(|rt| rt.utf8_text(source).ok())
        .map(|s| s.trim().to_string());

    // Check if async
    let is_async = node
        .children(&mut node.walk())
        .any(|child| child.kind() == "async");

    // Extract docstring (if present)
    let docstring = extract_docstring(node, source);

    // Extract calls
    let calls = extract_python_calls(node, source);

    // Determine if this is a method (qualified name contains at least one dot)
    let is_method = qualified_name.contains('.');

    Some(SignatureInfo {
        name,
        qualified_name: qualified_name.to_string(),
        parameters,
        return_type,
        visibility: Visibility::Public, // Python doesn't have explicit visibility
        is_async,
        is_method,
        docstring,
        calls,

        imports: vec![],
        byte_range: (node.start_byte(), node.end_byte()),
        flow_facts: vec![],

        cyclomatic_complexity: 0,
    })
}

/// Extract function calls from a Python node
fn extract_python_calls(node: &tree_sitter::Node<'_>, source: &[u8]) -> Vec<String> {
    let mut calls = Vec::new();

    fn clean_call_text(raw: &str) -> String {
        raw.split('(')
            .next()
            .unwrap_or(raw)
            .replace("?.", ".")
            .trim()
            .to_string()
    }

    fn find_calls(node: &tree_sitter::Node<'_>, source: &[u8], calls: &mut Vec<String>) {
        if node.kind() == "call" {
            if let Some(func) = node.child_by_field_name("function") {
                if let Ok(text) = func.utf8_text(source) {
                    let name = clean_call_text(text);
                    if !name.is_empty() {
                        calls.push(name);
                    }
                }
            }
        }

        let mut cursor = node.walk();
        for child in node.children(&mut cursor) {
            find_calls(&child, source, calls);
        }
    }

    find_calls(node, source, &mut calls);
    calls
}

/// Extract parameters from a parameters node
fn extract_parameters(params_node: &tree_sitter::Node<'_>, source: &[u8]) -> Vec<Parameter> {
    let mut parameters = Vec::new();

    // Find all 'identifier' nodes within parameters
    let mut cursor = params_node.walk();
    for child in params_node.children(&mut cursor) {
        if child.kind() == "identifier" {
            if let Ok(name) = child.utf8_text(source) {
                parameters.push(Parameter {
                    name: name.to_string(),
                    type_annotation: None, // Could be enhanced to extract type hints
                    default_value: None,
                });
            }
        } else if child.kind() == "typed_parameter" {
            // Extract parameter with type annotation
            let mut param_cursor = child.walk();
            for param_child in child.children(&mut param_cursor) {
                if param_child.kind() == "identifier" {
                    if let Ok(name) = param_child.utf8_text(source) {
                        // Try to find type annotation
                        let type_annotation = child
                            .child_by_field_name("type")
                            .and_then(|t| t.utf8_text(source).ok())
                            .map(|s| s.trim().to_string());

                        parameters.push(Parameter {
                            name: name.to_string(),
                            type_annotation,
                            default_value: None,
                        });
                        break;
                    }
                }
            }
        } else if child.kind() == "default_parameter" {
            // Extract parameter with default value
            let mut param_cursor = child.walk();
            for param_child in child.children(&mut param_cursor) {
                if param_child.kind() == "identifier" {
                    if let Ok(name) = param_child.utf8_text(source) {
                        parameters.push(Parameter {
                            name: name.to_string(),
                            type_annotation: None,
                            default_value: Some("...".to_string()), // Could extract actual default
                        });
                        break;
                    }
                }
            }
        }
    }

    parameters
}

/// Extract docstring from a function or class node
fn extract_docstring(node: &tree_sitter::Node<'_>, source: &[u8]) -> Option<String> {
    // Look for a string expression as the first statement in the body
    let body = node.child_by_field_name("body")?;
    let mut cursor = body.walk();

    for child in body.children(&mut cursor) {
        if child.kind() == "expression_statement" {
            // Check if it's a string
            let string_node = child.children(&mut child.walk()).next()?;
            if string_node.kind() == "string" {
                return string_node.utf8_text(source).ok().map(|s| {
                    // Remove quotes and escape sequences
                    s.trim_matches('"')
                        .trim_matches('\'')
                        .replace("\\n", "\n")
                        .replace("\\t", "\t")
                        .to_string()
                });
            }
        }
    }

    None
}

/// Calculate complexity metrics for a node
const DECISION_KINDS: &[&str] = &[
    "if_statement",
    "while_statement",
    "for_statement",
    "match_statement",
    "try_statement",
    "elif_clause",
];
cfg_builder!();
impl<'a> CfgBuilder<'a> {
    fn build_from_node(&mut self, node: &tree_sitter::Node<'_>) -> Result<()> {
        // Create entry block
        let entry_id = self.create_block();

        // Traverse the node and build CFG
        self.build_cfg_recursive(node, entry_id)?;

        Ok(())
    }

    fn build_cfg_recursive(
        &mut self,
        node: &tree_sitter::Node<'_>,
        current_block: usize,
    ) -> Result<()> {
        match node.kind() {
            "if_statement" => {
                self.handle_if_statement(node, current_block)?;
            }
            "while_statement" => {
                self.handle_while_statement(node, current_block)?;
            }
            "for_statement" => {
                self.handle_for_statement(node, current_block)?;
            }
            _ => {
                // For other nodes, just add the text to current block
                if let Ok(text) = node.utf8_text(self.source) {
                    self.add_statement_to_block(current_block, text.to_string());
                }

                // Recursively process children
                let mut cursor = node.walk();
                for child in node.children(&mut cursor) {
                    self.build_cfg_recursive(&child, current_block)?;
                }
            }
        }

        Ok(())
    }

    fn handle_while_statement(
        &mut self,
        _node: &tree_sitter::Node<'_>,
        current_block: usize,
    ) -> Result<()> {
        // Create loop body block
        let body_block = self.create_block();

        // Add edges for loop
        self.edges.push(Edge {
            from: current_block,
            to: body_block,
            edge_type: EdgeType::TrueBranch,
        });
        self.edges.push(Edge {
            from: body_block,
            to: current_block,
            edge_type: EdgeType::Loop,
        });

        Ok(())
    }

    fn handle_for_statement(
        &mut self,
        _node: &tree_sitter::Node<'_>,
        current_block: usize,
    ) -> Result<()> {
        // Create loop body block
        let body_block = self.create_block();

        // Add edges for loop
        self.edges.push(Edge {
            from: current_block,
            to: body_block,
            edge_type: EdgeType::Unconditional,
        });
        self.edges.push(Edge {
            from: body_block,
            to: current_block,
            edge_type: EdgeType::Loop,
        });

        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::parse::traits::CodeIntelligence;

    #[test]
    fn test_extract_function_signature() {
        let source = b"def hello(name: str) -> str:
            \"\"\"Greet someone.\"\"\"
            return f'Hello, {name}!'";

        let parser = PythonParser::new();
        let signatures = parser.get_signatures(source).unwrap();

        assert_eq!(signatures.len(), 1);
        let sig = &signatures[0];
        assert_eq!(sig.name, "hello");
        assert_eq!(sig.parameters.len(), 1);
        assert_eq!(sig.parameters[0].name, "name");
        assert_eq!(sig.return_type, Some("str".to_string()));
        assert_eq!(sig.docstring, Some("Greet someone.".to_string()));
    }

    #[test]
    fn test_extract_class_methods() {
        let source = b"
class MyClass:
    def method1(self):
        pass

    def method2(self, x):
        return x

def standalone_func():
    pass
";

        let parser = PythonParser::new();
        let signatures = parser.get_signatures(source).unwrap();

        // We're extracting both from extract_function_definitions AND extract_class_definitions
        // This results in duplicates, so let's just check that we find the expected signatures
        assert!(signatures.len() >= 3);

        // Check that we have the methods
        let method_names: Vec<_> = signatures
            .iter()
            .filter(|sig| sig.is_method && sig.name.contains("method"))
            .collect();
        assert!(method_names.len() >= 2);

        // Check that we have the standalone function
        let standalone: Vec<_> = signatures
            .iter()
            .filter(|sig| sig.name == "standalone_func")
            .collect();
        assert!(!standalone.is_empty());
    }

    #[test]
    fn test_complexity_calculation() {
        let source = b"
def complex_function(x):
    if x > 0:
        for i in range(x):
            if i % 2 == 0:
                pass
    return x
";

        let mut parser = Parser::new();
        parser
            .set_language(&crate::parse::traits::languages::python::language())
            .unwrap();
        let tree = parser.parse(source, None).unwrap();
        let root = tree.root_node();

        let python_parser = PythonParser::new();
        let metrics = python_parser.extract_complexity(&root);

        // Should have complexity > 1 due to if/for/if
        assert!(metrics.cyclomatic > 1);
        assert!(metrics.nesting_depth > 0);
    }

    #[test]
    fn test_async_function_detection() {
        let source = b"async def fetch_data():
    pass";

        let parser = PythonParser::new();
        let signatures = parser.get_signatures(source).unwrap();

        assert_eq!(signatures.len(), 1);
        assert!(signatures[0].is_async);
    }
}