nautilus-orm-schema 0.1.3

Schema parsing and validation for Nautilus ORM
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
# nautilus-schema

Schema language parser, validator, IR builder, and formatter for the Nautilus ORM.

## Overview

This crate implements the full processing pipeline for `.nautilus` schema files:

1. **Lex** — Converts source text into typed tokens with byte-offset span tracking.
2. **Parse** — Recursive descent parser builds a strongly-typed [`ast::Schema`] AST.
3. **Validate** — Multi-pass semantic validator resolves types, relations, and constraints, emitting a fully resolved [`ir::SchemaIr`].
4. **Format** — Renders an AST back to canonical source text (idempotent).

Editor tooling (LSP, CLI) can use the one-shot [`analyze`] function which runs all four stages and returns structured diagnostics.

## Features

- **Parser** — datasources, generators, models, enums, all field types, all attributes, error recovery
- **Validator** — duplicate name detection, unknown type resolution, relation integrity, default value type checking, physical name collision detection
- **IR** — fully resolved intermediate representation with logical and physical names
- **Analysis API**`analyze()`, `completion()`, `hover()`, `goto_definition()` for editor integration
- **Formatter** — canonical output, column-aligned, idempotent
- **Visitor** — trait-based AST traversal with default walk implementations
- **Span Tracking** — every AST node carries byte-offset spans for precise diagnostics
- **Error Recovery** — parser continues after errors to surface multiple issues at once

## Quick Start

Add to your `Cargo.toml`:

```toml
[dependencies]
nautilus-schema = { path = "../nautilus-schema" }
```

### One-shot analysis

The recommended entry point.  Runs lex → parse → validate in a single call and
collects every diagnostic:

```rust
use nautilus_schema::analyze;

let result = analyze(source);
for diag in &result.diagnostics {
    eprintln!("{:?} — {}", diag.severity, diag.message);
}
if let Some(ir) = &result.ir {
    println!("{} model(s) validated", ir.models.len());
}
```

### Validate and obtain the IR directly

```rust
use nautilus_schema::{Lexer, Parser, validate_schema, TokenKind};

let mut lexer = Lexer::new(source);
let mut tokens = Vec::new();
loop {
    let token = lexer.next_token()?;
    let eof = matches!(token.kind, TokenKind::Eof);
    tokens.push(token);
    if eof { break; }
}
let ast = Parser::new(&tokens).parse_schema()?;
let ir  = validate_schema(ast)?;
println!("{} model(s)", ir.models.len());
```

### Editor tooling API

The `analysis` module exposes higher-level functions for LSP servers and CLI tools:

```rust
use nautilus_schema::{analyze, completion, hover, goto_definition};

// Completions at a byte offset
let items = completion(source, offset);

// Hover documentation at a byte offset
if let Some(info) = hover(source, offset) {
    println!("{}", info.content);
}

// Jump to the declaration a symbol at a byte offset refers to
if let Some(span) = goto_definition(source, offset) {
    println!("definition at {}..{}", span.start, span.end);
}
```

### Formatting

`format_schema` renders an AST back to canonical, column-aligned source text:

```rust
use nautilus_schema::{analyze, format_schema};

let result = analyze(source);
if let Some(ast) = &result.ast {
    let formatted = format_schema(ast, source);
    std::fs::write("schema.nautilus", formatted)?;
}
```

## Visitor Pattern

Implement custom visitors for AST traversal and analysis:

```rust
use nautilus_schema::{
    ast::*,
    visitor::{Visitor, walk_model},
    Result,
};

struct ModelCounter {
    count: usize,
}

impl Visitor for ModelCounter {
    fn visit_model(&mut self, model: &ModelDecl) -> Result<()> {
        self.count += 1;
        walk_model(self, model) // Continue traversing children
    }
}

fn count_models(schema: &Schema) -> Result<usize> {
    let mut visitor = ModelCounter { count: 0 };
    visitor.visit_schema(schema)?;
    Ok(visitor.count)
}
```

### Common Visitor Patterns

**Collecting Information:**
```rust
struct FieldCollector {
    fields: Vec<String>,
}

impl Visitor for FieldCollector {
    fn visit_field(&mut self, field: &FieldDecl) -> Result<()> {
        self.fields.push(field.name.value.clone());
        Ok(())
    }
}
```

**Finding Specific Patterns:**
```rust
struct RelationFinder {
    relations: Vec<String>,
}

impl Visitor for RelationFinder {
    fn visit_field(&mut self, field: &FieldDecl) -> Result<()> {
        if field.has_relation_attribute() {
            self.relations.push(field.name.value.clone());
        }
        Ok(())
    }
}
```

**Validation:**
```rust
struct NameValidator {
    errors: Vec<String>,
}

impl Visitor for NameValidator {
    fn visit_model(&mut self, model: &ModelDecl) -> Result<()> {
        if !model.name.value.chars().next().unwrap().is_uppercase() {
            self.errors.push(format!("Model {} should start with uppercase", model.name));
        }
        walk_model(self, model)
    }
}
```

## Schema Language

### Supported Declarations

**Datasource:**
```prisma
datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}
```

**Generator:**
```prisma
generator client {
  provider = "nautilus-client-rs"
  output   = "../generated" // Optional
  interface = "async" // default: sync
}
```

**Enum:**
```prisma
enum Role {
  USER
  ADMIN
  MODERATOR
}
```

**Model:**
```prisma
model User {
  id        Int      @id @default(autoincrement())
  email     String   @unique
  username  String   @map("user_name")
  role      Role     @default(USER)
  createdAt DateTime @default(now())
  
  posts     Post[]
  
  @@map("users")
  @@index([email])
}
```

### Field Types

**Scalar Types:**
- `String`, `Boolean`, `Int`, `BigInt`, `Float`
- `DateTime`, `Bytes`, `Json`, `Uuid`
- `Decimal(precision, scale)` - e.g., `Decimal(10, 2)`

**User Types:**
- Model references: `Post`, `User`
- Enum references: `Role`, `Status`

**Modifiers:**
- `?` - optional/nullable field
- `[]` - array/one-to-many relation

### Field Attributes

- `@id` - Primary key
- `@unique` - Unique constraint
- `@default(expr)` - Default value
  - Functions: `autoincrement()`, `uuid()`, `now()`
  - Literals: `0`, `"DEFAULT"`, `true`
  - Enum values: `USER`, `ACTIVE`
- `@map("physical_name")` - Physical column name
- `@relation(...)` - Foreign key relationship
  ```prisma
  user User @relation(
    fields: [userId],
    references: [id],
    onDelete: Cascade,
    onUpdate: Restrict
  )
  ```

### Model Attributes

- `@@map("table_name")` - Physical table name
- `@@id([field1, field2])` - Composite primary key
- `@@unique([field1, field2])` - Composite unique constraint
- `@@index([field1, field2])` - Database index, you can also specify the index types

## Error Handling

The `analyze` function collects all diagnostics in one pass.  Each `Diagnostic`
carries a byte-offset `span` that can be converted to line/column:

```rust
use nautilus_schema::{analyze, Severity};

let result = analyze(source);
for diag in &result.diagnostics {
    let (pos, _) = diag.span.to_positions(source);
    let label = match diag.severity {
        Severity::Error   => "error",
        Severity::Warning => "warning",
    };
    eprintln!("{}:{}: {}", pos, label, diag.message);
}
```

For the lower-level `SchemaError` type, each variant with a span exposes
`format_with_file(filepath, source)` which emits the standard
`filepath:line:column: message` format recognised by VS Code.

## Examples

Run the bundled examples:

```bash
cargo run --package nautilus-schema --example parse_schema
cargo run --package nautilus-schema --example tokenize_schema
cargo run --package nautilus-schema --example visitor_demo
```

## Grammar

See [GRAMMAR.md](GRAMMAR.md) for the complete EBNF grammar specification.

Key grammar structures:

```ebnf
Schema ::= Declaration* EOF

Declaration ::= DatasourceDecl | GeneratorDecl | ModelDecl | EnumDecl

ModelDecl ::= 'model' Ident '{' (FieldDecl | ModelAttribute)* '}'

FieldDecl ::= Ident FieldType FieldModifier? FieldAttribute*

FieldType ::= ScalarType | 'Decimal' '(' Number ',' Number ')' | UserType

Expr ::= Literal | FunctionCall | Array | Ident
```

## Testing

Run all tests:

```bash
cargo test --package nautilus-schema
```

Run specific test suites:

```bash
cargo test --package nautilus-schema --test parser_tests
cargo test --package nautilus-schema --test visitor_tests
cargo test --package nautilus-schema --lib
```

Test coverage:
- **57 unit tests** embedded in each module
- **17** integration tests for the analysis API (`analysis_tests.rs`)
- **14** integration tests for the IR builder (`ir_tests.rs`)
- **23** integration tests for the lexer (`lexer_tests.rs`)
- **16** integration tests for the parser (`parser_tests.rs`)
- **24** integration tests for the validator (`validation_tests.rs`)
- **12** integration tests for the visitor (`visitor_tests.rs`)

## Documentation

Generate and view documentation:

```bash
cargo doc --package nautilus-schema --open
```

Documentation includes:
- Module-level overviews
- Comprehensive API docs
- Usage examples
- Grammar reference

## Architecture

```
nautilus-schema/
├── src/
│   ├── lib.rs         # Public API re-exports
│   ├── span.rs        # Byte-offset source location types
│   ├── token.rs       # Token types
│   ├── lexer.rs       # Tokenizer
│   ├── ast.rs         # Syntax AST node definitions
│   ├── parser.rs      # Recursive descent parser with error recovery
│   ├── error.rs       # SchemaError and Result alias
│   ├── diagnostic.rs  # Severity + Diagnostic (stable public contract)
│   ├── validator.rs   # Multi-pass semantic validator
│   ├── ir.rs          # Validated intermediate representation
│   ├── visitor.rs     # Visitor trait and walk helpers
│   ├── formatter.rs   # Canonical source formatter
│   └── analysis.rs    # analyze / completion / hover / goto_definition
├── tests/
│   ├── lexer_tests.rs       # 23 lexer integration tests
│   ├── parser_tests.rs      # 16 parser integration tests
│   ├── validation_tests.rs  # 24 validator integration tests
│   ├── ir_tests.rs          # 14 IR builder integration tests
│   ├── visitor_tests.rs     # 12 visitor integration tests
│   └── analysis_tests.rs    # 17 analysis API integration tests
├── examples/
│   ├── tokenize_schema.rs
│   ├── parse_schema.rs
│   └── visitor_demo.rs
├── GRAMMAR.md        # EBNF grammar specification
└── README.md
```

## Usage within the project

- **`nautilus-lsp`** — uses `analyze`, `completion`, `hover`, `goto_definition`, and `format_schema` to implement the language server.
- **`nautilus-codegen`** — calls `validate_schema` to obtain the `SchemaIr` from which it generates Rust types and SQL.
- **`nautilus-cli`** — calls `analyze` to surface diagnostics and `format_schema` for the format command.

## License

Licensed under either of:

- Apache License, Version 2.0 ([LICENSE-APACHE]../../LICENSE-APACHE)
- MIT License ([LICENSE-MIT]../../LICENSE-MIT)

at your option.

## Contributing

This is part of the Nautilus ORM project. See the main repository for contribution guidelines.