sqry-nl 5.0.1

Natural language to sqry query translation layer
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
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
//! Filter extraction (kind, limit, depth, format, predicates).

use crate::types::{OutputFormat, PredicateType, SymbolKind, Visibility};
use regex::Regex;
use std::sync::LazyLock;

/// Patterns for limit extraction
static LIMIT_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        Regex::new(r"(?i)\b(?:first|top|limit)\s+(\d+)\b").expect("Invalid limit regex"),
        Regex::new(r"(?i)\b(\d+)\s+(?:results?|matches?|hits?)\b").expect("Invalid results regex"),
    ]
});

/// Patterns for depth extraction
static DEPTH_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        Regex::new(r"(?i)\b(?:depth|level|levels)\s+(\d+)\b").expect("Invalid depth regex"),
        Regex::new(r"(?i)\b(\d+)\s+(?:levels?|hops?)\s+(?:deep|max)\b")
            .expect("Invalid levels regex"),
        Regex::new(r"(?i)\bmax[- ]?depth\s+(\d+)\b").expect("Invalid max-depth regex"),
    ]
});

/// Kind keyword mappings
const KIND_MAP: &[(&[&str], SymbolKind)] = &[
    (
        &["function", "func", "fn", "def", "subroutine"],
        SymbolKind::Function,
    ),
    (&["method", "member"], SymbolKind::Method),
    (&["class", "type"], SymbolKind::Class),
    (&["struct", "structure", "record"], SymbolKind::Struct),
    (&["enum", "enumeration"], SymbolKind::Enum),
    (&["trait"], SymbolKind::Trait),
    (&["interface", "protocol"], SymbolKind::Interface),
    (
        &["module", "mod", "package", "namespace"],
        SymbolKind::Module,
    ),
    (&["constant", "const", "static"], SymbolKind::Constant),
    (&["variable", "var", "let"], SymbolKind::Variable),
    (&["typealias", "type_alias", "alias"], SymbolKind::TypeAlias),
];

/// Extract limit from patterns like "first 5", "top 10", "limit 20".
#[must_use]
pub fn extract_limit(input: &str) -> Option<u32> {
    for pattern in LIMIT_PATTERNS.iter() {
        if let Some(caps) = pattern.captures(input)
            && let Some(num) = caps.get(1)
        {
            return num.as_str().parse().ok();
        }
    }
    None
}

/// Extract depth from patterns like "depth 5", "5 levels deep".
#[must_use]
pub fn extract_depth(input: &str) -> Option<u32> {
    for pattern in DEPTH_PATTERNS.iter() {
        if let Some(caps) = pattern.captures(input)
            && let Some(num) = caps.get(1)
        {
            return num.as_str().parse().ok();
        }
    }
    None
}

/// Extract symbol kind from patterns.
#[must_use]
pub fn extract_kind(input: &str) -> Option<SymbolKind> {
    let input_lower = input.to_lowercase();

    for (keywords, kind) in KIND_MAP {
        for keyword in *keywords {
            // Match as whole word, handling plurals (es, s, or nothing)
            // Pattern matches: function, functions, class, classes, etc.
            let plural_pattern = format!(r"\b{}(?:es|s)?\b", regex::escape(keyword));
            if let Ok(re) = Regex::new(&plural_pattern)
                && re.is_match(&input_lower)
            {
                return Some(*kind);
            }
        }
    }
    None
}

/// Extract output format from input.
#[must_use]
pub fn extract_format(input: &str) -> Option<OutputFormat> {
    let input_lower = input.to_lowercase();

    if input_lower.contains("mermaid") {
        Some(OutputFormat::Mermaid)
    } else if input_lower.contains("dot") || input_lower.contains("graphviz") {
        Some(OutputFormat::Dot)
    } else if input_lower.contains("json") {
        Some(OutputFormat::Json)
    } else {
        None
    }
}

// --- CD Predicate extraction ---

/// Patterns for impl: predicate extraction
static IMPL_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        // Direct predicate syntax: impl:Future, impl:Iterator
        Regex::new(r"(?i)\bimpl:(\w+)").expect("Invalid impl predicate regex"),
        // Natural language: "implements Future", "implementing Iterator"
        Regex::new(r"(?i)\bimplements?\s+(\w+)").expect("Invalid implements regex"),
        Regex::new(r"(?i)\bimplementing\s+(\w+)").expect("Invalid implementing regex"),
        // "implementations of X", "find types implementing X"
        Regex::new(r"(?i)\bimplementations?\s+of\s+(\w+)").expect("Invalid impl of regex"),
        Regex::new(r"(?i)\btypes?\s+implementing\s+(\w+)")
            .expect("Invalid types implementing regex"),
        // "structs implementing X", "classes implementing X"
        Regex::new(r"(?i)\b(?:structs?|classes?|types?)\s+(?:that\s+)?impl(?:ement)?\s+(\w+)")
            .expect("Invalid structs implementing regex"),
    ]
});

/// Patterns for duplicates: predicate
static DUPLICATES_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        // Direct predicate syntax: duplicates:, duplicates:body
        Regex::new(r"(?i)\bduplicates?:(\w*)").expect("Invalid duplicates predicate regex"),
        // Natural language
        Regex::new(r"(?i)\b(?:find\s+)?duplicate(?:d|s)?\s+(?:code|functions?|methods?|bodies?)?")
            .expect("Invalid duplicate NL regex"),
        Regex::new(r"(?i)\b(?:find\s+)?code\s+duplication")
            .expect("Invalid code duplication regex"),
        Regex::new(r"(?i)\b(?:find\s+)?similar\s+(?:code|functions?)")
            .expect("Invalid similar code regex"),
    ]
});

/// Patterns for circular: predicate
static CIRCULAR_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        // Direct predicate syntax: circular:, circular:calls
        Regex::new(r"(?i)\bcircular:(\w*)").expect("Invalid circular predicate regex"),
        // Natural language
        Regex::new(r"(?i)\bcircular\s+(?:dependencies?|calls?|imports?|references?)")
            .expect("Invalid circular NL regex"),
        Regex::new(r"(?i)\b(?:find\s+)?dependency\s+cycles?")
            .expect("Invalid dependency cycle regex"),
        Regex::new(r"(?i)\b(?:find\s+)?cyclic\s+(?:dependencies?|imports?|calls?)")
            .expect("Invalid cyclic regex"),
    ]
});

/// Patterns for unused: predicate
static UNUSED_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        // Direct predicate syntax: unused:, unused:true
        Regex::new(r"(?i)\bunused:(\w*)").expect("Invalid unused predicate regex"),
        // Natural language
        Regex::new(r"(?i)\b(?:find\s+)?unused\s+(?:code|functions?|methods?|variables?|symbols?)?")
            .expect("Invalid unused NL regex"),
        Regex::new(r"(?i)\b(?:find\s+)?dead\s+code").expect("Invalid dead code regex"),
        Regex::new(r"(?i)\b(?:find\s+)?unreachable\s+(?:code|functions?)")
            .expect("Invalid unreachable regex"),
    ]
});

/// Patterns for async: predicate
static ASYNC_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        // Direct predicate syntax: async:true
        Regex::new(r"(?i)\basync:(\w+)").expect("Invalid async predicate regex"),
        // Natural language
        Regex::new(r"(?i)\basync(?:hronous)?\s+(?:functions?|methods?|code)?")
            .expect("Invalid async NL regex"),
        Regex::new(r"(?i)\b(?:find\s+)?(?:all\s+)?async\b").expect("Invalid find async regex"),
    ]
});

/// Patterns for unsafe: predicate
static UNSAFE_PATTERNS: LazyLock<Vec<Regex>> = LazyLock::new(|| {
    vec![
        // Direct predicate syntax: unsafe:true
        Regex::new(r"(?i)\bunsafe:(\w+)").expect("Invalid unsafe predicate regex"),
        // Natural language
        Regex::new(r"(?i)\bunsafe\s+(?:code|blocks?|functions?)?")
            .expect("Invalid unsafe NL regex"),
        Regex::new(r"(?i)\b(?:find\s+)?(?:all\s+)?unsafe\b").expect("Invalid find unsafe regex"),
    ]
});

/// Extract predicate type from input.
///
/// Returns the predicate type (impl, duplicates, circular, unused) if detected.
#[must_use]
pub fn extract_predicate_type(input: &str) -> Option<PredicateType> {
    let input_lower = input.to_lowercase();

    // Check for impl: patterns
    for pattern in IMPL_PATTERNS.iter() {
        if pattern.is_match(&input_lower) {
            return Some(PredicateType::Impl);
        }
    }

    // Check for duplicates: patterns
    for pattern in DUPLICATES_PATTERNS.iter() {
        if pattern.is_match(&input_lower) {
            return Some(PredicateType::Duplicates);
        }
    }

    // Check for circular: patterns
    for pattern in CIRCULAR_PATTERNS.iter() {
        if pattern.is_match(&input_lower) {
            return Some(PredicateType::Circular);
        }
    }

    // Check for unused: patterns
    for pattern in UNUSED_PATTERNS.iter() {
        if pattern.is_match(&input_lower) {
            return Some(PredicateType::Unused);
        }
    }

    None
}

/// Extract trait name from impl: predicate.
///
/// Returns the trait name (e.g., "Future" from "impl:Future" or "implements Future").
#[must_use]
pub fn extract_impl_trait(input: &str) -> Option<String> {
    for pattern in IMPL_PATTERNS.iter() {
        if let Some(caps) = pattern.captures(input)
            && let Some(trait_name) = caps.get(1)
        {
            let name = trait_name.as_str().to_string();
            if !name.is_empty() {
                return Some(name);
            }
        }
    }
    None
}

/// Extract predicate argument (e.g., "body" from "duplicates:body").
#[must_use]
pub fn extract_predicate_arg(input: &str) -> Option<String> {
    // Check duplicates: argument
    if let Some(caps) = Regex::new(r"(?i)\bduplicates?:(\w+)").ok()?.captures(input)
        && let Some(arg) = caps.get(1)
    {
        let arg_str = arg.as_str();
        if !arg_str.is_empty() {
            return Some(arg_str.to_string());
        }
    }

    // Check circular: argument
    if let Some(caps) = Regex::new(r"(?i)\bcircular:(\w+)").ok()?.captures(input)
        && let Some(arg) = caps.get(1)
    {
        let arg_str = arg.as_str();
        if !arg_str.is_empty() {
            return Some(arg_str.to_string());
        }
    }

    None
}

/// Extract visibility filter from input.
#[must_use]
pub fn extract_visibility(input: &str) -> Option<Visibility> {
    let input_lower = input.to_lowercase();

    // Check direct predicate syntax first
    if let Some(caps) = Regex::new(r"(?i)\bvisibility:(\w+)")
        .ok()?
        .captures(&input_lower)
        && let Some(val) = caps.get(1)
    {
        return match val.as_str() {
            "public" | "pub" => Some(Visibility::Public),
            "private" | "priv" => Some(Visibility::Private),
            _ => None,
        };
    }

    // Check natural language patterns
    if input_lower.contains("public") {
        return Some(Visibility::Public);
    }
    if input_lower.contains("private") {
        return Some(Visibility::Private);
    }

    None
}

/// Extract async filter from input.
///
/// Returns `Some(true)` if async functions should be found.
#[must_use]
pub fn extract_async(input: &str) -> Option<bool> {
    let input_lower = input.to_lowercase();

    // Check direct predicate syntax
    if let Some(caps) = Regex::new(r"(?i)\basync:(\w+)")
        .ok()?
        .captures(&input_lower)
        && let Some(val) = caps.get(1)
    {
        return match val.as_str() {
            "true" | "yes" | "1" => Some(true),
            "false" | "no" | "0" => Some(false),
            _ => None,
        };
    }

    // Check natural language patterns
    for pattern in ASYNC_PATTERNS.iter() {
        if pattern.is_match(&input_lower) {
            return Some(true);
        }
    }

    None
}

/// Extract unsafe filter from input.
///
/// Returns `Some(true)` if unsafe code should be found.
#[must_use]
pub fn extract_unsafe(input: &str) -> Option<bool> {
    let input_lower = input.to_lowercase();

    // Check direct predicate syntax
    if let Some(caps) = Regex::new(r"(?i)\bunsafe:(\w+)")
        .ok()?
        .captures(&input_lower)
        && let Some(val) = caps.get(1)
    {
        return match val.as_str() {
            "true" | "yes" | "1" => Some(true),
            "false" | "no" | "0" => Some(false),
            _ => None,
        };
    }

    // Check natural language patterns
    for pattern in UNSAFE_PATTERNS.iter() {
        if pattern.is_match(&input_lower) {
            return Some(true);
        }
    }

    None
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_extract_limit_first() {
        assert_eq!(extract_limit("first 5 results"), Some(5));
    }

    #[test]
    fn test_extract_limit_top() {
        assert_eq!(extract_limit("top 10 matches"), Some(10));
    }

    #[test]
    fn test_extract_limit_explicit() {
        assert_eq!(extract_limit("limit 20"), Some(20));
    }

    #[test]
    fn test_extract_limit_results() {
        assert_eq!(extract_limit("show 15 results"), Some(15));
    }

    #[test]
    fn test_extract_limit_none() {
        assert_eq!(extract_limit("find all functions"), None);
    }

    #[test]
    fn test_extract_depth() {
        assert_eq!(extract_depth("depth 5"), Some(5));
        assert_eq!(extract_depth("3 levels deep"), Some(3));
        assert_eq!(extract_depth("max-depth 10"), Some(10));
    }

    #[test]
    fn test_extract_kind_function() {
        assert_eq!(
            extract_kind("find all functions"),
            Some(SymbolKind::Function)
        );
        assert_eq!(
            extract_kind("find function foo"),
            Some(SymbolKind::Function)
        );
    }

    #[test]
    fn test_extract_kind_class() {
        assert_eq!(extract_kind("find all classes"), Some(SymbolKind::Class));
    }

    #[test]
    fn test_extract_kind_struct() {
        assert_eq!(extract_kind("find structs"), Some(SymbolKind::Struct));
    }

    #[test]
    fn test_extract_kind_method() {
        assert_eq!(extract_kind("find methods"), Some(SymbolKind::Method));
    }

    #[test]
    fn test_extract_format() {
        assert_eq!(
            extract_format("generate mermaid diagram"),
            Some(OutputFormat::Mermaid)
        );
        assert_eq!(extract_format("output as dot"), Some(OutputFormat::Dot));
        assert_eq!(extract_format("json format"), Some(OutputFormat::Json));
        assert_eq!(extract_format("find foo"), None);
    }

    // --- CD Predicate tests ---

    #[test]
    fn test_extract_predicate_type_impl() {
        assert_eq!(
            extract_predicate_type("impl:Future"),
            Some(PredicateType::Impl)
        );
        assert_eq!(
            extract_predicate_type("find implementations of Iterator"),
            Some(PredicateType::Impl)
        );
        assert_eq!(
            extract_predicate_type("types implementing Clone"),
            Some(PredicateType::Impl)
        );
    }

    #[test]
    fn test_extract_predicate_type_duplicates() {
        assert_eq!(
            extract_predicate_type("duplicates:"),
            Some(PredicateType::Duplicates)
        );
        assert_eq!(
            extract_predicate_type("duplicates:body"),
            Some(PredicateType::Duplicates)
        );
        assert_eq!(
            extract_predicate_type("find duplicate code"),
            Some(PredicateType::Duplicates)
        );
    }

    #[test]
    fn test_extract_predicate_type_circular() {
        assert_eq!(
            extract_predicate_type("circular:"),
            Some(PredicateType::Circular)
        );
        assert_eq!(
            extract_predicate_type("find circular dependencies"),
            Some(PredicateType::Circular)
        );
        assert_eq!(
            extract_predicate_type("cyclic imports"),
            Some(PredicateType::Circular)
        );
    }

    #[test]
    fn test_extract_predicate_type_unused() {
        assert_eq!(
            extract_predicate_type("unused:"),
            Some(PredicateType::Unused)
        );
        assert_eq!(
            extract_predicate_type("find unused code"),
            Some(PredicateType::Unused)
        );
        assert_eq!(
            extract_predicate_type("dead code"),
            Some(PredicateType::Unused)
        );
    }

    #[test]
    fn test_extract_impl_trait() {
        assert_eq!(
            extract_impl_trait("impl:Future"),
            Some("Future".to_string())
        );
        assert_eq!(
            extract_impl_trait("implements Iterator"),
            Some("Iterator".to_string())
        );
        assert_eq!(
            extract_impl_trait("implementations of Clone"),
            Some("Clone".to_string())
        );
        assert_eq!(extract_impl_trait("find functions"), None);
    }

    #[test]
    fn test_extract_predicate_arg() {
        assert_eq!(
            extract_predicate_arg("duplicates:body"),
            Some("body".to_string())
        );
        assert_eq!(
            extract_predicate_arg("circular:calls"),
            Some("calls".to_string())
        );
        assert_eq!(extract_predicate_arg("duplicates:"), None);
        assert_eq!(extract_predicate_arg("find foo"), None);
    }

    #[test]
    fn test_extract_visibility() {
        assert_eq!(
            extract_visibility("visibility:public"),
            Some(Visibility::Public)
        );
        assert_eq!(
            extract_visibility("visibility:private"),
            Some(Visibility::Private)
        );
        assert_eq!(
            extract_visibility("find public functions"),
            Some(Visibility::Public)
        );
        assert_eq!(
            extract_visibility("private methods"),
            Some(Visibility::Private)
        );
        assert_eq!(extract_visibility("find foo"), None);
    }

    #[test]
    fn test_extract_async() {
        assert_eq!(extract_async("async:true"), Some(true));
        assert_eq!(extract_async("async:false"), Some(false));
        assert_eq!(extract_async("find async functions"), Some(true));
        assert_eq!(extract_async("async methods"), Some(true));
        assert_eq!(extract_async("find foo"), None);
    }

    #[test]
    fn test_extract_unsafe() {
        assert_eq!(extract_unsafe("unsafe:true"), Some(true));
        assert_eq!(extract_unsafe("unsafe:false"), Some(false));
        assert_eq!(extract_unsafe("find unsafe code"), Some(true));
        assert_eq!(extract_unsafe("unsafe blocks"), Some(true));
        assert_eq!(extract_unsafe("find foo"), None);
    }
}