nirv-engine 0.1.0

Universal data virtualization and compute orchestration engine with SQL Server, PostgreSQL, REST API, and file system connectors
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
# Contributing to NIRV Engine (v0.1.0)


Thank you for your interest in contributing to NIRV Engine! This document provides guidelines and information for contributors.

## Current Project Status

- **Production Ready** - Core features stable and tested
-**Active Development** - Continuous improvements and new features
-**Community Driven** - Open to contributions and feedback
- 📊 **Test Coverage** - 119 tests with 96% pass rate
- 🚀 **Growing Ecosystem** - Multiple connectors and protocols supported

## Table of Contents


- [Code of Conduct]#code-of-conduct
- [Getting Started]#getting-started
- [Development Setup]#development-setup
- [Contributing Guidelines]#contributing-guidelines
- [Testing]#testing
- [Documentation]#documentation
- [Pull Request Process]#pull-request-process
- [Issue Reporting]#issue-reporting

## Code of Conduct


This project adheres to a code of conduct that we expect all contributors to follow. Please be respectful and constructive in all interactions.

## Getting Started


### Prerequisites


- Rust 1.70.0 or later
- Git
- Basic understanding of async Rust programming
- Familiarity with database protocols (helpful but not required)

### Development Setup


1. **Fork and Clone**
   ```bash
   git clone https://github.com/your-username/nirv-engine.git

   cd nirv-engine

   ```

2. **Install Dependencies**
   ```bash
   cargo build

   ```

3. **Run Tests**
   ```bash
   cargo test

   ```

4. **Run Examples**
   ```bash
   cargo run --example sqlserver_simulation

   ```

## Contributing Guidelines


### Current Priority Areas


We're actively seeking contributions in these areas:

#### 🔧 **Code Quality & Testing**

- Fix floating-point precision issues in query planner tests
- Clean up unused code and warnings
- Improve error handling and edge cases
- Add more integration test scenarios

#### 🚀 **Feature Development**

- Complete cross-connector join implementation
- MySQL connector implementation
- SQLite connector
- MongoDB connector
- Performance optimization

#### 📚 **Documentation & Examples**

- More usage examples and tutorials
- Performance tuning guides
- Architecture deep-dives
- Video tutorials and demos

### Areas for Contribution


We welcome contributions in the following areas:

#### 🔌 **New Connectors**

- MySQL connector implementation
- SQLite connector
- MongoDB connector
- Redis connector
- Custom database connectors

#### 🛠 **Protocol Adapters**

- MySQL wire protocol
- Redis protocol (RESP)
- GraphQL protocol adapter
- Custom protocol implementations

#### 🚀 **Engine Enhancements**

- Query optimization improvements
- Performance enhancements
- Memory usage optimizations
- Error handling improvements

#### 📚 **Documentation**

- API documentation improvements
- Tutorial and example creation
- Architecture documentation
- Performance guides

#### 🧪 **Testing**

- Integration test scenarios
- Performance benchmarks
- Protocol compliance tests
- Edge case coverage

### Code Style


We follow standard Rust conventions:

- Use `rustfmt` for code formatting
- Use `clippy` for linting
- Follow Rust naming conventions
- Write comprehensive documentation
- Include unit tests for new functionality

```bash
# Format code

cargo fmt

# Run clippy

cargo clippy

# Check documentation

cargo doc --no-deps --open
```

### Architecture Guidelines


#### Connector Implementation


When implementing a new connector:

1. **Implement the `Connector` trait**
   ```rust
   #[async_trait]
   impl Connector for YourConnector {
       async fn connect(&mut self, config: ConnectorInitConfig) -> NirvResult<()> {
           // Implementation
       }
       
       async fn execute_query(&self, query: ConnectorQuery) -> NirvResult<QueryResult> {
           // Implementation
       }
       
       // ... other required methods
   }
   ```

2. **Follow TDD approach**
   - Write tests first
   - Implement minimal functionality to pass tests
   - Refactor and optimize

3. **Handle errors appropriately**
   - Use `ConnectorError` for connector-specific errors
   - Provide meaningful error messages
   - Handle connection failures gracefully

#### Protocol Adapter Implementation


When implementing a protocol adapter:

1. **Implement the `ProtocolAdapter` trait**
   ```rust
   #[async_trait]
   impl ProtocolAdapter for YourProtocol {
       async fn accept_connection(&self, stream: TcpStream) -> NirvResult<Connection> {
           // Implementation
       }
       
       async fn parse_message(&self, conn: &Connection, data: &[u8]) -> NirvResult<ProtocolQuery> {
           // Implementation
       }
       
       // ... other required methods
   }
   ```

2. **Follow protocol specifications**
   - Implement wire protocol correctly
   - Handle authentication properly
   - Support all required message types

3. **Provide comprehensive tests**
   - Test packet parsing
   - Test response formatting
   - Test error conditions

### Testing Requirements


All contributions must include appropriate tests:

#### Unit Tests

```rust
#[tokio::test]

async fn test_connector_functionality() {
    let connector = YourConnector::new();
    // Test implementation
}
```

#### Integration Tests

```rust
#[tokio::test]

async fn test_end_to_end_scenario() {
    // Test complete workflow
}
```

#### Test Coverage

- Aim for high test coverage (>80%)
- Test both success and error paths
- Include edge cases and boundary conditions
- Test async functionality properly

## Testing


### Running Tests


```bash
# Run all tests

cargo test

# Run specific test module

cargo test connector_tests

# Run with output

cargo test -- --nocapture

# Run integration tests

cargo test --test integration_tests
```

### Test Organization


- **Unit tests**: In `src/` files using `#[cfg(test)]`
- **Integration tests**: In `tests/` directory
- **Examples**: In `examples/` directory

### Test Data


- Use mock data for unit tests
- Provide test fixtures for integration tests
- Document test setup requirements

## Documentation


### Code Documentation


- Document all public APIs with rustdoc
- Include examples in documentation
- Explain complex algorithms and protocols
- Document error conditions

```rust
/// Connects to a SQL Server database using the specified configuration.
/// 
/// # Arguments
/// 
/// * `config` - Connection configuration including server, credentials, etc.
/// 
/// # Returns
/// 
/// Returns `Ok(())` on successful connection, or a `ConnectorError` on failure.
/// 
/// # Examples
/// 
/// ```rust
/// let mut connector = SqlServerConnector::new();
/// let config = ConnectorInitConfig::new()
///     .with_param("server", "localhost");
/// connector.connect(config).await?;
/// ```
pub async fn connect(&mut self, config: ConnectorInitConfig) -> NirvResult<()> {
    // Implementation
}
```

### README Updates


When adding new features:
- Update the feature list in README.md
- Add usage examples
- Update the roadmap if applicable

## Pull Request Process


### Before Submitting


1. **Ensure tests pass**
   ```bash
   cargo test

   ```

2. **Format code**
   ```bash
   cargo fmt

   ```

3. **Run clippy**
   ```bash
   cargo clippy

   ```

4. **Update documentation**
   - Update README.md if needed
   - Add/update rustdoc comments
   - Update CHANGELOG.md

### PR Guidelines


1. **Create a focused PR**
   - One feature or fix per PR
   - Keep changes as small as possible
   - Avoid mixing refactoring with new features

2. **Write a clear description**
   - Explain what the PR does
   - Reference related issues
   - Include testing information

3. **Follow the template**
   ```markdown
   ## Description
   Brief description of changes
   
   ## Type of Change
   - [ ] Bug fix
   - [ ] New feature
   - [ ] Breaking change
   - [ ] Documentation update
   
   ## Testing
   - [ ] Unit tests added/updated
   - [ ] Integration tests added/updated
   - [ ] Manual testing performed
   
   ## Checklist
   - [ ] Code follows style guidelines
   - [ ] Self-review completed
   - [ ] Documentation updated
   - [ ] Tests pass locally
   ```

### Review Process


1. **Automated checks** must pass
2. **Code review** by maintainers
3. **Testing** verification
4. **Documentation** review
5. **Merge** after approval

## Issue Reporting


### Bug Reports


When reporting bugs, please include:

- **Environment information**
  - Rust version
  - Operating system
  - NIRV Engine version

- **Steps to reproduce**
  - Minimal code example
  - Expected vs actual behavior
  - Error messages or logs

- **Additional context**
  - Screenshots if applicable
  - Related issues or PRs

### Feature Requests


When requesting features:

- **Use case description**
- **Proposed solution**
- **Alternative solutions considered**
- **Additional context**

### Issue Templates


Use the provided issue templates for:
- Bug reports
- Feature requests
- Documentation improvements
- Performance issues

## Development Tips


### Debugging


- Use `RUST_LOG=debug` for detailed logging
- Use `cargo test -- --nocapture` to see test output
- Use `cargo run --example <name>` to test examples

### Performance


- Profile with `cargo bench` for benchmarks
- Use `cargo flamegraph` for performance analysis
- Monitor memory usage with appropriate tools

### IDE Setup


Recommended VS Code extensions:
- rust-analyzer
- CodeLLDB (for debugging)
- Better TOML
- GitLens

## Getting Help


- **Documentation**: Check the rustdoc documentation
- **Examples**: Look at the examples directory
- **Issues**: Search existing issues for similar problems
- **Discussions**: Use GitHub Discussions for questions

## Recognition


Contributors will be recognized in:
- CHANGELOG.md for significant contributions
- README.md contributors section
- Release notes for major features

Thank you for contributing to NIRV Engine! 🚀