v_queue 0.3.0

simple file based queue
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
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
643
644
645
646
647
648
649
650
651
# Development Guide

Guide for developers who want to contribute to or modify V-Queue.

## Project Structure

```
v-queue/
├── src/                    # Core library
│   ├── lib.rs             # Library entry point
│   ├── queue.rs           # Queue implementation
│   ├── consumer.rs        # Consumer tracking
│   ├── record.rs          # Message format
│   └── test.rs            # Core tests
│
├── v-queue-server/        # HTTP server
│   ├── src/
│   │   ├── main.rs        # Server entry point
│   │   ├── lib.rs         # Library exports
│   │   ├── api.rs         # HTTP handlers
│   │   ├── auth.rs        # Authentication
│   │   ├── config.rs      # Configuration
│   │   ├── error.rs       # Error types
│   │   ├── queue_manager.rs  # Queue management
│   │   └── utils.rs       # Utilities
│   │
│   ├── tests/
│   │   ├── integration_tests.rs      # API tests
│   │   └── auth_integration_tests.rs # Auth tests
│   │
│   └── examples/          # Client examples
│       ├── python_client.py
│       ├── nodejs_client.js
│       └── rust_client.rs
│
├── java/                  # Java bindings
│   ├── libjvqueue/        # JNI wrapper
│   └── vqueue-binding/    # Java API
│
└── doc/                   # Documentation
    ├── README.md
    └── *.md
```

## Development Setup

### Prerequisites

```bash
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Install development tools
sudo apt install build-essential pkg-config

# Install clippy and rustfmt
rustup component add clippy rustfmt
```

### Clone and Build

```bash
git clone https://github.com/semantic-machines/v-queue.git
cd v-queue

# Build core library
cargo build

# Build server
cd v-queue-server
cargo build

# Run tests
cargo test
```

## Building

### Debug Build

```bash
cargo build
```

Output: `target/debug/v-queue-server`

### Release Build

```bash
cargo build --release
```

Output: `target/release/v-queue-server`

Release builds are ~10x faster but take longer to compile.

### Build with Specific Features

```bash
# Core library only
cargo build -p v_queue

# Server only
cargo build -p v-queue-server
```

## Testing

### Run All Tests

```bash
# Core library tests
cargo test

# Server tests
cd v-queue-server
cargo test
```

### Run Specific Test

```bash
cargo test test_name

# With output
cargo test test_name -- --nocapture

# Integration tests only
cargo test --test integration_tests
```

### Run with Coverage (requires tarpaulin)

```bash
cargo install cargo-tarpaulin

cargo tarpaulin --out Html
```

## Code Quality

### Format Code

```bash
cargo fmt
```

Check formatting without changing:

```bash
cargo fmt -- --check
```

### Lint Code

```bash
cargo clippy

# Strict mode
cargo clippy -- -D warnings
```

### Check Without Building

```bash
cargo check
```

Faster than full build, good for quick validation.

## Running Tests

### Unit Tests

Located in source files:

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

    #[test]
    fn test_something() {
        assert_eq!(2 + 2, 4);
    }
}
```

Run:
```bash
cargo test
```

### Integration Tests

Located in `v-queue-server/tests/`:

```bash
cargo test --test integration_tests
cargo test --test auth_integration_tests
```

### Manual Testing

Start test server:

```bash
cargo run -- --bind 127.0.0.1:9999 --data-dir /tmp/vqueue-test --no-auth
```

Test with curl:

```bash
curl http://127.0.0.1:9999/health
```

## Debugging

### Debug Logging

```bash
RUST_LOG=debug cargo run
```

Log levels: `error`, `warn`, `info`, `debug`, `trace`

### Run with Debugger

Using lldb:

```bash
rust-lldb target/debug/v-queue-server
(lldb) run --bind 127.0.0.1:9093
```

Using gdb:

```bash
rust-gdb target/debug/v-queue-server
(gdb) run --bind 127.0.0.1:9093
```

### Memory Debugging (Valgrind)

```bash
cargo build
valgrind --leak-check=full target/debug/v-queue-server
```

## Performance Profiling

### Using perf (Linux)

```bash
# Build with debug symbols
cargo build --release

# Record
sudo perf record -g target/release/v-queue-server

# Report
sudo perf report
```

### Using flamegraph

```bash
cargo install flamegraph

# Generate flamegraph
cargo flamegraph --bin v-queue-server
```

### Benchmarking

Create benchmark:

```rust
// benches/queue_bench.rs
use criterion::{black_box, criterion_group, criterion_main, Criterion};

fn queue_push_benchmark(c: &mut Criterion) {
    c.bench_function("queue push", |b| {
        b.iter(|| {
            // Benchmark code
        });
    });
}

criterion_group!(benches, queue_push_benchmark);
criterion_main!(benches);
```

Run:
```bash
cargo bench
```

## Adding Features

### 1. Core Library Feature

Example: Add new message type

**Step 1**: Update `record.rs`:

```rust
pub enum MsgType {
    String = 0,
    Object = 1,
    NewType = 2,  // Add new type
}
```

**Step 2**: Update serialization/deserialization

**Step 3**: Add tests:

```rust
#[test]
fn test_new_type() {
    // Test code
}
```

**Step 4**: Update documentation

### 2. Server API Feature

Example: Add new endpoint

**Step 1**: Add handler in `api.rs`:

```rust
pub async fn new_endpoint(
    State(state): State<AppState>,
) -> Result<Json<Response>, ApiError> {
    // Handler implementation
    Ok(Json(Response { /* ... */ }))
}
```

**Step 2**: Add route in `main.rs`:

```rust
.route("/api/v1/new-endpoint", get(new_endpoint))
```

**Step 3**: Add integration test:

```rust
#[tokio::test]
async fn test_new_endpoint() {
    // Test code
}
```

**Step 4**: Update API documentation

## Dependencies

### Adding Dependencies

Edit `Cargo.toml`:

```toml
[dependencies]
new_crate = "1.0"
```

Then:

```bash
cargo build
```

### Updating Dependencies

```bash
# Check for updates
cargo outdated

# Update all
cargo update

# Update specific crate
cargo update -p crate_name
```

### Audit Dependencies

```bash
cargo install cargo-audit
cargo audit
```

## Contributing Guidelines

### Code Style

Follow Rust conventions:

- Use `snake_case` for functions and variables
- Use `CamelCase` for types
- Format with `rustfmt`
- Lint with `clippy`
- Add documentation comments for public API

Example:

```rust
/// Consume messages from the queue.
///
/// # Arguments
///
/// * `timeout` - Timeout in seconds
/// * `max_messages` - Maximum messages to return
///
/// # Returns
///
/// Vector of messages
pub fn consume(&self, timeout: u64, max_messages: usize) -> Vec<Message> {
    // Implementation
}
```

### Commit Messages

Follow conventional commits:

```
feat: add new feature
fix: fix bug
docs: update documentation
test: add tests
refactor: refactor code
perf: improve performance
chore: maintenance tasks
```

Example:

```
feat: add support for message filtering

- Add filter parameter to consume endpoint
- Implement regex-based filtering
- Add tests for filter functionality
```

### Pull Request Process

1. Fork repository
2. Create feature branch: `git checkout -b feature/my-feature`
3. Make changes
4. Run tests: `cargo test`
5. Format code: `cargo fmt`
6. Lint code: `cargo clippy`
7. Commit changes
8. Push to fork
9. Create pull request

## Release Process

### Version Update

Update version in `Cargo.toml`:

```toml
[package]
version = "0.2.0"  # Increment version
```

### Changelog

Update CHANGELOG.md:

```markdown
## [0.2.0] - 2025-01-15

### Added
- New feature X

### Fixed
- Bug Y

### Changed
- Improved Z
```

### Tag Release

```bash
git tag -a v0.2.0 -m "Release v0.2.0"
git push origin v0.2.0
```

### Build Release Artifacts

```bash
cargo build --release

# Create archive
tar -czf v-queue-server-v0.2.0-linux-x86_64.tar.gz \
  -C target/release v-queue-server
```

## Documentation

### Code Documentation

Generate docs:

```bash
cargo doc --open
```

Add documentation:

```rust
/// Brief description.
///
/// Detailed description with examples.
///
/// # Examples
///
/// ```
/// let queue = Queue::new("./data", "test", Mode::ReadWrite)?;
/// queue.push(b"message", MsgType::String)?;
/// ```
pub fn example() {
    // Code
}
```

### User Documentation

Located in `doc/` directory:

- Write in Markdown
- Include code examples
- Add screenshots if applicable
- Cross-reference other docs

## Common Development Tasks

### Clean Build Artifacts

```bash
cargo clean
```

### Check Dependencies Tree

```bash
cargo tree
```

### View Binary Size

```bash
cargo bloat --release
```

### Expand Macros

```bash
cargo expand
```

### Check for Unused Dependencies

```bash
cargo install cargo-udeps
cargo +nightly udeps
```

## Troubleshooting Development Issues

### Compilation Errors

1. Clean and rebuild:
```bash
cargo clean
cargo build
```

2. Update dependencies:
```bash
cargo update
```

3. Check Rust version:
```bash
rustc --version
rustup update
```

### Test Failures

1. Run single test with output:
```bash
cargo test test_name -- --nocapture
```

2. Check for race conditions:
```bash
cargo test -- --test-threads=1
```

### IDE Issues

#### VS Code Setup

Install extensions:
- rust-analyzer
- CodeLLDB (debugging)
- Better TOML

`.vscode/settings.json`:
```json
{
  "rust-analyzer.checkOnSave.command": "clippy"
}
```

#### IntelliJ IDEA Setup

Install Rust plugin from marketplace.

## Useful Resources

### Documentation

- [Rust Book]https://doc.rust-lang.org/book/
- [Rust by Example]https://doc.rust-lang.org/rust-by-example/
- [Axum Documentation]https://docs.rs/axum/
- [Tokio Documentation]https://tokio.rs/

### Tools

- [Clippy Lints]https://rust-lang.github.io/rust-clippy/
- [Rustfmt Configuration]https://rust-lang.github.io/rustfmt/
- [Cargo Book]https://doc.rust-lang.org/cargo/

## Next Steps

- [Architecture Documentation]02-architecture.md
- [API Reference]05-api-reference.md
- [Testing Guide]../v-queue-server/tests/README.md