-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaspida.g4
173 lines (143 loc) · 4.57 KB
/
aspida.g4
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
grammar Aspida;
options
{
language = Go;
}
/*
Aspida Full grammar
@author Antonio Paya Gonzalez
*/
/*
===================================== PARSER RULES =====================================
*/
program : main hosts tasks variables?;
// =================================================== Blocks
main : MAIN_KW ':' '{' main_content '}';
hosts : HOSTS_KW ':' STRING NS;
tasks : TASKS_KW ':' '{' tasks_content '}';
variables : VARS_KW ':' '{' vars_content '}';
// ======================= MAIN Block
main_content : main_prop (main_prop)*
;
main_prop : name NS #nameMain
| connection NS #connectionMain
| description NS #descriptionMain
;
name : 'name' ':' value
| 'NAME' ':' value
;
connection : 'connection' ':' connection_type
| 'CONNECTION' ':' connection_type
;
connection_type : LOCAL_KW #connectionLocal
| SSH_KW #connectionSSH
;
description : 'description' ':' value
| 'DESCRIPTION' ':' value
;
// ======================= TASKS Block
tasks_content : tasks_prop (tasks_prop)* #tContent
| ifStat (elifStat)* elseStat #ifStatement
;
tasks_prop : sections #tSections
| points #tPoints
| controls #tControls
| exclusions #tExclusions
| tags #tTags
;
sections : 'sections' ':' str_array NS
| 'SECTIONS' ':' str_array NS
;
points : 'points' ':' str_array NS
| 'POINTS' ':' str_array NS
;
controls : 'controls' ':' str_array NS
| 'CONTROLS' ':' str_array NS
;
exclusions : 'exclusions' ':' str_array NS
| 'EXCLUSIONS' ':' str_array NS
;
tags : 'tags' ':' str_array NS
| 'TAGS' ':' str_array NS
;
// =================================================== Statements
ifStat : IF comparison '{' tasks_content '}'
;
elifStat : ELIF comparison '{' tasks_content '}'
;
elseStat : ELSE '{' tasks_content '}'
;
comparison : value comp_op value*
;
// ======================= VARS Block
vars_content : vars_prop (vars_prop)*
;
vars_prop : STRING ':' value NS #varDef
| STRING ':' '{' vars_content '}' NS #varObjDef
;
// =================================================== Values
comp_op: '<'|'>'|'=='|'>='|'<='|'!=';
value
: STRING #StringVal
| NUMBER #NumberVal
| 'true' #TrueVal
| 'false' #FalseVal
| 'null' #NullVal
| array #ArrayVal
;
str_array
: '[' STRING (',' STRING)* ']'
| '[' ']'
;
array
: '[' value (',' value)* ']'
| '[' ']'
;
// =================================================== Skippables
COMMENT : '#' ~('\r' | '\n')* -> skip ;
WHITESPACE : (' ' | '\t') -> skip ;
NEWLINE : ('\r'? '\n' | '\r')+ -> skip;
/*
===================================== LEXER RULES =====================================
*/
// =================================================== Fragments
fragment ESC
: '\\' (["\\/bfnrt] | UNICODE)
;
fragment UNICODE
: 'u' HEX HEX HEX HEX
;
fragment HEX
: [0-9a-fA-F]
;
fragment SAFECODEPOINT
: ~ ["\\\u0000-\u001F]
;
fragment INT
: '0' | [1-9] [0-9]*
;
// no leading zeros
fragment EXP
: [Ee] [+\-]? INT
;
STRING
: '"' (ESC | SAFECODEPOINT)* '"'
;
NUMBER
: '-'? INT ('.' [0-9] +)? EXP?
;
// Keywords
NS : ';'; /*New Sentence*/
MAIN_KW : 'MAIN';
HOSTS_KW : 'HOST';
TASKS_KW : 'TASKS';
VARS_KW : 'VARS';
LOCAL_KW : 'LOCAL' | 'local';
SSH_KW : 'SSH' | 'ssh';
IF : 'IF';
ELIF : 'ELIF';
ELSE : 'ELSE';
OR : 'OR';
AND : 'AND';
NOT : 'NOT';
IS : 'IS';