-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathwoqlCore.js
812 lines (756 loc) · 23.8 KB
/
woqlCore.js
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
////@ts-check
const UTILS = require('../utils')
const WOQLPrinter = require('./woqlPrinter')
/**
* defines the internal functions of the woql query object - the language API is defined in WOQLQuery
* @module WOQLQuery
* @constructor
* @param {object} [query] json-ld query for initialisation
*/
function WOQLQuery(query) {
this.query = query ? query : {}
this.errors = []
this.cursor = this.query
this.chain_ended = false
this.contains_update = false
// operators which preserve global paging
this.paging_transitive_properties = ['select', 'from', 'start', 'when', 'opt', 'limit']
this.update_operators = [
'AddTriple',
'DeleteTriple',
'AddQuad',
'DeleteQuad',
'DeleteObject',
'UpdateObject',
]
this.vocab = this.loadDefaultVocabulary()
//object used to accumulate triples from fragments to support usage like node("x").label("y");
this.tripleBuilder = false
return this
}
/**
* Basic Error handling
*/
WOQLQuery.prototype.parameterError = function(msg) {
this.errors.push({type: this.cursor['@type'], message: msg})
return this
}
WOQLQuery.prototype.hasErrors = function() {
return this.errors.length > 0
}
/**
* Internal library function which adds a subquery and sets the cursor
*/
WOQLQuery.prototype.addSubQuery = function(Subq) {
if (Subq) {
this.cursor['query'] = this.jobj(Subq)
} else {
var nv = {}
this.cursor['query'] = nv
this.cursor = nv
}
return this
}
/**
* Does this query contain an update
*/
WOQLQuery.prototype.containsUpdate = function(json) {
json = json || this.query
if (this.update_operators.indexOf(json['@type']) !== -1) return true
if (json['consequent'] && this.containsUpdate(json['consequent'])) return true
if (json['query']) return this.containsUpdate(json['query'])
if (json['and']) {
for (var i = 0; i < json['and'].length; i++) {
if (this.containsUpdate(json['and'][i])) return true
}
}
if (json['or']) {
for (var i = 0; i < json['or'].length; i++) {
if (this.containsUpdate(json['or'][i])) return true
}
}
return false
}
/**
* Called to inidicate that this query will cause an update to the DB
*/
WOQLQuery.prototype.updated = function() {
this.contains_update = true
return this
}
/**
* A bunch of internal functions for formatting values for JSON-LD translation
*/
/**
* Wraps the passed value in a json-ld literal carriage
*/
WOQLQuery.prototype.jlt = function(val, type) {
if (!type) type = 'xsd:string'
else type = type.indexOf(':') == -1 ? 'xsd:' + type : type
return {'@type': type, '@value': val}
}
WOQLQuery.prototype.varj = function(varb) {
if (varb.substring(0, 2) == 'v:') varb = varb.substring(2)
if (typeof varb == 'string')
return {
'@type': 'Value',
'variable': varb
}
return varb
}
WOQLQuery.prototype.rawVar = function(varb) {
if (varb.substring(0, 2) === 'v:') varb = varb.substring(2)
return varb
}
WOQLQuery.prototype.rawVarList = function(vl) {
let ret = []
for (var i = 0; i < vl.length; i++) {
let co = this.rawVar(vl[i])
ret.push(co)
}
return ret
}
/**
* Transforms a javascript representation of a query into a json object if needs be
*/
WOQLQuery.prototype.jobj = function(qobj) {
if (qobj.json) {
return qobj.json()
}
if (qobj === true) return {'@type': 'True'}
return qobj
//return new WOQLQuery.json(qobj);
}
/**
* Wraps the elements of an AS variable in the appropriate json-ld
*/
WOQLQuery.prototype.asv = function(colname_or_index, vname, type) {
let asvar = {}
if (typeof colname_or_index == 'number') {
asvar['@type'] = 'Column'
asvar['indicator'] = { '@type' : 'Indicator', 'index' : colname_or_index}
} else if (typeof colname_or_index == 'string') {
asvar['@type'] = 'Column'
asvar['indicator'] = { '@type' : 'Indicator', 'name' : colname_or_index}
}
if (vname.substring(0, 2) == 'v:') vname = vname.substring(2)
asvar['variable'] = vname
if (type) asvar['type'] = type
return asvar
}
/**
* JSON LD Format Descriptor
* @param {object} opts
*/
WOQLQuery.prototype.wform = function(opts) {
if (opts && opts.type) {
this.cursor['format'] = {
'@type': 'Format',
'format_type': {'@value': opts.type, '@type': 'xsd:string'},
}
if (typeof opts.format_header != 'undefined') {
let h = opts.format_header ? true : false
this.cursor['format']['format_header'] = {
'@value': h,
'@type': 'xsd:boolean',
}
}
}
return this
}
/**
* Wraps arithmetic operators in the appropriate json-ld
*/
WOQLQuery.prototype.arop = function(arg) {
if (typeof arg == 'object') {
return arg.json ? arg.json() : arg
}
return this.cleanArithmeticValue(arg, 'xsd:decimal')
}
/**
* takes input that can be either a string (variable name)
* or an array - each element of the array is a member of the list
*/
WOQLQuery.prototype.dataList = function(wvar, string_only) {
if (typeof wvar == 'string') return this.expandDataVariable(wvar, true)
if (Array.isArray(wvar)) {
let ret = []
for (var i = 0; i < wvar.length; i++) {
let co = this.cleanDataValue(wvar[i])
ret.push(co)
}
return ret
}
}
/**
* takes a list of input that can be any value
*/
WOQLQuery.prototype.valueList = function(wvar, string_only) {
if (typeof wvar == 'string') return this.expandValueVariable(wvar, true)
if (Array.isArray(wvar)) {
let ret = []
for (var i = 0; i < wvar.length; i++) {
let co = this.cleanObject(wvar[i])
if (typeof co == 'string') co = {node: co}
ret.push(co)
}
return ret
}
}
/**
* creates an unadorned variable name list
*/
WOQLQuery.prototype.vlist = function(list) {
let vl = []
for (var i = 0; i < list.length; i++){
let v = this.expandValueVariable(list[i])
vl.push(v['variable'])
}
return vl
}
/**
* Wraps data values
*/
WOQLQuery.prototype.dataValueList = function(list) {
let dvl = []
for (var i = 0; i < list.length; i++){
let o = this.cleanDataValue(list[i])
dvl.push(o)
}
return dvl
}
/**
* Transforms whatever is passed in as the subject into the appropriate json-ld for variable or id
*/
WOQLQuery.prototype.cleanSubject = function(s) {
/**
* @type {any}
*/
let subj = false
if (typeof s === 'object') {
return s
} else if (typeof s === 'string') {
if (s.indexOf('v:') !== -1) subj = s
else subj = s
return this.expandNodeVariable(subj)
}
this.parameterError('Subject must be a URI string')
return '' + s
}
/**
* Transforms whatever is passed in as the predicate (id or variable) into the appropriate json-ld form
*/
WOQLQuery.prototype.cleanPredicate = function(p) {
/**
* @type {any}
*/
let pred = false
if (typeof p === 'object') return p
if (typeof p !== 'string') {
this.parameterError('Predicate must be a URI string')
return '' + p
}
if (p.indexOf(':') !== -1) pred = p
else if (this.wellKnownPredicate(p)) pred = p//this.vocab[p]
else pred = p//'scm'
//else pred = 'scm:' + p
return this.expandNodeVariable(pred)
}
WOQLQuery.prototype.wellKnownPredicate = function(p, noxsd) {
if (this.vocab && this.vocab[p]) {
let full = this.vocab[p]
let start = full.substring(0, 3)
if (full == 'system:abstract' || start == 'xdd' || start == 'xsd') return false
return true
}
return false
}
WOQLQuery.prototype.cleanPathPredicate = function(p) {
let pred = false
if (p.indexOf(':') !== -1) pred = p
else if (this.wellKnownPredicate(p)) pred = this.vocab[p]
else pred = p //'scm:' + p
return pred
}
/**
* Transforms whatever is passed in as the object of
* a triple into the appropriate json-ld form (variable, literal or id)
*/
WOQLQuery.prototype.cleanObject = function(o, t) {
let obj = {'@type': 'Value'}
if (typeof o === 'string') {
if (o.indexOf('v:') !== -1) {
return this.expandValueVariable(o)
} else {
obj['node'] = o
}
} else if (typeof o == 'number') {
t = t || 'xsd:decimal'
obj['data'] = this.jlt(o, t)
} else if (typeof o == 'boolean') {
t = t || 'xsd:boolean'
obj['data'] = this.jlt(o, t)
} else if (typeof o == 'object' && o) {
if (o['@value']) obj['data'] = o
else return o
}
return obj
}
WOQLQuery.prototype.cleanDataValue = function(o, t) {
let obj = {'@type': 'DataValue'}
if (typeof o === 'string') {
if (o.indexOf('v:') !== -1) {
return this.expandDataVariable(o)
}else{
obj['data'] = this.jlt(o, t)
}
} else if (typeof o == 'number') {
t = t || 'xsd:decimal'
obj['data'] = this.jlt(o, t)
} else if (typeof o == 'boolean') {
t = t || 'xsd:boolean'
obj['data'] = this.jlt(o, t)
} else if (Array.isArray(o)) {
let res = []
for( var i = 0; i < o.length; i++ ){
res.push(this.cleanDataValue(o[i]))
}
obj['list'] = res
} else if (typeof o === 'object' && o) {
if (o['@value']) obj['data'] = o
else return o
}
return obj
}
WOQLQuery.prototype.cleanArithmeticValue = function(o, t) {
let obj = {'@type': 'ArithmeticValue'}
if (typeof o === 'string') {
if (o.indexOf('v:') !== -1) {
return this.expandArithmeticVariable(o)
}else{
obj['data'] = this.jlt(o, t)
}
} else if (typeof o == 'number') {
t = t || 'xsd:decimal'
obj['data'] = this.jlt(o, t)
} else if (typeof o == 'object' && o) {
if (o['@value']) obj['data'] = o
else return o
}
return obj
}
WOQLQuery.prototype.cleanNodeValue = function(o, t) {
let obj = {'@type': 'NodeValue'}
if (typeof o === 'string') {
if (o.indexOf('v:') !== -1) {
return this.expandNodeVariable(o)
} else {
obj['node'] = o
}
} else if (typeof o == 'object' && o) {
return o
}
return obj
}
/**
* Transforms a graph filter or graph id into the proper json-ld form
*/
WOQLQuery.prototype.cleanGraph = function(g) {
return g
}
/**
* Transforms strings that start with v: into variable json-ld structures
* @param varname - will be transformed if it starts with v:
*/
WOQLQuery.prototype.expandVariable = function(varname,type,always) {
if (varname.substring(0, 2) == 'v:' || always) {
if (varname.substring(0, 2) == 'v:') varname = varname.substring(2)
return {
'@type': type,
'variable': varname
}
} else {
return {
'@type': type,
'node': varname,
}
}
}
WOQLQuery.prototype.expandValueVariable = function(varname, always) {
return this.expandVariable(varname, 'Value', always)
}
WOQLQuery.prototype.expandNodeVariable = function(varname, always) {
return this.expandVariable(varname, 'NodeValue', always)
}
WOQLQuery.prototype.expandDataVariable = function(varname, always) {
return this.expandVariable(varname, 'DataValue', always)
}
WOQLQuery.prototype.expandArithmeticVariable = function(varname, always) {
return this.expandVariable(varname, 'ArithmeticValue', always)
}
WOQLQuery.prototype.defaultContext = function(DB_IRI) {
let def = {}
for (var pref in UTILS.standard_urls) {
def[pref] = UTILS.standard_urls[pref]
}
def.scm = DB_IRI + '/schema#'
def.doc = DB_IRI + '/data/'
return def
}
/**
* Retrieves the value of the current json-ld context
*/
WOQLQuery.prototype.getContext = function(q) {
q = q ? q : this.query
for (const prop of Object.keys(q)) {
if (prop == '@context') return q[prop]
if (this.paging_transitive_properties.indexOf(prop) !== -1) {
var nq = q[prop][1]
var nc = this.getContext(nq)
if (nc) return nc
}
}
}
/**
* sets the value of the current json-ld context on a full query scope
*/
WOQLQuery.prototype.context = function(c) {
this.query['@context'] = c
}
/**
* vocabulary elements that can be used without prefixes in woql.js queries
*/
WOQLQuery.prototype.loadDefaultVocabulary = function() {
var vocab = {}
// vocab.type = 'rdf:type'
// vocab.label = 'rdfs:label'
vocab.Class = 'owl:Class'
vocab.DatatypeProperty = 'owl:DatatypeProperty'
vocab.ObjectProperty = 'owl:ObjectProperty'
vocab.Document = 'system:Document'
vocab.abstract = 'system:abstract'
vocab.comment = 'rdfs:comment'
vocab.range = 'rdfs:range'
vocab.domain = 'rdfs:domain'
vocab.subClassOf = 'rdfs:subClassOf'
vocab.string = 'xsd:string'
vocab.integer = 'xsd:integer'
vocab.decimal = 'xsd:decimal'
vocab.boolean = 'xdd:boolean'
vocab.email = 'xdd:email'
vocab.json = 'xdd:json'
vocab.dateTime = 'xsd:dateTime'
vocab.date = 'xsd:date'
vocab.coordinate = 'xdd:coordinate'
vocab.line = 'xdd:coordinatePolyline'
vocab.polygon = 'xdd:coordinatePolygon'
return vocab
}
/**
* Provides the query with a 'vocabulary' a list of well known predicates that can be used without prefixes mapping: id: prefix:id ...
*/
WOQLQuery.prototype.setVocabulary = function(vocab) {
this.vocab = vocab
}
WOQLQuery.prototype.getVocabulary = function(vocab) {
return this.vocab
}
/**
* Executes the query using the passed client to connect to a server
*
*/
WOQLQuery.prototype.execute = function(client, commit_msg) {
return client.query(this, commit_msg)
}
/**
* converts back and forward from json
* if the argument is present, the current query is set to it,
* if the argument is not present, the current json version of this query is returned
* @param {object} [json] a query in json format
* @returns {object}
*/
WOQLQuery.prototype.json = function(json) {
if (json) {
this.query = copyJSON(json)
return this
}
return copyJSON(this.query, true)
}
/**
* Returns a script version of the query
*
* @param {string} [clang] - either "js" or "python"
*/
WOQLQuery.prototype.prettyPrint = function(clang = 'js') {
let printer = new WOQLPrinter(this.vocab, clang)
return printer.printJSON(this.query)
}
/**
* Finds the last woql element that has a subject in it and returns the json for that
* used for triplebuilder to chain further calls - when they may be inside ands or ors or subqueries
* @param {object} json
*/
WOQLQuery.prototype.findLastSubject = function(json) {
if (json && json['and']) {
for (var i = json['and'].length - 1; i >= 0; i--) {
let lqs = this.findLastSubject(json['and'][i])
if (lqs) return lqs
}
}
if (json && json['or']) {
for (var i = json['or'].length - 1; i >= 0; i--) {
let lqs = this.findLastSubject(json['or'][i])
if (lqs) return lqs
}
}
if (json && json['query']) {
let ls = this.findLastSubject(json['query'])
if (ls) return ls
}
//check for cardinality here
if (json && json['subject']) {
return json
}
return false
}
/**
* Finds the last woql element that has a subject in that is a property id
* used for triplebuilder to chain further calls - when they may be inside ands or ors or subqueries
* @param {object} json
*/
WOQLQuery.prototype.findLastProperty = function(json) {
if (json && json['and']) {
for (var i = json['and'].length - 1; i >= 0; i--) {
let lqs = this.findLastProperty(json['and'][i])
if (lqs) return lqs
}
}
if (json && json['or']) {
for (var i = json['or'].length - 1; i >= 0; i--) {
let lqs = this.findLastProperty(json['or'][i])
if (lqs) return lqs
}
}
if (json && json['query']) {
let ls = this.findLastProperty(json['query'])
if (ls) return ls
}
if (
json &&
json['subject'] &&
this._is_property_triple(json['predicate'], json['object'])
) {
return json
}
return false
}
WOQLQuery.prototype._is_property_triple = function(pred, obj) {
let pred_str = pred['node'] ? pred['node'] : pred
let obj_str = obj['node'] ? obj['node'] : obj
if (obj_str == 'owl:ObjectProperty' || obj_str == 'owl:DatatypeProperty') return true
if (pred_str == 'rdfs:domain' || pred_str == 'rdfs:range') return true
return false
}
/**
* Turns a textual path pattern into a JSON-LD description
*/
WOQLQuery.prototype.compilePathPattern = function(pat) {
let toks = tokenize(pat)
if (toks && toks.length) return tokensToJSON(toks, this)
else this.parameterError('Pattern error - could not be parsed ' + pat)
}
/**
* Tokenizes the pattern into a sequence of tokens which may be clauses or operators
* @param {string} pat
*/
function tokenize(pat) {
let parts = getClauseAndRemainder(pat)
let seq = []
while (parts.length == 2) {
seq.push(parts[0])
parts = getClauseAndRemainder(parts[1])
}
seq.push(parts[0])
return seq
}
/**
* Breaks a graph pattern up into two parts - the next clause, and the remainder of the string
* @param {string} pat - graph pattern fragment
*/
function getClauseAndRemainder(pat) {
pat = pat.trim()
let open = 1
//if there is a parentheses, we treat it as a clause and go to the end
if (pat.charAt(0) == '(') {
for (var i = 1; i < pat.length; i++) {
if (pat.charAt(i) == '(') open++
else if (pat.charAt(i) == ')') open--
if (open == 0) {
let rem = pat.substring(i + 1).trim()
if (rem) return [pat.substring(1, i), rem]
return getClauseAndRemainder(pat.substring(1, i)) //whole thing surrounded by parentheses, strip them out and reparse
}
}
return []
}
if (pat[0] == '+' || pat[0] == ',' || pat[0] == '|' || pat[0] == '*') {
let ret = [pat[0]]
if (pat.substring(1)) ret.push(pat.substring(1))
return ret
}
if (pat.charAt(0) == '{') {
let ret = [pat.substring(0, pat.indexOf('}') + 1)]
if (pat.substring(pat.indexOf('}') + 1)) ret.push(pat.substring(pat.indexOf('}') + 1))
return ret
}
for (var i = 1; i < pat.length; i++) {
if (pat[i] == ',' || pat[i] == '|' || pat[i] == '+' || pat[i] == '{' || pat[i] == '*')
return [pat.substring(0, i), pat.substring(i)]
}
return [pat]
}
function compilePredicate(pp, q) {
if (pp.indexOf('<') != -1 && pp.indexOf('>') !== -1) {
let pred = pp.slice(1, pp.length - 1)
let cleaned = (pred = '*' ? 'owl:topObjectProperty' : q.cleanPathPredicate(pred))
return {
'@type': 'PathOr',
'or': [{ '@type': 'InversePathPredicate',
'predicate': cleaned,
},
{ '@type': 'PathPredicate',
'predicate': cleaned,
}]
}
} else if (pp.indexOf('<') != -1) {
let pred = pp.slice(1, pp.length)
//let cleaned = pred == '*' ? 'owl:topObjectProperty' : q.cleanPathPredicate(pred)
let cleaned = q.cleanPathPredicate(pred)
return {'@type': 'InversePathPredicate', 'predicate': cleaned}
} else if (pp.indexOf('>') !== -1) {
let pred = pp.slice(0, pp.length - 1)
//let cleaned = pred == '*' ? 'owl:topObjectProperty' : q.cleanPathPredicate(pred)
let cleaned = q.cleanPathPredicate(pred)
return {'@type': 'PathPredicate', 'predicate': cleaned}
} else {
//let pred = pp == '*' ? 'owl:topObjectProperty' : q.cleanPathPredicate(pp)
let pred = q.cleanPathPredicate(pp)
return {'@type': 'PathPredicate', 'predicate': pred}
}
}
/**
* Turns a sequence of tokens into the appropriate JSON-LD
* @param {Array} seq
* @param {*} q
*/
function tokensToJSON(seq, q) {
if (seq.length == 1) {
// may need to be further tokenized
let ntoks = tokenize(seq[0])
if (ntoks.length == 1) {
// only a single element in clause - cannot be further tokenised
let tok = ntoks[0].trim()
return compilePredicate(tok, q)
} else {
return tokensToJSON(ntoks, q)
}
} else if (seq.indexOf('|') !== -1) {
//binds most loosely
let left = seq.slice(0, seq.indexOf('|'))
let right = seq.slice(seq.indexOf('|') + 1)
return {
'@type': 'PathOr',
'or': [tokensToJSON(left, q), tokensToJSON(right, q)]
}
} else if (seq.indexOf(',') !== -1) {
//binds tighter
let first = seq.slice(0, seq.indexOf(','))
let second = seq.slice(seq.indexOf(',') + 1)
return {
'@type': 'PathSequence',
'sequence': [tokensToJSON(first, q),tokensToJSON(second, q)]
}
} else if (seq[1] == '+') {
//binds tightest of all
return {
'@type': 'PathPlus',
'plus': tokensToJSON([seq[0]], q),
}
} else if (seq[1] == '*') {
//binds tightest of all
return {
'@type': 'PathStar',
'star': tokensToJSON([seq[0]], q),
}
} else if (seq[1].charAt(0) == '{') {
//binds tightest of all
//we need a test here
let meat = seq[1].substring(1, seq[1].length - 1).split(',')
return {
'@type': 'PathTimes',
'from': meat[0],
'to': meat[1],
'times': tokensToJSON([seq[0]], q),
}
} else {
//shouldn't get here - error
q.parameterError('Pattern error - could not be parsed ' + seq[0])
return {
'@type': 'PathPredicate',
'rdfs:label': 'failed to parse query ' + seq[0],
}
}
}
/**
* Creates a copy of the passed json representation of a woql query
* Performing tidying up in doing so - strips out empty queries, rolls up ands and ors with single entries
*
* @param {object} orig
* @returns {object} copy of the passed json object
*/
function copyJSON(orig, rollup) {
if (Array.isArray(orig)) return orig
if (rollup) {
if (orig['@type'] == 'And') {
if (!orig['and'] || !orig['and'].length) return {}
if (orig['and'].length == 1)
return copyJSON(orig['and'][0], rollup)
} else if (orig['@type'] == 'Or') {
if (!orig['or'] || !orig['or'].length) return {}
if (orig['or'].length == 1)
return copyJSON(orig['or'][0], rollup)
}
if (typeof orig['query'] != 'undefined' && orig['@type'] != 'Comment') {
if (!orig['query']['@type']) return {}
} else if (orig['@type'] == 'Comment' && orig['comment']) {
if (!orig['query'] || !orig['query']['@type'])
return {'@type': 'Comment', 'comment': orig['comment']}
}
if (typeof orig['consequent'] != 'undefined') {
if (!orig['consequent']['@type']) return {}
}
}
let nuj = {}
for (var k in orig) {
let part = orig[k]
if (Array.isArray(part)) {
let nupart = []
for (var j = 0; j < part.length; j++) {
if (typeof part[j] == 'object') {
let sub = copyJSON(part[j], rollup)
if (!sub || !UTILS.empty(sub)) nupart.push(sub)
} else {
nupart.push(part[j])
}
}
nuj[k] = nupart
} else if (typeof part == 'object') {
let q = copyJSON(part, rollup)
if (!q || !UTILS.empty(q)) nuj[k] = q
} else {
nuj[k] = part
}
}
return nuj
}
module.exports = WOQLQuery