You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ARCHITECTURE.org
+22
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,28 @@ DSV data in a terminal
18
18
All the GNU Guile modules are in =modules= directory. =dsv= program source
19
19
code can be found in =utils= directory.
20
20
21
+
*** Main Module
22
+
For the common tasks there's a =(dsv)= module that provides basic procedures
23
+
to read/write DSV data.
24
+
25
+
*** Finite State Machine (FSM) Modules
26
+
All the files required to build and run the parser FSM are placed in =(dsv
27
+
fsm)= modules. The FSM code is compiled from [[https://plantuml.com/][PlantUML]] diagrams by [[https://github.com/artyom-poptsov/guile-smc][Guile-SMC]].
28
+
29
+
*** Command Line Interface Modules
30
+
The code required for the =dsv= tool is in the =(dsv cli)= modules.
31
+
32
+
*** Parser Modules
33
+
The parser for each format is in its own module:
34
+
- =(dsv unix)=: DSV (Unix) parser
35
+
- =(dsv rfc4180)=: RFC 4180 parser.
36
+
37
+
*** DSV Tables
38
+
=(dsv table)= contains the code to handle DSV tables.
39
+
40
+
=(dsv table-preset)= contains the code to draw pseudo-graphic tables in the
41
+
terminal.
42
+
21
43
*** Tests
22
44
Tests are in =tests= directory. They are written using SRFI-61.
0 commit comments