aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorM.Gergő2020-05-17 02:39:14 +0200
committerM.Gergő2020-05-17 02:39:14 +0200
commit5fca829c759162af855a85df1d6abd2f8d36ec46 (patch)
tree96b7ce4585bd1b2b7c1262660a64159aeeb562e0
parent6f25fcaf89b26bd6c6861b62ecc950bb36eb887a (diff)
downloadlightconfini-5fca829c759162af855a85df1d6abd2f8d36ec46.tar.gz
lightconfini-5fca829c759162af855a85df1d6abd2f8d36ec46.zip
README
-rw-r--r--README.md74
1 files changed, 74 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7441d0f..c406466 100644
--- a/README.md
+++ b/README.md
@@ -124,3 +124,77 @@ ip = "127.0.0.1" ;OK
```
+
+## Engine is using a Finite State Machine
+
+(markdown graph)
+
+```mermaid
+graph LR
+
+A[Start] -- \n,\r --> ST[Stop]
+A -- comment_sign --> C[Comment]
+A -- any_space --> SP[begin_space]
+A -- utf8_BOM --> A
+A -- square_bracket --> S[section]
+A -- alpha_num --> P[label]
+A -- other --> E[ERROR]
+
+C -- any_character --> C
+C -- \n, \r --> ST
+
+SP -- \n, \r --> ST
+SP -- comment_sign --> C
+SP -- square_bracket --> S
+SP -- alpha_num --> P
+SP -- other --> E
+
+S -- square_bracket --> SE[sect_end]
+S -- alpha_num --> S
+S -- other --> E
+
+SE -- \n, \r --> ST
+SE -- any_space --> SE
+SE -- comment_sign --> C
+SE -- other --> E
+
+P -- equal_sign --> VP[value_pre]
+P -- alpha_num --> P
+P -- any_space --> P2[label_end]
+P -- other --> E
+
+P2 -- equal_sign --> VP
+P2 -- any_space --> P2
+P2 -- other --> E
+
+VP -- \n, \r --> ST
+VP -- comment_sign --> C
+VP -- double_quotation_mark --> DQ[quoted_val]
+VP -- any_space --> VP
+VP -- alpha_num --> VC[value]
+VP -- other --> E
+
+VC -- \n, \r --> ST
+VC -- comment_sign --> C
+VC -- alpha_num --> VC
+VC -- any_space --> VV[value_end]
+VC -- other --> E
+
+BS -- prev==quoted_val --> DQ
+
+VV -- \n \r --> ST
+VV -- comment_sign --> C
+VV -- any_space --> VV
+VV -- other --> E
+
+DQ -- double_quotation_mark --> VV
+DQ -- backslash --> BS
+DQ -- \r \n \0 --> E
+DQ -- any_other --> DQ
+
+E -- any_other --> ST
+
+ST -- \n \r \0 prev==ERROR --> ST
+ST -- other --> E
+
+```