fs_usage_sys 0.1.4

A Rust wrapper for macOS fs_usage to monitor file system events with advanced filtering
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
# fs_usage_sys API Documentation

## Overview

The `fs_usage_sys` library provides a safe Rust wrapper around macOS's `fs_usage` command for real-time file system monitoring with advanced filtering capabilities.

## Core Types

### `FsEvent`

Represents a single file system event captured from `fs_usage`.

```rust
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FsEvent {
    pub timestamp: String,      // Timestamp from fs_usage
    pub process_name: String,   // Name of the process that triggered the event
    pub pid: u32,              // Process ID
    pub operation: String,      // Operation type (read, write, open, etc.)
    pub path: String,          // File path involved
    pub result: String,        // "OK" or error code
}
```

**Example:**
```rust
FsEvent {
    timestamp: "23:52:52.781431".to_string(),
    process_name: "vim".to_string(),
    pid: 12345,
    operation: "write".to_string(),
    path: "/tmp/test.txt".to_string(),
    result: "OK".to_string(),
}
```

### `OperationType`

Enumeration of file system operation categories for filtering.

```rust
#[derive(Debug, Clone, PartialEq)]
pub enum OperationType {
    Read,      // File reading operations
    Write,     // File writing operations  
    Create,    // File/directory creation
    Delete,    // File/directory deletion
    Move,      // File/directory renaming/moving
    Access,    // Access checks and permissions
    Metadata,  // Metadata operations (stat, xattr)
    All,       // No filtering (default)
}
```

**Operation Mapping:**
- `Read`: `read`, `pread`, `readv`, `preadv`, `RdData`, `RdMeta`
- `Write`: `write`, `pwrite`, `writev`, `pwritev`, `WrData`, `WrMeta`, `ftruncate`
- `Create`: `open`, `creat`, `mkdir`, `mkfifo`, `mknod`, `symlink`, `link`
- `Delete`: `unlink`, `rmdir`, `remove`
- `Move`: `rename`, `renameat`
- `Access`: `access`, `faccessat`, `stat`, `stat64`, `lstat`, `lstat64`, `fstat`, `fstat64`
- `Metadata`: `getxattr`, `setxattr`, `listxattr`, `removexattr`, `getattrlist`, `setattrlist`

### `FsUsageMonitor`

The main monitoring struct that wraps the `fs_usage` process and provides event streaming.

```rust
pub struct FsUsageMonitor {
    // Internal fields are private
}
```

**Methods:**

#### `start(&mut self) -> Result<()>`
Starts the `fs_usage` monitoring process.

**Requirements:** Must be run with root/sudo privileges.

**Example:**
```rust
let mut monitor = FsUsageMonitorBuilder::new().build()?;
monitor.start()?;
```

#### `stop(&mut self) -> Result<()>`
Stops the monitoring process and cleans up resources.

```rust
monitor.stop()?;
```

#### `is_running(&self) -> bool`
Returns whether the monitor is currently active.

```rust
if monitor.is_running() {
    println!("Monitor is active");
}
```

#### `recv(&self) -> Result<FsEvent>`
Blocks until the next event is received.

```rust
while let Ok(event) = monitor.recv() {
    println!("Event: {:?}", event);
}
```

#### `try_recv(&self) -> Option<FsEvent>`
Non-blocking event retrieval.

```rust
if let Some(event) = monitor.try_recv() {
    println!("Event: {:?}", event);
}
```

#### `events(&self) -> &Receiver<FsEvent>`
Returns the underlying event receiver for advanced usage.

```rust
use std::time::Duration;

let receiver = monitor.events();
match receiver.recv_timeout(Duration::from_secs(1)) {
    Ok(event) => println!("Event: {:?}", event),
    Err(_) => println!("Timeout"),
}
```

### `FsUsageMonitorBuilder`

Builder pattern implementation for configuring monitoring parameters.

```rust
pub struct FsUsageMonitorBuilder {
    // Internal configuration
}
```

## Builder API

### Constructor

#### `new() -> Self`
Creates a new builder with default settings.

```rust
let builder = FsUsageMonitorBuilder::new();
```

### Path Filtering

#### `watch_path(self, path: impl Into<String>) -> Self`
Adds a single glob pattern to monitor.

```rust
let builder = FsUsageMonitorBuilder::new()
    .watch_path("/tmp/**/*");
```

#### `watch_paths(self, paths: impl IntoIterator<Item = impl Into<String>>) -> Self`
Adds multiple glob patterns.

```rust
let builder = FsUsageMonitorBuilder::new()
    .watch_paths([
        "/Users/*/Documents/**/*",
        "/tmp/**/*",
        "/var/log/*.log"
    ]);
```

**Glob Pattern Examples:**
```rust
// Files directly in /tmp
.watch_path("/tmp/*")

// All files in /tmp and subdirectories  
.watch_path("/tmp/**/*")

// Text files in any user's Documents
.watch_path("/Users/*/Documents/*.txt")

// Rust files in project
.watch_path("/path/to/project/**/*.rs")

// Multiple file types
.watch_path("/path/**/*.{rs,toml,md}")
```

### Process Filtering

#### `watch_pid(self, pid: u32) -> Self`
Monitor only a specific process ID.

```rust
let builder = FsUsageMonitorBuilder::new()
    .watch_pid(12345);
```

#### `watch_pids(self, pids: impl IntoIterator<Item = u32>) -> Self`
Monitor multiple specific process IDs.

```rust
let builder = FsUsageMonitorBuilder::new()
    .watch_pids([12345, 67890]);
```

#### `exclude_pid(self, pid: u32) -> Self`
Exclude a specific process ID from monitoring.

```rust
use std::process;

let builder = FsUsageMonitorBuilder::new()
    .exclude_pid(process::id()); // Exclude self
```

#### `exclude_pids(self, pids: impl IntoIterator<Item = u32>) -> Self`
Exclude multiple process IDs.

```rust
let builder = FsUsageMonitorBuilder::new()
    .exclude_pids([12345, 67890]);
```

#### `exclude_process(self, process: impl Into<String>) -> Self`
Exclude processes by name.

```rust
let builder = FsUsageMonitorBuilder::new()
    .exclude_process("mds")
    .exclude_process("Spotlight");
```

#### `exclude_processes(self, processes: impl IntoIterator<Item = impl Into<String>>) -> Self`
Exclude multiple processes by name.

```rust
let builder = FsUsageMonitorBuilder::new()
    .exclude_processes(["mds", "mdworker", "Spotlight"]);
```

### Operation Type Filtering

#### `watch_operations(self, operations: impl IntoIterator<Item = OperationType>) -> Self`
Monitor only specific operation types.

```rust
use fs_usage_sys::OperationType;

let builder = FsUsageMonitorBuilder::new()
    .watch_operations([
        OperationType::Write,
        OperationType::Create,
        OperationType::Delete
    ]);
```

#### `watch_writes_only(self) -> Self`
Convenience method to monitor only write-related operations (writes, creates, deletes, moves).

```rust
let builder = FsUsageMonitorBuilder::new()
    .watch_writes_only();
```

Equivalent to:
```rust
.watch_operations([
    OperationType::Write,
    OperationType::Create, 
    OperationType::Delete,
    OperationType::Move
])
```

#### `watch_reads_only(self) -> Self`
Monitor only read operations.

```rust
let builder = FsUsageMonitorBuilder::new()
    .watch_reads_only();
```

#### `exclude_metadata(self) -> Self`
Exclude metadata operations (stat, lstat, xattr).

```rust
let builder = FsUsageMonitorBuilder::new()
    .exclude_metadata();
```

Equivalent to:
```rust
.watch_operations([
    OperationType::Read,
    OperationType::Write,
    OperationType::Create,
    OperationType::Delete,
    OperationType::Move
])
```

#### `build(self) -> Result<FsUsageMonitor>`
Constructs the final monitor instance.

```rust
let monitor = FsUsageMonitorBuilder::new()
    .watch_path("/tmp/**/*")
    .watch_writes_only()
    .build()?;
```

## Complete Examples

### Basic Monitoring

```rust
use fs_usage_sys::FsUsageMonitorBuilder;
use anyhow::Result;

fn basic_monitor() -> Result<()> {
    let mut monitor = FsUsageMonitorBuilder::new()
        .watch_path("/tmp/**/*")
        .build()?;
    
    monitor.start()?;
    
    while let Ok(event) = monitor.recv() {
        println!("{}: {} {} {}", 
            event.timestamp,
            event.process_name,
            event.operation,
            event.path
        );
    }
    
    Ok(())
}
```

### Advanced Configuration

```rust
use fs_usage_sys::{FsUsageMonitorBuilder, OperationType};
use std::process;
use anyhow::Result;

fn advanced_monitor() -> Result<()> {
    let mut monitor = FsUsageMonitorBuilder::new()
        // Path filtering
        .watch_paths([
            "/Users/*/Documents/**/*",
            "/Users/*/Desktop/**/*",
            "/tmp/**/*"
        ])
        // Operation filtering
        .watch_operations([
            OperationType::Write,
            OperationType::Create,
            OperationType::Delete
        ])
        // Process filtering
        .exclude_pid(process::id())
        .exclude_processes([
            "mds",
            "mdworker", 
            "Spotlight",
            "Time Machine"
        ])
        .build()?;
    
    monitor.start()?;
    
    while let Ok(event) = monitor.recv() {
        match classify_event(&event) {
            EventClass::AiAssistant => {
                println!("🤖 AI: {} -> {}", event.operation, event.path);
            }
            EventClass::TextEditor => {
                println!("✏️  Editor: {} -> {}", event.operation, event.path);
            }
            EventClass::System => {
                println!("🔧 System: {} -> {}", event.operation, event.path);
            }
        }
    }
    
    Ok(())
}

enum EventClass {
    AiAssistant,
    TextEditor,
    System,
}

fn classify_event(event: &fs_usage_sys::FsEvent) -> EventClass {
    let ai_processes = ["Cursor", "Code", "code", "node", "electron"];
    let editor_processes = ["vim", "nvim", "emacs", "nano", "TextEdit"];
    
    if ai_processes.iter().any(|&p| event.process_name.contains(p)) {
        EventClass::AiAssistant
    } else if editor_processes.iter().any(|&p| event.process_name.contains(p)) {
        EventClass::TextEditor
    } else {
        EventClass::System
    }
}
```

### Error Handling

```rust
use fs_usage_sys::FsUsageMonitorBuilder;
use std::time::Duration;
use anyhow::Result;

fn robust_monitor() -> Result<()> {
    let mut monitor = FsUsageMonitorBuilder::new()
        .watch_path("/tmp/**/*")
        .watch_writes_only()
        .build()?;
    
    // Start with error handling
    if let Err(e) = monitor.start() {
        eprintln!("Failed to start monitor: {}", e);
        eprintln!("Ensure you're running with sudo privileges");
        return Err(e);
    }
    
    println!("Monitor started successfully");
    
    // Event loop with timeout
    loop {
        match monitor.events().recv_timeout(Duration::from_secs(1)) {
            Ok(event) => {
                println!("Event: {} {} {}", 
                    event.process_name, 
                    event.operation, 
                    event.path
                );
            }
            Err(crossbeam_channel::RecvTimeoutError::Timeout) => {
                // No events in the last second, continue
                continue;
            }
            Err(crossbeam_channel::RecvTimeoutError::Disconnected) => {
                eprintln!("Monitor disconnected");
                break;
            }
        }
    }
    
    monitor.stop()?;
    Ok(())
}
```

## Thread Safety

- `FsEvent` is `Send + Sync`
- `FsUsageMonitor` is `Send` but not `Sync` (contains internal mutability)
- Event receiver (`Receiver<FsEvent>`) is `Send + Sync` and can be shared across threads

## Performance Notes

1. **Operation Filtering**: Use `watch_writes_only()` or `exclude_metadata()` to significantly reduce event volume
2. **Path Specificity**: More specific glob patterns reduce parsing overhead
3. **Process Filtering**: Excluding system processes reduces noise
4. **Batch Processing**: Process events in batches rather than one-by-one for better performance

## Platform Requirements

- **macOS only** - Uses the system `fs_usage` command
- **Root privileges** - `fs_usage` requires sudo/root access
- **macOS 10.5+** - `fs_usage` availability

## Common Patterns

### AI Assistant Detection

```rust
fn is_ai_assistant(process_name: &str) -> bool {
    ["Cursor", "Code", "code", "node", "electron"]
        .iter()
        .any(|&p| process_name.contains(p))
}
```

### File Change Decision Logic

```rust
fn should_accept_change(event: &FsEvent) -> bool {
    // Accept manual editor changes
    if ["vim", "nvim", "emacs", "nano"].iter().any(|&p| event.process_name.contains(p)) {
        return true;
    }
    
    // Prompt for AI changes
    if is_ai_assistant(&event.process_name) {
        return prompt_user(&format!("Accept AI change to {}?", event.path));
    }
    
    // Default: accept system changes
    true
}
```