Skip to content

Commit 2dd57cc

Browse files
authored
Adds sections on modules (#353)
1 parent 8a623de commit 2dd57cc

9 files changed

+631
-106
lines changed

_books/ion-1-1/src/SUMMARY.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@
88
- [Special forms](macros/special_forms.md)
99
- [System macros](macros/system_macros.md)
1010
- [Modules](modules.md)
11-
- [Encoding module](modules/encoding_module.md)
11+
- [Defining modules](modules/defining_modules.md)
12+
- [The encoding module](modules/encoding_module.md)
13+
- [Shared modules](modules/shared_modules.md)
14+
- [Inner modules](modules/inner_modules.md)
1215
- [The system module](modules/system_module.md)
16+
- [Grammar](modules/grammar.md)
1317
- [Binary encoding](binary/encoding.md)
1418
- [Encoding primitives](binary/primitives.md)
1519
- [`FlexUInt`](binary/primitives/flex_uint.md)

_books/ion-1-1/src/modules.md

+71-72
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ion 1.1 Modules
1+
# Ion 1.1 modules
22

33
In Ion 1.0, each stream has a [symbol table](https://amazon-ion.github.io/ion-docs/docs/symbols.html#processing-of-symbol-tables). The symbol table stores text values that can be referred to by their integer index in the table, providing a much more compact representation than repeating the full UTF-8 text bytes each time the value is used. Symbol tables do not store any other information used by the reader or writer.
44

@@ -9,102 +9,101 @@ Ion 1.1 also introduces the concept of a _module_, an organizational unit that h
99
> [!TIP]
1010
> You can think of an Ion 1.0 symbol table as a module with an empty macro table.
1111
12-
In Ion 1.1, each stream has an [encoding module](modules/encoding_module.md)--the active `(symbol table, macro table)` pair that is being used to encode the stream.
12+
In Ion 1.1, each stream has an [encoding module](modules/encoding_module.md)the active `(symbol table, macro table)` pair that is being used to encode the stream.
1313

14-
## Identifiers
14+
## Module interface
1515

16-
Many of the grammatical elements used to define modules and macros are _identifiers_--symbols that do not require quotation marks.
16+
The interface to a module consists of:
1717

18-
More explicitly, an identifier is a sequence of one or more ASCII letters, digits, or the characters `$` (dollar sign) or `_` (underscore), not starting with a digit. It also cannot be of the form `$\d+`, which is the syntax for symbol IDs. (For example: `$3`, `$10`, `$458`, etc.)
18+
* its _spec version_, denoting the Ion version used to define the module
19+
* its _exported symbols_, an array of strings denoting symbol content
20+
* its _exported macros_, an array of `<name, macro>` pairs, where all names are unique identifiers (or null).
1921

20-
## Defining a module
22+
The spec version is external to the module body and the precise way it is determined depends on the type of module being defined. This is explained in further detail in [Module Versioning](#module-versioning).
2123

22-
A module has four kinds of subclauses:
24+
The exported symbol array is denoted by the `symbol_table` clause of a module definition, and
25+
by the `symbols` field of a shared symbol table.
2326

24-
1. `symbol_table` - an exported list of text values.
25-
2. `macro_table` - an exported list of macro definitions.
26-
3. `module` - a nested module definition.
27-
4. `import` - a reference to a shared module definition
27+
The exported macro array is denoted by the module’s `macro_table` clause, with addresses
28+
allocated to macros or macro bindings in the order they are declared.
2829

29-
<!-- TODO: `export` -->
30+
The exported symbols and exported macros are defined in the [module body](body.md).
3031

31-
### `symbol_table`
3232

33-
The `symbol_table` clause assembles a list of text values for the module to export. It takes any number of arguments.
33+
## Types of modules
3434

35-
#### Syntax
36-
```ion
37-
(symbol_table arg1 arg2 ... argN)
38-
```
35+
There are multiple types of modules.
36+
All modules share the same interface, but vary in their implementation in order to support a variety of different use cases.
3937

40-
#### Processing
38+
| Module Type | Purpose |
39+
|:----------------------------------------------|:---------------------------------------------------------------|
40+
| [Encoding Module](modules/encoding_module.md) | Defining the local encoding context |
41+
| [System Module](modules/system_module.md) | Defining system symbols and macros |
42+
| [Inner Module](modules/inner_modules.md) | Organizing symbols and macros and limiting the scope of macros |
43+
| [Shared Module](modules/shared_modules.md) | Defining symbols and macros outside of the data stream |
4144

42-
When the `symbol_table` clause is encountered, the reader constructs an empty list. The arguments to the clause are then processed from left to right.
4345

44-
For each `arg`:
45-
* **If the `arg` is a list of text values**, the nested text values are appended to the end of the symbol table being constructed.
46-
* When `null`, `null.string`, `null.symbol`, or `$0` appear in the list of text values, this creates a symbol with unknown text.
47-
* The presence of any other Ion value in the list raises an error.
48-
* **If the `arg` is the name of a module**, the symbols in that module's symbol table are appended to the end of the symbol table being constructed.
49-
* **If the `arg` is anything else**, the reader must raise an error.
46+
## Module versioning
5047

51-
#### Example `symbol_table`
48+
Every module definition has a _spec version_ that determines the syntax and semantics of the module body.
49+
A module’s spec version is expressed in terms of a specific Ion version; the meaning of the module is as defined by that version of the Ion specification.
5250

53-
```ion
54-
(symbol_table // Constructs an empty symbol table (list)
55-
["a", b, 'c'] // The text values in this list are appended to the table
56-
foo // Module `foo`'s symbol table values are appended to the table
57-
['''g''', "h", i]) // The text values in this list are appended to the table
58-
```
59-
If module `foo`'s symbol table were `[d, e, f]`, then the symbol table defined by the above clause would be:
60-
```ion
61-
["a", "b", "c", "d", "e", "f", "g", "h", "i"]
62-
```
51+
The spec version for an encoding module is implicitly derived from the Ion version of its containing segment.
52+
The spec version for a shared module is denoted via a required annotation.
53+
The spec version of an inner module is always the same as its containing module.
54+
The spec version of a system module is the Ion version in which it was specified.
6355

64-
### `macro_table`
56+
To ensure that all consumers of a module can properly understand it, a module can only import
57+
shared modules defined with the same or earlier spec version.
6558

66-
The `macro_table` clause assembles a list of macro definitions for the module to export. It takes any number of arguments.
59+
#### Examples
60+
The spec version of a shared module must be declared explicitly using an annotation of the form `$ion_1_N`.
61+
This allows the module to be serialized using any version of Ion, and its meaning will not change.
6762

68-
#### Syntax
6963
```ion
70-
(macro_table arg1 arg2 ... argN)
64+
$ion_shared_module::
65+
$ion_1_1::("com.example.symtab" 3
66+
(symbol_table ...)
67+
(macro_table ...))
7168
```
72-
#### Processing
73-
74-
When the `macro_table` clause is encountered, the reader constructs an empty list. The arguments to the clause are then processed from left to right.
7569

76-
For each `arg`:
77-
* **If the `arg` is a `macro` clause**, the clause is processed and the resulting macro definition is appended to the end of the macro table being constructed.
78-
* **If the `arg` is the name of a module**, the macro definitions in that module's macro table are appended to the end of the macro table being constructed.
79-
* **If the `arg` is anything else**, the reader must raise an error.
70+
The spec version of an encoding module is always the same as the Ion version of its enclosing segment.
8071

72+
```ion
73+
$ion_1_1
74+
$ion_encoding::(
75+
// Module semantics specified by Ion 1.1
76+
...
77+
)
78+
79+
// ...
80+
81+
$ion_1_3
82+
$ion_encoding::(
83+
// Module semantics specified by Ion 1.3
84+
...
85+
)
86+
//... // Assuming no IVM
87+
$ion_encoding::(
88+
// Module semantics specified by Ion 1.3
89+
...
90+
)
91+
```
8192

82-
Macro definitions being added to the macro table must have a unique name. If a macro is added whose name conflicts with one already present in the table, the reader must raise an error.
93+
## Identifiers
8394

84-
### `macro`
95+
Many of the grammatical elements used to define modules and macros are _identifiers_--symbols that do not require quotation marks.
8596

86-
The `macro` clause defines a new macro. See _[Defining macros](macros/defining_macros.md)_.
97+
More explicitly, an identifier is a sequence of one or more ASCII letters, digits, or the characters `$` (dollar sign) or `_` (underscore), not starting with a digit. It also cannot be of the form `$\d+`, which is the syntax for symbol IDs. (For example: `$3`, `$10`, `$458`, etc.)
8798

88-
## Grammar
99+
```bnf
100+
identifier ::= identifier-start identifier-char*
89101
90-
Literals appear in `code blocks`. Terminals are described in _italic text_.
102+
identifier-start ::= letter
103+
| '_'
104+
| '$' letter
105+
| '$_'
106+
| '$$'
91107
92-
| Production | | Body |
93-
|----------------------|-----|--------------------------------------------------------|
94-
| module | ::= | `(module ` module-name-decl module-body `)` |
95-
| module-body | ::= | import* module* symtab? mactab? |
96-
| import | ::= | `(import` module-name catalog-name catalog-version `)` |
97-
| symtab | ::= | `(symbol_table ` symtab-item* `)` |
98-
| symtab-item | ::= | module-name \| symbol-def-seq |
99-
| symbol-def-seq | ::= | _a list of unannotated text values (string/symbol)_ |
100-
| mactab | ::= | `(macro_table ` mactab-item* `)` |
101-
| mactab-item | ::= | module-name \| macro-def \| macro-export |
102-
| macro-def | ::= | `(macro ` macro-name signature tdl-expression `)` |
103-
| macro-export | ::= | `(export ` macro-ref macro-name? `)` |
104-
| catalog-name | ::= | _unannotated string_ |
105-
| catalog-version | ::= | _unannotated int_ |
106-
| module-name | ::= | _unannotated idenfitier symbol_ |
107-
| macro-ref | ::= | macro-name \| qualified-macro-name \| macro-address |
108-
| macro-name-decl | ::= | macro-name-ref \| `null` |
109-
| macro-name | ::= | _unannotated idenfitier symbol_ |
110-
| qualified-macro-name | ::= | module-name `::` macro-name |
108+
identifier-char ::= letter | digit | '$' | '_'
109+
```

0 commit comments

Comments
 (0)