-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathKeywords.hs
371 lines (271 loc) · 6.99 KB
/
Keywords.hs
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
{- |
Module : ./OWL2/Keywords.hs
Description : OWL reserved keywords
and printing
Copyright : (c) Christian Maeder DFKI Bremen 2008, Felix Mance, 2011
License : GPLv2 or higher, see LICENSE.txt
Maintainer : Christian.Maeder@dfki.de
Stability : provisional
Portability : portable
String constants for keywords to be used for parsing and printing
plus owl, xsd, rdf and rdfs reserved keywords. All identifiers are mixed case
-}
module OWL2.Keywords where
import Common.Keywords
keywords :: [String]
keywords =
[ digitsS
, exactlyS
, fractionS
, functionalS
, hasS
, inverseS
, lengthS
, maxLengthS
, maxS
, minLengthS
, minS
, oS
, onlyS
, onlysomeS
, orS
, patternS
, selfS
, someS
, thatS
, valueS
, xorS
] ++ datatypeKeys
base64BinaryS :: String
base64BinaryS = "base64Binary"
booleanS :: String
booleanS = "boolean"
byteS :: String
byteS = "byte"
dATAS :: String
dATAS = "DATA"
decimalS :: String
decimalS = "decimal"
doubleS :: String
doubleS = "double"
digitsS :: String
digitsS = "totalDigits"
exactlyS :: String
exactlyS = "exactly"
floatS :: String
floatS = "float"
fractionS :: String
fractionS = "fractionDigits"
functionalS :: String
functionalS = "Functional"
inverseFunctionalS :: String
inverseFunctionalS = "InverseFunctional"
reflexiveS :: String
reflexiveS = "Reflexive"
irreflexiveS :: String
irreflexiveS = "Irreflexive"
symmetricS :: String
symmetricS = "Symmetric"
asymmetricS :: String
asymmetricS = "Asymmetric"
antisymmetricS :: String
antisymmetricS = "Antisymmetric"
transitiveS :: String
transitiveS = "Transitive"
hasS :: String
hasS = "has"
sameAsS :: String
sameAsS = "SameAs"
differentFromS :: String
differentFromS = "DifferentFrom"
hexBinaryS :: String
hexBinaryS = "hexBinary"
intS :: String
intS = "int"
integerS :: String
integerS = "integer"
inverseS :: String
inverseS = "inverse"
langRangeS :: String
langRangeS = "langRange"
lengthS :: String
lengthS = "length"
longS :: String
longS = "long"
maxLengthS :: String
maxLengthS = "maxLength"
maxS :: String
maxS = "max"
minLengthS :: String
minLengthS = "minLength"
minS :: String
minS = "min"
negativeIntegerS :: String
negativeIntegerS = "negativeInteger"
nonNegativeIntegerS :: String
nonNegativeIntegerS = "nonNegativeInteger"
nonPositiveIntegerS :: String
nonPositiveIntegerS = "nonPositiveInteger"
oS :: String
oS = "o"
onlyS :: String
onlyS = "only"
onlysomeS :: String
onlysomeS = "onlysome"
orS :: String
orS = "or"
positiveIntegerS :: String
positiveIntegerS = "positiveInteger"
rationalS :: String
rationalS = "rational"
realS :: String
realS = "real"
selfS :: String
selfS = "Self"
shortS :: String
shortS = "short"
someS :: String
someS = "some"
thatS :: String
thatS = "that"
rdfsLiteral :: String
rdfsLiteral = "Literal"
rdfPlainLiteralS :: String
rdfPlainLiteralS = "PlainLiteral"
unsignedByteS :: String
unsignedByteS = "unsignedByte"
unsignedIntS :: String
unsignedIntS = "unsignedInt"
unsignedLongS :: String
unsignedLongS = "unsignedLong"
unsignedShortS :: String
unsignedShortS = "unsignedShort"
valueS :: String
valueS = "value"
xorS :: String
xorS = "xor"
dateTimeS :: String
dateTimeS = "dateTime"
dateTimeStampS :: String
dateTimeStampS = "dateTimeStamp"
anyURI :: String
anyURI = "anyURI"
xmlLiteral :: String
xmlLiteral = "XMLLiteral"
ncNameS :: String
ncNameS = "NCName"
nameS :: String
nameS = "Name"
nmTokenS :: String
nmTokenS = "NMTOKEN"
tokenS :: String
tokenS = "token"
languageS :: String
languageS = "language"
normalizedStringS :: String
normalizedStringS = "normalizedString"
thingS :: String
thingS = "Thing"
nothingS :: String
nothingS = "Nothing"
topObjProp :: String
topObjProp = "topObjectProperty"
bottomObjProp :: String
bottomObjProp = "bottomObjectProperty"
topDataProp :: String
topDataProp = "topDataProperty"
bottomDataProp :: String
bottomDataProp = "bottomDataProperty"
label :: String
label = "label"
comment :: String
comment = "comment"
seeAlso :: String
seeAlso = "seeAlso"
isDefinedBy :: String
isDefinedBy = "isDefinedBy"
deprecated :: String
deprecated = "deprecated"
versionInfo :: String
versionInfo = "versionInfo"
priorVersion :: String
priorVersion = "priorVersion"
backwardCompatibleWith :: String
backwardCompatibleWith = "backwardCompatibleWith"
incompatibleWith :: String
incompatibleWith = "incompatibleWith"
implied :: String
implied = "Implied"
predefClass :: [String]
predefClass = [thingS, nothingS]
predefObjProp :: [String]
predefObjProp = [topObjProp, bottomObjProp]
predefDataProp :: [String]
predefDataProp = [topDataProp, bottomDataProp]
predefRDFSAnnoProps :: [String]
predefRDFSAnnoProps = [label, comment, seeAlso, isDefinedBy]
predefOWLAnnoProps :: [String]
predefOWLAnnoProps = [deprecated, versionInfo, priorVersion,
backwardCompatibleWith, incompatibleWith, implied]
xsdNumbers :: [String]
xsdNumbers = [integerS, negativeIntegerS, nonNegativeIntegerS,
nonPositiveIntegerS, positiveIntegerS, decimalS, doubleS, floatS,
longS, intS, shortS, byteS, unsignedLongS, unsignedIntS, unsignedShortS,
unsignedByteS]
owlNumbers :: [String]
owlNumbers = [realS, rationalS]
xsdStrings :: [String]
xsdStrings = [stringS, ncNameS, "QName", nameS, nmTokenS, "NMTOKENS", tokenS
, languageS, normalizedStringS, "NOTATION", "ENTITY", "ENTITIES"
, "ID", "IDREF", "IDREFS" ]
xsdKeys :: [String]
xsdKeys = [booleanS, dATAS, hexBinaryS, base64BinaryS, "date", "time"
, "gYearMonth", "gYear", "gMonthDay", "gDay", "gMonth", "duration"
, dateTimeS, dateTimeStampS, anyURI] ++ xsdNumbers ++ xsdStrings
nonXSDKeys :: [String]
nonXSDKeys = owlNumbers ++ [xmlLiteral, rdfsLiteral]
datatypeKeys :: [String]
datatypeKeys = xsdKeys ++ nonXSDKeys
data DatatypeFacet =
LENGTH
| MINLENGTH
| MAXLENGTH
| PATTERN
| LANGRANGE
| MININCLUSIVE
| MINEXCLUSIVE
| MAXINCLUSIVE
| MAXEXCLUSIVE
| TOTALDIGITS
| FRACTIONDIGITS
deriving (Show, Eq, Ord)
-- Converts a facet to string but in contrast to @showFacet@ uses text
-- instead of signs. E.g. "minInclusive" instead of "<="
showFacetAsText :: DatatypeFacet -> String
showFacetAsText LENGTH = lengthS
showFacetAsText MINLENGTH = minLengthS
showFacetAsText MAXLENGTH = maxLengthS
showFacetAsText PATTERN = patternS
showFacetAsText LANGRANGE = langRangeS
showFacetAsText MININCLUSIVE = minInclusiveS
showFacetAsText MINEXCLUSIVE = minExclusiveS
showFacetAsText MAXINCLUSIVE = maxInclusiveS
showFacetAsText MAXEXCLUSIVE = maxExclusiveS
showFacetAsText TOTALDIGITS = digitsS
showFacetAsText FRACTIONDIGITS = fractionS
showFacet :: DatatypeFacet -> String
showFacet df = case df of
LENGTH -> lengthS
MINLENGTH -> minLengthS
MAXLENGTH -> maxLengthS
PATTERN -> patternS
LANGRANGE -> langRangeS
MININCLUSIVE -> lessEq
MINEXCLUSIVE -> lessS
MAXINCLUSIVE -> greaterEq
MAXEXCLUSIVE -> greaterS
TOTALDIGITS -> digitsS
FRACTIONDIGITS -> fractionS
facetList :: [DatatypeFacet]
facetList = [LENGTH, MINLENGTH, MAXLENGTH, PATTERN, LANGRANGE, MININCLUSIVE,
MINEXCLUSIVE, MAXINCLUSIVE, MAXEXCLUSIVE, TOTALDIGITS, FRACTIONDIGITS]