swon.ui.ttl
18.4 KB
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
# baseURI: http://uispin.org/swon
# imports: http://uispin.org/ui
@prefix arg: <http://spinrdf.org/arg#> .
@prefix let: <http://uispin.org/let#> .
@prefix letrs: <http://uispin.org/letrs#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix spif: <http://spinrdf.org/spif#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix spl: <http://spinrdf.org/spl#> .
@prefix spr: <http://spinrdf.org/spr#> .
@prefix swon: <http://uispin.org/swon#> .
@prefix ui: <http://uispin.org/ui#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
arg:labelFunction
rdf:type rdf:Property ;
rdfs:label "label function"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
arg:name
rdf:type rdf:Property ;
rdfs:label "name"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
arg:resultSet
rdf:type rdf:Property ;
rdfs:label "result set"^^xsd:string ;
rdfs:subPropertyOf ui:resultSet .
arg:rowIndex
rdf:type rdf:Property ;
rdfs:label "row index"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
arg:value
rdf:type rdf:Property ;
rdfs:label "value"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
<http://uispin.org/swon>
rdf:type owl:Ontology ;
rdfs:comment "A library of SWP elements for creating JSON text output."^^xsd:string ;
owl:imports <http://uispin.org/ui> ;
owl:versionInfo "0.1.0"^^xsd:string .
swon:Elements
rdf:type ui:NodeClass ;
rdfs:comment "Abstract superclass of the JSON elements."^^xsd:string ;
rdfs:label "JSON Elements"^^xsd:string ;
rdfs:subClassOf ui:Element ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "An option function that can be used to transform the values before they are inserted into the name-value pairs. A typical use case is to use ui:label."^^xsd:string ;
spl:optional "true"^^xsd:boolean ;
spl:predicate arg:labelFunction ;
spl:valueType spin:Function
] ;
ui:abstract "true"^^xsd:boolean .
swon:ForEachResultSetColumnIndex
rdf:type spin:SelectTemplate ;
rdfs:label "For each result set column index"^^xsd:string ;
rdfs:subClassOf spin:SelectTemplates ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables ([ sp:varName "colIndex"^^xsd:string
]) ;
sp:where ([ sp:object
[ sp:varName "colIndex"^^xsd:string
] ;
sp:predicate spr:colIndices ;
sp:subject
[ sp:varName "resultSet"^^xsd:string
]
])
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set to get all column indices of."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] .
swon:ForEachResultSetRowIndex
rdf:type spin:SelectTemplate ;
rdfs:label "For each result set row index"^^xsd:string ;
rdfs:subClassOf spin:SelectTemplates ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables ([ sp:varName "rowIndex"^^xsd:string
]) ;
sp:where ([ sp:object
[ sp:varName "rowIndex"^^xsd:string
] ;
sp:predicate spr:rowIndices ;
sp:subject
[ sp:varName "resultSet"^^xsd:string
]
])
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set to get all column indices of."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] .
swon:NameValuePair
rdf:type ui:NodeClass ;
rdfs:label "Name value pair"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The name of the variable."^^xsd:string ;
spl:predicate arg:name ;
spl:valueType xsd:string
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The value (will be rendered as null if unbound)."^^xsd:string ;
spl:optional "true"^^xsd:boolean ;
spl:predicate arg:value
] ;
ui:prototype
[ rdf:type ui:group ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "\""^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 1 ;
ui:text [ sp:varName "name"^^xsd:string
]
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "\":"^^xsd:string
] ;
ui:child
[ rdf:type ui:if ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "\""^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 1 ;
ui:text [ rdf:type ui:escapeJSON ;
sp:arg1 [ rdf:type sp:if ;
sp:arg1 [ rdf:type sp:bound ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
]
] ;
sp:arg2 [ rdf:type spif:invoke ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
] ;
sp:arg2 [ sp:varName "value"^^xsd:string
]
] ;
sp:arg3 [ rdf:type xsd:string ;
sp:arg1 [ sp:varName "value"^^xsd:string
]
]
]
]
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "\""^^xsd:string
] ;
ui:childIndex 3 ;
ui:condition
[ rdf:type sp:bound ;
sp:arg1 [ sp:varName "value"^^xsd:string
]
]
] ;
ui:child
[ rdf:type ui:else ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "null"^^xsd:string
] ;
ui:childIndex 4
]
] .
swon:RSArray
rdf:type ui:NodeClass ;
rdfs:comment "Creates a simple JSON array with all values from the first column of a given result set, e.g. ['A','B','C']."^^xsd:string ;
rdfs:label "RS Array"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set to walk through."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] ;
ui:prototype
[ rdf:type ui:call ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "["^^xsd:string
] ;
ui:child
[ rdf:type ui:forEach ;
ui:child
[ rdf:type ui:group ;
let:value
[ rdf:type spr:cell ;
sp:arg1 [ sp:varName "resultSet"^^xsd:string
] ;
sp:arg2 [ sp:varName "rowIndex"^^xsd:string
] ;
sp:arg3 0
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "\""^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 1 ;
ui:text [ rdf:type ui:escapeJSON ;
sp:arg1 [ rdf:type sp:if ;
sp:arg1 [ rdf:type sp:bound ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
]
] ;
sp:arg2 [ rdf:type spif:invoke ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
] ;
sp:arg2 [ sp:varName "value"^^xsd:string
]
] ;
sp:arg3 [ rdf:type xsd:string ;
sp:arg1 [ sp:varName "value"^^xsd:string
]
]
]
]
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "\""^^xsd:string
] ;
ui:childIndex 0
] ;
ui:childIndex 1 ;
ui:resultSet
[ sp:varName "rs"^^xsd:string
] ;
ui:separator ","^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "]"^^xsd:string
] ;
ui:template swon:ForEachResultSetRowIndex
] .
swon:RSObject
rdf:type ui:NodeClass ;
rdfs:label "RS object"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set containing the name-value pairs - the names are the result variables. If the optional row index isn't present, the system will use the first row."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The (optional) row index to select the object."^^xsd:string ;
spl:optional "true"^^xsd:boolean ;
spl:predicate arg:rowIndex ;
spl:valueType xsd:integer
] ;
ui:prototype
[ rdf:type ui:call ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "{"^^xsd:string
] ;
ui:child
[ rdf:type ui:forEach ;
ui:child
[ rdf:type swon:NameValuePair ;
arg:labelFunction
[ sp:varName "labelFunction"^^xsd:string
] ;
arg:name
[ rdf:type spr:colName ;
sp:arg1 [ sp:varName "resultSet"^^xsd:string
] ;
sp:arg2 [ sp:varName "colIndex"^^xsd:string
]
] ;
arg:value
[ rdf:type spr:cell ;
sp:arg1 [ sp:varName "resultSet"^^xsd:string
] ;
sp:arg2 [ rdf:type sp:coalesce ;
sp:arg1 [ sp:varName "rowIndex"^^xsd:string
] ;
sp:arg2 0
] ;
sp:arg3 [ sp:varName "colIndex"^^xsd:string
]
] ;
ui:childIndex 0
] ;
ui:childIndex 1 ;
ui:resultSet
[ sp:varName "rs"^^xsd:string
] ;
ui:separator ","^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "}"^^xsd:string
] ;
ui:template swon:ForEachResultSetColumnIndex
] .
swon:RSObjectArray
rdf:type ui:NodeClass ;
rdfs:comment "Creates a JSON array from a result set where each item is a swon:RSObject, with fields for each variable."^^xsd:string ;
rdfs:label "RS object array"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set delivering the rows."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] ;
ui:prototype
[ rdf:type ui:call ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "["^^xsd:string
] ;
ui:child
[ rdf:type ui:forEach ;
ui:child
[ rdf:type swon:RSObject ;
arg:labelFunction
[ sp:varName "labelFunction"^^xsd:string
] ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
arg:rowIndex
[ sp:varName "rowIndex"^^xsd:string
] ;
ui:childIndex 0
] ;
ui:childIndex 1 ;
ui:resultSet
[ sp:varName "rs"^^xsd:string
] ;
ui:separator ","^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "]"^^xsd:string
] ;
ui:template swon:ForEachResultSetRowIndex
] .