rson-cli 1.0.0

Command-line tools for RSON
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
# 🛠️ rson-cli

**Command-line tools for RSON (Rust Serialized Object Notation)**

[![Crates.io](https://img.shields.io/crates/v/rson-cli.svg)](https://crates.io/crates/rson-cli)
[![Documentation](https://docs.rs/rson-cli/badge.svg)](https://docs.rs/rson-cli)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

---

## 🎯 **What is rson-cli?**

`rson-cli` provides powerful command-line tools for working with RSON files:

- **`rsonc`** - The main RSON compiler/converter tool
- **Format and lint** RSON files  
- **Convert** between RSON and JSON
- **Validate** RSON syntax and structure
- **Minify** and **pretty-print** RSON data

Perfect for CI/CD pipelines, development workflows, and automation!

---

## 🚀 **Installation**

### **From Crates.io**

```bash
cargo install rson-cli
```

### **From Source**

```bash
git clone https://github.com/RSON-Rust-Serialized-Object-Notation/RSON-core.git
cd RSON-core/rson-cli
cargo install --path .
```

### **Verify Installation**

```bash
rsonc --version
# rson-cli 0.1.0
```

---

## 📖 **Usage**

### **Basic Commands**

```bash
# Format an RSON file
rsonc format config.rson

# Convert RSON to JSON
rsonc convert --to json config.rson

# Convert JSON to RSON  
rsonc convert --to rson config.json

# Validate RSON syntax
rsonc validate config.rson

# Minify RSON (remove comments, whitespace)
rsonc minify config.rson
```

---

## 🔧 **Commands Reference**

### **`rsonc format`**

Pretty-print and format RSON files with consistent style.

```bash
# Format a single file
rsonc format config.rson

# Format multiple files
rsonc format *.rson

# Format in-place (overwrite original)
rsonc format --in-place config.rson

# Custom indentation
rsonc format --indent 4 config.rson

# Output to stdout
rsonc format --stdout config.rson
```

**Example:**
```bash
# Before formatting
$ cat messy.rson
Config(name:"my-app",version:"1.0",debug:true,features:["auth","logging"])

# After formatting
$ rsonc format messy.rson
Config(
    name: "my-app",
    version: "1.0", 
    debug: true,
    features: ["auth", "logging"],
)
```

---

### **`rsonc convert`**

Convert between RSON and JSON formats.

```bash
# RSON to JSON
rsonc convert --to json config.rson
rsonc convert --to json --output config.json config.rson

# JSON to RSON
rsonc convert --to rson config.json
rsonc convert --to rson --output config.rson config.json

# Pretty-print output
rsonc convert --to json --pretty config.rson

# Minify output
rsonc convert --to rson --minify config.json
```

**Example:**
```bash
# Convert RSON with comments to JSON
$ cat config.rson
// Database configuration
Config(
    host: "localhost",
    port: Some(5432),
    ssl: true,
)

$ rsonc convert --to json config.rson
{
  "host": "localhost",
  "port": 5432,
  "ssl": true
}
```

---

### **`rsonc validate`**

Validate RSON files for syntax errors and structural issues.

```bash
# Validate single file
rsonc validate config.rson

# Validate multiple files
rsonc validate *.rson

# Strict validation (no warnings)
rsonc validate --strict config.rson

# Show detailed errors
rsonc validate --verbose config.rson
```

**Example:**
```bash
$ rsonc validate broken.rson
❌ Error in broken.rson:3:15
   Expected ':' after field name 'port'
   
   2 |     host: "localhost",
   3 |     port Some(5432),
     |             ^
   4 |     ssl: true,

$ rsonc validate good.rson  
✅ good.rson is valid RSON
```

---

### **`rsonc minify`**

Remove comments, whitespace, and trailing commas to create compact RSON.

```bash
# Minify file
rsonc minify config.rson

# Minify to specific output
rsonc minify --output config.min.rson config.rson

# Minify multiple files
rsonc minify --suffix .min *.rson
```

**Example:**
```bash
# Before minifying
$ cat config.rson
// Application config
Config(
    name: "my-app",       // App name
    version: "1.0.0",     // Current version
    debug: true,          // Enable debug mode
)

# After minifying  
$ rsonc minify config.rson
Config(name:"my-app",version:"1.0.0",debug:true)
```

---

### **`rsonc info`**

Show information about RSON files.

```bash
# Basic file info
rsonc info config.rson

# Detailed analysis
rsonc info --detailed config.rson

# Statistics only
rsonc info --stats config.rson
```

**Example:**
```bash
$ rsonc info config.rson
📄 config.rson
   Size: 342 bytes
   Lines: 15
   Type: Struct (Config)
   Valid: ✅ Yes
   Comments: 3
   Fields: 8
```

---

## ⚙️ **Configuration**

### **Global Options**

```bash
# Verbose output
rsonc --verbose format config.rson

# Quiet mode (suppress non-error output)
rsonc --quiet validate *.rson

# Custom config file
rsonc --config .rsonc.toml format config.rson

# Force operation (ignore warnings)
rsonc --force convert --to json invalid.rson
```

### **Configuration File**

Create `.rsonc.toml` in your project root:

```toml
# .rsonc.toml
[format]
indent = 2
trailing_commas = true
sort_keys = false
max_width = 100

[validate] 
strict = false
allow_comments = true
allow_trailing_commas = true

[convert]
pretty = true
preserve_order = true
```

---

## 🔄 **CI/CD Integration**

### **GitHub Actions**

```yaml
name: RSON Validation
on: [push, pull_request]

jobs:
  validate:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      
      - name: Install rson-cli
        run: cargo install rson-cli
        
      - name: Validate RSON files
        run: rsonc validate --strict config/*.rson
        
      - name: Check formatting
        run: |
          rsonc format --check config/*.rson
          if [ $? -ne 0 ]; then
            echo "RSON files need formatting. Run: rsonc format config/*.rson"
            exit 1
          fi
```

### **Pre-commit Hook**

```bash
#!/bin/bash
# .git/hooks/pre-commit

# Validate all RSON files
rsonc validate $(find . -name "*.rson")
if [ $? -ne 0 ]; then
    echo "❌ RSON validation failed"
    exit 1
fi

# Auto-format RSON files
rsonc format --in-place $(find . -name "*.rson")
git add $(find . -name "*.rson")

echo "✅ RSON files validated and formatted"
```

---

## 📊 **Performance**

rson-cli is built for speed:

| Operation | Speed | Memory |
|-----------|-------|--------|
| **Format** | ~50MB/s | Low |
| **Validate** | ~100MB/s | Minimal |
| **Convert** | ~30MB/s | Low |
| **Minify** | ~80MB/s | Minimal |

*Benchmarks on typical configuration files*

---

## 🎨 **Examples**

### **Batch Processing**

```bash
# Format all RSON files in a directory
find ./configs -name "*.rson" -exec rsonc format --in-place {} \;

# Convert all JSON configs to RSON
for file in configs/*.json; do
    rsonc convert --to rson --output "${file%.json}.rson" "$file"
done

# Validate all RSON files and collect errors
rsonc validate configs/*.rson 2> validation_errors.log
```

### **Development Workflow**

```bash
# Watch for changes and auto-format
fswatch configs/*.rson | xargs -I {} rsonc format --in-place {}

# Convert JSON API response to RSON for inspection
curl https://api.example.com/config | rsonc convert --to rson --stdin

# Quick validation with detailed output
rsonc validate --verbose config.rson || echo "Fix errors before commit"
```

### **Build Scripts**

```bash
#!/bin/bash
# build.sh

echo "🔍 Validating RSON configurations..."
rsonc validate config/*.rson || exit 1

echo "📄 Converting RSON to JSON for deployment..."
mkdir -p dist/config
for rson_file in config/*.rson; do
    json_file="dist/config/$(basename "${rson_file%.rson}").json"
    rsonc convert --to json --output "$json_file" "$rson_file"
done

echo "✅ Configuration processing complete"
```

---

## 🐛 **Error Handling**

rson-cli provides clear, actionable error messages:

```bash
$ rsonc validate broken.rson
❌ Error in broken.rson:5:12
   Unexpected token '}'
   Expected field name or closing parenthesis
   
   3 |     name: "test",
   4 |     version: "1.0",
   5 |     }
     |            ^
   6 | )
   
💡 Tip: RSON structs use parentheses (), not braces {}
```

---

## 📖 **Documentation**

- **[CLI Documentation]https://docs.rs/rson-cli** - Complete API reference
- **[RSON Specification]https://rson.org/docs/spec** - Language specification  
- **[Examples]https://github.com/RSON-Rust-Serialized-Object-Notation/RSON-core/tree/main/rson-cli/examples** - Usage examples

---

## 🤝 **Contributing**

We welcome contributions! Please see our [Contributing Guide](https://github.com/RSON-Rust-Serialized-Object-Notation/RSON-core/blob/main/CONTRIBUTING.md).

**Areas we need help with:**
- Additional CLI commands
- Performance optimizations
- Better error messages
- Shell completion scripts

---

## 📄 **License**

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

---

## 🔗 **Related Projects**

- **[rson-core]https://crates.io/crates/rson-core** - Core RSON parsing library
- **[serde_rson]https://crates.io/crates/serde_rson** - Serde integration for RSON
- **[rson-schema]https://crates.io/crates/rson-schema** - Schema validation
- **[RSON Website]https://rson.org** - Documentation and playground

---

**Made with 🛠️ by the RSON community**