Add transformation block support
[normand.git] / README.adoc
1 // Show ToC at a specific location for a GitHub rendering
2 ifdef::env-github[]
3 :toc: macro
4 endif::env-github[]
5
6 ifndef::env-github[]
7 :toc: left
8 endif::env-github[]
9
10 // This is to mimic what GitHub does so that anchors work in an offline
11 // rendering too.
12 :idprefix:
13 :idseparator: -
14
15 // Other attributes
16 :py3: Python{nbsp}3
17
18 = Normand
19 Philippe Proulx
20
21 image::normand-logo.png[]
22
23 [.normal]
24 image:https://img.shields.io/pypi/v/normand.svg?label=Latest%20version[link="https://pypi.python.org/pypi/normand"]
25
26 [.lead]
27 _**Normand**_ is a text-to-binary processor with its own language.
28
29 This package offers both a portable {py3} module and a command-line
30 tool.
31
32 WARNING: This version of Normand is 0.21, meaning both the Normand
33 language and the module/CLI interface aren't stable.
34
35 ifdef::env-github[]
36 // ToC location for a GitHub rendering
37 toc::[]
38 endif::env-github[]
39
40 == Introduction
41
42 The purpose of Normand is to consume human-readable text representing
43 bytes and to produce the corresponding binary data.
44
45 .Simple bytes input.
46 ====
47 Consider the following Normand input:
48
49 ----
50 4f 55 32 bb $167 fe %10100111 a9 $-32
51 ----
52
53 The generated nine bytes are:
54
55 ----
56 4f 55 32 bb a7 fe a7 a9 e0
57 ----
58 ====
59
60 As you can see in the last example, the fundamental unit of the Normand
61 language is the _byte_. The order in which you list bytes will be the
62 order of the generated data.
63
64 The Normand language is more than simple lists of bytes, though. Its
65 main features are:
66
67 Comments, including a bunch of insignificant symbols which may improve readability::
68 +
69 Input:
70 +
71 ----
72 ff bb %1101:0010 # This is a comment
73 78 29 af $192 # This too # 99 $-80
74 fe80::6257:18ff:fea3:4229
75 60:57:18:a3:42:29
76 10839636-5d65-4a68-8e6a-21608ddf7258
77 ----
78 +
79 Output:
80 +
81 ----
82 ff bb d2 78 29 af c0 99 b0 fe 80 62 57 18 ff fe
83 a3 42 29 60 57 18 a3 42 29 10 83 96 36 5d 65 4a
84 68 8e 6a 21 60 8d df 72 58
85 ----
86
87 Hexadecimal, decimal, and binary byte constants::
88 +
89 Input:
90 +
91 ----
92 aa bb $247 $-89 %0011_0010 %11.01= 10/10
93 ----
94 +
95 Output:
96 +
97 ----
98 aa bb f7 a7 32 da
99 ----
100
101 Strings::
102 +
103 Input:
104 +
105 ----
106 "hello world!" 00
107 u16le"stress\nverdict 🤣"
108 s:latin3{hex(ICITTE)}
109 ----
110 +
111 Output:
112 +
113 ----
114 68 65 6c 6c 6f 20 77 6f 72 6c 64 21 00 73 00 74 ┆ hello world!•s•t
115 00 72 00 65 00 73 00 73 00 0a 00 76 00 65 00 72 ┆ •r•e•s•s•••v•e•r
116 00 64 00 69 00 63 00 74 00 20 00 3e d8 23 dd 30 ┆ •d•i•c•t• •>•#•0
117 78 32 66 ┆ x2f
118 ----
119
120 Labels: special variables holding the offset where they're defined::
121 +
122 ----
123 <beg> b2 52 e3 bc 91 05
124 $100 $50 <chair> 33 9f fe
125 25 e9 89 8a <end>
126 ----
127
128 Variables::
129 +
130 ----
131 5e 65 {tower = 47} c6 7f f2 c4
132 44 {hurl = tower - 14} b5 {tower = hurl} 26 2d
133 ----
134 +
135 The value of a variable assignment is the evaluation of a valid {py3}
136 expression which may include label and variable names.
137
138 Fixed-length number with a given length (8{nbsp}bits to 64{nbsp}bits) and byte order::
139 +
140 Input:
141 +
142 ----
143 {strength = 4}
144 {be} 67 <lbl> 44 $178 {(end - lbl) * 8 + strength : 16} $99 <end>
145 {le} {-1993 : 32}
146 {-3.141593 : 64}
147 ----
148 +
149 Output:
150 +
151 ----
152 67 44 b2 00 2c 63 37 f8 ff ff 7f bd c2 82 fb 21
153 09 c0
154 ----
155 +
156 The encoded number is the evaluation of a valid {py3} expression which
157 may include label and variable names.
158
159 https://en.wikipedia.org/wiki/LEB128[LEB128] integer::
160 +
161 Input:
162 +
163 ----
164 aa bb cc {-1993 : sleb128} <meow> dd ee ff
165 {meow * 199 : uleb128}
166 ----
167 +
168 Output:
169 +
170 ----
171 aa bb cc b7 70 dd ee ff e3 07
172 ----
173 +
174 The encoded integer is the evaluation of a valid {py3} expression which
175 may include label and variable names.
176
177 Conditional::
178 +
179 Input:
180 +
181 ----
182 aa bb cc
183
184 (
185 "foo"
186
187 !if {ICITTE > 10}
188 "bar"
189 !else
190 "fight"
191 !end
192 ) * 4
193 ----
194 +
195 Output:
196 +
197 ----
198 aa bb cc 66 6f 6f 66 69 67 68 74 66 6f 6f 66 69 ┆ •••foofightfoofi
199 67 68 74 66 6f 6f 62 61 72 66 6f 6f 62 61 72 ┆ ghtfoobarfoobar
200 ----
201
202 Repetition::
203 +
204 Input:
205 +
206 ----
207 aa bb * 5 cc <zoom> "yeah\0" * {zoom * 3}
208
209 !repeat 3
210 ff ee "juice"
211 !end
212 ----
213 +
214 Output:
215 +
216 ----
217 aa bb bb bb bb bb cc 79 65 61 68 00 79 65 61 68 ┆ •••••••yeah•yeah
218 00 79 65 61 68 00 79 65 61 68 00 79 65 61 68 00 ┆ •yeah•yeah•yeah•
219 79 65 61 68 00 79 65 61 68 00 79 65 61 68 00 79 ┆ yeah•yeah•yeah•y
220 65 61 68 00 79 65 61 68 00 79 65 61 68 00 79 65 ┆ eah•yeah•yeah•ye
221 61 68 00 79 65 61 68 00 79 65 61 68 00 79 65 61 ┆ ah•yeah•yeah•yea
222 68 00 79 65 61 68 00 79 65 61 68 00 79 65 61 68 ┆ h•yeah•yeah•yeah
223 00 79 65 61 68 00 79 65 61 68 00 79 65 61 68 00 ┆ •yeah•yeah•yeah•
224 ff ee 6a 75 69 63 65 ff ee 6a 75 69 63 65 ff ee ┆ ••juice••juice••
225 6a 75 69 63 65 ┆ juice
226 ----
227
228 Alignment::
229 +
230 Input:
231 +
232 ----
233 {be}
234
235 {199:32}
236 @64 {43:64}
237 @16 {-123:16}
238 @32~255 {5584:32}
239 ----
240 +
241 Output:
242 +
243 ----
244 00 00 00 c7 00 00 00 00 00 00 00 00 00 00 00 2b
245 ff 85 ff ff 00 00 15 d0
246 ----
247
248 Filling::
249 +
250 Input:
251 +
252 ----
253 {le}
254 {0xdeadbeef:32}
255 {-1993:16}
256 {9:16}
257 +0x40
258 {ICITTE:8}
259 "meow mix"
260 +200~FFh
261 {ICITTE:8}
262 ----
263 +
264 Output:
265 +
266 ----
267 ef be ad de 37 f8 09 00 00 00 00 00 00 00 00 00 ┆ ••••7•••••••••••
268 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
269 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
270 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
271 40 6d 65 6f 77 20 6d 69 78 ff ff ff ff ff ff ff ┆ @meow mix•••••••
272 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
273 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
274 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
275 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
276 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
277 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
278 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ┆ ••••••••••••••••
279 ff ff ff ff ff ff ff ff c8 ┆ •••••••••
280 ----
281
282 Transformation::
283 +
284 Input:
285 +
286 ----
287 "end of file @ " {end:8}
288
289 !transform gzip
290 "this part will be gzipped"
291 !end
292
293 <end>
294 ----
295 +
296 Output:
297 +
298 ----
299 65 6e 64 20 6f 66 20 66 69 6c 65 20 40 20 3c 1f ┆ end of file @ <•
300 8b 08 00 7b 7b 26 65 02 ff 2b c9 c8 2c 56 28 48 ┆ •••{{&e••+••,V(H
301 2c 2a 51 28 cf cc c9 51 48 4a 55 48 af ca 2c 28 ┆ ,*Q(•••QHJUH••,(
302 48 4d 01 00 d4 cc 5b 8a 19 00 00 00 ┆ HM••••[•••••
303 ----
304
305 Multilevel grouping::
306 +
307 Input:
308 +
309 ----
310 ff ((aa bb "zoom" cc) * 5) * 3 $-34 * 4
311 ----
312 +
313 Output:
314 +
315 ----
316 ff aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa ┆ •••zoom•••zoom••
317 bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb 7a ┆ •zoom•••zoom•••z
318 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f ┆ oom•••zoom•••zoo
319 6d cc aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc ┆ m•••zoom•••zoom•
320 aa bb 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb ┆ ••zoom•••zoom•••
321 7a 6f 6f 6d cc aa bb 7a 6f 6f 6d cc aa bb 7a 6f ┆ zoom•••zoom•••zo
322 6f 6d cc aa bb 7a 6f 6f 6d cc de de de de ┆ om•••zoom•••••
323 ----
324
325 Macros::
326 +
327 Input:
328 +
329 ----
330 !macro hello(world)
331 "hello"
332 !if world " world" !end
333 !end
334
335 !repeat 17
336 ff ff ff ff
337 m:hello({ICITTE > 15 and ICITTE < 60})
338 !end
339 ----
340 +
341 Output:
342 +
343 ----
344 ff ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c ┆ ••••hello••••hel
345 6c 6f ff ff ff ff 68 65 6c 6c 6f 20 77 6f 72 6c ┆ lo••••hello worl
346 64 ff ff ff ff 68 65 6c 6c 6f 20 77 6f 72 6c 64 ┆ d••••hello world
347 ff ff ff ff 68 65 6c 6c 6f 20 77 6f 72 6c 64 ff ┆ ••••hello world•
348 ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c 6c ┆ •••hello••••hell
349 6f ff ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 ┆ o••••hello••••he
350 6c 6c 6f ff ff ff ff 68 65 6c 6c 6f ff ff ff ff ┆ llo••••hello••••
351 68 65 6c 6c 6f ff ff ff ff 68 65 6c 6c 6f ff ff ┆ hello••••hello••
352 ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c 6c 6f ┆ ••hello••••hello
353 ff ff ff ff 68 65 6c 6c 6f ff ff ff ff 68 65 6c ┆ ••••hello••••hel
354 6c 6f ff ff ff ff 68 65 6c 6c 6f ┆ lo••••hello
355 ----
356
357 Precise error reporting::
358 +
359 ----
360 /tmp/meow.normand:10:24 - Expecting a bit (`0` or `1`).
361 ----
362 +
363 ----
364 /tmp/meow.normand:32:6 - Unexpected character `k`.
365 ----
366 +
367 ----
368 /tmp/meow.normand:24:19 - Illegal (unknown or unreachable) variable/label name `meow` in expression `(meow - 45) // 8`; the legal names are {`ICITTE`, `mix`, `zoom`}.
369 ----
370 +
371 ----
372 /tmp/meow.normand:32:19 - While expanding the macro `meow`:
373 /tmp/meow.normand:35:5 - While expanding the macro `zzz`:
374 /tmp/meow.normand:18:9 - Value 315 is outside the 8-bit range when evaluating expression `end - ICITTE`.
375 ----
376
377 You can use Normand to track data source files in your favorite VCS
378 instead of raw binary files. The binary files that Normand generates can
379 be used to test file format decoding, including malformatted data, for
380 example, as well as for education.
381
382 See <<learn-normand>> to explore all the Normand features.
383
384 == Install Normand
385
386 Normand requires Python ≥ 3.4.
387
388 To install Normand:
389
390 ----
391 $ python3 -m pip install --user normand
392 ----
393
394 See
395 https://packaging.python.org/en/latest/tutorials/installing-packages/#installing-to-the-user-site[Installing to the User Site]
396 to learn more about a user site installation.
397
398 [NOTE]
399 ====
400 Normand has a single module file, `normand.py`, which you can copy as is
401 to your project to use it (both the <<python3-api,`normand.parse()`>>
402 function and the <<command-line-tool,command-line tool>>).
403
404 `normand.py` has _no external dependencies_, but if you're using
405 Python{nbsp}3.4, you'll need a local copy of the standard `typing`
406 module.
407 ====
408
409 == Design goals
410
411 The design goals of Normand are:
412
413 Portability::
414 We're making sure `normand.py` works with Python{nbsp}≥{nbsp}3.4 and
415 doesn't have any external dependencies so that you may just copy the
416 module as is to your own project.
417
418 Ease of use::
419 The most basic Normand input is a sequence of hexadecimal constants
420 (for example, `4e6f726d616e64`) which produce exactly what you'd
421 expect.
422 +
423 Most Normand features map to programming language concepts you already
424 know and understand: constant integers, literal strings, variables,
425 conditionals, repetitions/loops, and the rest.
426
427 Concise and readable input::
428 We could have chosen XML or YAML as the input format, but having a
429 DSL here makes a Normand input compact and easy to read, two
430 important traits when using Normand to write tests, for example.
431 +
432 Compare the following Normand input and some hypothetical XML
433 equivalent, for example:
434 +
435 .Actual normand input.
436 ----
437 ff dd 01 ab $192 $-128 %1101:0011
438
439 {end:8}
440
441 {iter = 1}
442
443 !if {not something}
444 # five times because xyz
445 !repeat 5
446 "hello world " {iter:8}
447 {iter = iter + 1}
448 !end
449 !end
450
451 <end>
452 ----
453 +
454 .Hypothetical Normand XML input.
455 [source,xml]
456 ----
457 <?xml version="1.0" encoding="utf-8" ?>
458 <group>
459 <byte base="x" val="ff" />
460 <byte base="x" val="dd" />
461 <byte base="x" val="1" />
462 <byte base="x" val="ab" />
463 <byte base="d" val="192" />
464 <byte base="d" val="-128" />
465 <byte base="b" val="11010011" />
466 <fixed-len-num expr="end" len="8" />
467 <var-assign name="iter" expr="1" />
468 <cond expr="not something">
469 <!-- five times because xyz -->
470 <repeat expr="5">
471 <str>hello world </str>
472 <fixed-len-num expr="iter" len="8" />
473 <var-assign name="iter" expr="iter + 1" />
474 </repeat>
475 </cond>
476 <label name="end" />
477 </group>
478 ----
479
480 == Learn Normand
481
482 A Normand text input is a sequence of items which represent a sequence
483 of raw bytes.
484
485 [[state]] During the processing of items to data, Normand relies on a
486 current state:
487
488 [%header%autowidth]
489 |===
490 |State variable |Description |Initial value: <<python3-api,{py3} API>> |Initial value: <<command-line-tool,CLI>>
491
492 |[[cur-offset]] Current offset
493 |
494 The current offset has an effect on the value of <<label,labels>> and of
495 the special `ICITTE` name in <<fixed-length-number,fixed-length
496 number>>, <<leb-128-integer,LEB128 integer>>, <<string,string>>,
497 <<filling,filling>>, <<variable-assignment,variable assignment>>,
498 <<conditional-block,conditional block>>, <<repetition-block,repetition
499 block>>, <<macro-expansion,macro expansion>>, and
500 <<post-item-repetition,post-item repetition>> expression evaluation.
501
502 Each generated byte increments the current offset.
503
504 A <<current-offset-setting,current offset setting>> may change the
505 current offset without generating data.
506
507 An <<current-offset-alignment,current offset alignment>> generates
508 padding bytes to make the current offset satisfy a given alignment.
509 |`init_offset` parameter of the `parse()` function.
510 |`--offset` option.
511
512 |[[cur-bo]] Current byte order
513 |
514 The current byte order has an effect on the encoding of
515 <<fixed-length-number,fixed-length numbers>>.
516
517 A <<current-byte-order-setting,current byte order setting>> may change
518 the current byte order.
519 |`init_byte_order` parameter of the `parse()` function.
520 |`--byte-order` option.
521
522 |<<label,Labels>>
523 |Mapping of label names to integral values.
524 |`init_labels` parameter of the `parse()` function.
525 |One or more `--label` options.
526
527 |<<variable-assignment,Variables>>
528 |Mapping of variable names to integral or floating point number values.
529 |`init_variables` parameter of the `parse()` function.
530 |One or more `--var` or `--var-str` options.
531 |===
532
533 The available items are:
534
535 * A <<byte-constant,constant integer>> representing one or more
536 constant bytes.
537
538 * A <<literal-string,literal string>> representing a constant sequence
539 of bytes encoding UTF-8, UTF-16, UTF-32, or Latin-1 to Latin-10 data.
540
541 * A <<current-byte-order-setting,current byte order setting>> (big or
542 little endian).
543
544 * A <<fixed-length-number,fixed-length number>> (integer or
545 floating point) using the <<cur-bo,current byte order>> and of which
546 the value is the result of a {py3} expression.
547
548 * An <<leb128-integer,LEB128 integer>> of which the value is the result
549 of a {py3} expression.
550
551 * A <<string,string>> representing a sequence of bytes encoding UTF-8,
552 UTF-16, UTF-32, or Latin-1 to Latin-10 data, and of which the value is
553 the result of a {py3} expression.
554
555 * A <<current-offset-setting,current offset setting>>.
556
557 * A <<current-offset-alignment,current offset alignment>>.
558
559 * A <<filling,filling>>.
560
561 * A <<label,label>>, that is, a named constant holding the current
562 offset.
563 +
564 This is similar to an assembly label.
565
566 * A <<variable-assignment,variable assignment>> associating a name to
567 the integral result of an evaluated {py3} expression.
568
569 * A <<group,group>>, that is, a scoped sequence of items.
570
571 * A <<conditional-block,conditional block>>.
572
573 * A <<repetition-block,repetition block>>.
574
575 * A <<transformation-block,transformation block>>.
576
577 * A <<macro-definition-block,macro definition block>>.
578
579 * A <<macro-expansion,macro expansion>>.
580
581 Moreover, you can repeat many items above a constant or variable number
582 of times with the ``pass:[*]`` operator _after_ the item to repeat. This
583 is called a <<post-item-repetition,post-item repetition>>.
584
585 A Normand comment may exist pretty much anywhere between tokens.
586
587 A comment is anything between two ``pass:[#]`` characters on the same
588 line, or from ``pass:[#]`` until the end of the line. Whitespaces are
589 also considered comments. The following symbols are also considered
590 comments around and between items, as well as between hexadecimal
591 nibbles and binary bits of <<byte-constant,byte constants>>:
592
593 ----
594 / \ ? & : ; . , [ ] _ = | -
595 ----
596
597 The latter serve to improve readability so that you may write, for
598 example, a MAC address or a UUID as is.
599
600 [[const-int]] Many items require a _constant integer_, possibly
601 negative, in which case it may start with `-` for a negative integer. A
602 positive constant integer is any of:
603
604 Decimal::
605 One or mode digits (`0` to `9`).
606
607 Hexadecimal::
608 One of:
609 +
610 * The `0x` or `0X` prefix followed with one or more hexadecimal digits
611 (`0` to `9`, `a` to `f`, or `A` to `F`).
612 * One or more hexadecimal digits followed with the `h` or `H` suffix.
613
614 Octal::
615 One of:
616 +
617 * The `0o` or `0O` prefix followed with one or more octal digits
618 (`0` to `7`).
619 * One or more octal digits followed with the `o`, `O`, `q`, or `Q`
620 suffix.
621
622 Binary::
623 One of:
624 +
625 * The `0b` or `0B` prefix followed with one or more bits (`0` or `1`).
626 * One or more bits followed with the `b` or `B` suffix.
627
628 You can test the examples of this section with the `normand`
629 <<command-line-tool,command-line tool>> as such:
630
631 ----
632 $ normand file | hexdump -C
633 ----
634
635 where `file` is the name of a file containing the Normand input.
636
637 === Byte constant
638
639 A _byte constant_ represents one or more constant bytes.
640
641 A byte constant is:
642
643 Hexadecimal form::
644 Two consecutive hexadecimal digits representing a single byte.
645
646 Decimal form::
647 One or more digits after the `$` prefix representing a single byte.
648
649 Binary form:: {empty}
650 +
651 --
652 . __**N**__ `%` prefixes (at least one).
653 +
654 The number of `%` characters is the number of subsequent expected bytes.
655
656 . __**N**__{nbsp}×{nbsp}8 bits (`0` or `1`).
657 --
658
659 ====
660 Input:
661
662 ----
663 ab cd [3d 8F] CC
664 ----
665
666 Output:
667
668 ----
669 ab cd 3d 8f cc
670 ----
671 ====
672
673 ====
674 Input:
675
676 ----
677 $192 %1100/0011 $ -77
678 ----
679
680 Output:
681
682 ----
683 c0 c3 b3
684 ----
685 ====
686
687 ====
688 Input:
689
690 ----
691 58f64689-6316-4d55-8a1a-04cada366172
692 fe80::6257:18ff:fea3:4229
693 ----
694
695 Output:
696
697 ----
698 58 f6 46 89 63 16 4d 55 8a 1a 04 ca da 36 61 72 ┆ X•F•c•MU•••••6ar
699 fe 80 62 57 18 ff fe a3 42 29 ┆ ••bW••••B)
700 ----
701 ====
702
703 ====
704 Input:
705
706 ----
707 %01110011 %01100001 %01101100 %01110101 %01110100
708 %%%1101:0010 11111111 #A#11 #B#00 #C#011 #D#1
709 ----
710
711 Output:
712
713 ----
714 73 61 6c 75 74 d2 ff c7 ┆ salut•••
715 ----
716 ====
717
718 === Literal string
719
720 A _literal string_ represents the encoded bytes of a literal string
721 using the UTF-8, UTF-16, UTF-32, or Latin-1 to Latin-10 encoding.
722
723 The string to encode isn't implicitly null-terminated: use `\0` at the
724 end of the string to add a null character.
725
726 A literal string is:
727
728 . **Optional**: one of the following encodings instead of the default
729 UTF-8:
730 +
731 --
732 [horizontal]
733 `s:u8`::
734 `u8`::
735 UTF-8.
736
737 `s:u16be`::
738 `u16be`::
739 UTF-16BE.
740
741 `s:u16le`::
742 `u16le`::
743 UTF-16LE.
744
745 `s:u32be`::
746 `u32be`::
747 UTF-32BE.
748
749 `s:u32le`::
750 `u32le`::
751 UTF-32LE.
752
753 `s:latin1`::
754 ISO/IEC 8859-1.
755
756 `s:latin2`::
757 ISO/IEC 8859-2.
758
759 `s:latin3`::
760 ISO/IEC 8859-3.
761
762 `s:latin4`::
763 ISO/IEC 8859-4.
764
765 `s:latin5`::
766 ISO/IEC 8859-9.
767
768 `s:latin6`::
769 ISO/IEC 8859-10.
770
771 `s:latin7`::
772 ISO/IEC 8859-13.
773
774 `s:latin8`::
775 ISO/IEC 8859-14.
776
777 `s:latin9`::
778 ISO/IEC 8859-15.
779
780 `s:latin10`::
781 ISO/IEC 8859-16.
782 --
783
784 . The ``pass:["]`` prefix.
785
786 . A sequence of zero or more characters, possibly containing escape
787 sequences.
788 +
789 An escape sequence is the ``\`` character followed by one of:
790 +
791 --
792 [horizontal]
793 `0`:: Null (U+0000)
794 `a`:: Alert (U+0007)
795 `b`:: Backspace (U+0008)
796 `e`:: Escape (U+001B)
797 `f`:: Form feed (U+000C)
798 `n`:: End of line (U+000A)
799 `r`:: Carriage return (U+000D)
800 `t`:: Character tabulation (U+0009)
801 `v`:: Line tabulation (U+000B)
802 ``\``:: Reverse solidus (U+005C)
803 ``pass:["]``:: Quotation mark (U+0022)
804 --
805
806 . The ``pass:["]`` suffix.
807
808 ====
809 Input:
810
811 ----
812 "coucou tout le monde!"
813 ----
814
815 Output:
816
817 ----
818 63 6f 75 63 6f 75 20 74 6f 75 74 20 6c 65 20 6d ┆ coucou tout le m
819 6f 6e 64 65 21 ┆ onde!
820 ----
821 ====
822
823 ====
824 Input:
825
826 ----
827 u16le"I am not young enough to know everything."
828 ----
829
830 Output:
831
832 ----
833 49 00 20 00 61 00 6d 00 20 00 6e 00 6f 00 74 00 ┆ I• •a•m• •n•o•t•
834 20 00 79 00 6f 00 75 00 6e 00 67 00 20 00 65 00 ┆ •y•o•u•n•g• •e•
835 6e 00 6f 00 75 00 67 00 68 00 20 00 74 00 6f 00 ┆ n•o•u•g•h• •t•o•
836 20 00 6b 00 6e 00 6f 00 77 00 20 00 65 00 76 00 ┆ •k•n•o•w• •e•v•
837 65 00 72 00 79 00 74 00 68 00 69 00 6e 00 67 00 ┆ e•r•y•t•h•i•n•g•
838 2e 00 ┆ .•
839 ----
840 ====
841
842 ====
843 Input:
844
845 ----
846 s:u32be "\"illusion is the first\nof all pleasures\" 🦉"
847 ----
848
849 Output:
850
851 ----
852 00 00 00 22 00 00 00 69 00 00 00 6c 00 00 00 6c ┆ •••"•••i•••l•••l
853 00 00 00 75 00 00 00 73 00 00 00 69 00 00 00 6f ┆ •••u•••s•••i•••o
854 00 00 00 6e 00 00 00 20 00 00 00 69 00 00 00 73 ┆ •••n••• •••i•••s
855 00 00 00 20 00 00 00 74 00 00 00 68 00 00 00 65 ┆ ••• •••t•••h•••e
856 00 00 00 20 00 00 00 66 00 00 00 69 00 00 00 72 ┆ ••• •••f•••i•••r
857 00 00 00 73 00 00 00 74 00 00 00 0a 00 00 00 6f ┆ •••s•••t•••••••o
858 00 00 00 66 00 00 00 20 00 00 00 61 00 00 00 6c ┆ •••f••• •••a•••l
859 00 00 00 6c 00 00 00 20 00 00 00 70 00 00 00 6c ┆ •••l••• •••p•••l
860 00 00 00 65 00 00 00 61 00 00 00 73 00 00 00 75 ┆ •••e•••a•••s•••u
861 00 00 00 72 00 00 00 65 00 00 00 73 00 00 00 22 ┆ •••r•••e•••s•••"
862 00 00 00 20 00 01 f9 89 ┆ ••• ••••
863 ----
864 ====
865
866 ====
867 Input:
868
869 ----
870 s:latin1 "Paul Piché"
871 ----
872
873 Output:
874
875 ----
876 50 61 75 6c 20 50 69 63 68 e9 ┆ Paul Pich•
877 ----
878 ====
879
880 === Current byte order setting
881
882 This special item sets the <<cur-bo,_current byte order_>>.
883
884 The two accepted forms are:
885
886 [horizontal]
887 ``pass:[{be}]``:: Set the current byte order to big endian.
888 ``pass:[{le}]``:: Set the current byte order to little endian.
889
890 === Fixed-length number
891
892 A _fixed-length number_ represents a fixed number of bytes encoding
893 either:
894
895 * An unsigned or signed integer (two's complement).
896 +
897 The available lengths are 8, 16, 24, 32, 40, 48, 56, and 64.
898
899 * A floating point number
900 (https://standards.ieee.org/standard/754-2008.html[IEEE{nbsp}754-2008]).
901 +
902 The available length are 32 (_binary32_) and 64 (_binary64_).
903
904 The value is the result of evaluating a {py3} expression using the
905 <<cur-bo,current byte order>>.
906
907 A fixed-length number is:
908
909 . The ``pass:[{]`` prefix.
910
911 . A valid {py3} expression.
912 +
913 For a fixed-length number at some source location{nbsp}__**L**__, this
914 expression may contain the name of any accessible <<label,label>> (not
915 within a nested group), including the name of a label defined
916 after{nbsp}__**L**__ (except within an <<encoded-block,encoded block>>),
917 as well as the name of any <<variable-assignment,variable>> known
918 at{nbsp}__**L**__.
919 +
920 The value of the special name `ICITTE` (`int` type) in this expression
921 is the <<cur-offset,current offset>> (before encoding the number).
922
923 . The `:` character.
924
925 . An encoding length in bits amongst:
926 +
927 --
928 The expression evaluates to an `int` or `bool` value::
929 `8`, `16`, `24`, `32`, `40`, `48`, `56`, and `64`.
930 +
931 NOTE: Normand automatically converts a `bool` value to `int`.
932
933 The expression evaluates to a `float` value::
934 `32` and `64`.
935 --
936
937 . The `}` suffix.
938
939 ====
940 Input:
941
942 ----
943 {le} {345:16}
944 {be} {-0xabcd:32}
945 ----
946
947 Output:
948
949 ----
950 59 01 ff ff 54 33
951 ----
952 ====
953
954 ====
955 Input:
956
957 ----
958 {be}
959
960 # String length in bits
961 {8 * (str_end - str_beg) : 16}
962
963 # String
964 <str_beg>
965 "hello world!"
966 <str_end>
967 ----
968
969 Output:
970
971 ----
972 00 60 68 65 6c 6c 6f 20 77 6f 72 6c 64 21 ┆ •`hello world!
973 ----
974 ====
975
976 ====
977 Input:
978
979 ----
980 {20 - ICITTE : 8} * 10
981 ----
982
983 Output:
984
985 ----
986 14 13 12 11 10 0f 0e 0d 0c 0b
987 ----
988 ====
989
990 ====
991 Input:
992
993 ----
994 {le}
995 {2 * 0.0529 : 32}
996 ----
997
998 Output:
999
1000 ----
1001 ac ad d8 3d
1002 ----
1003 ====
1004
1005 === LEB128 integer
1006
1007 An _LEB128 integer_ represents a variable number of bytes encoding an
1008 unsigned or signed integer which is the result of evaluating a {py3}
1009 expression following the https://en.wikipedia.org/wiki/LEB128[LEB128]
1010 format.
1011
1012 An LEB128 integer is:
1013
1014 . The ``pass:[{]`` prefix.
1015
1016 . A valid {py3} expression of which the evaluation result type
1017 is `int` or `bool` (automatically converted to `int`).
1018 +
1019 For an LEB128 integer at some source location{nbsp}__**L**__, this
1020 expression may contain:
1021 +
1022 --
1023 * The name of any <<label,label>> defined before{nbsp}__**L**__
1024 which isn't within a nested group.
1025 * The name of any <<variable-assignment,variable>> known
1026 at{nbsp}__**L**__.
1027 --
1028 +
1029 The value of the special name `ICITTE` (`int` type) in this expression
1030 is the <<cur-offset,current offset>> (before encoding the integer).
1031
1032 . The `:` character.
1033
1034 . One of:
1035 +
1036 --
1037 [horizontal]
1038 `uleb128`:: Use the unsigned LEB128 format.
1039 `sleb128`:: Use the signed LEB128 format.
1040 --
1041
1042 . The `}` suffix.
1043
1044 ====
1045 Input:
1046
1047 ----
1048 {624485 : uleb128}
1049 ----
1050
1051 Output:
1052
1053 ----
1054 e5 8e 26
1055 ----
1056 ====
1057
1058 ====
1059 Input:
1060
1061 ----
1062 aa bb cc dd
1063 <meow>
1064 ee ff
1065 {-981238311 + (meow * -23) : sleb128}
1066 "hello"
1067 ----
1068
1069 Output:
1070
1071 ----
1072 aa bb cc dd ee ff fd fa 8d ac 7c 68 65 6c 6c 6f ┆ ••••••••••|hello
1073 ----
1074 ====
1075
1076 === String
1077
1078 A _string_ represents a variable number of bytes encoding a string which
1079 is the result of evaluating a {py3} expression using the UTF-8, UTF-16,
1080 UTF-32, or Latin-1 to Latin-10 encoding.
1081
1082 A string has two possible forms:
1083
1084 Encoding prefix form:: {empty}
1085 +
1086 . An encoding amongst:
1087 +
1088 --
1089 [horizontal]
1090 `s:u8`::
1091 `u8`::
1092 UTF-8.
1093
1094 `s:u16be`::
1095 `u16be`::
1096 UTF-16BE.
1097
1098 `s:u16le`::
1099 `u16le`::
1100 UTF-16LE.
1101
1102 `s:u32be`::
1103 `u32be`::
1104 UTF-32BE.
1105
1106 `s:u32le`::
1107 `u32le`::
1108 UTF-32LE.
1109
1110 `s:latin1`::
1111 ISO/IEC 8859-1.
1112
1113 `s:latin2`::
1114 ISO/IEC 8859-2.
1115
1116 `s:latin3`::
1117 ISO/IEC 8859-3.
1118
1119 `s:latin4`::
1120 ISO/IEC 8859-4.
1121
1122 `s:latin5`::
1123 ISO/IEC 8859-9.
1124
1125 `s:latin6`::
1126 ISO/IEC 8859-10.
1127
1128 `s:latin7`::
1129 ISO/IEC 8859-13.
1130
1131 `s:latin8`::
1132 ISO/IEC 8859-14.
1133
1134 `s:latin9`::
1135 ISO/IEC 8859-15.
1136
1137 `s:latin10`::
1138 ISO/IEC 8859-16.
1139 --
1140
1141 . The ``pass:[{]`` prefix.
1142
1143 . A valid {py3} expression of which the evaluation result type
1144 is `bool`, `int`, `float`, or `str` (the first three automatically
1145 converted to `str`).
1146 +
1147 For a string at some source location{nbsp}__**L**__, this expression may
1148 contain:
1149 +
1150 --
1151 * The name of any <<label,label>> defined before{nbsp}__**L**__
1152 which isn't within a nested group.
1153 * The name of any <<variable-assignment,variable>> known
1154 at{nbsp}__**L**__.
1155 --
1156 +
1157 The value of the special name `ICITTE` (`int` type) in this expression
1158 is the <<cur-offset,current offset>> (before encoding the string).
1159
1160 . The `}` suffix.
1161
1162 Encoding suffix form:: {empty}
1163 +
1164 . The ``pass:[{]`` prefix.
1165
1166 . A valid {py3} expression of which the evaluation result type
1167 is `bool`, `int`, `float`, or `str` (the first three automatically
1168 converted to `str`).
1169 +
1170 For a string at some source location{nbsp}__**L**__, this expression may
1171 contain:
1172 +
1173 --
1174 * The name of any <<label,label>> defined before{nbsp}__**L**__
1175 which isn't within a nested group.
1176 * The name of any <<variable-assignment,variable>> known
1177 at{nbsp}__**L**__.
1178 --
1179 +
1180 The value of the special name `ICITTE` (`int` type) in this expression
1181 is the <<cur-offset,current offset>> (before encoding the string).
1182
1183 . The `:` character.
1184
1185 . A string encoding amongst:
1186 +
1187 --
1188 [horizontal]
1189 `s:u8`::
1190 UTF-8.
1191
1192 `s:u16be`::
1193 UTF-16BE.
1194
1195 `s:u16le`::
1196 UTF-16LE.
1197
1198 `s:u32be`::
1199 UTF-32BE.
1200
1201 `s:u32le`::
1202 UTF-32LE.
1203
1204 `s:latin1`::
1205 ISO/IEC 8859-1.
1206
1207 `s:latin2`::
1208 ISO/IEC 8859-2.
1209
1210 `s:latin3`::
1211 ISO/IEC 8859-3.
1212
1213 `s:latin4`::
1214 ISO/IEC 8859-4.
1215
1216 `s:latin5`::
1217 ISO/IEC 8859-9.
1218
1219 `s:latin6`::
1220 ISO/IEC 8859-10.
1221
1222 `s:latin7`::
1223 ISO/IEC 8859-13.
1224
1225 `s:latin8`::
1226 ISO/IEC 8859-14.
1227
1228 `s:latin9`::
1229 ISO/IEC 8859-15.
1230
1231 `s:latin10`::
1232 ISO/IEC 8859-16.
1233 --
1234
1235 . The `}` suffix.
1236
1237 ====
1238 Input:
1239
1240 ----
1241 {iter = 1}
1242
1243 !repeat 10
1244 {iter : s:u8} " "
1245 {iter = iter + 1}
1246 !end
1247 ----
1248
1249 Output:
1250
1251 ----
1252 31 20 32 20 33 20 34 20 35 20 36 20 37 20 38 20 ┆ 1 2 3 4 5 6 7 8
1253 39 20 31 30 20 ┆ 9 10
1254 ----
1255 ====
1256
1257 ====
1258 Input:
1259
1260 ----
1261 {meow = 'salut jérémie'}
1262 {meow.upper() : s:latin1}
1263 ----
1264
1265 Output:
1266
1267 ----
1268 53 41 4c 55 54 20 4a c9 52 c9 4d 49 45 ┆ SALUT J•R•MIE
1269 ----
1270 ====
1271
1272 === Current offset setting
1273
1274 This special item sets the <<cur-offset,_current offset_>>.
1275
1276 A current offset setting is:
1277
1278 . The `<` prefix.
1279
1280 . A <<const-int,positive constant integer>> which is the new current
1281 offset.
1282
1283 . The `>` suffix.
1284
1285 ====
1286 Input:
1287
1288 ----
1289 {ICITTE : 8} * 8
1290 <0x61> {ICITTE : 8} * 8
1291 ----
1292
1293 Output:
1294
1295 ----
1296 00 01 02 03 04 05 06 07 61 62 63 64 65 66 67 68 ┆ ••••••••abcdefgh
1297 ----
1298 ====
1299
1300 ====
1301 Input:
1302
1303 ----
1304 aa bb cc dd <meow> ee ff
1305 <12> 11 22 33 <mix> 44 55
1306 {meow : 8} {mix : 8}
1307 ----
1308
1309 Output:
1310
1311 ----
1312 aa bb cc dd ee ff 11 22 33 44 55 04 0f ┆ •••••••"3DU••
1313 ----
1314 ====
1315
1316 === Current offset alignment
1317
1318 A _current offset alignment_ represents zero or more padding bytes to
1319 make the <<cur-offset,current offset>> meet a given
1320 https://en.wikipedia.org/wiki/Data_structure_alignment[alignment] value.
1321
1322 More specifically, for an alignment value of{nbsp}__**N**__{nbsp}bits,
1323 a current offset alignment represents the required padding bytes until
1324 the current offset is a multiple of __**N**__{nbsp}/{nbsp}8.
1325
1326 A current offset alignment is:
1327
1328 . The `@` prefix.
1329
1330 . A <<const-int,positive constant integer>> which is the alignment value
1331 in _bits_.
1332 +
1333 This value must be greater than zero and a multiple of{nbsp}8.
1334
1335 . **Optional**:
1336 +
1337 --
1338 . The ``pass:[~]`` prefix.
1339 . A <<const-int,positive constant integer>> which is the value of the
1340 byte to use as padding to align the <<cur-offset,current offset>>.
1341 --
1342 +
1343 Without this section, the padding byte value is zero.
1344
1345 ====
1346 Input:
1347
1348 ----
1349 11 22 (@32 aa bb cc) * 3
1350 ----
1351
1352 Output:
1353
1354 ----
1355 11 22 00 00 aa bb cc 00 aa bb cc 00 aa bb cc
1356 ----
1357 ====
1358
1359 ====
1360 Input:
1361
1362 ----
1363 {le}
1364 77 88
1365 @32~0xcc {-893.5:32}
1366 @128~0x55 "meow"
1367 ----
1368
1369 Output:
1370
1371 ----
1372 77 88 cc cc 00 60 5f c4 55 55 55 55 55 55 55 55 ┆ w••••`_•UUUUUUUU
1373 6d 65 6f 77 ┆ meow
1374 ----
1375 ====
1376
1377 ====
1378 Input:
1379
1380 ----
1381 aa bb cc <29> @64~255 "zoom"
1382 ----
1383
1384 Output:
1385
1386 ----
1387 aa bb cc ff ff ff 7a 6f 6f 6d ┆ ••••••zoom
1388 ----
1389 ====
1390
1391 === Filling
1392
1393 A _filling_ represents zero or more padding bytes to make the
1394 <<cur-offset,current offset>> reach a given value.
1395
1396 A filling is:
1397
1398 . The ``pass:[+]`` prefix.
1399
1400 . One of:
1401
1402 ** A <<const-int,positive constant integer>> which is the current offset
1403 target.
1404
1405 ** The ``pass:[{]`` prefix, a valid {py3} expression of which the
1406 evaluation result type is `int` or `bool` (automatically converted to
1407 `int`), and the ``pass:[}]`` suffix.
1408 +
1409 For a filling at some source location{nbsp}__**L**__, this expression
1410 may contain:
1411 +
1412 --
1413 * The name of any <<label,label>> defined before{nbsp}__**L**__
1414 which isn't within a nested group.
1415 * The name of any <<variable-assignment,variable>> known
1416 at{nbsp}__**L**__.
1417 --
1418 +
1419 The value of the special name `ICITTE` (`int` type) in this expression
1420 is the <<cur-offset,current offset>> (before handling the items to
1421 repeat).
1422
1423 ** A valid {py3} name.
1424 +
1425 For the name `__NAME__`, this is equivalent to the
1426 `pass:[{]__NAME__pass:[}]` form above.
1427
1428 +
1429 This value must be greater than or equal to the current offset where
1430 it's used.
1431
1432 . **Optional**:
1433 +
1434 --
1435 . The ``pass:[~]`` prefix.
1436 . A <<const-int,positive constant integer>> which is the value of the
1437 byte to use as padding to reach the current offset target.
1438 --
1439 +
1440 Without this section, the padding byte value is zero.
1441
1442 ====
1443 Input:
1444
1445 ----
1446 aa bb cc dd
1447 +0x40
1448 "hello world"
1449 ----
1450
1451 Output:
1452
1453 ----
1454 aa bb cc dd 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
1455 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
1456 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
1457 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ┆ ••••••••••••••••
1458 68 65 6c 6c 6f 20 77 6f 72 6c 64 ┆ hello world
1459 ----
1460 ====
1461
1462 ====
1463 Input:
1464
1465 ----
1466 !macro part(iter, fill)
1467 <0> "particular security " {ord('0') + iter : 8} +fill~0x80
1468 !end
1469
1470 {iter = 1}
1471
1472 !repeat 5
1473 m:part(iter, {32 + 4 * iter})
1474 {iter = iter + 1}
1475 !end
1476 ----
1477
1478 Output:
1479
1480 ----
1481 70 61 72 74 69 63 75 6c 61 72 20 73 65 63 75 72 ┆ particular secur
1482 69 74 79 20 31 80 80 80 80 80 80 80 80 80 80 80 ┆ ity 1•••••••••••
1483 80 80 80 80 70 61 72 74 69 63 75 6c 61 72 20 73 ┆ ••••particular s
1484 65 63 75 72 69 74 79 20 32 80 80 80 80 80 80 80 ┆ ecurity 2•••••••
1485 80 80 80 80 80 80 80 80 80 80 80 80 70 61 72 74 ┆ ••••••••••••part
1486 69 63 75 6c 61 72 20 73 65 63 75 72 69 74 79 20 ┆ icular security
1487 33 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 ┆ 3•••••••••••••••
1488 80 80 80 80 80 80 80 80 70 61 72 74 69 63 75 6c ┆ ••••••••particul
1489 61 72 20 73 65 63 75 72 69 74 79 20 34 80 80 80 ┆ ar security 4•••
1490 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 ┆ ••••••••••••••••
1491 80 80 80 80 80 80 80 80 70 61 72 74 69 63 75 6c ┆ ••••••••particul
1492 61 72 20 73 65 63 75 72 69 74 79 20 35 80 80 80 ┆ ar security 5•••
1493 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 80 ┆ ••••••••••••••••
1494 80 80 80 80 80 80 80 80 80 80 80 80 ┆ ••••••••••••
1495 ----
1496 ====
1497
1498 === Label
1499
1500 A _label_ associates a name to the <<cur-offset,current offset>>.
1501
1502 All the labels of a whole Normand input must have unique names.
1503
1504 A label must not share the name of a <<variable-assignment,variable>>
1505 name.
1506
1507 A label is:
1508
1509 . The `<` prefix.
1510
1511 . A valid {py3} name which is not `ICITTE`.
1512
1513 . The `>` suffix.
1514
1515 === Variable assignment
1516
1517 A _variable assignment_ associates a name to the integral result of an
1518 evaluated {py3} expression.
1519
1520 A variable assignment is:
1521
1522 . The ``pass:[{]`` prefix.
1523
1524 . A valid {py3} name which is not `ICITTE`.
1525
1526 . The `=` character.
1527
1528 . A valid {py3} expression of which the evaluation result type is `int`,
1529 `float`, or `bool` (automatically converted to `int`), or `str`.
1530 +
1531 For a variable assignment at some source location{nbsp}__**L**__, this
1532 expression may contain:
1533 +
1534 --
1535 * The name of any <<label,label>> defined before{nbsp}__**L**__
1536 which isn't within a nested group.
1537 * The name of any <<variable-assignment,variable>> known
1538 at{nbsp}__**L**__.
1539 --
1540 +
1541 The value of the special name `ICITTE` (`int` type) in this expression
1542 is the <<cur-offset,current offset>>.
1543
1544 . The `}` suffix.
1545
1546 ====
1547 Input:
1548
1549 ----
1550 {mix = 101} {le}
1551 {meow = 42} 11 22 {meow:8} 33 {meow = ICITTE + 17}
1552 "yooo" {meow + mix : 16}
1553 ----
1554
1555 Output:
1556
1557 ----
1558 11 22 2a 33 79 6f 6f 6f 7a 00 ┆ •"*3yoooz•
1559 ----
1560 ====
1561
1562 === Group
1563
1564 A _group_ is a scoped sequence of items.
1565
1566 The <<label,labels>> within a group aren't visible outside of it.
1567
1568 The main purpose of a group is to <<post-item-repetition,repeat>> more
1569 than a single item and to isolate labels.
1570
1571 A group is:
1572
1573 . The `(`, `!group`, or `!g` opening.
1574
1575 . Zero or more items except, recursively, a macro definition block.
1576
1577 . Depending on the group opening:
1578 +
1579 --
1580 `(`::
1581 The `)` closing.
1582
1583 `!group`::
1584 `!g`::
1585 The `!end` closing.
1586 --
1587
1588 ====
1589 Input:
1590
1591 ----
1592 ((aa bb cc) dd () ee) "leclerc"
1593 ----
1594
1595 Output:
1596
1597 ----
1598 aa bb cc dd ee 6c 65 63 6c 65 72 63 ┆ •••••leclerc
1599 ----
1600 ====
1601
1602 ====
1603 Input:
1604
1605 ----
1606 !group
1607 (aa bb cc) * 3 dd ee
1608 !end * 5
1609 ----
1610
1611 Output:
1612
1613 ----
1614 aa bb cc aa bb cc aa bb cc dd ee aa bb cc aa bb
1615 cc aa bb cc dd ee aa bb cc aa bb cc aa bb cc dd
1616 ee aa bb cc aa bb cc aa bb cc dd ee aa bb cc aa
1617 bb cc aa bb cc dd ee
1618 ----
1619 ====
1620
1621 ====
1622 Input:
1623
1624 ----
1625 {be}
1626 (
1627 <str_beg> u16le"sébastien diaz" <str_end>
1628 {ICITTE - str_beg : 8}
1629 {(end - str_beg) * 5 : 24}
1630 ) * 3
1631 <end>
1632 ----
1633
1634 Output:
1635
1636 ----
1637 73 00 e9 00 62 00 61 00 73 00 74 00 69 00 65 00 ┆ s•••b•a•s•t•i•e•
1638 6e 00 20 00 64 00 69 00 61 00 7a 00 1c 00 01 e0 ┆ n• •d•i•a•z•••••
1639 73 00 e9 00 62 00 61 00 73 00 74 00 69 00 65 00 ┆ s•••b•a•s•t•i•e•
1640 6e 00 20 00 64 00 69 00 61 00 7a 00 1c 00 01 40 ┆ n• •d•i•a•z••••@
1641 73 00 e9 00 62 00 61 00 73 00 74 00 69 00 65 00 ┆ s•••b•a•s•t•i•e•
1642 6e 00 20 00 64 00 69 00 61 00 7a 00 1c 00 00 a0 ┆ n• •d•i•a•z•••••
1643 ----
1644 ====
1645
1646 === Conditional block
1647
1648 A _conditional block_ represents either the bytes of zero or more items
1649 if some expression is true, or the bytes of zero or more other items if
1650 it's false.
1651
1652 A conditional block is:
1653
1654 . The `!if` opening.
1655
1656 . One of:
1657
1658 ** The ``pass:[{]`` prefix, a valid {py3} expression of which the
1659 evaluation result type is `int` or `bool` (automatically converted to
1660 `int`), and the ``pass:[}]`` suffix.
1661 +
1662 For a conditional block at some source location{nbsp}__**L**__, this
1663 expression may contain:
1664 +
1665 --
1666 * The name of any <<label,label>> defined before{nbsp}__**L**__
1667 which isn't within a nested group.
1668 * The name of any <<variable-assignment,variable>> known
1669 at{nbsp}__**L**__.
1670 --
1671 +
1672 The value of the special name `ICITTE` (`int` type) in this expression
1673 is the <<cur-offset,current offset>> (before handling the contained
1674 items).
1675
1676 ** A valid {py3} name.
1677 +
1678 For the name `__NAME__`, this is equivalent to the
1679 `pass:[{]__NAME__pass:[}]` form above.
1680
1681 . Zero or more items to be handled when the condition is true
1682 except, recursively, a macro definition block.
1683
1684 . **Optional**:
1685
1686 .. The `!else` opening.
1687 .. Zero or more items to be handled when the condition is false
1688 except, recursively, a macro definition block
1689
1690 . The `!end` closing.
1691
1692 ====
1693 Input:
1694
1695 ----
1696 {at = 1}
1697 {rep_count = 9}
1698
1699 !repeat rep_count
1700 "meow "
1701
1702 !if {ICITTE > 25}
1703 "mix"
1704 !else
1705 "zoom"
1706 !end
1707
1708 !if {at < rep_count} 20 !end
1709
1710 {at = at + 1}
1711 !end
1712 ----
1713
1714 Output:
1715
1716 ----
1717 6d 65 6f 77 20 7a 6f 6f 6d 20 6d 65 6f 77 20 7a ┆ meow zoom meow z
1718 6f 6f 6d 20 6d 65 6f 77 20 7a 6f 6f 6d 20 6d 65 ┆ oom meow zoom me
1719 6f 77 20 6d 69 78 20 6d 65 6f 77 20 6d 69 78 20 ┆ ow mix meow mix
1720 6d 65 6f 77 20 6d 69 78 20 6d 65 6f 77 20 6d 69 ┆ meow mix meow mi
1721 78 20 6d 65 6f 77 20 6d 69 78 20 6d 65 6f 77 20 ┆ x meow mix meow
1722 6d 69 78 ┆ mix
1723 ----
1724 ====
1725
1726 ====
1727 Input:
1728
1729 ----
1730 <str_beg>
1731 u16le"meow mix!"
1732 <str_end>
1733
1734 !if {str_end - str_beg > 10}
1735 " BIG"
1736 !end
1737 ----
1738
1739 Output:
1740
1741 ----
1742 6d 00 65 00 6f 00 77 00 20 00 6d 00 69 00 78 00 ┆ m•e•o•w• •m•i•x•
1743 21 00 20 42 49 47 ┆ !• BIG
1744 ----
1745 ====
1746
1747 === Repetition block
1748
1749 A _repetition block_ represents the bytes of one or more items repeated
1750 a given number of times.
1751
1752 A repetition block is:
1753
1754 . The `!repeat` or `!r` opening.
1755
1756 . One of:
1757
1758 ** A <<const-int,positive constant integer>> which is the number of
1759 times to repeat the previous item.
1760
1761 ** The ``pass:[{]`` prefix, a valid {py3} expression of which the
1762 evaluation result type is `int` or `bool` (automatically converted to
1763 `int`), and the ``pass:[}]`` suffix.
1764 +
1765 For a repetition block at some source location{nbsp}__**L**__, this
1766 expression may contain:
1767 +
1768 --
1769 * The name of any <<label,label>> defined before{nbsp}__**L**__
1770 which isn't within a nested group.
1771 * The name of any <<variable-assignment,variable>> known
1772 at{nbsp}__**L**__.
1773 --
1774 +
1775 The value of the special name `ICITTE` (`int` type) in this expression
1776 is the <<cur-offset,current offset>> (before handling the items to
1777 repeat).
1778
1779 ** A valid {py3} name.
1780 +
1781 For the name `__NAME__`, this is equivalent to the
1782 `pass:[{]__NAME__pass:[}]` form above.
1783
1784 . Zero or more items except, recursively, a macro definition block.
1785
1786 . The `!end` closing.
1787
1788 You may also use a <<post-item-repetition,post-item repetition>> after
1789 some items. The form ``!repeat{nbsp}__X__{nbsp}__ITEMS__{nbsp}!end``
1790 is equivalent to ``(__ITEMS__){nbsp}pass:[*]{nbsp}__X__``.
1791
1792 ====
1793 Input:
1794
1795 ----
1796 !repeat 0o400
1797 {end - ICITTE - 1 : 8}
1798 !end
1799
1800 <end>
1801 ----
1802
1803 Output:
1804
1805 ----
1806 ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ┆ ••••••••••••••••
1807 ef ee ed ec eb ea e9 e8 e7 e6 e5 e4 e3 e2 e1 e0 ┆ ••••••••••••••••
1808 df de dd dc db da d9 d8 d7 d6 d5 d4 d3 d2 d1 d0 ┆ ••••••••••••••••
1809 cf ce cd cc cb ca c9 c8 c7 c6 c5 c4 c3 c2 c1 c0 ┆ ••••••••••••••••
1810 bf be bd bc bb ba b9 b8 b7 b6 b5 b4 b3 b2 b1 b0 ┆ ••••••••••••••••
1811 af ae ad ac ab aa a9 a8 a7 a6 a5 a4 a3 a2 a1 a0 ┆ ••••••••••••••••
1812 9f 9e 9d 9c 9b 9a 99 98 97 96 95 94 93 92 91 90 ┆ ••••••••••••••••
1813 8f 8e 8d 8c 8b 8a 89 88 87 86 85 84 83 82 81 80 ┆ ••••••••••••••••
1814 7f 7e 7d 7c 7b 7a 79 78 77 76 75 74 73 72 71 70 ┆ •~}|{zyxwvutsrqp
1815 6f 6e 6d 6c 6b 6a 69 68 67 66 65 64 63 62 61 60 ┆ onmlkjihgfedcba`
1816 5f 5e 5d 5c 5b 5a 59 58 57 56 55 54 53 52 51 50 ┆ _^]\[ZYXWVUTSRQP
1817 4f 4e 4d 4c 4b 4a 49 48 47 46 45 44 43 42 41 40 ┆ ONMLKJIHGFEDCBA@
1818 3f 3e 3d 3c 3b 3a 39 38 37 36 35 34 33 32 31 30 ┆ ?>=<;:9876543210
1819 2f 2e 2d 2c 2b 2a 29 28 27 26 25 24 23 22 21 20 ┆ /.-,+*)('&%$#"!
1820 1f 1e 1d 1c 1b 1a 19 18 17 16 15 14 13 12 11 10 ┆ ••••••••••••••••
1821 0f 0e 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01 00 ┆ ••••••••••••••••
1822 ----
1823 ====
1824
1825 ====
1826 Input:
1827
1828 ----
1829 {times = 1}
1830
1831 aa bb cc dd
1832
1833 !repeat 3
1834 <here>
1835
1836 !repeat {here + 1}
1837 ee ff
1838 !end
1839
1840 11 22 !repeat times 33 !end
1841
1842 {times = times + 1}
1843 !end
1844
1845 "coucou!"
1846 ----
1847
1848 Output:
1849
1850 ----
1851 aa bb cc dd ee ff ee ff ee ff ee ff ee ff 11 22 ┆ •••••••••••••••"
1852 33 ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ 3•••••••••••••••
1853 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1854 ff ee ff ee ff 11 22 33 33 ee ff ee ff ee ff ee ┆ ••••••"33•••••••
1855 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1856 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1857 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1858 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1859 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1860 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
1861 ff ee ff ee ff ee ff ee ff ee ff ee ff 11 22 33 ┆ ••••••••••••••"3
1862 33 33 63 6f 75 63 6f 75 21 ┆ 33coucou!
1863 ----
1864 ====
1865
1866 === Transformation block
1867
1868 A _transformation block_ represents the bytes of one or more items
1869 transformed into other bytes by a function.
1870
1871 As of this version, Normand only offers a predetermined set of
1872 transformation functions.
1873
1874 An encoded block is:
1875
1876 . The `!transform` or `!t` opening.
1877
1878 . A transformation function name amongst:
1879 +
1880 --
1881 [horizontal]
1882 `base64`::
1883 `b64`::
1884 Standard https://datatracker.ietf.org/doc/html/rfc4648.html#section-4[Base64].
1885
1886 `base64u`::
1887 `b64u`::
1888 URL-safe Base64, using `-` instead of `pass:[+]` and `_` instead of
1889 `/`.
1890
1891 `base32`::
1892 `b32`::
1893 Standard https://datatracker.ietf.org/doc/html/rfc4648.html#section-6[Base32].
1894
1895 `base16`::
1896 `b16`::
1897 Standard https://datatracker.ietf.org/doc/html/rfc4648.html#section-8[Base16].
1898
1899 `ascii85`::
1900 `a85`::
1901 https://en.wikipedia.org/wiki/Ascii85[Ascii85] without padding.
1902
1903 `ascii85p`::
1904 `a85p`::
1905 Ascii85 with padding.
1906
1907 `base85`::
1908 `b85`::
1909 https://en.wikipedia.org/wiki/Ascii85[Base85] (like Git-style binary
1910 diffs) without padding.
1911
1912 `base85p`::
1913 `b85p`::
1914 Base85 with padding.
1915
1916 `quopri`::
1917 `qp`::
1918 MIME
1919 https://datatracker.ietf.org/doc/html/rfc2045#section-6.7[quoted-printable]
1920 without quoted whitespaces.
1921
1922 `quoprit`::
1923 `qpt`::
1924 MIME quoted-printable with quoted whitespaces.
1925
1926 `gzip`::
1927 `gz`::
1928 https://en.wikipedia.org/wiki/Gzip[gzip].
1929
1930 `bzip2`::
1931 `bz2`::
1932 https://en.wikipedia.org/wiki/Bzip2[bzip2].
1933 --
1934
1935 . Zero or more items except, recursively, a macro definition block.
1936 +
1937 Any {py3} expression within any of those items may not refer to a future
1938 <<label,label>>.
1939 +
1940 The value of the special name `ICITTE` in any {py3} expression within
1941 any of those items is the <<cur-offset,current offset>> _before_ Normand
1942 applies the transformation function. Therefore, labels defined within
1943 those items also have the current offset value _before_ Normand applies
1944 the transformation function.
1945
1946 . The `!end` closing.
1947
1948 The <<cur-offset,current offset>> after having handled the last item of
1949 a transformation block is the value of the current offset before
1950 handling the first item plus the size of the generated (transformed)
1951 bytes. In other words, <<current-offset-setting,current offset
1952 settings>> within the items of the block have no impact outside said
1953 block.
1954
1955 ====
1956 Input:
1957
1958 ----
1959 aa bb cc dd
1960
1961 "size of compressed section: " {end - start : 8}
1962
1963 <start>
1964
1965 !transform bzip2
1966 "this will be compressed!"
1967 89*100 00*5000
1968 !end
1969
1970 <end>
1971
1972 "yes!"
1973 ----
1974
1975 Output:
1976
1977 ----
1978 aa bb cc dd 73 69 7a 65 20 6f 66 20 63 6f 6d 70 ┆ ••••size of comp
1979 72 65 73 73 65 64 20 73 65 63 74 69 6f 6e 3a 20 ┆ ressed section:
1980 52 42 5a 68 39 31 41 59 26 53 59 68 e1 8c fc 00 ┆ RBZh91AY&SYh••••
1981 00 33 d1 e0 c0 00 60 00 5e 66 dc 80 00 20 00 80 ┆ •3••••`•^f••• ••
1982 00 08 20 00 31 40 d3 43 23 26 20 ca 87 a9 a1 e8 ┆ •• •1@•C#& •••••
1983 18 29 44 80 9c 80 49 bf cc b3 e8 45 ed e2 76 ad ┆ •)D•••I••••E••v•
1984 0f 12 8b 8a d6 cd 40 04 7e 2e e4 8a 70 a1 20 d1 ┆ ••••••@•~.••p• •
1985 c3 19 f8 79 65 73 21 ┆ •••yes!
1986 ----
1987 ====
1988
1989 ====
1990 Input:
1991
1992 ----
1993 88*16
1994
1995 !t a85
1996 "I am determined to be cheerful and happy in whatever situation "
1997 "I may find myself. For I have learned that the greater part of "
1998 "our misery or unhappiness is determined not by our circumstance "
1999 "but by our disposition."
2000 !end
2001
2002 @128~99h
2003
2004 !t qp <beg> {ICITTE - beg : 8} * 50 !end
2005 ----
2006
2007 Output:
2008
2009 ----
2010 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 ┆ ••••••••••••••••
2011 38 4b 5f 47 59 2b 43 6f 26 2a 41 54 44 58 25 44 ┆ 8K_GY+Co&*ATDX%D
2012 49 6d 3f 24 46 44 69 3a 32 41 4b 59 4a 72 41 53 ┆ Im?$FDi:2AKYJrAS
2013 23 6d 6f 46 5f 69 31 2f 44 49 61 6c 27 40 3b 70 ┆ #moF_i1/DIal'@;p
2014 31 32 2b 44 47 5e 39 47 41 28 45 2c 41 54 68 58 ┆ 12+DG^9GA(E,AThX
2015 2a 2b 45 4d 37 3d 46 5e 5d 42 2b 44 66 2d 5b 68 ┆ *+EM7=F^]B+Df-[h
2016 2b 44 6b 50 34 2b 44 2c 3e 2a 41 30 3e 60 37 46 ┆ +DkP4+D,>*A0>`7F
2017 28 4b 30 22 2f 67 2a 57 25 45 5a 64 70 72 42 4f ┆ (K0"/g*W%EZdprBO
2018 51 27 71 2b 44 62 55 74 45 63 2c 48 21 2b 45 56 ┆ Q'q+DbUtEc,H!+EV
2019 3a 2a 46 3c 47 5b 3d 41 4b 59 57 2b 41 52 54 5b ┆ :*F<G[=AKYW+ART[
2020 6c 45 5a 66 3d 30 45 63 60 46 42 41 66 75 23 37 ┆ lEZf=0Ec`FBAfu#7
2021 45 5a 66 34 35 46 28 4b 42 3b 2b 45 29 39 43 46 ┆ EZf45F(KB;+E)9CF
2022 60 28 6c 24 45 2c 5d 4e 2f 41 54 4d 6f 38 42 6c ┆ `(l$E,]N/ATMo8Bl
2023 62 44 2d 41 54 56 4c 28 44 2f 21 6d 21 41 30 3e ┆ bD-ATVL(D/!m!A0>
2024 63 2e 46 3c 47 25 3c 2b 45 29 43 43 2b 43 66 2c ┆ c.F<G%<+E)CC+Cf,
2025 2b 40 73 29 58 30 46 43 42 26 73 41 4b 59 48 29 ┆ +@s)X0FCB&sAKYH)
2026 46 3c 47 25 3c 2b 45 29 43 43 2b 43 6f 32 2d 45 ┆ F<G%<+E)CC+Co2-E
2027 2c 54 66 33 46 44 35 5a 32 2f 63 99 99 99 99 99 ┆ ,Tf3FD5Z2/c•••••
2028 3d 30 30 3d 30 31 3d 30 32 3d 30 33 3d 30 34 3d ┆ =00=01=02=03=04=
2029 30 35 3d 30 36 3d 30 37 3d 30 38 3d 30 39 0a 3d ┆ 05=06=07=08=09•=
2030 30 42 3d 30 43 0d 3d 30 45 3d 30 46 3d 31 30 3d ┆ 0B=0C•=0E=0F=10=
2031 31 31 3d 31 32 3d 31 33 3d 31 34 3d 31 35 3d 31 ┆ 11=12=13=14=15=1
2032 36 3d 31 37 3d 31 38 3d 31 39 3d 31 41 3d 31 42 ┆ 6=17=18=19=1A=1B
2033 3d 31 43 3d 31 44 3d 31 45 3d 31 46 20 21 22 23 ┆ =1C=1D=1E=1F !"#
2034 24 25 26 27 28 29 2a 2b 2c 2d 3d 0a 2e 2f 30 31 ┆ $%&'()*+,-=•./01
2035 ----
2036 ====
2037
2038 === Macro definition block
2039
2040 A _macro definition block_ associates a name and parameter names to
2041 a group of items.
2042
2043 A macro definition block doesn't lead to generated bytes itself: a
2044 <<macro-expansion,macro expansion>> does so.
2045
2046 A macro definition may only exist at the root level, that is, not within
2047 a <<group,group>>, a <<repetition-block,repetition block>>, a
2048 <<conditional-block,conditional block>>, or another
2049 <<macro-definition-block,macro definition block>>.
2050
2051 All macro definitions must have unique names.
2052
2053 A macro definition is:
2054
2055 . The `!macro` or `!m` opening.
2056
2057 . A valid {py3} name (the macro name).
2058
2059 . The `(` parameter name list prefix.
2060
2061 . A comma-separated list of zero or more unique parameter names,
2062 each one being a valid {py3} name.
2063
2064 . The `)` parameter name list suffix.
2065
2066 . Zero or more items except, recursively, a macro definition block.
2067
2068 . The `!end` closing.
2069
2070 ====
2071 ----
2072 !macro bake()
2073 {le} {ICITTE * 8 : 16}
2074 u16le"predict explode"
2075 !end
2076 ----
2077 ====
2078
2079 ====
2080 ----
2081 !macro nail(rep, with_extra, val)
2082 {iter = 1}
2083
2084 !repeat rep
2085 {val + iter : uleb128}
2086 {0xdeadbeef : 32}
2087 {iter = iter + 1}
2088 !end
2089
2090 !if with_extra
2091 "meow mix\0"
2092 !end
2093 !end
2094 ----
2095 ====
2096
2097 === Macro expansion
2098
2099 A _macro expansion_ expands the items of a defined
2100 <<macro-definition-block,macro>>.
2101
2102 The macro to expand must be defined _before_ the expansion.
2103
2104 The <<state,state>> before handling the first item of the chosen macro
2105 is:
2106
2107 <<cur-offset,Current offset>>::
2108 Unchanged.
2109
2110 <<cur-bo,Current byte order>>::
2111 Unchanged.
2112
2113 Variables::
2114 The only available variables initially are the macro parameters.
2115
2116 Labels::
2117 None.
2118
2119 The state after having handled the last item of the chosen macro is:
2120
2121 Current offset::
2122 The one before handling the first item of the macro plus the size
2123 of the generated data of the macro expansion.
2124 +
2125 IMPORTANT: This means <<current-offset-setting,current offset setting>>
2126 items within the expanded macro don't impact the final current offset.
2127
2128 Current byte order::
2129 The one before handling the first item of the macro.
2130
2131 Variables::
2132 The ones before handling the first item of the macro.
2133
2134 Labels::
2135 The ones before handling the first item of the macro.
2136
2137 A macro expansion is:
2138
2139 . The `m:` prefix.
2140
2141 . A valid {py3} name (the name of the macro to expand).
2142
2143 . The `(` parameter value list prefix.
2144
2145 . A comma-separated list of zero or more unique parameter values.
2146 +
2147 The number of parameter values must match the number of parameter
2148 names of the definition of the chosen macro.
2149 +
2150 A parameter value is one of:
2151 +
2152 --
2153 * A <<const-int,constant integer>>, possibly negative.
2154
2155 * A constant floating point number.
2156
2157 * The ``pass:[{]`` prefix, a valid {py3} expression of which the
2158 evaluation result type is `int` or `bool` (automatically converted to
2159 `int`), and the ``pass:[}]`` suffix.
2160 +
2161 For a macro expansion at some source location{nbsp}__**L**__, this
2162 expression may contain:
2163
2164 ** The name of any <<label,label>> defined before{nbsp}__**L**__
2165 which isn't within a nested group.
2166 ** The name of any <<variable-assignment,variable>> known
2167 at{nbsp}__**L**__.
2168
2169 +
2170 The value of the special name `ICITTE` (`int` type) in this expression
2171 is the <<cur-offset,current offset>> (before handling the items of the
2172 chosen macro).
2173
2174 * A valid {py3} name.
2175 +
2176 For the name `__NAME__`, this is equivalent to the
2177 `pass:[{]__NAME__pass:[}]` form above.
2178 --
2179
2180 . The `)` parameter value list suffix.
2181
2182 ====
2183 Input:
2184
2185 ----
2186 !macro bake()
2187 {le} {ICITTE * 8 : 16}
2188 u16le"predict explode"
2189 !end
2190
2191 "hello [" m:bake() "] world"
2192
2193 m:bake() * 5
2194 ----
2195
2196 Output:
2197
2198 ----
2199 68 65 6c 6c 6f 20 5b 38 00 70 00 72 00 65 00 64 ┆ hello [8•p•r•e•d
2200 00 69 00 63 00 74 00 20 00 65 00 78 00 70 00 6c ┆ •i•c•t• •e•x•p•l
2201 00 6f 00 64 00 65 00 5d 20 77 6f 72 6c 64 70 01 ┆ •o•d•e•] worldp•
2202 70 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
2203 65 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 02 ┆ e•x•p•l•o•d•e•p•
2204 70 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
2205 65 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 03 ┆ e•x•p•l•o•d•e•p•
2206 70 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
2207 65 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 04 ┆ e•x•p•l•o•d•e•p•
2208 70 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
2209 65 00 78 00 70 00 6c 00 6f 00 64 00 65 00 70 05 ┆ e•x•p•l•o•d•e•p•
2210 70 00 72 00 65 00 64 00 69 00 63 00 74 00 20 00 ┆ p•r•e•d•i•c•t• •
2211 65 00 78 00 70 00 6c 00 6f 00 64 00 65 00 ┆ e•x•p•l•o•d•e•
2212 ----
2213 ====
2214
2215 ====
2216 Input:
2217
2218 ----
2219 !macro A(val, is_be)
2220 {le}
2221
2222 !if is_be
2223 {be}
2224 !end
2225
2226 {val : 16}
2227 !end
2228
2229 !macro B(rep, is_be)
2230 {iter = 1}
2231
2232 !repeat rep
2233 m:A({iter * 3}, is_be)
2234 {iter = iter + 1}
2235 !end
2236 !end
2237
2238 m:B(5, 1)
2239 m:B(3, 0)
2240 ----
2241
2242 Output:
2243
2244 ----
2245 00 03 00 06 00 09 00 0c 00 0f 03 00 06 00 09 00
2246 ----
2247 ====
2248
2249 ====
2250 Input:
2251
2252 ----
2253 !macro flt32be(val) {be} {val : 32} !end
2254
2255 "CHEETOS"
2256 m:flt32be(-42.17)
2257 m:flt32be(56.23e-4)
2258 ----
2259
2260 Output:
2261
2262 ----
2263 43 48 45 45 54 4f 53 c2 28 ae 14 3b b8 41 25 ┆ CHEETOS•(••;•A%
2264 ----
2265 ====
2266
2267 === Post-item repetition
2268
2269 A _post-item repetition_ represents the bytes of an item repeated a
2270 given number of times.
2271
2272 A post-item repetition is:
2273
2274 . One of those items:
2275
2276 ** A <<byte-constant,byte constant>>.
2277 ** A <<literal-string,literal string>>.
2278 ** A <<fixed-length-number,fixed-length number>>.
2279 ** An <<leb128-integer,LEB128 integer>>.
2280 ** A <<string,string>>.
2281 ** A <<macro-expansion,macro-expansion>>.
2282 ** A <<transformation-block,transformation block>>.
2283 ** A <<group,group>>.
2284
2285 . The ``pass:[*]`` character.
2286
2287 . One of:
2288
2289 ** A positive integer (hexadecimal starting with `0x` or `0X` accepted)
2290 which is the number of times to repeat the previous item.
2291
2292 ** The ``pass:[{]`` prefix, a valid {py3} expression of which the
2293 evaluation result type is `int` or `bool` (automatically converted to
2294 `int`), and the ``pass:[}]`` suffix.
2295 +
2296 For a post-item repetition at some source location{nbsp}__**L**__, this
2297 expression may contain:
2298 +
2299 --
2300 * The name of any <<label,label>> defined before{nbsp}__**L**__
2301 which isn't within a nested group and
2302 which isn't part of the repeated item.
2303 * The name of any <<variable-assignment,variable>> known
2304 at{nbsp}__**L**__, which isn't part of its repeated item, and which
2305 doesn't.
2306 --
2307 +
2308 The value of the special name `ICITTE` (`int` type) in this expression
2309 is the <<cur-offset,current offset>> (before handling the items to
2310 repeat).
2311
2312 ** A valid {py3} name.
2313 +
2314 For the name `__NAME__`, this is equivalent to the
2315 `pass:[{]__NAME__pass:[}]` form above.
2316
2317 You may also use a <<repetition-block,repetition block>>. The form
2318 ``__ITEM__{nbsp}pass:[*]{nbsp}__X__`` is equivalent to
2319 ``!repeat{nbsp}__X__{nbsp}__ITEM__{nbsp}!end``.
2320
2321 ====
2322 Input:
2323
2324 ----
2325 {end - ICITTE - 1 : 8} * 0x100 <end>
2326 ----
2327
2328 Output:
2329
2330 ----
2331 ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ┆ ••••••••••••••••
2332 ef ee ed ec eb ea e9 e8 e7 e6 e5 e4 e3 e2 e1 e0 ┆ ••••••••••••••••
2333 df de dd dc db da d9 d8 d7 d6 d5 d4 d3 d2 d1 d0 ┆ ••••••••••••••••
2334 cf ce cd cc cb ca c9 c8 c7 c6 c5 c4 c3 c2 c1 c0 ┆ ••••••••••••••••
2335 bf be bd bc bb ba b9 b8 b7 b6 b5 b4 b3 b2 b1 b0 ┆ ••••••••••••••••
2336 af ae ad ac ab aa a9 a8 a7 a6 a5 a4 a3 a2 a1 a0 ┆ ••••••••••••••••
2337 9f 9e 9d 9c 9b 9a 99 98 97 96 95 94 93 92 91 90 ┆ ••••••••••••••••
2338 8f 8e 8d 8c 8b 8a 89 88 87 86 85 84 83 82 81 80 ┆ ••••••••••••••••
2339 7f 7e 7d 7c 7b 7a 79 78 77 76 75 74 73 72 71 70 ┆ •~}|{zyxwvutsrqp
2340 6f 6e 6d 6c 6b 6a 69 68 67 66 65 64 63 62 61 60 ┆ onmlkjihgfedcba`
2341 5f 5e 5d 5c 5b 5a 59 58 57 56 55 54 53 52 51 50 ┆ _^]\[ZYXWVUTSRQP
2342 4f 4e 4d 4c 4b 4a 49 48 47 46 45 44 43 42 41 40 ┆ ONMLKJIHGFEDCBA@
2343 3f 3e 3d 3c 3b 3a 39 38 37 36 35 34 33 32 31 30 ┆ ?>=<;:9876543210
2344 2f 2e 2d 2c 2b 2a 29 28 27 26 25 24 23 22 21 20 ┆ /.-,+*)('&%$#"!
2345 1f 1e 1d 1c 1b 1a 19 18 17 16 15 14 13 12 11 10 ┆ ••••••••••••••••
2346 0f 0e 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01 00 ┆ ••••••••••••••••
2347 ----
2348 ====
2349
2350 ====
2351 Input:
2352
2353 ----
2354 {times = 1}
2355 aa bb cc dd
2356 (
2357 <here>
2358 (ee ff) * {here + 1}
2359 11 22 33 * {times}
2360 {times = times + 1}
2361 ) * 3
2362 "coucou!"
2363 ----
2364
2365 Output:
2366
2367 ----
2368 aa bb cc dd ee ff ee ff ee ff ee ff ee ff 11 22 ┆ •••••••••••••••"
2369 33 ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ 3•••••••••••••••
2370 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
2371 ff ee ff ee ff 11 22 33 33 ee ff ee ff ee ff ee ┆ ••••••"33•••••••
2372 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
2373 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
2374 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
2375 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
2376 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
2377 ff ee ff ee ff ee ff ee ff ee ff ee ff ee ff ee ┆ ••••••••••••••••
2378 ff ee ff ee ff ee ff ee ff ee ff ee ff 11 22 33 ┆ ••••••••••••••"3
2379 33 33 63 6f 75 63 6f 75 21 ┆ 33coucou!
2380 ----
2381 ====
2382
2383 == Command-line tool
2384
2385 If you <<install-normand,installed>> the `normand` package, then you
2386 can use the `normand` command-line tool:
2387
2388 ----
2389 $ normand <<< '"ma gang de malades"' | hexdump -C
2390 ----
2391
2392 ----
2393 00000000 6d 61 20 67 61 6e 67 20 64 65 20 6d 61 6c 61 64 |ma gang de malad|
2394 00000010 65 73 |es|
2395 ----
2396
2397 If you copy the `normand.py` module to your own project, then you can
2398 run the module itself:
2399
2400 ----
2401 $ python3 -m normand <<< '"ma gang de malades"' | hexdump -C
2402 ----
2403
2404 ----
2405 00000000 6d 61 20 67 61 6e 67 20 64 65 20 6d 61 6c 61 64 |ma gang de malad|
2406 00000010 65 73 |es|
2407 ----
2408
2409 Without a path argument, the `normand` tool reads from the standard
2410 input.
2411
2412 The `normand` tool prints the generated binary data to the standard
2413 output.
2414
2415 Various options control the initial <<state,state>> of the processor:
2416 use the `--help` option to learn more.
2417
2418 == {py3} API
2419
2420 The whole `normand` package/module public API is:
2421
2422 [source,python]
2423 ----
2424 # Byte order.
2425 class ByteOrder(enum.Enum):
2426 # Big endian.
2427 BE = ...
2428
2429 # Little endian.
2430 LE = ...
2431
2432
2433 # Text location.
2434 class TextLocation:
2435 # Line number.
2436 @property
2437 def line_no(self) -> int:
2438 ...
2439
2440 # Column number.
2441 @property
2442 def col_no(self) -> int:
2443 ...
2444
2445
2446 # Parsing error message.
2447 class ParseErrorMessage:
2448 # Message text.
2449 @property
2450 def text(self):
2451 ...
2452
2453 # Source text location.
2454 @property
2455 def text_location(self):
2456 ...
2457
2458
2459 # Parsing error.
2460 class ParseError(RuntimeError):
2461 # Parsing error messages.
2462 #
2463 # The first message is the most _specific_ one.
2464 @property
2465 def messages(self):
2466 ...
2467
2468
2469 # Variables dictionary type (for type hints).
2470 VariablesT = typing.Dict[str, typing.Union[int, float]]
2471
2472
2473 # Labels dictionary type (for type hints).
2474 LabelsT = typing.Dict[str, int]
2475
2476
2477 # Parsing result.
2478 class ParseResult:
2479 # Generated data.
2480 @property
2481 def data(self) -> bytearray:
2482 ...
2483
2484 # Updated variable values.
2485 @property
2486 def variables(self) -> SymbolsT:
2487 ...
2488
2489 # Updated main group label values.
2490 @property
2491 def labels(self) -> SymbolsT:
2492 ...
2493
2494 # Final offset.
2495 @property
2496 def offset(self) -> int:
2497 ...
2498
2499 # Final byte order.
2500 @property
2501 def byte_order(self) -> typing.Optional[ByteOrder]:
2502 ...
2503
2504
2505 # Parses the `normand` input using the initial state defined by
2506 # `init_variables`, `init_labels`, `init_offset`, and `init_byte_order`,
2507 # and returns the corresponding parsing result.
2508 def parse(normand: str,
2509 init_variables: typing.Optional[SymbolsT] = None,
2510 init_labels: typing.Optional[SymbolsT] = None,
2511 init_offset: int = 0,
2512 init_byte_order: typing.Optional[ByteOrder] = None) -> ParseResult:
2513 ...
2514 ----
2515
2516 The `normand` parameter is the actual <<learn-normand,Normand input>>
2517 while the other parameters control the initial <<state,state>>.
2518
2519 The `parse()` function raises a `ParseError` instance should it fail to
2520 parse the `normand` string for any reason.
2521
2522 == Development
2523
2524 Normand is a https://python-poetry.org/[Poetry] project.
2525
2526 To develop it, install it through Poetry and enter the virtual
2527 environment:
2528
2529 ----
2530 $ poetry install
2531 $ poetry shell
2532 $ normand <<< '"lol" * 10 0a'
2533 ----
2534
2535 `normand.py` is processed by:
2536
2537 * https://microsoft.github.io/pyright/[Pyright]
2538 * https://github.com/psf/black[Black]
2539 * https://pycqa.github.io/isort/[isort]
2540
2541 === Testing
2542
2543 Use https://docs.pytest.org/[pytest] to test Normand once the package is
2544 part of your virtual environment, for example:
2545
2546 ----
2547 $ poetry install
2548 $ poetry run pip3 install pytest
2549 $ poetry run pytest
2550 ----
2551
2552 The `pytest` project is currently not a development dependency in
2553 `pyproject.toml` due to backward compatibiliy issues with
2554 Python{nbsp}3.4.
2555
2556 In the `tests` directory, each `*.nt` file is a test. The file name
2557 prefix indicates what it's meant to test:
2558
2559 `pass-`::
2560 Everything above the `---` line is the valid Normand input
2561 to test.
2562 +
2563 Everything below the `---` line is the expected data
2564 (whitespace-separated hexadecimal bytes).
2565
2566 `fail-`::
2567 Everything above the `---` line is the invalid Normand input
2568 to test.
2569 +
2570 Everything below the `---` line is the expected error message having
2571 this form:
2572 +
2573 ----
2574 LINE:COL - MESSAGE
2575 ----
2576
2577 === Contributing
2578
2579 Normand uses https://review.lttng.org/admin/repos/normand,general[Gerrit]
2580 for code review.
2581
2582 To report a bug, https://github.com/efficios/normand/issues/new[create a
2583 GitHub issue].
This page took 0.09141 seconds and 4 git commands to generate.