forked from linkeddata/rdflib.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidentity.js
655 lines (595 loc) · 21.3 KB
/
identity.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
// Identity management and indexing for RDF
//
// This file provides IndexedFormula a formula (set of triples) which
// indexed by predicate, subject and object.
//
// It "smushes" (merges into a single node) things which are identical
// according to owl:sameAs or an owl:InverseFunctionalProperty
// or an owl:FunctionalProperty
//
//
// 2005-10 Written Tim Berners-Lee
// 2007 Changed so as not to munge statements from documents when smushing
//
//
/* jsl:option explicit */
$rdf.IndexedFormula = (function () {
var owl_ns = 'http://www.w3.org/2002/07/owl#'
// var link_ns = "http://www.w3.org/2007/ont/link#"
/* hashString functions are used as array indeces. This is done to avoid
** conflict with existing properties of arrays such as length and map.
** See issue 139.
*/
$rdf.Literal.prototype.hashString = $rdf.Literal.prototype.toNT
$rdf.NamedNode.prototype.hashString = $rdf.NamedNode.prototype.toNT
$rdf.BlankNode.prototype.hashString = $rdf.BlankNode.prototype.toNT
$rdf.Collection.prototype.hashString = $rdf.Collection.prototype.toNT
// Stores an associative array that maps URIs to functions
$rdf.IndexedFormula = function (features) {
this.statements = [] // As in Formula
this.optional = []
this.propertyActions = [] // Array of functions to call when getting statement with {s X o}
// maps <uri> to [f(F,s,p,o),...]
this.classActions = [] // Array of functions to call when adding { s type X }
this.redirections = [] // redirect to lexically smaller equivalent symbol
this.aliases = [] // reverse mapping to redirection: aliases for this
this.HTTPRedirects = [] // redirections we got from HTTP
this.subjectIndex = [] // Array of statements with this X as subject
this.predicateIndex = [] // Array of statements with this X as subject
this.objectIndex = [] // Array of statements with this X as object
this.whyIndex = [] // Array of statements with X as provenance
this.index = [
this.subjectIndex,
this.predicateIndex,
this.objectIndex,
this.whyIndex
]
this.namespaces = {} // Dictionary of namespace prefixes
if (features === undefined) {
features = [
'sameAs',
'InverseFunctionalProperty',
'FunctionalProperty'
]
}
// this.features = features
// Callbackify?
function handleRDFType (formula, subj, pred, obj, why) {
if (formula.typeCallback) {
formula.typeCallback(formula, obj, why)
}
var x = formula.classActions[obj.hashString()]
var done = false
if (x) {
for (var i = 0; i < x.length; i++) {
done = done || x[i](formula, subj, pred, obj, why)
}
}
return done // statement given is not needed if true
} // handleRDFType
// If the predicate is #type, use handleRDFType to create a typeCallback on the object
this.propertyActions['<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>'] = [ handleRDFType ]
// Assumption: these terms are not redirected @@fixme
if ($rdf.Util.ArrayIndexOf(features, 'sameAs') >= 0) {
this.propertyActions['<http://www.w3.org/2002/07/owl#sameAs>'] = [
function (formula, subj, pred, obj, why) {
// $rdf.log.warn("Equating "+subj.uri+" sameAs "+obj.uri); //@@
formula.equate(subj, obj)
return true // true if statement given is NOT needed in the store
}
] // sameAs -> equate & don't add to index
}
if ($rdf.Util.ArrayIndexOf(features, 'InverseFunctionalProperty') >= 0) {
this.classActions['<' + owl_ns + 'InverseFunctionalProperty>'] = [
function (formula, subj, pred, obj, addFn) {
// yes subj not pred!
return formula.newPropertyAction(subj, handle_IFP)
}
] // IFP -> handle_IFP, do add to index
}
if ($rdf.Util.ArrayIndexOf(features, 'FunctionalProperty') >= 0) {
this.classActions['<' + owl_ns + 'FunctionalProperty>'] = [
function (formula, subj, proj, obj, addFn) {
return formula.newPropertyAction(subj, handle_FP)
}
] // FP => handleFP, do add to index
}
function handle_IFP (formula, subj, pred, obj) {
var s1 = formula.any(undefined, pred, obj)
if (!s1) {
return false // First time with this value
}
// $rdf.log.warn("Equating "+s1.uri+" and "+subj.uri + " because IFP "+pred.uri); //@@
formula.equate(s1, subj)
return true
} // handle_IFP
function handle_FP (formula, subj, pred, obj) {
var o1 = formula.any(subj, pred, undefined)
if (!o1) {
return false // First time with this value
}
// $rdf.log.warn("Equating "+o1.uri+" and "+obj.uri + " because FP "+pred.uri); //@@
formula.equate(o1, obj)
return true
} // handle_FP
} /* end IndexedFormula */
$rdf.IndexedFormula.prototype = new $rdf.Formula()
$rdf.IndexedFormula.prototype.constructor = $rdf.IndexedFormula
$rdf.IndexedFormula.SuperClass = $rdf.Formula
$rdf.IndexedFormula.prototype.newPropertyAction = function newPropertyAction (pred, action) {
// $rdf.log.debug("newPropertyAction: "+pred)
var hash = pred.hashString()
if (!this.propertyActions[hash]) {
this.propertyActions[hash] = []
}
this.propertyActions[hash].push(action)
// Now apply the function to to statements already in the store
var toBeFixed = this.statementsMatching(undefined, pred, undefined)
var done = false
for (var i = 0; i < toBeFixed.length; i++) { // NOT optimized - sort toBeFixed etc
done = done || action(this, toBeFixed[i].subject, pred, toBeFixed[i].object)
}
return done
}
$rdf.IndexedFormula.prototype.setPrefixForURI = function (prefix, nsuri) {
// TODO:This is a hack for our own issues, which ought to be fixed post-release
// See http://dig.csail.mit.edu/cgi-bin/roundup.cgi/$rdf/issue227
if (prefix === 'tab' && this.namespaces['tab']) {
return
} // There are files around with long badly generated prefixes like this
if (prefix.slice(0, 2) === 'ns' || prefix.slice(0, 7) === 'default') {
return
}
this.namespaces[prefix] = nsuri
}
// Deprocated ... name too generic
$rdf.IndexedFormula.prototype.register = function (prefix, nsuri) {
this.namespaces[prefix] = nsuri
}
/** simplify graph in store when we realize two identifiers are equivalent
We replace the bigger with the smaller.
*/
$rdf.IndexedFormula.prototype.equate = function (u1, u2) {
// $rdf.log.warn("Equating "+u1+" and "+u2); // @@
// @@JAMBO Must canonicalize the uris to prevent errors from a=b=c
// 03-21-2010
u1 = this.canon(u1)
u2 = this.canon(u2)
var d = u1.compareTerm(u2)
if (!d) {
return true // No information in {a = a}
}
// var big
// var small
if (d < 0) { // u1 less than u2
return this.replaceWith(u2, u1)
} else {
return this.replaceWith(u1, u2)
}
}
// Replace big with small, obsoleted with obsoleting.
//
$rdf.IndexedFormula.prototype.replaceWith = function (big, small) {
// $rdf.log.debug("Replacing "+big+" with "+small) // @@
var oldhash = big.hashString()
var newhash = small.hashString()
var moveIndex = function (ix) {
var oldlist = ix[oldhash]
if (!oldlist) {
return // none to move
}
var newlist = ix[newhash]
if (!newlist) {
ix[newhash] = oldlist
} else {
ix[newhash] = oldlist.concat(newlist)
}
delete ix[oldhash]
}
// the canonical one carries all the indexes
for (var i = 0; i < 4; i++) {
moveIndex(this.index[i])
}
this.redirections[oldhash] = small
if (big.uri) {
// @@JAMBO: must update redirections,aliases from sub-items, too.
if (!this.aliases[newhash]) {
this.aliases[newhash] = []
}
this.aliases[newhash].push(big) // Back link
if (this.aliases[oldhash]) {
for (i = 0; i < this.aliases[oldhash].length; i++) {
this.redirections[this.aliases[oldhash][i].hashString()] = small
this.aliases[newhash].push(this.aliases[oldhash][i])
}
}
this.add(small, this.sym('http://www.w3.org/2007/ont/link#uri'), big.uri)
// If two things are equal, and one is requested, we should request the other.
if (this.fetcher) {
this.fetcher.nowKnownAs(big, small)
}
}
moveIndex(this.classActions)
moveIndex(this.propertyActions)
// $rdf.log.debug("Equate done. "+big+" to be known as "+small)
return true // true means the statement does not need to be put in
}
// Return the symbol with canonical URI as smushed
$rdf.IndexedFormula.prototype.canon = function (term) {
if (!term) {
return term
}
var y = this.redirections[term.hashString()]
if (!y) {
return term
}
return y
}
// Compare by canonical URI as smushed
$rdf.IndexedFormula.prototype.sameThings = function (x, y) {
if (x.sameTerm(y)) {
return true
}
var x1 = this.canon(x)
// alert('x1='+x1)
if (!x1) return false
var y1 = this.canon(y)
// alert('y1='+y1); //@@
if (!y1) return false
return (x1.uri === y1.uri)
}
// A list of all the URIs by which this thing is known
$rdf.IndexedFormula.prototype.uris = function (term) {
var cterm = this.canon(term)
var terms = this.aliases[cterm.hashString()]
if (!cterm.uri) return []
var res = [ cterm.uri ]
if (terms) {
for (var i = 0; i < terms.length; i++) {
res.push(terms[i].uri)
}
}
return res
}
// Add a triple to the store
//
// Returns the statement added
// (would it be better to return the original formula for chaining?)
//
$rdf.IndexedFormula.prototype.add = function (subj, pred, obj, why) {
var i
if (arguments.length === 1) {
if (subj instanceof Array) {
for (i = 0; i < subj.length; i++) {
this.add(subj[i])
}
} else if (subj instanceof $rdf.Statement) {
this.add(subj.subject, subj.predicate, subj.object, subj.why)
} else if (subj instanceof $rdf.IndexedFormula) {
this.add(subj.statements)
}
return this
}
var actions
var st
if (!why) {
// system generated
why = this.fetcher ? this.fetcher.appNode : this.sym('chrome:theSession')
}
// defined in source.js, is this OK with identity.js only user?
subj = $rdf.term(subj)
pred = $rdf.term(pred)
obj = $rdf.term(obj)
why = $rdf.term(why)
if (this.predicateCallback) {
this.predicateCallback(this, pred, why)
}
// Action return true if the statement does not need to be added
var predHash = this.canon(pred).hashString()
actions = this.propertyActions[predHash] // Predicate hash
var done = false
if (actions) {
// alert('type: '+typeof actions +' @@ actions='+actions)
for (i = 0; i < actions.length; i++) {
done = done || actions[i](this, subj, pred, obj, why)
}
}
// If we are tracking provenanance, every thing should be loaded into the store
// if (done) return new Statement(subj, pred, obj, why); // Don't put it in the store
// still return this statement for owl:sameAs input
var hash = [ this.canon(subj).hashString(), predHash,
this.canon(obj).hashString(), this.canon(why).hashString()]
st = new $rdf.Statement(subj, pred, obj, why)
for (i = 0; i < 4; i++) {
var ix = this.index[i]
var h = hash[i]
if (!ix[h]) {
ix[h] = []
}
ix[h].push(st) // Set of things with this as subject, etc
}
// $rdf.log.debug("ADDING {"+subj+" "+pred+" "+obj+"} "+why)
this.statements.push(st)
return st
} // add
// Find out whether a given URI is used as symbol in the formula
$rdf.IndexedFormula.prototype.mentionsURI = function (uri) {
var hash = '<' + uri + '>'
return (!!this.subjectIndex[hash] ||
!!this.objectIndex[hash] ||
!!this.predicateIndex[hash])
}
// Find an unused id for a file being edited: return a symbol
// (Note: Slow iff a lot of them -- could be O(log(k)) )
$rdf.IndexedFormula.prototype.nextSymbol = function (doc) {
for (var i = 0;;i++) {
var uri = doc.uri + '#n' + i
if (!this.mentionsURI(uri)) return this.sym(uri)
}
}
$rdf.IndexedFormula.prototype.anyStatementMatching =
function (subj, pred, obj, why) {
var x = this.statementsMatching(subj, pred, obj, why, true)
if (!x || x.length === 0) {
return undefined
}
return x[0]
}
// Return statements matching a pattern
// ALL CONVENIENCE LOOKUP FUNCTIONS RELY ON THIS!
$rdf.IndexedFormula.prototype.statementsMatching = function (subj, pred, obj, why, justOne) {
// $rdf.log.debug("Matching {"+subj+" "+pred+" "+obj+"}")
var pat = [ subj, pred, obj, why ]
var pattern = []
var hash = []
var wild = [] // wildcards
var given = [] // Not wild
var p
var list
for (p = 0; p < 4; p++) {
pattern[p] = this.canon($rdf.term(pat[p]))
if (!pattern[p]) {
wild.push(p)
} else {
given.push(p)
hash[p] = pattern[p].hashString()
}
}
if (given.length === 0) {
return this.statements
}
if (given.length === 1) { // Easy too, we have an index for that
p = given[0]
list = this.index[p][hash[p]]
if (list && justOne) {
if (list.length > 1) {
list = list.slice(0, 1)
}
}
list = list || []
return list
}
// Now given.length is 2, 3 or 4.
// We hope that the scale-free nature of the data will mean we tend to get
// a short index in there somewhere!
var best = 1e10 // really bad
var best_i
var i
for (i = 0; i < given.length; i++) {
p = given[i] // Which part we are dealing with
list = this.index[p][hash[p]]
if (!list) {
return [] // No occurrences
}
if (list.length < best) {
best = list.length
best_i = i // (not p!)
}
}
// Ok, we have picked the shortest index but now we have to filter it
var best_p = given[best_i]
var possibles = this.index[best_p][hash[best_p]]
var check = given.slice(0, best_i).concat(given.slice(best_i + 1)) // remove best_i
var results = []
var parts = [ 'subject', 'predicate', 'object', 'why' ]
for (var j = 0; j < possibles.length; j++) {
var st = possibles[j]
for (i = 0; i < check.length; i++) { // for each position to be checked
p = check[i]
if (!this.canon(st[parts[p]]).sameTerm(pattern[p])) {
st = null
break
}
}
if (st != null) {
results.push(st)
if (justOne) break
}
}
return results
} // statementsMatching
/** Remove all statemnts in a doc
**
**/
$rdf.IndexedFormula.prototype.removeDocument = function (doc) {
var sts = this.statementsMatching(undefined, undefined, undefined, doc).slice() // Take a copy as this is the actual index
for (var i = 0; i < sts.length; i++) {
this.removeStatement(sts[i])
}
return this
}
/** Find a statement object and remove it
**
** Or array of statements or graph
**/
$rdf.IndexedFormula.prototype.remove = function (st) {
if (st instanceof Array) {
for (var i = 0; i < st.length; i++) {
this.remove(st[i])
}
return this
}
if (st instanceof $rdf.IndexedFormula) {
return this.remove(st.statements)
}
var sts = this.statementsMatching(st.subject, st.predicate, st.object, st.why)
if (!sts.length) {
throw new Error('Statement to be removed is not on store: ' + st)
}
this.removeStatement(sts[0])
return this
}
$rdf.IndexedFormula.prototype.removeMatches = function (subject, predicate, object, why) {
this.removeStatements(this.staementsMatching(subject, predicate, object, why))
return this
}
$rdf.IndexedFormula.prototype.removeStatements = function (sts) {
for (var i = 0; i < sts.length; i++) {
this.remove(sts[i])
}
return this
}
/**
* Remove a particular statement object from the store
*
* st a statement which is already in the store and indexed.
* Make sure you only use this for these.
* Otherwise, you should use remove() above.
*/
$rdf.IndexedFormula.prototype.removeStatement = function (st) {
// $rdf.log.debug("entering remove w/ st=" + st)
var term = [ st.subject, st.predicate, st.object, st.why ]
for (var p = 0; p < 4; p++) {
var c = this.canon(term[p])
var h = c.hashString()
if (!this.index[p][h]) {
// $rdf.log.warn ("Statement removal: no index '+p+': "+st)
} else {
$rdf.Util.RDFArrayRemove(this.index[p][h], st)
}
}
$rdf.Util.RDFArrayRemove(this.statements, st)
return this
} // remove
// ////////////////// Self-consistency checking for diagnostis only
// Is each statement properly indexed?
$rdf.IndexedFormula.prototype.checkStatementList = function (sts, from) {
var names = ['subject', 'predicate', 'object', 'why']
var origin = ' found in ' + names[from] + ' index.'
var st
for (var j = 0; j < sts.length; j++) {
st = sts[j]
var term = [ st.subject, st.predicate, st.object, st.why ]
var arrayContains = function (a, x) {
for (var i = 0; i < a.length; i++) {
if (a[i].subject.sameTerm(x.subject) &&
a[i].predicate.sameTerm(x.predicate) &&
a[i].object.sameTerm(x.object) &&
a[i].why.sameTerm(x.why)) {
return true
}
}
}
for (var p = 0; p < 4; p++) {
var c = this.canon(term[p])
var h = c.hashString()
if (!this.index[p][h]) {
throw new Error('No ' + name[p] + ' index for statement ' + st + '@' + st.why + origin)
} else {
if (!arrayContains(this.index[p][h], st)) {
throw new Error('Index for ' + name[p] + ' does not have statement ' + st + '@' + st.why + origin)
}
}
}
if (!arrayContains(this.statements, st)) {
throw new Error('Statement list does not statement ' + st + '@' + st.why + origin)
}
}
}
$rdf.IndexedFormula.prototype.check = function () {
this.checkStatementList(this.statements)
for (var p = 0; p < 4; p++) {
var ix = this.index[p]
for (var key in ix) {
if (ix.hasOwnProperty(key)) {
this.checkStatementList(ix[key], p)
}
}
}
}
/** remove all statements matching args (within limit) **/
$rdf.IndexedFormula.prototype.removeMany = function (subj, pred, obj, why, limit) {
// $rdf.log.debug("entering removeMany w/ subj,pred,obj,why,limit = " + subj +", "+ pred+", " + obj+", " + why+", " + limit)
var sts = this.statementsMatching(subj, pred, obj, why, false)
// This is a subtle bug that occcured in updateCenter.js too.
// The fact is, this.statementsMatching returns this.whyIndex instead of a copy of it
// but for perfromance consideration, it's better to just do that
// so make a copy here.
var statements = []
for (var i = 0; i < sts.length; i++) statements.push(sts[i])
if (limit) statements = statements.slice(0, limit)
for (i = 0; i < statements.length; i++) this.remove(statements[i])
} // removeMany
/** Utility**/
/* @method: copyTo
@description: replace @template with @target and add appropriate triples (no triple removed)
one-direction replication
*/
$rdf.IndexedFormula.prototype.copyTo = function (template, target, flags) {
if (!flags) flags = []
var statList = this.statementsMatching(template)
if ($rdf.Util.ArrayIndexOf(flags, 'two-direction') !== -1) {
statList.concat(this.statementsMatching(undefined, undefined, template))
}
for (var i = 0;i < statList.length;i++) {
var st = statList[i]
switch (st.object.termType) {
case 'symbol':
this.add(target, st.predicate, st.object)
break
case 'literal':
case 'bnode':
case 'collection':
this.add(target, st.predicate, st.object.copy(this))
}
if ($rdf.Util.ArrayIndexOf(flags, 'delete') !== -1) {
this.remove(st)
}
}
}
// for the case when you alter this.value (text modified in userinput.js)
$rdf.Literal.prototype.copy = function () {
return new $rdf.Literal(this.value, this.lang, this.datatype)
}
$rdf.BlankNode.prototype.copy = function (formula) { // depends on the formula
var bnodeNew = new $rdf.BlankNode()
formula.copyTo(this, bnodeNew)
return bnodeNew
}
/** Full N3 bits -- placeholders only to allow parsing, no functionality! **/
$rdf.IndexedFormula.prototype.newUniversal = function (uri) {
var x = this.sym(uri)
if (!this._universalVariables) this._universalVariables = []
this._universalVariables.push(x)
return x
}
$rdf.IndexedFormula.prototype.newExistential = function (uri) {
if (!uri) return this.bnode()
var x = this.sym(uri)
return this.declareExistential(x)
}
$rdf.IndexedFormula.prototype.declareExistential = function (x) {
if (!this._existentialVariables) this._existentialVariables = []
this._existentialVariables.push(x)
return x
}
$rdf.IndexedFormula.prototype.formula = function (features) {
return new $rdf.IndexedFormula(features)
}
$rdf.IndexedFormula.prototype.close = function () {
return this
}
$rdf.IndexedFormula.prototype.hashString = $rdf.IndexedFormula.prototype.toNT
return $rdf.IndexedFormula
})()
// ends