nu_plugin_nw_ulid 0.2.0

Production-grade ULID (Universally Unique Lexicographically Sortable Identifier) utilities plugin for Nushell with cryptographically secure operations, enterprise-grade security, and streaming support
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
# nu_plugin_nw_ulid User Guide

Welcome to the comprehensive user guide for nu_plugin_nw_ulid - a production-grade ULID plugin for Nushell.

## Table of Contents

1. [Getting Started]#getting-started
2. [Basic ULID Operations]#basic-ulid-operations
3. [Advanced Features]#advanced-features
4. [Practical Examples]#practical-examples
5. [Performance & Best Practices]#performance--best-practices
6. [Security Considerations]#security-considerations
7. [Troubleshooting]#troubleshooting

## Getting Started

### What are ULIDs?

ULIDs (Universally Unique Lexicographically Sortable Identifiers) are 128-bit identifiers that combine the benefits of UUIDs with lexicographic sorting capability:

- **26 characters long** using Crockford Base32 encoding
- **Sortable by timestamp** - newer ULIDs are lexicographically larger
- **URL-safe** - no special characters that need escaping
- **Case-insensitive** - all uppercase for consistency
- **Monotonic** - within the same millisecond, values increase monotonically

### ULID Structure

```
01ARZ3NDEKTSV4RRFFQ69G5FAV
|----------|-------------|
  Timestamp    Randomness
   (48-bit)     (80-bit)
    10 chars     16 chars
```

### Installation

1. **Install the plugin:**
   ```bash
   cargo install nu_plugin_nw_ulid
   ```

2. **Register with Nushell:**
   ```bash
   plugin add ~/.cargo/bin/nu_plugin_nw_ulid
   plugin use nw_ulid
   ```

3. **Verify installation:**
   ```nushell
   ulid info
   ```

## Basic ULID Operations

### Generating ULIDs

```nushell
# Generate a single ULID
> ulid generate
01K2W41TWG3FKYYSK430SR8KW6

# Generate multiple ULIDs
> ulid generate --count 3
╭───┬─────────────────────────────╮
│ 0 │ 01K2W41TWG3FKYYSK430SR8KW7 │
│ 1 │ 01K2W41TWG3FKYYSK430SR8KW8 │
│ 2 │ 01K2W41TWG3FKYYSK430SR8KW9 │
╰───┴─────────────────────────────╯

# Generate with custom timestamp (milliseconds since epoch)
> ulid generate --timestamp 1692000000000
01H4QG7XG00000000000000000

```

### Validating ULIDs

```nushell
# Validate a single ULID
> ulid validate "01K2W41TWG3FKYYSK430SR8KW6"
true

# Validate invalid ULID
> ulid validate "invalid-ulid"
false

# Validate ULIDs in a list
> ["01K2W41TWG3FKYYSK430SR8KW6", "invalid", "01K2W41TWG3FKYYSK430SR8KW7"]
  | each { |ulid| { ulid: $ulid, valid: (ulid validate $ulid) } }
╭───┬─────────────────────────────┬───────╮
│ # │            ulid             │ valid │
├───┼─────────────────────────────┼───────┤
│ 0 │ 01K2W41TWG3FKYYSK430SR8KW6  │ true  │
│ 1 │ invalid                     │ false │
│ 2 │ 01K2W41TWG3FKYYSK430SR8KW7  │ true  │
╰───┴─────────────────────────────┴───────╯
```

### Parsing ULIDs

```nushell
# Parse ULID into components
> ulid parse "01K2W41TWG3FKYYSK430SR8KW6"
╭────────────┬────────────────────────────╮
│ ulid       │ 01K2W41TWG3FKYYSK430SR8KW6 │
│ timestamp  │ {record 4 fields}          │
│ randomness │ {record 1 field}           │
│ valid      │ true                       │
╰────────────┴────────────────────────────╯

# Extract just the timestamp
> ulid parse "01K2W41TWG3FKYYSK430SR8KW6" | get timestamp
╭─────────────┬─────────────────────────╮
│ milliseconds │ 1692817394611           │
│ iso8601      │ 2023-08-23T18:49:54.611Z │
│ human        │ 2023-08-23 18:49:54 UTC │
│ unix         │ 1692817394              │
╰─────────────┴─────────────────────────╯
```

### Sorting Data by ULIDs

```nushell
# Sort ULIDs chronologically
> ["01K3X1", "01K2W4", "01K5Z9"] | ulid sort
╭───┬────────╮
│ 0 │ 01K2W4 │
│ 1 │ 01K3X1 │
│ 2 │ 01K5Z9 │
╰───┴────────╯

# Sort records by ULID column
> [{id: "01K3X1", name: "Alice"}, {id: "01K2W4", name: "Bob"}] | ulid sort --column id
╭───┬────────┬──────╮
│ # │   id   │ name │
├───┼────────┼──────┤
│ 0 │ 01K2W4 │ Bob  │
│ 1 │ 01K3X1 │ Alice│
╰───┴────────┴──────╯

# Reverse sort (newest first)
> ["01K2W4", "01K3X1", "01K5Z9"] | ulid sort --reverse
╭───┬────────╮
│ 0 │ 01K5Z9 │
│ 1 │ 01K3X1 │
│ 2 │ 01K2W4 │
╰───┴────────╯
```

### Detailed ULID Inspection

```nushell
# Get detailed ULID analysis
> ulid inspect "01K2W41TWG3FKYYSK430SR8KW6"
╭─────────────────┬─────────────────────────────────╮
│ ulid            │ 01K2W41TWG3FKYYSK430SR8KW6      │
│ valid           │ true                            │
│ timestamp_ms    │ 1692817394611                   │
│ timestamp_human │ 2023-08-23 18:49:54 UTC        │
│ randomness_hex  │ F2Y5SK430SR8KW6                 │
│ age_seconds     │ 86400                           │
│ metadata        │ {record 3 fields}               │
╰─────────────────┴─────────────────────────────────╯

# Get compact inspection
> ulid inspect "01K2W41TWG3FKYYSK430SR8KW6" --compact
╭─────────┬─────────────────────────╮
│ ulid    │ 01K2W41TWG3FKYYSK430SR8KW6 │
│ ts      │ 1692817394611              │
│ age_hrs │ 24                         │
╰─────────┴────────────────────────────╯
```

## Advanced Features

### Time-based Operations

```nushell
# Get current timestamp in various formats
> ulid time now
╭─────────────┬─────────────────────────╮
│ milliseconds │ 1692817394611           │
│ iso8601      │ 2023-08-23T18:49:54.611Z │
│ human        │ 2023-08-23 18:49:54 UTC │
│ unix         │ 1692817394              │
╰─────────────┴─────────────────────────╯

# Convert timestamp to ULID format
> ulid time millis 1692000000000
1692000000000

# Parse various timestamp formats
> ulid time parse "2023-08-23T18:49:54.611Z"
╭─────────────┬─────────────────────────╮
│ milliseconds │ 1692817394611           │
│ iso8601      │ 2023-08-23T18:49:54.611Z │
│ unix         │ 1692817394              │
╰─────────────┴─────────────────────────╯
```

### Encoding Operations

```nushell
# Base32 encoding (ULID standard)
> ulid encode base32 "Hello World"
91JPRV3F5GG7EVVJDHJ22

# Base32 decoding
> ulid decode base32 "91JPRV3F5GG7EVVJDHJ22" --text
Hello World

# Hexadecimal encoding
> ulid encode hex "Hello World"
48656c6c6f20576f726c64

> ulid encode hex "Hello World" --uppercase
48656C6C6F20576F726C64

# Hexadecimal decoding
> ulid decode hex "48656c6c6f20576f726c64" --text
Hello World
```

## Practical Examples

### Example 1: Database Record Management

```nushell
# Create records with ULIDs
def add_record_ids [records: list] {
    let count = ($records | length)
    let ids = (1..$count | each { ulid generate })
    $records | enumerate | each { |row|
        $row.item | upsert id ($ids | get $row.index)
    }
}

# Usage
let products = [
    {name: "Laptop", price: 999.99, category: "electronics"},
    {name: "Book", price: 19.99, category: "books"},
    {name: "Shirt", price: 29.99, category: "clothing"}
]

let products_with_ids = (add_record_ids $products)
$products_with_ids | ulid sort --column id
```

### Example 2: Log Analysis

```nushell
# Analyze log files with ULID request IDs
def analyze_request_logs [log_file: string] {
    open $log_file
    | where (ulid validate $in.request_id)
    | ulid sort --column request_id
    | group-by { |log|
        ulid parse $log.request_id | get timestamp.iso8601 | str substring 0..13
    }
    | transpose hour logs
    | each { |group|
        {
            hour: $group.hour,
            request_count: ($group.logs | length),
            avg_response_time: ($group.logs | get response_time | math avg),
            error_rate: (($group.logs | where status >= 400 | length) / ($group.logs | length) * 100)
        }
    }
}
```

### Example 3: Data Synchronization

```nushell
# Sync data based on ULID timestamps
def sync_data [source: list, target: list] {
    let source_ids = ($source | get id)
    let target_ids = ($target | get id)

    # Find new and modified records
    let new_records = ($source | where ($it.id not-in $target_ids))
    let modified_records = ($source
        | where ($it.id in $target_ids)
        | where ($it.updated_at > ($target | where id == $it.id | first | get updated_at))
    )

    # Sort by ULID timestamp for proper sync order
    let sync_order = ([$new_records, $modified_records] | flatten | ulid sort --column id)

    {
        new_count: ($new_records | length),
        modified_count: ($modified_records | length),
        sync_operations: $sync_order
    }
}
```

### Example 4: API Rate Limiting

```nushell
# Track API requests with ULID timestamps
def check_rate_limit [request_id: string, rate_limit_per_minute: int] {
    let request_time = (ulid parse $request_id | get timestamp.milliseconds)
    let minute_start = ($request_time // 60000 * 60000)

    # Check requests in the same minute
    let recent_requests = ($api_request_log
        | where { |req|
            let req_time = (ulid parse $req.id | get timestamp.milliseconds)
            $req_time >= $minute_start and $req_time < ($minute_start + 60000)
        }
        | length
    )

    if $recent_requests >= $rate_limit_per_minute {
        {allowed: false, remaining: 0, reset_time: ($minute_start + 60000)}
    } else {
        {allowed: true, remaining: ($rate_limit_per_minute - $recent_requests - 1), reset_time: ($minute_start + 60000)}
    }
}
```

## Performance & Best Practices

### Performance Guidelines

1. **Batch ULID generation**:
   ```nushell
   # Good: Generate in bulk
   ulid generate --count 1000

   # Alternative: Generate with each for custom logic
   1..1000 | each { ulid generate }
   ```

2. **Validate efficiently**:
   ```nushell
   # Validate ULIDs in a dataset
   $dataset | each { |item| ulid validate $item.id }
   ```

### CPU Optimization

- **Bulk operations**: Use `--count` flag for generating multiple ULIDs at once
- **Efficient algorithms**: Optimized parsing and validation routines

## Security Considerations

### Security Best Practices

1. **Use security advice** for guidance:
   ```nushell
   ulid security-advice
   ```

2. **Validate inputs** before processing:
   ```nushell
   def safe_ulid_operation [ulid: string] {
       if not (ulid validate $ulid) {
           error make {msg: "Invalid ULID format"}
       }
       # Proceed with operation
       ulid parse $ulid
   }
   ```

3. **Handle errors gracefully**:
   ```nushell
   def process_ulids_safely [ulids: list] {
       $ulids | each { |ulid|
           try {
               ulid parse $ulid
           } catch {
               {error: "Invalid ULID", ulid: $ulid}
           }
       }
   }
   ```

### Security Features

- **A- Security Rating**: Comprehensive security audit completed
- **Cryptographic randomness**: Uses secure system entropy
- **Input validation**: Comprehensive malicious input protection
- **Memory safety**: Rust's memory guarantees prevent buffer overflows
- **Information leakage protection**: Sanitized error messages

### Context-Aware Security

The plugin provides security guidance for ULID usage:

```nushell
# Get security advice for ULID usage
ulid security-advice
```

## Troubleshooting

### Common Issues

#### 1. Plugin Not Found
```
Error: Plugin nu_plugin_nw_ulid was not found
```
**Solution:**
```bash
# Re-register the plugin
plugin add ~/.cargo/bin/nu_plugin_nw_ulid
plugin use nw_ulid
```

#### 2. Invalid ULID Errors
```
Error: Invalid ULID format
```
**Solution:**
```nushell
# Always validate before processing
if (ulid validate $ulid) {
    ulid parse $ulid
} else {
    print $"Invalid ULID: ($ulid)"
}
```

#### 3. Performance Issues with Large Datasets
**Problem:** Slow processing of large ULID datasets
**Solution:**
```nushell
# Process in chunks to manage memory
$large_dataset | chunks 1000 | each { |chunk|
    $chunk | each { |item| ulid validate $item }
} | flatten
```

#### 4. Memory Usage Issues
**Problem:** High memory usage with large datasets
**Solution:**
```nushell
# Process data in smaller chunks
$data | chunks 100 | each { |chunk|
    $chunk | each { |item| ulid parse $item }
} | flatten
```

### Debugging

1. **Check plugin version and status**:
   ```nushell
   ulid info
   ```

2. **Validate ULID format**:
   ```nushell
   ulid validate "your-ulid-here"
   ```

3. **Test with simple operations**:
   ```nushell
   # Test generation
   ulid generate

   # Test validation
   ulid validate (ulid generate)

   # Test parsing
   ulid parse (ulid generate)
   ```

4. **Check for security warnings**:
   ```nushell
   ulid security-advice
   ```

### Getting Help

- **Plugin information**: `ulid info`
- **Command help**: `help ulid generate`, `help ulid parse`, etc.
- **Security guidance**: `ulid security-advice`
- **GitHub Issues**: [Report bugs and feature requests]https://github.com/nushell-works/nu_plugin_nw_ulid/issues
- **Documentation**: [Complete documentation]https://github.com/nushell-works/nu_plugin_nw_ulid/tree/main/docs

---

This user guide provides comprehensive coverage of nu_plugin_nw_ulid functionality with practical examples for real-world usage. For more advanced topics, see the [API Reference](scripting/api.md) and [Scripting Guide](scripting/README.md).