bashkit 0.1.15

Awesomely fast virtual sandbox with bash and file system
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
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
// SearchCapable is a separate opt-in trait — FileSystem unchanged.
// Builtins (grep) check via as_search_capable() at runtime, fall back to linear scan.

//! Optional indexed search support for filesystem implementations.
//!
//! The [`SearchCapable`] trait allows filesystem implementations to provide
//! optimized content and filename search. Commands like `grep` check for this
//! at runtime via [`FileSystem::as_search_capable`] and fall back to linear
//! scanning when unavailable.
//!
//! # Implementing SearchCapable
//!
//! ```rust
//! use bashkit::{SearchCapable, SearchProvider, SearchQuery, SearchResults,
//!     SearchCapabilities, SearchMatch};
//! use bashkit::{async_trait, FileSystem, FileSystemExt, InMemoryFs, Result};
//! use std::path::{Path, PathBuf};
//!
//! struct IndexedFs {
//!     inner: InMemoryFs,
//! }
//!
//! impl IndexedFs {
//!     fn new() -> Self {
//!         Self { inner: InMemoryFs::new() }
//!     }
//! }
//!
//! #[async_trait]
//! impl FileSystemExt for IndexedFs {}
//!
//! #[async_trait]
//! impl FileSystem for IndexedFs {
//!     async fn read_file(&self, path: &Path) -> Result<Vec<u8>> {
//!         self.inner.read_file(path).await
//!     }
//!     async fn write_file(&self, path: &Path, content: &[u8]) -> Result<()> {
//!         self.inner.write_file(path, content).await
//!     }
//!     async fn append_file(&self, path: &Path, content: &[u8]) -> Result<()> {
//!         self.inner.append_file(path, content).await
//!     }
//!     async fn mkdir(&self, path: &Path, recursive: bool) -> Result<()> {
//!         self.inner.mkdir(path, recursive).await
//!     }
//!     async fn remove(&self, path: &Path, recursive: bool) -> Result<()> {
//!         self.inner.remove(path, recursive).await
//!     }
//!     async fn stat(&self, path: &Path) -> Result<bashkit::Metadata> {
//!         self.inner.stat(path).await
//!     }
//!     async fn read_dir(&self, path: &Path) -> Result<Vec<bashkit::DirEntry>> {
//!         self.inner.read_dir(path).await
//!     }
//!     async fn exists(&self, path: &Path) -> Result<bool> {
//!         self.inner.exists(path).await
//!     }
//!     async fn rename(&self, from: &Path, to: &Path) -> Result<()> {
//!         self.inner.rename(from, to).await
//!     }
//!     async fn copy(&self, from: &Path, to: &Path) -> Result<()> {
//!         self.inner.copy(from, to).await
//!     }
//!     async fn symlink(&self, target: &Path, link: &Path) -> Result<()> {
//!         self.inner.symlink(target, link).await
//!     }
//!     async fn read_link(&self, path: &Path) -> Result<PathBuf> {
//!         self.inner.read_link(path).await
//!     }
//!     async fn chmod(&self, path: &Path, mode: u32) -> Result<()> {
//!         self.inner.chmod(path, mode).await
//!     }
//!     fn as_search_capable(&self) -> Option<&dyn SearchCapable> {
//!         Some(self)
//!     }
//! }
//!
//! struct MyProvider;
//!
//! impl SearchProvider for MyProvider {
//!     fn search(&self, _query: &SearchQuery) -> Result<SearchResults> {
//!         Ok(SearchResults::default())
//!     }
//!     fn capabilities(&self) -> SearchCapabilities {
//!         SearchCapabilities {
//!             regex: true,
//!             glob_filter: true,
//!             content_search: true,
//!             filename_search: false,
//!         }
//!     }
//! }
//!
//! impl SearchCapable for IndexedFs {
//!     fn search_provider(&self, _path: &Path) -> Option<Box<dyn SearchProvider>> {
//!         Some(Box::new(MyProvider))
//!     }
//! }
//!
//! # #[tokio::main]
//! # async fn main() -> Result<()> {
//! let fs = std::sync::Arc::new(IndexedFs::new());
//! let mut bash = bashkit::Bash::builder().fs(fs.clone()).build();
//!
//! // The grep builtin will check as_search_capable() and use indexed search
//! // when available, falling back to linear scan otherwise.
//! let sc = fs.as_search_capable().unwrap();
//! let provider = sc.search_provider(Path::new("/")).unwrap();
//! assert!(provider.capabilities().content_search);
//! # Ok(())
//! # }
//! ```

use std::path::{Path, PathBuf};

use crate::error::Result;

/// Optional trait for filesystems that support indexed search.
///
/// Builtins check for this via [`FileSystem::as_search_capable`](super::FileSystem::as_search_capable)
/// and use it when available. Not implementing this trait has zero cost —
/// builtins fall back to linear file enumeration.
///
/// `SearchCapable` is a supertrait of [`FileSystem`](super::FileSystem),
/// meaning any type implementing `SearchCapable` must also implement
/// `FileSystem`.
pub trait SearchCapable: super::FileSystem {
    /// Returns a search provider scoped to the given path.
    /// Returns `None` if no index covers this path.
    fn search_provider(&self, path: &Path) -> Option<Box<dyn SearchProvider>>;
}

/// Provides content and filename search within a filesystem scope.
///
/// Implementations are returned by [`SearchCapable::search_provider`] and
/// execute queries against an index or other optimized data structure.
pub trait SearchProvider: Send + Sync {
    /// Execute a content search query.
    fn search(&self, query: &SearchQuery) -> Result<SearchResults>;

    /// Report what this provider can do.
    fn capabilities(&self) -> SearchCapabilities;
}

/// Parameters for a search query.
#[derive(Debug, Clone)]
pub struct SearchQuery {
    /// Pattern to search for.
    pub pattern: String,
    /// Whether the pattern is a regex (vs literal string).
    pub is_regex: bool,
    /// Case-insensitive matching.
    pub case_insensitive: bool,
    /// Root path to scope the search.
    pub root: PathBuf,
    /// Optional glob filter for filenames (e.g., `"*.rs"`).
    pub glob_filter: Option<String>,
    /// Maximum number of results to return.
    pub max_results: Option<usize>,
}

/// Results from a search query.
#[derive(Debug, Clone, Default)]
pub struct SearchResults {
    /// Matching lines.
    pub matches: Vec<SearchMatch>,
    /// Whether results were truncated due to `max_results`.
    pub truncated: bool,
}

/// A single match from a search.
#[derive(Debug, Clone)]
pub struct SearchMatch {
    /// Path to the file containing the match.
    pub path: PathBuf,
    /// 1-based line number within the file.
    pub line_number: usize,
    /// Content of the matching line (without trailing newline).
    pub line_content: String,
}

/// Describes what a search provider supports.
#[derive(Debug, Clone, Copy, Default)]
pub struct SearchCapabilities {
    /// Supports regex patterns.
    pub regex: bool,
    /// Supports glob-based file filtering.
    pub glob_filter: bool,
    /// Supports content (full-text) search.
    pub content_search: bool,
    /// Supports filename search.
    pub filename_search: bool,
}

#[cfg(test)]
#[allow(clippy::unwrap_used)]
mod tests {
    use super::*;
    use crate::fs::{FileSystem, FileSystemExt, InMemoryFs};

    /// Mock searchable filesystem for testing.
    struct MockSearchFs {
        inner: InMemoryFs,
    }

    impl MockSearchFs {
        fn new() -> Self {
            Self {
                inner: InMemoryFs::new(),
            }
        }
    }

    #[async_trait::async_trait]
    impl FileSystemExt for MockSearchFs {}

    #[async_trait::async_trait]
    impl FileSystem for MockSearchFs {
        async fn read_file(&self, path: &Path) -> Result<Vec<u8>> {
            self.inner.read_file(path).await
        }
        async fn write_file(&self, path: &Path, content: &[u8]) -> Result<()> {
            self.inner.write_file(path, content).await
        }
        async fn append_file(&self, path: &Path, content: &[u8]) -> Result<()> {
            self.inner.append_file(path, content).await
        }
        async fn mkdir(&self, path: &Path, recursive: bool) -> Result<()> {
            self.inner.mkdir(path, recursive).await
        }
        async fn remove(&self, path: &Path, recursive: bool) -> Result<()> {
            self.inner.remove(path, recursive).await
        }
        async fn stat(&self, path: &Path) -> Result<crate::fs::Metadata> {
            self.inner.stat(path).await
        }
        async fn read_dir(&self, path: &Path) -> Result<Vec<crate::fs::DirEntry>> {
            self.inner.read_dir(path).await
        }
        async fn exists(&self, path: &Path) -> Result<bool> {
            self.inner.exists(path).await
        }
        async fn rename(&self, from: &Path, to: &Path) -> Result<()> {
            self.inner.rename(from, to).await
        }
        async fn copy(&self, from: &Path, to: &Path) -> Result<()> {
            self.inner.copy(from, to).await
        }
        async fn symlink(&self, target: &Path, link: &Path) -> Result<()> {
            self.inner.symlink(target, link).await
        }
        async fn read_link(&self, path: &Path) -> Result<std::path::PathBuf> {
            self.inner.read_link(path).await
        }
        async fn chmod(&self, path: &Path, mode: u32) -> Result<()> {
            self.inner.chmod(path, mode).await
        }
        fn as_search_capable(&self) -> Option<&dyn SearchCapable> {
            Some(self)
        }
    }

    struct MockProvider {
        results: Vec<SearchMatch>,
    }

    impl SearchProvider for MockProvider {
        fn search(&self, _query: &SearchQuery) -> Result<SearchResults> {
            Ok(SearchResults {
                matches: self.results.clone(),
                truncated: false,
            })
        }
        fn capabilities(&self) -> SearchCapabilities {
            SearchCapabilities {
                regex: true,
                glob_filter: true,
                content_search: true,
                filename_search: false,
            }
        }
    }

    impl SearchCapable for MockSearchFs {
        fn search_provider(&self, _path: &Path) -> Option<Box<dyn SearchProvider>> {
            Some(Box::new(MockProvider {
                results: vec![SearchMatch {
                    path: PathBuf::from("/test.txt"),
                    line_number: 1,
                    line_content: "hello world".to_string(),
                }],
            }))
        }
    }

    #[test]
    fn search_query_defaults() {
        let q = SearchQuery {
            pattern: "test".into(),
            is_regex: false,
            case_insensitive: false,
            root: PathBuf::from("/"),
            glob_filter: None,
            max_results: None,
        };
        assert_eq!(q.pattern, "test");
        assert!(!q.is_regex);
    }

    #[test]
    fn search_capabilities_default() {
        let c = SearchCapabilities::default();
        assert!(!c.regex);
        assert!(!c.glob_filter);
        assert!(!c.content_search);
        assert!(!c.filename_search);
    }

    #[test]
    fn mock_provider_returns_results() {
        let provider = MockProvider {
            results: vec![SearchMatch {
                path: PathBuf::from("/a.txt"),
                line_number: 5,
                line_content: "found it".into(),
            }],
        };
        let r = provider
            .search(&SearchQuery {
                pattern: "found".into(),
                is_regex: false,
                case_insensitive: false,
                root: PathBuf::from("/"),
                glob_filter: None,
                max_results: None,
            })
            .unwrap();
        assert_eq!(r.matches.len(), 1);
        assert_eq!(r.matches[0].line_number, 5);
        assert!(!r.truncated);
    }

    #[test]
    fn mock_searchable_fs_provides_search() {
        let fs = MockSearchFs::new();
        let provider = fs.search_provider(Path::new("/")).unwrap();
        assert!(provider.capabilities().content_search);
        let r = provider
            .search(&SearchQuery {
                pattern: "hello".into(),
                is_regex: false,
                case_insensitive: false,
                root: PathBuf::from("/"),
                glob_filter: None,
                max_results: None,
            })
            .unwrap();
        assert_eq!(r.matches.len(), 1);
        assert_eq!(r.matches[0].line_content, "hello world");
    }

    #[test]
    fn as_search_capable_returns_provider() {
        let fs = MockSearchFs::new();
        let sc = fs.as_search_capable().unwrap();
        let provider = sc.search_provider(Path::new("/")).unwrap();
        assert!(provider.capabilities().content_search);
    }

    #[test]
    fn non_searchable_fs_returns_none() {
        let fs = InMemoryFs::new();
        assert!(fs.as_search_capable().is_none());
    }

    #[test]
    fn search_results_default_is_empty() {
        let r = SearchResults::default();
        assert!(r.matches.is_empty());
        assert!(!r.truncated);
    }

    #[test]
    fn search_match_debug() {
        let m = SearchMatch {
            path: PathBuf::from("/test.txt"),
            line_number: 42,
            line_content: "hello".into(),
        };
        let dbg = format!("{:?}", m);
        assert!(dbg.contains("test.txt"));
        assert!(dbg.contains("42"));
    }

    // --- Additional edge-case tests ---

    #[test]
    fn search_query_with_all_options() {
        let q = SearchQuery {
            pattern: r"\bfoo\b".into(),
            is_regex: true,
            case_insensitive: true,
            root: PathBuf::from("/src"),
            glob_filter: Some("*.rs".into()),
            max_results: Some(100),
        };
        assert!(q.is_regex);
        assert!(q.case_insensitive);
        assert_eq!(q.root, PathBuf::from("/src"));
        assert_eq!(q.glob_filter.as_deref(), Some("*.rs"));
        assert_eq!(q.max_results, Some(100));
    }

    #[test]
    fn search_capabilities_all_enabled() {
        let c = SearchCapabilities {
            regex: true,
            glob_filter: true,
            content_search: true,
            filename_search: true,
        };
        assert!(c.regex);
        assert!(c.glob_filter);
        assert!(c.content_search);
        assert!(c.filename_search);
    }

    #[test]
    fn search_results_truncated() {
        let r = SearchResults {
            matches: vec![SearchMatch {
                path: PathBuf::from("/a.txt"),
                line_number: 1,
                line_content: "hit".into(),
            }],
            truncated: true,
        };
        assert!(r.truncated);
        assert_eq!(r.matches.len(), 1);
    }

    #[test]
    fn search_match_clone() {
        let m = SearchMatch {
            path: PathBuf::from("/b.txt"),
            line_number: 10,
            line_content: "cloned".into(),
        };
        let c = m.clone();
        assert_eq!(c.path, m.path);
        assert_eq!(c.line_number, m.line_number);
        assert_eq!(c.line_content, m.line_content);
    }

    #[test]
    fn search_results_clone() {
        let r = SearchResults {
            matches: vec![SearchMatch {
                path: PathBuf::from("/c.txt"),
                line_number: 3,
                line_content: "data".into(),
            }],
            truncated: false,
        };
        let c = r.clone();
        assert_eq!(c.matches.len(), 1);
        assert_eq!(c.matches[0].line_content, "data");
    }

    #[test]
    fn search_provider_no_content_search() {
        struct LimitedProvider;
        impl SearchProvider for LimitedProvider {
            fn search(&self, _query: &SearchQuery) -> Result<SearchResults> {
                Ok(SearchResults::default())
            }
            fn capabilities(&self) -> SearchCapabilities {
                SearchCapabilities {
                    regex: false,
                    glob_filter: false,
                    content_search: false,
                    filename_search: true,
                }
            }
        }
        let p = LimitedProvider;
        assert!(!p.capabilities().content_search);
        assert!(p.capabilities().filename_search);
    }

    #[test]
    fn search_provider_returns_none_for_path() {
        struct SelectiveSearchFs {
            inner: InMemoryFs,
        }

        #[async_trait::async_trait]
        impl FileSystemExt for SelectiveSearchFs {}

        #[async_trait::async_trait]
        impl FileSystem for SelectiveSearchFs {
            async fn read_file(&self, path: &Path) -> Result<Vec<u8>> {
                self.inner.read_file(path).await
            }
            async fn write_file(&self, path: &Path, content: &[u8]) -> Result<()> {
                self.inner.write_file(path, content).await
            }
            async fn append_file(&self, path: &Path, content: &[u8]) -> Result<()> {
                self.inner.append_file(path, content).await
            }
            async fn mkdir(&self, path: &Path, recursive: bool) -> Result<()> {
                self.inner.mkdir(path, recursive).await
            }
            async fn remove(&self, path: &Path, recursive: bool) -> Result<()> {
                self.inner.remove(path, recursive).await
            }
            async fn stat(&self, path: &Path) -> Result<crate::fs::Metadata> {
                self.inner.stat(path).await
            }
            async fn read_dir(&self, path: &Path) -> Result<Vec<crate::fs::DirEntry>> {
                self.inner.read_dir(path).await
            }
            async fn exists(&self, path: &Path) -> Result<bool> {
                self.inner.exists(path).await
            }
            async fn rename(&self, from: &Path, to: &Path) -> Result<()> {
                self.inner.rename(from, to).await
            }
            async fn copy(&self, from: &Path, to: &Path) -> Result<()> {
                self.inner.copy(from, to).await
            }
            async fn symlink(&self, target: &Path, link: &Path) -> Result<()> {
                self.inner.symlink(target, link).await
            }
            async fn read_link(&self, path: &Path) -> Result<std::path::PathBuf> {
                self.inner.read_link(path).await
            }
            async fn chmod(&self, path: &Path, mode: u32) -> Result<()> {
                self.inner.chmod(path, mode).await
            }
            fn as_search_capable(&self) -> Option<&dyn SearchCapable> {
                Some(self)
            }
        }

        impl SearchCapable for SelectiveSearchFs {
            fn search_provider(&self, path: &Path) -> Option<Box<dyn SearchProvider>> {
                // Only provide search for /indexed/ paths
                if path.starts_with("/indexed") {
                    Some(Box::new(MockProvider { results: vec![] }))
                } else {
                    None
                }
            }
        }

        let fs = SelectiveSearchFs {
            inner: InMemoryFs::new(),
        };
        // Path-scoped: /indexed returns provider, /other returns None
        assert!(fs.search_provider(Path::new("/indexed")).is_some());
        assert!(fs.search_provider(Path::new("/other")).is_none());
    }

    #[test]
    fn search_provider_error_result() {
        struct ErrorProvider;
        impl SearchProvider for ErrorProvider {
            fn search(&self, _query: &SearchQuery) -> Result<SearchResults> {
                Err(crate::Error::Io(std::io::Error::other("index corrupted")))
            }
            fn capabilities(&self) -> SearchCapabilities {
                SearchCapabilities {
                    content_search: true,
                    ..SearchCapabilities::default()
                }
            }
        }
        let p = ErrorProvider;
        let result = p.search(&SearchQuery {
            pattern: "x".into(),
            is_regex: false,
            case_insensitive: false,
            root: PathBuf::from("/"),
            glob_filter: None,
            max_results: None,
        });
        assert!(result.is_err());
        let msg = format!("{}", result.unwrap_err());
        assert!(msg.contains("index corrupted"));
    }

    #[test]
    fn search_capabilities_debug() {
        let c = SearchCapabilities::default();
        let dbg = format!("{:?}", c);
        assert!(dbg.contains("SearchCapabilities"));
    }

    #[test]
    fn search_query_debug() {
        let q = SearchQuery {
            pattern: "hello".into(),
            is_regex: false,
            case_insensitive: false,
            root: PathBuf::from("/"),
            glob_filter: None,
            max_results: None,
        };
        let dbg = format!("{:?}", q);
        assert!(dbg.contains("hello"));
    }
}