-
Notifications
You must be signed in to change notification settings - Fork 3
/
simpleowlserializer.js
84 lines (70 loc) · 1.6 KB
/
simpleowlserializer.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
/*
* Copyright (c) 2016-present, IBM Research
* Licensed under The MIT License [see LICENSE for details]
*/
"use strict";
const owl = require("./owl");
const rdfs = require("./rdfs");
const xml = require("./xmlschema")
const Utils = require("./utils");
let owlVocabulary = new Set(Object.values(owl));
owlVocabulary.add(rdfs.DOMAIN_URI);
owlVocabulary.add(rdfs.RANGE_URI);
owlVocabulary.add(rdfs.SUBPROPERTYOF_URI);
owlVocabulary.add(owl.EQUIVALENT_PROPERTY_URI);
class SimpleOwlSerializer
{
constructor(sharedGraph, options)
{
this.graph = sharedGraph;
}
shouldConvertProperty (id, property, value)
{
// console.log("*****", id, property, value);
if(owlVocabulary.has(property) || owlVocabulary.has(value))
{
return true;
}
if(Array.isArray(value))
{
for(let i = 0; i < value.length; i++)
{
let v = value[i];
if(owlVocabulary.has(v))
{
return true;
}
}
}
return false;
}
convertProperty(id, property, value, metaProperty, graphName)
{
if(Array.isArray(value))
{
for(let i = 0; i < value.length; i++)
{
let v = value[i];
this._convert(id, property, v, metaProperty, graphName);
}
}
else
{
this._convert(id, property, value, metaProperty, graphName);
}
}
_convert(id, property, value, metaProperty, graphName)
{
let graph = this.graph;
// console.log(process)
if(Utils.isUriOrBlankNode(value))
{
graph.add(id, property, value, graphName);
}
else
{
graph.add(id, property, Utils.createLiteralObject(value, null, metaProperty), graphName);
}
}
}
module.exports = SimpleOwlSerializer;