ggen 4.0.0

ggen is a deterministic, language-agnostic code generation framework that treats software artifacts as projections of knowledge graphs.
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
# Template Directives Reference

Complete reference for template metadata directives and frontmatter.

## Frontmatter Structure

Templates use YAML frontmatter to declare metadata:

```yaml
---
output: src/models.rs
vars:
  - class_name
  - output_dir
when: production
query:
  - name: extract-classes
    file: queries/extract-classes.rq
determinism:
  seed: 42
---
```

## Core Directives

### `output` (Required)

Specifies the output file path. Supports variables and expressions.

**Syntax:**
```yaml
output: <file_path>
```

**Examples:**

Simple path:
```yaml
output: src/models.rs
```

Variable interpolation:
```yaml
output: src/{{ class_name }}/models.rs
```

Conditional path:
```yaml
output: {% if lang == "rust" %}src/models.rs{% else %}src/models.ts{% endif %}
```

Dynamic directory:
```yaml
output: {{ output_dir }}/generated.rs
```

### `vars` (Optional)

Lists template variables that must be provided at generation time.

**Syntax:**
```yaml
vars:
  - variable_name
  - another_var
```

**Example:**
```yaml
vars:
  - class_name
  - package_name
  - author_name
```

**Usage:**
When generating code:
```bash
ggen template generate-rdf \
  --ontology domain.ttl \
  --template my-template \
  --var class_name=User \
  --var package_name=myapp
```

In template:
```tera
package {{ package_name }};

public class {{ class_name }} {
  // ...
}
```

### `when` (Optional)

Conditionally applies template based on environment or context.

**Syntax:**
```yaml
when: <condition>
```

**Built-in conditions:**
- `development` - Only apply in dev environments
- `production` - Only apply in prod environments
- `testing` - Only apply in test environments

**Example:**
```yaml
when: production
# This template only generates in production environment
```

Multiple conditions:
```yaml
when: development || testing
# Applies in dev or testing, not production
```

Custom conditions via context:
```yaml
when: {{ generate_migrations }}
# Apply if the context variable generate_migrations is truthy
```

### `query` (Optional)

Declares SPARQL queries that populate template variables.

**Syntax:**
```yaml
query:
  - name: <variable_name>
    file: <path_to_sparql>
```

**Example:**
```yaml
query:
  - name: classes
    file: queries/extract-classes.rq
  - name: properties
    file: queries/extract-properties.rq
```

**In template:**
```tera
{% for class in classes %}
pub struct {{ class.name }} {
  {% for prop in properties %}
    pub {{ prop.name }}: {{ prop.type }},
  {% endfor %}
}
{% endfor %}
```

**Inline queries:**
```yaml
query:
  - name: classes
    inline: |
      SELECT ?name WHERE {
        ?class a rdfs:Class ;
        rdfs:label ?name .
      }
```

**Query parameters:**
```yaml
query:
  - name: user_class
    file: queries/find-class.rq
    params:
      class_name: "User"
```

Query file with parameters:
```sparql
{# queries/find-class.rq #}
SELECT ?class WHERE {
  ?class a rdfs:Class ;
         rdfs:label "{{ class_name }}" .
}
```

### `determinism` (Optional)

Ensures byte-identical output for reproducible builds.

**Syntax:**
```yaml
determinism:
  seed: <number>
  order: <field_name>
```

**Example:**
```yaml
determinism:
  seed: 42
  order: name
```

**Ensures:**
- Randomization uses consistent seed
- Results sorted by specified field
- Byte-identical output across runs

### `rdf` (Optional)

Explicitly lists RDF files to load for this template.

**Syntax:**
```yaml
rdf:
  - domain.ttl
  - additional.rdf
```

**Example:**
```yaml
rdf:
  - domain.ttl
  - types.ttl
  - constraints.ttl
```

### `sparql` (Optional)

Declares SPARQL query files used in template.

**Syntax:**
```yaml
sparql:
  - queries/extract-classes.rq
  - queries/extract-properties.rq
```

Used for validation and documentation.

## Advanced Directives

### `validate` (Optional)

Adds validation rules for generated output.

**Syntax:**
```yaml
validate:
  - rule: <validation_rule>
    message: <error_message>
```

**Example:**
```yaml
validate:
  - rule: "file_size < 1000000"
    message: "Generated file too large"
  - rule: "has_content"
    message: "Template generated empty file"
```

### `postprocess` (Optional)

Applies transformations after template rendering.

**Syntax:**
```yaml
postprocess:
  - command: <shell_command>
```

**Example:**
```yaml
postprocess:
  - command: "rustfmt --edition 2021"
  - command: "eslint --fix"
```

### `metadata` (Optional)

Custom metadata for marketplace or documentation.

**Syntax:**
```yaml
metadata:
  author: <author_name>
  version: <version>
  description: <description>
  tags:
    - tag1
    - tag2
```

**Example:**
```yaml
metadata:
  author: Sean Chatman
  version: 1.0.0
  description: "Rust model generation from RDF ontologies"
  tags:
    - rust
    - models
    - rdf
```

## Complete Example

```yaml
---
output: src/models/{{ class_name }}.rs
vars:
  - class_name
  - visibility
  - features

when: development || production

query:
  - name: classes
    file: queries/find-class.rq
    params:
      class_name: "{{ class_name }}"
  - name: properties
    file: queries/extract-properties.rq

rdf:
  - domain.ttl
  - constraints.ttl

sparql:
  - queries/find-class.rq
  - queries/extract-properties.rq

determinism:
  seed: 42
  order: name

validate:
  - rule: "file_size < 100000"
    message: "Generated file too large"

postprocess:
  - command: "rustfmt --edition 2021"

metadata:
  author: Development Team
  version: 2.0.0
  description: "Rust struct generation from RDF classes"
  tags:
    - rust
    - models
    - structs
---

// Template content starts after ---
{% for class in classes %}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct {{ class.name }} {
    {% for prop in properties %}
    pub {{ prop.name }}: {{ prop.type }},
    {% endfor %}
}
{% endfor %}
```

## Template File Organization

**Structure:**
```
templates/
└── my-template/
    ├── template.md        # Template documentation
    ├── models.rs.tmpl     # Template with frontmatter
    ├── api.rs.tmpl        # Another template in set
    └── queries/
        ├── extract-classes.rq
        └── extract-properties.rq
```

## Context Variables

Templates have access to these built-in variables:

| Variable | Type | Description |
|----------|------|-------------|
| `template_name` | string | Name of template being rendered |
| `timestamp` | datetime | Current timestamp |
| `seed` | number | Determinism seed |
| `environment` | string | Current environment (dev/prod/test) |

**Example:**
```tera
// Generated by {{ template_name }} at {{ timestamp }}
// Environment: {{ environment }}
```

## Common Patterns

### Multi-File Generation

Generate multiple files from single ontology:

```yaml
---
output: src/models/{{ class_name }}.rs
when: production
query:
  - name: classes
    file: queries/extract-classes.rq
---
{# template content #}
```

Then create another template file for another output.

### Conditional Features

Apply features based on context:

```yaml
---
vars:
  - enable_serde
query:
  - name: classes
    file: queries/extract-classes.rq
---
{% if enable_serde %}
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize)]
{% endif %}
pub struct {{ class.name }} {
  // ...
}
```

### Parameterized Output Paths

Generate different files based on classification:

```yaml
---
output: {% if class.entity_type == "value_object" %}
  src/domain/values/{{ class.name }}.rs
{% else %}
  src/domain/entities/{{ class.name }}.rs
{% endif %}
---
```

## Troubleshooting

**Q: Template not finding SPARQL file**
A: Ensure `query.file` is relative to template directory. Use `queries/filename.rq`.

**Q: Variables not being interpolated in output path**
A: Variables in `output` must be declared in `vars`. Example:
```yaml
vars:
  - class_name
output: src/{{ class_name }}.rs
```

**Q: `when` condition not working**
A: Use `development`, `production`, or `testing` (lowercase). Custom conditions must be provided in context.

**Q: Determinism seed not taking effect**
A: Ensure SPARQL queries use `ORDER BY` for consistent sorting.

## See Also

- [Template Reference](templates.md) - Tera syntax and template language
- [RDF/SPARQL Reference](rdf-sparql.md) - SPARQL query syntax
- [How to Create Templates](../how-to-guides/create-templates.md) - Step-by-step guide