This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
create_dot_file.rb
359 lines (298 loc) · 7.64 KB
/
create_dot_file.rb
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
require 'rubygems'
require 'uri'
require 'open-uri'
require 'net/http'
require 'hpricot'
require 'digest/sha1'
require 'reddy'
## this method generates a dot file from a *schema*
def createDotFileFromSchema(graph, xmlns_hash)
#puts xmlns_hash
#use domain and range to create links
nodes = {}
links = []
count = 0
text = "digraph Summary_Graph {\nratio=0.7\n"
graph.triples.each do |t|
##object properties
if t.predicate.to_s=="http://www.w3.org/1999/02/22-rdf-syntax-ns#type" && t.object.to_s == "http://www.w3.org/2002/07/owl#ObjectProperty"
s = t.subject
#dd = graph.each_with_subject(s)
#puts "S: "+s.to_s+"\n"
ss = s.to_s
ns = ""
if (ss =~ /(http.*)#(.*)/ )
ns = $1+"#"
ss = $2
else
if (ss =~ /(http.*)\/(.*)/ )
ns = $1+"/"
ss = $2
end
end
nssm=""
#puts "NS "+ns
if ns && ns!=""
nssm = xmlns_hash[ns]
end
foo = nssm.gsub(/xmlns:/,"")
ss=foo+":"+ss
dom=""
ran=""
graph.triples.each do |tt|
if tt.subject.to_s==s.to_s && tt.predicate.to_s=="http://www.w3.org/2000/01/rdf-schema#domain"
ns = ""
dom = tt.object.to_s
if (dom =~ /(http.*)#(.*)/ )
ns = $1+"#"
dom = $2
else
if (dom =~ /(http.*)\/(.*)/ )
ns = $1+"/"
dom = $2
end
end
nssm=""
if ns && ns!=""
nssm = xmlns_hash[ns]
end
foo = nssm.gsub(/xmlns:/,"")
dom=foo+":"+dom
if nodes.include?(dom)
else
nodes[dom]=dom
end
#print "domain: "+tt.object.to_s+"\n"
end
if tt.subject.to_s==s.to_s && tt.predicate.to_s=="http://www.w3.org/2000/01/rdf-schema#range"
ns = ""
ran = tt.object.to_s
if (ran =~ /(http.*)#(.*)/ )
ns = $1+"#"
ran = $2
else
if (ran =~ /(http.*)\/(.*)/ )
ns = $1+"/"
ran = $2
end
end
nssm=""
if ns && ns!=""
nssm = xmlns_hash[ns]
end
foo = nssm.gsub(/xmlns:/,"")
ran=foo+":"+ran
links.push("\"#{dom}\"->\"#{ran}\" [label=\"#{ss}\"]")
if nodes.include?(ran)
else
nodes[ran]=ran
end
#print "range: "+tt.object.to_s+"\n"
end
end
end
#datatype properties
if t.predicate.to_s=="http://www.w3.org/1999/02/22-rdf-syntax-ns#type" && t.object.to_s == "http://www.w3.org/2002/07/owl#DatatypeProperty"
s = t.subject
#dd = graph.each_with_subject(s)
#puts "S: "+s.to_s+"\n"
ss = s.to_s
ns = ""
if (ss =~ /(http.*)#(.*)/ )
ns = $1+"#"
ss = $2
else
if (ss =~ /(http.*)\/(.*)/ )
ns = $1+"/"
ss = $2
end
end
nssm=""
#puts "NS "+ns
if ns && ns!=""
nssm = xmlns_hash[ns]
end
foo = nssm.gsub(/xmlns:/,"")
ss=foo+":"+ss
dom=""
ran=""
graph.triples.each do |tt|
if tt.subject.to_s==s.to_s && tt.predicate.to_s=="http://www.w3.org/2000/01/rdf-schema#domain"
ns = ""
dom = tt.object.to_s
if (dom =~ /(http.*)#(.*)/ )
ns = $1+"#"
dom = $2
else
if (dom =~ /(http.*)\/(.*)/ )
ns = $1+"/"
dom = $2
end
end
nssm=""
if ns && ns!=""
nssm = xmlns_hash[ns]
end
foo = nssm.gsub(/xmlns:/,"")
dom=foo+":"+dom
if nodes.include?(dom)
else
nodes[dom]=dom
end
#print "domain: "+tt.object.to_s+"\n"
end
if tt.subject.to_s==s.to_s && tt.predicate.to_s=="http://www.w3.org/2000/01/rdf-schema#range"
ns = ""
ran = tt.object.to_s
if (ran =~ /(http.*)#(.*)/ )
ns = $1+"#"
ran = $2
else
if (ran =~ /(http.*)\/(.*)/ )
ns = $1+"/"
ran = $2
end
end
nssm=""
if ns && ns!=""
nssm = xmlns_hash[ns]
end
foo = nssm.gsub(/xmlns:/,"")
ran=foo+":"+ran
links.push("\"#{dom}\"->\"#{ran}\" [label=\"#{ss}\"]")
if nodes.include?(ran)
else
nodes[ran]=ran
end
#print "range: "+tt.object.to_s+"\n"
end
end
end
# note - just handle unionOf, parsetype=collection etc
# any remaining classes
if t.predicate.to_s=="http://www.w3.org/1999/02/22-rdf-syntax-ns#type" && (t.object.to_s=="http://www.w3.org/2000/01/rdf-schema#Class" || t.object.to_s=="http://www.w3.org/2002/07/owl#Class")
s = t.subject
#puts "S: "+s.to_s+"\n"
ss = s.to_s
ns = ""
if (ss =~ /(http.*)#(.*)/ )
ns = $1+"#"
ss = $2
else
if (ss =~ /(http.*)\/(.*)/ )
ns = $1+"/"
ss = $2
end
end
nssm=""
#puts "NS "+ns
if ns && ns!=""
nssm = xmlns_hash[ns]
end
foo = nssm.gsub(/xmlns:/,"")
ss=foo+":"+ss
if nodes.include?(ss)
else
nodes[ss]=ss
end
end
end
nodes.each_key do |k|
text << "\"#{nodes[k]}\" [label=\"#{k}\"]\n"
end
text << links.join("\n")
text << "\n}"
#puts text
file = File.new("test_schema.dot", "w")
file.puts(text)
end
## this method generates a dot file from *instance* data
def createDotFile(graph)
# loop through all, getting out types
# if not a type make a link
nodes = {}
links = []
count = 0
text = "digraph Summary_Graph {\nratio=0.7\n"
graph.triples.each do |t|
if nodes.include?(t.object.to_s)
n = nodes[t.object.to_s]
else
n = "n#{count}"
nodes[t.object.to_s]=n
count=count+1
end
if nodes.include?(t.subject.to_s)
n2 = nodes[t.subject.to_s]
else
n2 = "n#{count}"
nodes[t.subject.to_s]=n2
count=count+1
end
if t.predicate.to_s=="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
else
r = t.predicate.to_s
if (r =~ /.*\/(.*)/ )
r = $1
end
if (r =~ /.*#(.*)/ )
r = $1
end
links.push("#{n2}->#{n} [label=\"#{r}\"]")
end
end
#puts nodes
nodes.each_key do |k|
r = k.to_s
if (r =~ /.*\/(.*)/ )
r = $1
end
if (r =~ /.*#(.*)/ )
r = $1
end
text << "#{nodes[k]} [label=\"#{r}\"]\n"
end
text << links.join("\n")
text << "\n}"
#puts text
file = File.new("test.dot", "w")
file.puts(text)
end
def has_object(graph,object)
graph.triples.each do |value|
if value.object == object
return true
end
end
return false
end
def each_with_object(graph, object)
graph.triples.each do |value|
yield value if value.object == object
end
end
begin
#load rdfxml file
puts ARGV[0]
if(!ARGV[0])
puts "Usage: ruby create_dot_file.rb file"
puts "file should include any directories"
else
doc = File.read(ARGV[0])
parser = RdfXmlParser.new(doc)
xml = Hpricot.XML(doc)
xmlns_hash = {}
(xml/'rdf:RDF').each do |item|
h = item.attributes
h.each do |xmlns|
short = xmlns[0]
uri = xmlns[1]
xmlns_hash[uri]=short
parser.graph.namespace(uri, short)
end
end
puts parser.graph.to_ntriples
# createDotFile(parser.graph)
createDotFileFromSchema(parser.graph, xmlns_hash)
end
end