reqlang-expr 0.6.0

A tiny (bytecode compiled, stack VM interpreted) expression language for reqlang's templating engine.
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
# Reqlang Expression Language

A small (tiny) WIP expression language for [reqlang](https://github.com/testingrequired/reqlang)'s templating engine.

## Install

![Crates.io Version](https://img.shields.io/crates/v/reqlang-expr)

```toml
[dependencies]
reqlang-expr = "0.6.0"
```

```sh
cargo add reqlang-expr
```

## Usage

See [USAGE.md](./USAGE.md) and [examples](./examples/) for usage examples.

## Project

[![Verify](https://github.com/testingrequired/reqlang-expr/actions/workflows/ci.yml/badge.svg)](https://github.com/testingrequired/reqlang-expr/actions/workflows/ci.yml)

- [Lexer]./src/lexer.rs
- [Parser]./src/parser.rs, [Grammar]./src/grammer.lalrpop, [AST]./src/ast.rs
- [Bytecode Compiler]./src/compiler.rs
- [VM interpreter]./src/vm.rs
- [Disassembler]./src/disassembler.rs
- [Types]./src/types.rs
- [REPL]#repl
- [Example Usage]./examples/
- [Specification Examples]./spec/
- [Tests]#tests

## Syntax

The syntax is s-expression like. There are only [builtin functions](#builtin-functions), identifiers and string literals.

| Syntax      | Description                                 |
| ----------- | ------------------------------------------- |
| `:a`        | Reference to the variable `a`               |
| `?b`        | Reference to the prompt `b`                 |
| `!c`        | Reference to the secret `c`                 |
| `id`        | Reference to the builtin `id`               |
| `@key`      | Reference to the client context value `key` |
| `(id :a)`   | Call to builtin `id` with arguments: `:a`   |
| `` `foo` `` | String literal                              |
| `true`      | Literal boolean value `true`                |
| `false`     | Literal boolean value `false`               |

See [/spec](./spec/) for more syntax examples.

### Builtin Functions

| Fn                                                        | Description                                     |
| --------------------------------------------------------- | ----------------------------------------------- |
| `id(value: Value) -> Value`                               | Returns the string arugment passed to it        |
| `noop() -> String`                                        | Returns the string "noop"                       |
| `is_empty(value: String) -> String`                       | Checks if the given string is empty             |
| `and(a: Bool, b: Bool) -> Bool`                           | Logical AND operation between two booleans      |
| `or(a: Bool, b: Bool) -> Bool`                            | Logical OR operation between two booleans       |
| `cond(cond: Bool, then: Value, else: Value) -> Bool`      | Conditional expression                          |
| `to_str(value: Value) -> String`                          | Converts a value to its string representation   |
| `concat(a: String, b: String, ...rest: String) -> String` | Concatenates a list of values in to a string    |
| `contains(needle: String, haystack: String) -> Bool`      | Checks for a substring match                    |
| `trim(value: String) -> String`                           | Trim whitespace from a string                   |
| `trim_start(value: String) -> String`                     | Trim whitespace from the start of a string      |
| `trim_end(value: String) -> String`                       | Trim whitespace from the end of a string        |
| `lowercase(value: String) -> String`                      | Return a lowercase version of a string          |
| `uppercase(value: String) -> String`                      | Return a uppercase version of a string          |
| `type(value: Value) -> Type`                              | Get the string representation of a value's type |

### Operator Functions

| Fn                               | Description                              |
| -------------------------------- | ---------------------------------------- |
| `eq(a: Value, b: Value) -> Bool` | Compare two values for equality          |
| `not(value: Bool) -> Bool`       | Logical NOT operation on a boolean value |

### Why Backticks For Strings?

These expressions will be embedded in places where double quotes are common (e.g. JSON). Single quotes weren't chosen due to their use in prose e.g. weren't

## Built With

- [lalrpop]https://github.com/lalrpop/lalrpop
- [logos]https://github.com/maciejhirsz/logos

## Running Examples

### Lexer

Lex an expression in to a list of tokens.

```sh
cargo run -q --example lexer spec/call_with_args.expr
```

#### stderr

```
[
    Ok(
        (
            0,
            LParan,
            1,
        ),
    ),
    Ok(
        (
            1,
            Identifier(
                "id",
            ),
            3,
        ),
    ),
    Ok(
        (
            4,
            LParan,
            5,
        ),
    ),
    Ok(
        (
            5,
            Identifier(
                "id",
            ),
            7,
        ),
    ),
    Ok(
        (
            8,
            Identifier(
                ":a",
            ),
            10,
        ),
    ),
    Ok(
        (
            10,
            RParan,
            11,
        ),
    ),
    Ok(
        (
            11,
            RParan,
            12,
        ),
    ),
]
```

### Parser

Parse an expression into an AST.

```sh
cargo run -q --example parser spec/call_with_args.expr
```

#### stderr

```
Call(
    ExprCall {
        callee: (
            Identifier(
                ExprIdentifier(
                    "id",
                ),
            ),
            1..3,
        ),
        args: [
            (
                Call(
                    ExprCall {
                        callee: (
                            Identifier(
                                ExprIdentifier(
                                    "id",
                                ),
                            ),
                            5..7,
                        ),
                        args: [
                            (
                                Identifier(
                                    ExprIdentifier(
                                        ":a",
                                    ),
                                ),
                                8..10,
                            ),
                        ],
                    },
                ),
                4..11,
            ),
        ],
    },
)
```

### Compiler

Compile an expression into bytecode to stdout.

```sh
cargo run -q --example compiler -- spec/call_with_args.expr \
    --vars a \
    > output.exprbin
```

#### stderr

```
ExprByteCode {
    codes: [
        1,
        0,
        0,
        1,
        0,
        0,
        1,
        1,
        0,
        0,
        1,
        0,
        1,
    ],
}
```

#### stdout

```
...BYTECODE...
```

### Disassembler

Compile expression and disassemble it.

```sh
cargo run -q --example disassembler -- spec/call_id_with_id_arg.expr
```

#### stderr

```
0000 GET BUILTIN         0 == 'id'
0003 GET BUILTIN         0 == 'id'
0006 GET BUILTIN         1 == 'noop'
0009 CALL             (0 args)
0011 CALL             (1 args)
0013 CALL             (1 args)
```

### Interpreter

Interpret an expression.

```sh
cargo run -q --example interpreter -- spec/variable.expr \
    --vars b=b_value
```

#### stdout

```
`b_value`
```

### REPL

A simple REPL to interpret expressions.

```sh
cargo run -q --example repl
```

#### Repl Mode

The REPL works in different modes:

1. Interpret: Fully interpret an expression using the VM. This is the default.
2. Compile: Compile an expression into its bytecode
3. Disassemble: Compile and disassemble an expression
4. Parse: Parse an expression into an AST
5. Lex: Lex an expression into tokens

```
interpret   > /mode

Current Mode: Interpret

interpret   > /mode compile

compile     > /mode disassemble

disassemble > /mode parse

parse       > /mode lex

lex         > /mode interpret

interpret   > /mode

Current Mode: Interpret
```

#### Reference Last String Value

The last returned string value can be referenced using `@_`.

```
interpret   > `value`

interpret   > @_

`value`

interpret   > (id @_)

`value`

interpret   > id

builtin id(1)

interpret   > (@_ `value`)

`value`
```

#### Set Variable

```
interpret   > /set var key = value

interpret   > :key

`value`
```

#### Set Prompt

```
interpret   > /set prompt key = value

interpret   > ?key

`value`
```

#### Set Secret

```
interpret   > /set secret key = value

interpret   > !key

`value`
```

#### Set Client Context

```
interpret   > /set client key = value

interpret   > @key

`value`
```

#### Print Current Environment

```
interpret   > /env

Env {
    builtins: [
        BuiltinFn {
            name: "id",
            arity: 1,
        },
        BuiltinFn {
            name: "noop",
            arity: 0,
        },
    ],
    vars: [],
    prompts: [],
    secrets: [],
}

> /set var isActive = true

> /env

Env {
    builtins: [
        BuiltinFn {
            name: "id",
            arity: 1,
        },
        BuiltinFn {
            name: "noop",
            arity: 0,
        },
    ],
    vars: ["isActive"],
    prompts: [],
    secrets: [],
}
```

#### Exit

```
interpret   > /exit
```

#### Example

```
interpret   > (id :foo)

`bar`
```

## Tests

### Integration Tests

A suite of programmatic tests that validate the behavior of the lexer, parser, compiler, disassembler, and VM.

[./tests/integration_tests.rs](./tests/integration_tests.rs)

### Specification Tests

These tests read in `*.expr` files in the `spec/` directory and compare the output against their corrosponding expected result files (e.g. `*.expr.tokens`, `*.expr.interpreted`, `*.expr.disasssembled`). These spec files are split between valid and invalid examples.

[./tests/spec_tests.rs](./tests/spec_tests.rs)

#### Compiler and Runtime Environments

The expected result files `*.expr.interpreted`, `*.expr.disasssembled` accept a CLI formatted list of arguments from the first line. The frist line must be prefixed with `//`. The arguments are passed to the compiler and VM.

These CLI arguments work the same as the other reqlang-expr CLIs

```
--vars <VARS>...                      List of indexed variable names
--prompts <PROMPTS>...                List of indexed prompt names
--secrets <SECRETS>...                List of indexed secret names
--client-context <CLIENT_CONTEXT>...  List of indexed client context names
```

##### Valid Example

[`./spec/valid/greeting_name.expr`](./spec/valid/greeting_name.expr)

```
(concat :greeting ` ` ?name)
```

[`./spec/valid/greeting_name.expr.interpreted`](./spec/valid/greeting_name.expr.interpreted)

```
//--vars greeting=Hello --prompts name=World
`Hello World`
```

##### Invalid Example

[`./spec/invalid/eq_no_args.expr`](./spec/invalid/eq_no_args.expr)

```
(eq)
```

[`./spec/invalid/eq_no_args.expr.interpreted`](./spec/invalid/eq_no_args.expr.interpreted)

```
[
    (
        CompileError(
            WrongNumberOfArgs {
                expected: 2,
                actual: 0,
            },
        ),
        0..4,
    ),
]
```