forked from moliad/utils-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils-parse.r
159 lines (117 loc) · 3.85 KB
/
utils-parse.r
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
REBOL [
; -- Core Header attributes --
title: "Parsing tools and utilities"
file: %utils-parse.r
version: 1.0.0
date: 2013-9-12
author: "Maxim Olivier-Adlhoch"
purpose: "Basic rules and parsing helpers."
web: http://www.revault.org/modules/utils-parse.rmrk
source-encoding: "Windows-1252"
note: {slim Library Manager is Required to use this module.}
; -- slim - Library Manager --
slim-name: 'utils-parse
slim-version: 1.2.1
slim-prefix: none
slim-update: http://www.revault.org/downloads/modules/utils-parse.r
; -- Licensing details --
copyright: "Copyright © 2013 Maxim Olivier-Adlhoch"
license-type: "Apache License v2.0"
license: {Copyright © 2013 Maxim Olivier-Adlhoch
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.}
;- / history
history: {
v0.0.1 - 2013-01-07
-creation of file.
v1.0.0 - 2013-09-12
-license changed to Apache v2
}
;- \ history
;- / documentation
documentation: ""
;- \ documentation
]
;--------------------------------------
; unit testing setup
;--------------------------------------
;
; test-enter-slim 'utils-parse
;
;--------------------------------------
slim/register [
;- generic core parse rules
core-rules: [
=digit=: charset "0123456789"
=alpha=: charset [#"a" - #"z" #"A" - #"Z"]
=digits=: [some =digit=]
=newline=: [ crlf | newline ]
=whitespace=: charset " ^-^/"
=whitespaces=: [any =whitespace=] ; optional space (often after newline or between known delimiter)
=spacing=: [some =whitespace=] ; required space
=colon=: charset ":"
=api-lbl-char=: union (union =alpha= =digit=) charset "-_"
=api-lbl=: [=alpha= any =api-lbl-char=]
]
;------------------------------------------------------------------------------
;
;- parse-flow control
;
;------------------------------------------------------------------------------
!fail-rule!: [to end skip]
?head?:
?continue?: none ; yes by default... use CONTINUE-IF() function
;--------------------------
;- continue-if()
;--------------------------
continue-if: funcl [
condition [logic! none!]
/extern ?continue?
][
either condition [
?continue?: none
][
?continue?: !fail-rule!
]
]
;- applied rules
.line-count: 0
=line-counter=: [
; (.line-count: 0) we do not reset by default. !!!!
any [
[ crlf | newline ] (.line-count: .line-count + 1)
| skip
]
]
;--------------------------
;- bind-rule()
;--------------------------
; purpose: given a block of code, bind any of our rules within it.
;
; inputs: a block of parse rules to bind our rules to.
;
; returns: the input rules, but bound.
;--------------------------
bind-rule: funcl [
rule [block!]
][
vin "bind-rules()"
bind rule core-rules
vout
rule
]
]
;------------------------------------
; We are done testing this library.
;------------------------------------
;
; test-exit-slim
;
;------------------------------------