heroforge 0.2.1

Pure Rust client library for reading and writing Fossil SCM repositories
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
# heroforge

[![Crates.io](https://img.shields.io/crates/v/heroforge.svg)](https://crates.io/crates/heroforge)
[![Documentation](https://docs.rs/heroforge/badge.svg)](https://docs.rs/heroforge)
[![License](https://img.shields.io/crates/l/heroforge.svg)](LICENSE)

## Overview

`heroforge` provides a complete API for interacting with Heroforge repositories programmatically, without requiring the Heroforge CLI to be installed. It supports both reading from existing repositories and creating new ones from scratch.

## Features

### Read Operations
- Open and read existing Heroforge repositories
- Browse repository history and check-ins
- List and read files at any check-in
- Find files using glob patterns
- Navigate directory structures
- Access branch and tag information

### Write Operations
- Create new repositories from scratch
- Commit files with full manifest generation
- Create and manage branches
- Add tags to check-ins
- Manage users and permissions

### Filesystem Operations
- Copy, move, rename files and directories
- Delete files and directories
- Change permissions (chmod)
- Create symbolic links
- Advanced find with ignore patterns

### Synchronization
- **QUIC sync** - Modern UDP-based protocol with TLS 1.3 (requires `sync-quic` feature)

## Installation

Add `heroforge` to your `Cargo.toml`:

```toml
[dependencies]
heroforge = "0.1"
```

### Optional Features

Enable QUIC sync for remote repository synchronization:

```toml
[dependencies]
heroforge = { version = "0.1", features = ["sync-quic"] }
```

## Quick Start

### Reading from an Existing Repository

```rust
use heroforge::Repository;

fn main() -> heroforge::Result<()> {
    // Open a Heroforge repository
    let repo = Repository::open("project.heroforge")?;

    // Get the latest check-in on trunk
    let tip = repo.history().trunk_tip()?;
    println!("Latest: {} by {}", tip.hash, tip.user);
    println!("Comment: {}", tip.comment);

    // List all files on trunk
    let files = repo.files().on_trunk().list()?;
    for file in &files {
        println!("  {}", file.name);
    }

    // Read a specific file from trunk
    let content = repo.files().on_trunk().read("README.md")?;
    println!("README:\n{}", String::from_utf8_lossy(&content));

    Ok(())
}
```

### Creating a New Repository

```rust
use heroforge::Repository;

fn main() -> heroforge::Result<()> {
    // Create a new repository
    let repo = Repository::init("new_project.heroforge")?;

    // Create initial check-in
    let init_hash = repo.commit_builder()
        .message("initial empty check-in")
        .author("admin")
        .initial()
        .execute()?;

    // Add some files in a new commit
    let commit_hash = repo.commit_builder()
        .message("Initial project structure")
        .author("developer")
        .parent(&init_hash)
        .file("README.md", b"# My Project\n")
        .file("src/main.rs", b"fn main() { println!(\"Hello!\"); }\n")
        .execute()?;

    // Tag the release
    repo.tags()
        .create("v1.0.0")
        .at_commit(&commit_hash)
        .author("developer")
        .execute()?;

    // Create a feature branch
    repo.branches()
        .create("feature-x")
        .from_commit(&commit_hash)
        .author("developer")
        .execute()?;

    Ok(())
}
```

### Finding Files with Glob Patterns

```rust
use heroforge::Repository;

fn main() -> heroforge::Result<()> {
    let repo = Repository::open("project.heroforge")?;

    // Find all Rust files on trunk
    let rust_files = repo.files().on_trunk().find("**/*.rs")?;
    for file in rust_files {
        println!("Found: {}", file.name);
    }

    // Find files in a specific directory on a branch
    let src_files = repo.files().on_branch("feature-x").find("src/**/*")?;
    
    // Find files at a specific tag
    let tagged_files = repo.files().at_tag("v1.0.0").find("*.md")?;
    
    Ok(())
}
```

### Browsing History

```rust
use heroforge::Repository;

fn main() -> heroforge::Result<()> {
    let repo = Repository::open("project.heroforge")?;

    // Get recent check-ins
    let history = repo.history().recent(10)?;
    for checkin in history {
        println!("{} | {} | {}", 
            &checkin.hash[..12], 
            checkin.user, 
            checkin.comment
        );
    }

    // List all branches
    let branches = repo.branches().list()?;
    for branch in branches {
        println!("Branch: {}", branch);
    }

    // List all tags
    let tags = repo.tags().list()?;
    for tag in tags {
        println!("Tag: {}", tag);
    }

    // Get the tip of a specific branch
    let feature_tip = repo.history().branch_tip("feature-x")?;
    println!("Feature branch tip: {}", feature_tip.hash);

    Ok(())
}
```

### User Management

```rust
use heroforge::Repository;

fn main() -> heroforge::Result<()> {
    let repo = Repository::init("project.heroforge")?;

    // Create a new user
    repo.users()
        .create("developer")
        .password("secret123")
        .capabilities("ei")  // edit + check-in
        .execute()?;

    // List all users
    let users = repo.users().list()?;
    for (login, caps) in users {
        println!("User: {} ({})", login, caps);
    }

    // Get user capabilities
    if let Some(caps) = repo.users().get_capabilities("developer")? {
        println!("Developer capabilities: {}", caps);
    }

    Ok(())
}
```

### QUIC Synchronization

```rust
use heroforge::Repository;

fn main() -> heroforge::Result<()> {
    let repo = Repository::open("project.heroforge")?;
    
    // Sync with a remote repository over QUIC
    repo.sync()
        .url("quic://heroforge.example.com:4443/repo")
        .execute()?;
    
    Ok(())
}
```

### Filesystem Operations

```rust
use heroforge::Repository;

fn main() -> heroforge::Result<()> {
    let repo = Repository::open_rw("project.heroforge")?;

    // Copy, move, delete files atomically
    let hash = repo.fs().modify()
        .message("Reorganize project")
        .author("developer")
        .copy_file("README.md", "docs/README.md")
        .move_dir("scripts", "tools")
        .delete_file("old_config.txt")
        .make_executable("tools/build.sh")
        .symlink("build", "tools/build.sh")
        .execute()?;

    // Advanced find with ignore patterns
    let files = repo.fs().find()
        .pattern("**/*.rs")
        .ignore("target/**")
        .ignore_hidden()
        .max_depth(3)
        .paths()?;
    
    // Utility functions
    println!("Exists: {}", repo.fs().exists("README.md")?);
    println!("Is dir: {}", repo.fs().is_dir("src")?);
    println!("Total size: {} bytes", repo.fs().du("**/*.rs")?);

    Ok(())
}
```

## Builder API Overview

The library uses a fluent builder pattern for all operations:

| Builder | Entry Point | Purpose |
|---------|-------------|---------|
| `FilesBuilder` | `repo.files()` | Read files, list directories, find with glob patterns |
| `CommitBuilder` | `repo.commit_builder()` | Create new check-ins with files |
| `BranchesBuilder` | `repo.branches()` | List and create branches |
| `TagsBuilder` | `repo.tags()` | List, create, and resolve tags |
| `HistoryBuilder` | `repo.history()` | Browse commits and history |
| `UsersBuilder` | `repo.users()` | Manage repository users |
| `SyncBuilder` | `repo.sync()` | Synchronize with remote repositories (QUIC) |
| `FsOpsBuilder` | `repo.fs()` | Filesystem operations (copy, move, delete, chmod, find, symlinks) |

## Using heroforge in Your Project

### As a Library Dependency

1. Add to your `Cargo.toml`:

```toml
[dependencies]
heroforge = "0.1"
```

2. Import and use:

```rust
use heroforge::{Repository, Result, FossilError};

fn main() -> Result<()> {
    let repo = Repository::open("my-repo.heroforge")?;
    // ... your code
    Ok(())
}
```

### Building a CLI Tool

```rust
use heroforge::Repository;
use std::env;

fn main() {
    let args: Vec<String> = env::args().collect();
    
    if args.len() < 2 {
        eprintln!("Usage: {} <repository.heroforge>", args[0]);
        std::process::exit(1);
    }
    
    match Repository::open(&args[1]) {
        Ok(repo) => {
            match repo.history().trunk_tip() {
                Ok(tip) => {
                    println!("Repository: {}", args[1]);
                    println!("Latest commit: {}", tip.hash);
                    println!("Author: {}", tip.user);
                    println!("Message: {}", tip.comment);
                }
                Err(e) => eprintln!("Error reading tip: {}", e),
            }
        }
        Err(e) => eprintln!("Error opening repository: {}", e),
    }
}
```

## Repository Compatibility

Repositories created with `heroforge` are fully compatible with the Heroforge CLI:
- Use `heroforge ui` to browse repositories created by this library
- `heroforge` can read repositories created by the Heroforge CLI
- Sync with remote Heroforge servers works seamlessly

## Feature Flags

| Feature     | Description        | Dependencies               |
| ----------- | ------------------ | -------------------------- |
| `sync-quic` | QUIC protocol sync | `quinn`, `rustls`, `tokio` |

## Examples

The repository includes many examples demonstrating various features:

```bash
# Basic repository reading
cargo run --example read_repo

# Find files with glob patterns
cargo run --example find_and_read

# Branches and tags demonstration
cargo run --example branch_tag_test

# Comprehensive API demo
cargo run --example comprehensive_test

# Filesystem operations (copy, move, delete, chmod, symlinks)
cargo run --example fs_operations

# Advanced find with ignore patterns
cargo run --example fs_find

# QUIC sync (requires sync-quic feature)
cargo run --example quic_incremental_sync_test --features sync-quic
```

## Documentation

Full API documentation is available at [docs.rs/heroforge](https://docs.rs/heroforge).

Generate local documentation with:

```bash
cargo doc --open --all-features
```

## Architecture

A Heroforge repository is a SQLite database containing:
- **Blobs**: Compressed file contents and manifests (zlib)
- **Manifests**: Check-in metadata with file lists, timestamps, comments
- **Tags**: Branch names, version tags, and other labels
- **Events**: Timeline of repository activity
- **Delta encoding**: Efficient storage of similar content

## Many thanks to

- The Fossil SCM project for creating and maintaining Fossil on which this is based.