luckdb 0.1.2

A Lightweight JSON Document Database in Rust
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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
# LuckDB: A Lightweight JSON Document Database in Rust



[![Crates.io](https://img.shields.io/crates/v/luckdb.svg)](https://crates.io/crates/luckdb)
[![Rust](https://img.shields.io/badge/rust-1.56.1%2B-blue.svg?maxAge=3600)](https://gitlab.com/andrew_ryan/luckdb)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.com/andrew_ryan/luckdb/-/raw/master/LICENSE)



LuckDB is a lightweight, in-memory JSON document database written in Rust, inspired by MongoDB. It provides a simple yet powerful API for storing, querying, and manipulating JSON documents with support for indexing, aggregation, and persistence.

## Table of Contents

- [Features]#features
- [Installation]#installation
- [Quick Start]#quick-start
- [API Reference]#api-reference
  - [Client]#client
  - [Database]#database
  - [Collection]#collection
  - [Documents]#documents
  - [Queries]#queries
  - [Updates]#updates
  - [Indexes]#indexes
  - [Aggregation]#aggregation
- [Examples]#examples
  - [Basic CRUD Operations]#basic-crud-operations
  - [Advanced Querying]#advanced-querying
  - [Indexing]#indexing
  - [Aggregation Pipeline]#aggregation-pipeline
  - [Persistence]#persistence
  - [Client-Server Mode]#client-server-mode
- [License]#license

## Features


- **Document Storage**: Store JSON documents with automatic ID generation
- **Rich Querying**: Support for complex queries with multiple operators
- **Indexing**: Create indexes for improved query performance
- **Aggregation Pipeline**: Transform and analyze data with aggregation stages
- **Update Operations**: Flexible document updates with various operators
- **Persistence**: Save and load data from disk
- **Client-Server Mode**: Networked access to the database
- **Bulk Operations**: Efficient bulk write operations
- **Geospatial Queries**: Basic support for geospatial queries

## Installation


Add LuckDB to your `Cargo.toml`:

```toml
[dependencies]
luckdb = "0.1.0"
```

## Quick Start


```rust
use luckdb::{Client, DocId, Query, UpdateDocument};
use serde_json::json;

fn main() -> luckdb::Result<()> {
    // Create a new client
    let mut client = Client::new();
    
    // Get a database
    let db = client.db("mydb");
    
    // Get a collection
    let collection = db.collection("users");
    
    // Insert a document
    let doc = json!({
        "name": "Alice",
        "age": 30,
        "city": "New York",
        "interests": ["reading", "hiking"]
    });
    
    let id = collection.insert(doc)?;
    println!("Inserted document with ID: {}", id);
    
    // Query the collection
    let query = Query::new().eq("name", "Alice".into());
    let results = collection.find(query, None)?;
    
    for (id, doc) in results {
        println!("Found document {}: {}", id, doc);
    }
    
    Ok(())
}
```

## API Reference


### Client


The `Client` is the entry point to LuckDB. It manages multiple databases.

```rust
let mut client = Client::new();

// With storage path for persistence
let mut client = Client::with_storage_path("mongodb://localhost", "./data");
```

#### Methods


- `db(&mut self, name: &str) -> &mut Database`: Get or create a database
- `list_database_names(&self) -> Vec<String>`: List all databases
- `drop_database(&mut self, name: &str) -> Result<()>`: Drop a database
- `save(&self) -> Result<()>`: Save all data to disk
- `load(&mut self) -> Result<()>`: Load data from disk

### Database


A `Database` contains multiple collections.

```rust
let db = client.db("mydb");
```

#### Methods


- `collection(&mut self, name: &str) -> &mut Collection`: Get or create a collection
- `list_collection_names(&self) -> Vec<String>`: List all collections
- `create_collection(&mut self, name: &str, options: Option<CreateCollectionOptions>) -> Result<()>`: Create a collection with options
- `drop_collection(&mut self, name: &str) -> Result<()>`: Drop a collection
- `stats(&self) -> Result<DatabaseStats>`: Get database statistics
- `run_command(&mut self, command: &Document) -> Result<Document>`: Run a database command

### Collection


A `Collection` stores JSON documents.

```rust
let collection = db.collection("users");
```

#### Methods


- `insert(&mut self, doc: Document) -> Result<DocId>`: Insert a document
- `insert_many(&mut self, docs: Vec<Document>) -> Result<Vec<DocId>>`: Insert multiple documents
- `find(&self, query: Query, options: Option<FindOptions>) -> Result<Vec<(DocId, Document)>>`: Find documents matching a query
- `find_one(&self, query: Query, options: Option<FindOptions>) -> Result<(DocId, Document)>`: Find a single document
- `update_one(&mut self, query: Query, update: UpdateDocument, upsert: bool) -> Result<usize>`: Update the first matching document
- `update_many(&mut self, query: Query, update: UpdateDocument) -> Result<usize>`: Update all matching documents
- `replace_one(&mut self, query: Query, replacement: Document, upsert: bool) -> Result<usize>`: Replace the first matching document
- `delete_one(&mut self, query: Query) -> Result<usize>`: Delete the first matching document
- `delete_many(&mut self, query: Query) -> Result<usize>`: Delete all matching documents
- `count_documents(&self, query: Query) -> Result<usize>`: Count documents matching a query
- `create_index(&mut self, index: Index) -> Result<()>`: Create an index
- `drop_index(&mut self, name: &str) -> Result<()>`: Drop an index
- `list_indexes(&self) -> Result<Vec<Index>>`: List all indexes
- `aggregate(&self, pipeline: Vec<AggregationStage>) -> Result<Vec<Document>>`: Run an aggregation pipeline
- `distinct(&self, field: &str, query: Option<Query>) -> Result<Vec<Value>>`: Get distinct values for a field
- `bulk_write(&mut self, operations: Vec<BulkWriteOperation>, options: Option<BulkWriteOptions>) -> Result<BulkWriteResult>`: Execute bulk write operations

### Documents


Documents are JSON values represented by `serde_json::Value`.

```rust
use serde_json::json;

let doc = json!({
    "name": "Alice",
    "age": 30,
    "city": "New York",
    "interests": ["reading", "hiking"]
});
```

Each document automatically gets an `_id` field of type `DocId` when inserted.

### Queries


Queries are built using the `Query` struct and its methods.

```rust
use luckdb::{Query, Value};
use serde_json::json;

// Simple equality query
let query = Query::new().eq("name", "Alice".into());

// Complex query with multiple conditions
let query = Query::new()
    .eq("city", "New York".into())
    .gt("age", json!(25))
    .in_("interests", vec!["reading".into(), "hiking".into()]);

// Using logical operators
let query1 = Query::new().eq("city", "New York".into());
let query2 = Query::new().eq("city", "San Francisco".into());
let query = Query::new().or(vec![query1, query2]);
```

#### Query Operators


- `eq(key, value)`: Field equals value
- `ne(key, value)`: Field not equal to value
- `gt(key, value)`: Field greater than value
- `gte(key, value)`: Field greater than or equal to value
- `lt(key, value)`: Field less than value
- `lte(key, value)`: Field less than or equal to value
- `in_(key, values)`: Field in array of values
- `nin(key, values)`: Field not in array of values
- `exists(key, exists)`: Field exists (or not)
- `regex(key, pattern)`: Field matches regex pattern
- `and(queries)`: Logical AND of queries
- `or(queries)`: Logical OR of queries
- `nor(queries)`: Logical NOR of queries
- `not(query)`: Logical NOT of query
- `all(key, values)`: Array contains all values
- `elem_match(key, query)`: Array element matches query
- `size(key, size)`: Array has specified size
- `near(key, point, max_distance)`: Geospatial near query
- `within(key, shape)`: Geospatial within query
- `intersects(key, shape)`: Geospatial intersects query

### Updates


Update operations are built using the `UpdateDocument` struct.

```rust
use luckdb::UpdateDocument;
use serde_json::json;

let update = UpdateDocument::new()
    .set("status", "active".into())
    .inc("login_count", json!(1))
    .push("tags", "premium".into());
```

#### Update Operators


- `set(key, value)`: Set field to value
- `unset(key)`: Remove field
- `inc(key, value)`: Increment field by value
- `mul(key, value)`: Multiply field by value
- `rename(old_key, new_key)`: Rename field
- `set_on_insert(key, value)`: Set field on insert
- `min(key, value)`: Set field to minimum of current and value
- `max(key, value)`: Set field to maximum of current and value
- `current_date(key, type_spec)`: Set field to current date
- `push(key, value)`: Push value to array field
- `push_all(key, values)`: Push all values to array field
- `add_to_set(key, value)`: Add value to array if not present
- `pop(key, pos)`: Remove first or last element of array
- `pull(key, condition)`: Remove elements matching condition
- `pull_all(key, values)`: Remove all specified values from array
- `bit(key, operation)`: Bitwise operation

### Indexes


Indexes improve query performance.

```rust
use luckdb::{Index, IndexType};

// Create a simple index
let index = Index::new("name_index".to_string(), vec![("name".to_string(), IndexType::Ascending)]);
collection.create_index(index)?;

// Create a compound index
let index = Index::new("compound_index".to_string(), vec![
    ("city".to_string(), IndexType::Ascending),
    ("age".to_string(), IndexType::Descending)
]);
collection.create_index(index)?;

// Create a unique index
let index = Index::new("email_index".to_string(), vec![("email".to_string(), IndexType::Ascending)])
    .unique(true);
collection.create_index(index)?;
```

### Aggregation


Aggregation pipelines transform and analyze data.

```rust
use luckdb::{AggregationStage, GroupOperation, GroupId, SortOrder};
use serde_json::json;

let pipeline = vec![
    // Match documents
    AggregationStage::Match(Query::new().eq("status", "active".into())),
    
    // Group by city and count
    AggregationStage::Group(GroupSpecification {
        id: GroupId::Field("city".to_string()),
        operations: {
            let mut ops = std::collections::HashMap::new();
            ops.insert("count".to_string(), GroupOperation::Sum(json!(1)));
            ops.insert("avg_age".to_string(), GroupOperation::Avg("$age".into()));
            ops
        },
    }),
    
    // Sort by count
    AggregationStage::Sort(vec![("count".to_string(), SortOrder::Descending)]),
    
    // Limit results
    AggregationStage::Limit(10),
];

let results = collection.aggregate(pipeline)?;
```

## Examples


### Basic CRUD Operations


```rust
use luckdb::{Client, Query, UpdateDocument};
use serde_json::json;

fn main() -> luckdb::Result<()> {
    let mut client = Client::new();
    let db = client.db("test");
    let collection = db.collection("users");
    
    // Create
    let doc = json!({
        "name": "Alice",
        "age": 30,
        "city": "New York",
        "interests": ["reading", "hiking"]
    });
    let id = collection.insert(doc)?;
    println!("Created document with ID: {}", id);
    
    // Read
    let query = Query::new().eq("name", "Alice".into());
    let results = collection.find(query, None)?;
    for (id, doc) in results {
        println!("Found document {}: {}", id, doc);
    }
    
    // Update
    let update = UpdateDocument::new()
        .set("age", json!(31))
        .push("interests", "travel".into());
    let count = collection.update_one(Query::new().eq("name", "Alice".into()), update, false)?;
    println!("Updated {} documents", count);
    
    // Delete
    let count = collection.delete_one(Query::new().eq("name", "Alice".into()))?;
    println!("Deleted {} documents", count);
    
    Ok(())
}
```

### Advanced Querying


```rust
use luckdb::{Query, Value};
use serde_json::json;

fn main() -> luckdb::Result<()> {
    let mut client = Client::new();
    let db = client.db("test");
    let collection = db.collection("users");
    
    // Insert some test data
    collection.insert(json!({"name": "Alice", "age": 30, "city": "New York", "active": true}))?;
    collection.insert(json!({"name": "Bob", "age": 25, "city": "San Francisco", "active": false}))?;
    collection.insert(json!({"name": "Charlie", "age": 35, "city": "New York", "active": true}))?;
    collection.insert(json!({"name": "David", "age": 40, "city": "Chicago", "active": true}))?;
    
    // Find active users in New York
    let query = Query::new()
        .eq("city", "New York".into())
        .eq("active", Value::Bool(true));
    let results = collection.find(query, None)?;
    println!("Active users in New York:");
    for (id, doc) in results {
        println!("  {}: {}", id, doc);
    }
    
    // Find users older than 30 or inactive users
    let query1 = Query::new().gt("age", json!(30));
    let query2 = Query::new().eq("active", Value::Bool(false));
    let query = Query::new().or(vec![query1, query2]);
    let results = collection.find(query, None)?;
    println!("Users older than 30 or inactive:");
    for (id, doc) in results {
        println!("  {}: {}", id, doc);
    }
    
    // Find users with specific interests
    collection.insert(json!({
        "name": "Eve",
        "age": 28,
        "city": "Boston",
        "interests": ["reading", "coding", "hiking"]
    }))?;
    
    let query = Query::new().all("interests", vec!["reading".into(), "hiking".into()]);
    let results = collection.find(query, None)?;
    println!("Users with both reading and hiking interests:");
    for (id, doc) in results {
        println!("  {}: {}", id, doc);
    }
    
    Ok(())
}
```

### Indexing


```rust
use luckdb::{Client, Index, IndexType, Query};
use serde_json::json;

fn main() -> luckdb::Result<()> {
    let mut client = Client::new();
    let db = client.db("test");
    let collection = db.collection("users");
    
    // Insert test data
    for i in 0..1000 {
        collection.insert(json!({
            "name": format!("User {}", i),
            "age": i % 50 + 20,
            "city": ["New York", "San Francisco", "Chicago", "Boston"][i % 4],
            "active": i % 3 != 0
        }))?;
    }
    
    // Create indexes
    let name_index = Index::new("name_index".to_string(), vec![("name".to_string(), IndexType::Ascending)]);
    collection.create_index(name_index)?;
    
    let city_age_index = Index::new("city_age_index".to_string(), vec![
        ("city".to_string(), IndexType::Ascending),
        ("age".to_string(), IndexType::Descending)
    ]);
    collection.create_index(city_age_index)?;
    
    // Query using indexes
    let query = Query::new().eq("city", "New York".into()).gt("age", json!(30));
    let results = collection.find(query, None)?;
    println!("Found {} users in New York older than 30", results.len());
    
    // List indexes
    let indexes = collection.list_indexes()?;
    println!("Indexes:");
    for index in indexes {
        println!("  {}: {:?}", index.name, index.key);
    }
    
    Ok(())
}
```

### Aggregation Pipeline


```rust
use luckdb::{Client, AggregationStage, GroupOperation, GroupId, SortOrder, Query};
use serde_json::json;

fn main() -> luckdb::Result<()> {
    let mut client = Client::new();
    let db = client.db("test");
    let collection = db.collection("sales");
    
    // Insert test data
    collection.insert(json!({
        "product": "Laptop",
        "category": "Electronics",
        "price": 1200,
        "quantity": 1,
        "date": "2023-01-15",
        "customer": "Alice"
    }))?;
    
    collection.insert(json!({
        "product": "Phone",
        "category": "Electronics",
        "price": 800,
        "quantity": 2,
        "date": "2023-01-16",
        "customer": "Bob"
    }))?;
    
    collection.insert(json!({
        "product": "Desk Chair",
        "category": "Furniture",
        "price": 200,
        "quantity": 1,
        "date": "2023-01-17",
        "customer": "Alice"
    }))?;
    
    collection.insert(json!({
        "product": "Monitor",
        "category": "Electronics",
        "price": 300,
        "quantity": 1,
        "date": "2023-01-18",
        "customer": "Charlie"
    }))?;
    
    // Calculate total sales by category
    let pipeline = vec![
        AggregationStage::Group(GroupSpecification {
            id: GroupId::Field("category".to_string()),
            operations: {
                let mut ops = std::collections::HashMap::new();
                ops.insert("total_sales".to_string(), 
                    GroupOperation::Sum(json!({ "$multiply": ["$price", "$quantity"] })));
                ops.insert("count".to_string(), GroupOperation::Sum(json!(1)));
                ops
            },
        }),
        AggregationStage::Sort(vec![("total_sales".to_string(), SortOrder::Descending)])
    ];
    
    let results = collection.aggregate(pipeline)?;
    println!("Sales by category:");
    for doc in results {
        println!("  {}", doc);
    }
    
    // Find top customers
    let pipeline = vec![
        AggregationStage::Group(GroupSpecification {
            id: GroupId::Field("customer".to_string()),
            operations: {
                let mut ops = std::collections::HashMap::new();
                ops.insert("total_spent".to_string(), 
                    GroupOperation::Sum(json!({ "$multiply": ["$price", "$quantity"] })));
                ops.insert("purchase_count".to_string(), GroupOperation::Sum(json!(1)));
                ops
            },
        }),
        AggregationStage::Sort(vec![("total_spent".to_string(), SortOrder::Descending)]),
        AggregationStage::Limit(3)
    ];
    
    let results = collection.aggregate(pipeline)?;
    println!("Top customers:");
    for doc in results {
        println!("  {}", doc);
    }
    
    Ok(())
}
```

### Persistence


```rust
use luckdb::Client;
use serde_json::json;

fn main() -> luckdb::Result<()> {
    // Create a client with storage path
    let mut client = Client::with_storage_path("mongodb://localhost", "./data");
    
    // Load existing data if any
    client.load()?;
    
    // Get or create database and collection
    let db = client.db("myapp");
    let collection = db.collection("users");
    
    // Insert a document
    let doc = json!({
        "name": "Alice",
        "email": "alice@example.com",
        "created_at": "2023-01-01T00:00:00Z"
    });
    
    let id = collection.insert(doc)?;
    println!("Inserted document with ID: {}", id);
    
    // Save data to disk
    client.save()?;
    println!("Data saved to disk");
    
    // Later, load the data again
    let mut client2 = Client::with_storage_path("mongodb://localhost", "./data");
    client2.load()?;
    
    let db2 = client2.db("myapp");
    let collection2 = db2.collection("users");
    
    // Query the loaded data
    let results = collection2.find(luckdb::Query::new(), None)?;
    println!("Loaded {} documents", results.len());
    for (id, doc) in results {
        println!("  {}: {}", id, doc);
    }
    
    Ok(())
}
```

### Client-Server Mode


```rust
use luckdb::{Client, Server};
use std::net::SocketAddr;
use std::path::PathBuf;

fn main() -> luckdb::Result<()> {
    // Start the server in a separate thread
    let server_thread = std::thread::spawn(|| {
        let addr: SocketAddr = "127.0.0.1:27017".parse().unwrap();
        let storage_path = Some(PathBuf::from("./data"));
        let mut server = Server::new(addr, storage_path);
        server.start().unwrap();
    });
    
    // Give the server time to start
    std::thread::sleep(std::time::Duration::from_millis(100));
    
    // Connect to the server
    let remote_client = luckdb::RemoteClient::new("127.0.0.1:27017".parse().unwrap());
    let mut connection = remote_client.connect()?;
    
    // Send commands
    let response = connection.send_command("INSERT mydb users {\"name\":\"Alice\",\"age\":30}")?;
    println!("Server response: {}", response);
    
    let response = connection.send_command("FIND mydb users {\"name\":\"Alice\"}")?;
    println!("Server response: {}", response);
    
    let response = connection.send_command("SAVE")?;
    println!("Server response: {}", response);
    
    // Close the connection
    connection.close()?;
    
    // Stop the server
    let response = connection.send_command("EXIT")?;
    println!("Server response: {}", response);
    
    server_thread.join().unwrap();
    
    Ok(())
}
```

Note: This is just a basic example to give you an idea of how to use LuckDB. In a real-world application, you may want to add more error handling and security features.

```rust
#![allow(warnings)]

use luckdb::{Client, Server};
use std::net::SocketAddr;
use std::path::PathBuf;

fn main() -> luckdb::Result<()> {
    // Start the server in a separate thread
    let server_thread = std::thread::spawn(|| {
        // Create server with authentication
        let addr: SocketAddr = "127.0.0.1:27017".parse().unwrap();
        let storage_path = Some(PathBuf::from("./data"));

        let mut server = Server::new(addr, storage_path)
            .with_auth("admin".to_string(), "password123".to_string());

        server.start().unwrap();
    });

    // Give the server time to start
    std::thread::sleep(std::time::Duration::from_millis(100));


    // Connect to the server
    let remote_client = luckdb::RemoteClient::new("127.0.0.1:27017".parse().unwrap());
    let mut connection = remote_client.connect()?;


    let response = connection.send_command("AUTH admin password123")?;
    println!("Authentication response: {}", response);
    // Send commands
    let response = connection.send_command("INSERT mydb users {\"name\":\"Alice\",\"age\":30}")?;
    println!("Server response: {}", response);

    let response = connection.send_command("FIND mydb users {\"name\":\"Alice\"}")?;
    println!("Server response: {}", response);

    let response = connection.send_command("SAVE")?;
    println!("Server response: {}", response);

    // Close the connection
    // connection.close()?;

    // Stop the server
    let response = connection.send_command("EXIT")?;
    println!("Server response: {}", response);

    server_thread.join().unwrap();

    Ok(())
}

```
## License


LuckDB is licensed under the MIT License. See [LICENSE](LICENSE) for details.