-
Notifications
You must be signed in to change notification settings - Fork 1
/
MOS.g
408 lines (327 loc) · 8.1 KB
/
MOS.g
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
grammar MOS ;
options {
language = Php;
backtrack=true;
}
import Tokens;
description
: conjunction (OR_LABEL conjunction)*
;
conjunction
: primary (AND_LABEL primary)*
| classIRI THAT_LABEL primary (AND_LABEL primary)*
;
primary
: (NOT_LABEL)? (restriction | atomic)
;
iri
: FULL_IRI
| ABBREVIATED_IRI
| SIMPLE_IRI
;
objectPropertyExpression
: objectPropertyIRI
| inverseObjectProperty
;
restriction
: objectPropertyExpression SOME_LABEL primary
| objectPropertyExpression ONLY_LABEL primary
| objectPropertyExpression VALUE_LABEL individual
| objectPropertyExpression SELF_LABEL
| objectPropertyExpression MIN_LABEL nonNegativeInteger (primary)?
| objectPropertyExpression MAX_LABEL nonNegativeInteger (primary)?
| objectPropertyExpression EXACTLY_LABEL nonNegativeInteger (primary)?
| dataPropertyExpression SOME_LABEL dataPrimary
| dataPropertyExpression ONLY_LABEL dataPrimary
| dataPropertyExpression VALUE_LABEL literal
| dataPropertyExpression MIN_LABEL nonNegativeInteger (dataPrimary)?
| dataPropertyExpression MAX_LABEL nonNegativeInteger (dataPrimary)?
| dataPropertyExpression EXACTLY_LABEL nonNegativeInteger (dataPrimary)?
;
atomic
: classIRI
| OPEN_CURLY_BRACE individualList CLOSE_CURLY_BRACE
| OPEN_BRACE description CLOSE_BRACE
;
classIRI
: iri
;
individualList
: individual (COMMA individual)*
;
individual
: individualIRI
| NODE_ID
;
nonNegativeInteger
: DIGITS
;
dataPrimary
: NOT_LABEL? dataAtomic
;
dataAtomic
: dataType
| OPEN_CURLY_BRACE literalList CLOSE_CURLY_BRACE
| dataTypeRestriction
| OPEN_BRACE dataRange CLOSE_BRACE
;
literalList
: literal (COMMA literal)*
;
dataType
: datatypeIRI
| INTEGER_LABEL
| DECIMAL_LABEL
| FLOAT_LABEL
| STRING_LABEL
;
literal
: typedLiteral
| stringLiteralNoLanguage
| stringLiteralWithLanguage
| integerLiteral
| decimalLiteral
| floatingPointLiteral
;
typedLiteral
: lexicalValue REFERENCE dataType
;
stringLiteralNoLanguage
: QUOTED_STRING
;
stringLiteralWithLanguage
: QUOTED_STRING LANGUAGE_TAG
;
lexicalValue
: QUOTED_STRING
;
dataPropertyExpression
: dataPropertyIRI
;
dataTypeRestriction
: dataType OPEN_SQUARE_BRACE facet restrictionValue (COMMA facet restrictionValue)* CLOSE_SQUARE_BRACE
;
facet
: LENGTH_LABEL
| MIN_LENGTH_LABEL
| MAX_LENGTH_LABEL
| PATTERN_LABEL
| LANG_PATTERN_LABEL
| LESS_EQUAL
| LESS
| GREATER_EQUAL
| GREATER
;
restrictionValue
: literal
;
inverseObjectProperty
: INVERSE_LABEL objectPropertyIRI
;
decimalLiteral
: (PLUS | MINUS)? DIGITS DOT DIGITS
;
integerLiteral
: (PLUS | MINUS)? DIGITS
;
floatingPointLiteral
: (PLUS | MINUS)? ((DIGITS (DOT DIGITS)? EXPONENT?) | DOT DIGITS EXPONENT?) ('f' | 'F')
;
dataRange
: dataConjunction (OR_LABEL dataConjunction)*
;
dataConjunction
: dataPrimary (AND_LABEL dataPrimary)*
;
annotationAnnotatedList
: (annotations)? annotation (COMMA (annotations)? annotation)*
;
annotation
: annotationPropertyIRI annotationTarget
;
annotationTarget
: NODE_ID
| iri
| literal
;
annotations
: ANNOTATIONS_LABEL annotationAnnotatedList
;
descriptionAnnotatedList
: annotations? description (COMMA descriptionAnnotatedList)*
;
description2List
: description COMMA descriptionList
;
descriptionList
: description (COMMA description)*
;
classFrame
: CLASS_LABEL classIRI
( ANNOTATIONS_LABEL annotationAnnotatedList
| SUBCLASS_OF_LABEL descriptionAnnotatedList
| EQUIVALENT_TO_LABEL descriptionAnnotatedList
| DISJOINT_WITH_LABEL descriptionAnnotatedList
| DISJOINT_UNION_OF_LABEL annotations description2List
)*
//TODO owl2 primer error?
( HAS_KEY_LABEL annotations?
(objectPropertyExpression | dataPropertyExpression)+)?
;
objectPropertyFrame
: OBJECT_PROPERTY_LABEL objectPropertyIRI
( ANNOTATIONS_LABEL annotationAnnotatedList
| RANGE_LABEL descriptionAnnotatedList
| CHARACTERISTICS_LABEL objectPropertyCharacteristicAnnotatedList
| SUB_PROPERTY_OF_LABEL objectPropertyExpressionAnnotatedList
| EQUIVALENT_TO_LABEL objectPropertyExpressionAnnotatedList
| DISJOINT_WITH_LABEL objectPropertyExpressionAnnotatedList
| INVERSE_OF_LABEL objectPropertyExpressionAnnotatedList
| SUB_PROPERTY_CHAIN_LABEL annotations objectPropertyExpression (O_LABEL objectPropertyExpression)+
)*
;
objectPropertyCharacteristicAnnotatedList
: annotations? OBJECT_PROPERTY_CHARACTERISTIC (COMMA objectPropertyCharacteristicAnnotatedList)*
;
objectPropertyExpressionAnnotatedList
: annotations? objectPropertyExpression (COMMA objectPropertyExpressionAnnotatedList)*
;
dataPropertyFrame
: DATA_PROPERTY_LABEL dataPropertyIRI
( ANNOTATIONS_LABEL annotationAnnotatedList
| DOMAIN_LABEL descriptionAnnotatedList
| RANGE_LABEL dataRangeAnnotatedList
| CHARACTERISTICS_LABEL annotations FUNCTIONAL_LABEL
| SUB_PROPERTY_OF_LABEL dataPropertyExpressionAnnotatedList
| EQUIVALENT_TO_LABEL dataPropertyExpressionAnnotatedList
| DISJOINT_WITH_LABEL dataPropertyExpressionAnnotatedList
)*
;
dataRangeAnnotatedList
: annotations? dataRange (COMMA dataRangeAnnotatedList)*
;
dataPropertyExpressionAnnotatedList
: annotations? dataPropertyExpression (COMMA dataPropertyExpressionAnnotatedList)*
;
annotationPropertyFrame
: ANNOTATION_PROPERTY_LABEL annotationPropertyIRI
( ANNOTATIONS_LABEL annotationAnnotatedList )*
| DOMAIN_LABEL iriAnnotatedList
| RANGE_LABEL iriAnnotatedList
| SUB_PROPERTY_OF_LABEL annotationPropertyIRIAnnotatedList
;
iriAnnotatedList
: annotations? iri (COMMA iriAnnotatedList)*
;
annotationPropertyIRI
: iri
;
annotationPropertyIRIAnnotatedList
: annotations? annotationPropertyIRI (COMMA annotationPropertyIRIAnnotatedList)*
;
individualFrame
: INDIVIDUAL_LABEL individual
( ANNOTATIONS_LABEL annotationAnnotatedList
| TYPES_LABEL descriptionAnnotatedList
| FACTS_LABEL factAnnotatedList
| SAME_AS_LABEL individualAnnotatedList
| DIFFERENET_FROM_LABEL individualAnnotatedList
)*
;
factAnnotatedList
: annotations? fact (COMMA factAnnotatedList)*
;
individualAnnotatedList
: annotations? individual (COMMA individualAnnotatedList)*
;
fact : NOT_LABEL? (objectPropertyFact | dataPropertyFact);
objectPropertyFact
: objectPropertyIRI individual
;
dataPropertyFact
: dataPropertyIRI literal
;
datatypeFrame
: DATATYPE_LABEL dataType
(ANNOTATIONS_LABEL annotationAnnotatedList)*
(EQUIVALENT_TO_LABEL annotations dataRange)?
(ANNOTATIONS_LABEL annotationAnnotatedList)*
;
misc : EQUIVALENT_CLASSES_LABEL annotations description2List
| DISJOINT_CLASSES_LABEL annotations description2List
| EQUIVALENT_PROPERTIES_LABEL annotations objectProperty2List
| DISJOINT_PROPERTIES_LABEL annotations objectProperty2List
| EQUIVALENT_PROPERTIES_LABEL annotations dataProperty2List
| DISJOINT_PROPERTIES_LABEL annotations dataProperty2List
| SAME_INDIVIDUAL_LABEL annotations individual2List
| DIFFERENT_INDIVIDUALS_LABEL annotations individual2List
;
individual2List
: individual COMMA individualList
;
dataProperty2List
: dataProperty COMMA dataPropertyList
;
dataPropertyList
: dataProperty (COMMA dataProperty)*
;
objectProperty2List
: objectProperty COMMA objectPropertyList
;
objectPropertyList
: objectProperty (COMMA objectProperty)*
;
objectProperty
: objectPropertyIRI
;
dataProperty
: dataPropertyIRI
;
dataPropertyIRI
: iri
;
datatypeIRI
: iri
;
objectPropertyIRI
: iri
;
frame
: datatypeFrame
| classFrame
| objectPropertyFrame
| dataPropertyFrame
| annotationPropertyFrame
| individualFrame
| misc
;
entity
: DATATYPE_LABEL OPEN_BRACE dataType CLOSE_BRACE
| CLASS_LABEL OPEN_BRACE classIRI CLOSE_BRACE
| OBJECT_PROPERTY_LABEL OPEN_BRACE objectPropertyIRI CLOSE_BRACE
| DATA_PROPERTY_LABEL OPEN_BRACE datatypePropertyIRI CLOSE_BRACE
| ANNOTATION_PROPERTY_LABEL OPEN_BRACE annotationPropertyIRI CLOSE_BRACE
| NAMED_INDIVIDUAL_LABEL OPEN_BRACE individualIRI CLOSE_BRACE
;
individualIRI
: iri
;
datatypePropertyIRI
: iri
;
ontologyDocument
: prefixDeclaration* ontology
;
prefixDeclaration
: PREFIX_LABEL PREFIX_NAME FULL_IRI
;
ontology
: ONTOLOGY_LABEL (ontologyIri (versionIri)?)? imports* annotations* frame*
;
ontologyIri
: iri
;
versionIri
: iri
;
imports : IMPORT_LABEL iri;