omf_sfa 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +24 -0
- data/Gemfile +6 -0
- data/README.md +211 -0
- data/Rakefile +23 -0
- data/bin/parse_rspec.rb +167 -0
- data/etc/omf-sfa/omf-sfa-am.yaml +12 -0
- data/examples/exogeni5nodemanifest.rspec +105 -0
- data/examples/instageni5nodemanifest.rspec +150 -0
- data/lib/omf-sfa/am/am-rest/REST_API.md +301 -0
- data/lib/omf-sfa/am/am-rest/account_handler.rb +145 -0
- data/lib/omf-sfa/am/am-rest/am_rest_server.rb +255 -0
- data/lib/omf-sfa/am/am-rest/api_template.html +48 -0
- data/lib/omf-sfa/am/am-rest/config.ru +110 -0
- data/lib/omf-sfa/am/am-rest/resource_handler.rb +178 -0
- data/lib/omf-sfa/am/am-rest/rest_handler.rb +573 -0
- data/lib/omf-sfa/am/am-rest/session_authenticator.rb +130 -0
- data/lib/omf-sfa/am/am-rpc/abstract_rpc_service.rb +60 -0
- data/lib/omf-sfa/am/am-rpc/am_authorizer.rb +161 -0
- data/lib/omf-sfa/am/am-rpc/am_rpc_api.rb +450 -0
- data/lib/omf-sfa/am/am-rpc/am_rpc_service.rb +402 -0
- data/lib/omf-sfa/am/am_liaison.rb +93 -0
- data/lib/omf-sfa/am/am_manager.rb +859 -0
- data/lib/omf-sfa/am/am_runner.rb +108 -0
- data/lib/omf-sfa/am/am_scheduler.rb +146 -0
- data/lib/omf-sfa/am/am_server.rb +194 -0
- data/lib/omf-sfa/am/config.ru +122 -0
- data/lib/omf-sfa/am/credential.rb +145 -0
- data/lib/omf-sfa/am/default_authorizer.rb +44 -0
- data/lib/omf-sfa/am/privilege_credential.rb +76 -0
- data/lib/omf-sfa/am/signature.rb +37 -0
- data/lib/omf-sfa/am/user_credential.rb +56 -0
- data/lib/omf-sfa/am.rb +7 -0
- data/lib/omf-sfa/model/abstract_prop_description.rb +87 -0
- data/lib/omf-sfa/model/model_class_description.rb +145 -0
- data/lib/omf-sfa/model/model_data_prop_description.rb +28 -0
- data/lib/omf-sfa/model/model_obj_prop_description.rb +49 -0
- data/lib/omf-sfa/model/ontology.rb +169 -0
- data/lib/omf-sfa/resource/README.md +24 -0
- data/lib/omf-sfa/resource/channel.rb +49 -0
- data/lib/omf-sfa/resource/comp_group.rb +41 -0
- data/lib/omf-sfa/resource/component_lease.rb +10 -0
- data/lib/omf-sfa/resource/constants.rb +24 -0
- data/lib/omf-sfa/resource/group_component.rb +35 -0
- data/lib/omf-sfa/resource/group_membership.rb +17 -0
- data/lib/omf-sfa/resource/gurn.rb +187 -0
- data/lib/omf-sfa/resource/interface.rb +78 -0
- data/lib/omf-sfa/resource/ip.rb +48 -0
- data/lib/omf-sfa/resource/link.rb +29 -0
- data/lib/omf-sfa/resource/node.rb +75 -0
- data/lib/omf-sfa/resource/oaccount.rb +94 -0
- data/lib/omf-sfa/resource/ocomponent.rb +134 -0
- data/lib/omf-sfa/resource/ogroup.rb +106 -0
- data/lib/omf-sfa/resource/olease.rb +61 -0
- data/lib/omf-sfa/resource/oproperty.rb +178 -0
- data/lib/omf-sfa/resource/oreference.rb +15 -0
- data/lib/omf-sfa/resource/oresource.rb +491 -0
- data/lib/omf-sfa/resource/project.rb +28 -0
- data/lib/omf-sfa/resource/project_membership.rb +13 -0
- data/lib/omf-sfa/resource/sfa_base.rb +544 -0
- data/lib/omf-sfa/resource/user.rb +25 -0
- data/lib/omf-sfa/resource.rb +20 -0
- data/lib/omf-sfa/util/create_sample_testbed.rb +68 -0
- data/lib/omf-sfa/util/load_from_sfa_xml.rb +65 -0
- data/lib/omf-sfa/version.rb +4 -0
- data/lib/omf_sfa.rb +5 -0
- data/omf_sfa.gemspec +46 -0
- data/owl/README +3 -0
- data/owl/ben-6509.rdf +1377 -0
- data/owl/ben-dell.rdf +586 -0
- data/owl/ben-dtn.rdf +1698 -0
- data/owl/ben.rdf +1335 -0
- data/owl/collections.owl +309 -0
- data/owl/compute.owl +1486 -0
- data/owl/domain.owl +444 -0
- data/owl/dtn.owl +1165 -0
- data/owl/ec2.owl +385 -0
- data/owl/ethernet.owl +466 -0
- data/owl/eucalyptus.owl +431 -0
- data/owl/id-mp-Request1.rdf +247 -0
- data/owl/itu-grid.owl +147 -0
- data/owl/kansei.owl +511 -0
- data/owl/layer.owl +645 -0
- data/owl/location.owl +117 -0
- data/owl/mass.rdf +608 -0
- data/owl/nlr.rdf +901 -0
- data/owl/orca.owl +181 -0
- data/owl/planetlab.owl +124 -0
- data/owl/protogeni.owl +467 -0
- data/owl/request-6509-2.rdf +150 -0
- data/owl/request-6509-3.rdf +158 -0
- data/owl/request-6509.rdf +199 -0
- data/owl/request.owl +222 -0
- data/owl/storage.owl +511 -0
- data/owl/topology.owl +608 -0
- data/schema/rspec-v3/ad-common.xsd +269 -0
- data/schema/rspec-v3/ad-reservation.rnc +12 -0
- data/schema/rspec-v3/ad-reservation.rng +28 -0
- data/schema/rspec-v3/ad-reservation.xsd +13 -0
- data/schema/rspec-v3/ad.rnc +151 -0
- data/schema/rspec-v3/ad.xsd +77 -0
- data/schema/rspec-v3/any-extension-schema.xsd +38 -0
- data/schema/rspec-v3/any-extension.rnc +30 -0
- data/schema/rspec-v3/common.rnc +185 -0
- data/schema/rspec-v3/manifest-common.xsd +244 -0
- data/schema/rspec-v3/manifest-request.xsd +95 -0
- data/schema/rspec-v3/manifest.rnc +62 -0
- data/schema/rspec-v3/manifest.xsd +34 -0
- data/schema/rspec-v3/request-common.xsd +219 -0
- data/schema/rspec-v3/request-reservation.rnc +12 -0
- data/schema/rspec-v3/request-reservation.xsd +13 -0
- data/schema/rspec-v3/request.rnc +118 -0
- data/schema/rspec-v3/request.xsd +94 -0
- data/share/assets/css/default.css +147 -0
- data/share/assets/css/rest_api.css +0 -0
- data/share/assets/network.html +28 -0
- data/share/assets/network.js +82 -0
- data/spec/am/am-rest/common.rb +29 -0
- data/spec/am/am-rest/resource_group_handler_XspecX.rb +97 -0
- data/spec/am/am-rest/resource_handler_spec.rb +204 -0
- data/spec/am/am-rpc/sfa_methods_spec.rb +150 -0
- data/spec/am/am_manager_spec.rb +307 -0
- data/spec/am/am_scheduler_spec.rb +57 -0
- data/spec/am/common.rb +24 -0
- data/spec/resource/common.rb +31 -0
- data/spec/resource/node_spec.rb +171 -0
- data/spec/resource/oaccount_spec.rb +92 -0
- data/spec/resource/ocomponent_spec.rb +225 -0
- data/spec/resource/ogroup_spec.rb +93 -0
- data/spec/resource/oresource_spec.rb +208 -0
- data/spec/resource_and_leases_spec.rb +377 -0
- data/test/OLD_FILES/assertion1.xml +117 -0
- data/test/OLD_FILES/greeter_spec.rb +15 -0
- data/test/OLD_FILES/mongo_test.rb +45 -0
- data/test/OLD_FILES/req-sfa-2.xml +6 -0
- data/test/OLD_FILES/req-sfa-g.xml +8 -0
- data/test/OLD_FILES/req-sfa-g2.xml +10 -0
- data/test/OLD_FILES/req-sfa-g3.xml +14 -0
- data/test/OLD_FILES/req-sfa.xml +6 -0
- data/test/OLD_FILES/req1.xml +22 -0
- data/test/OLD_FILES/req1b.xml +15 -0
- data/test/OLD_FILES/rspec-test.xml +1867 -0
- data/test/OLD_FILES/test.rb +67 -0
- data/test/OLD_FILES/test2.rb +32 -0
- data/test/am/am_manager_rspec_tests.rb +378 -0
- data/test/am/am_manager_tests.rb +518 -0
- data/test/am/am_scheduler_tests.rb +173 -0
- data/test/resource/olease_test.rb +74 -0
- data/test/sfa_requests/request.xml +5 -0
- data/test/sfa_requests/request1.xml +5 -0
- data/test/sfa_requests/request2.xml +5 -0
- data/test/sfa_requests/request3.xml +5 -0
- metadata +601 -0
data/owl/storage.owl
ADDED
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
<!DOCTYPE rdf:RDF [
|
|
5
|
+
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
|
|
6
|
+
<!ENTITY dc "http://purl.org/dc/elements/1.1/" >
|
|
7
|
+
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
|
|
8
|
+
<!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" >
|
|
9
|
+
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
|
|
10
|
+
<!ENTITY dtn "http://geni-orca.renci.org/owl/dtn.owl#" >
|
|
11
|
+
<!ENTITY layer "http://geni-orca.renci.org/owl/layer.owl#" >
|
|
12
|
+
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
|
|
13
|
+
<!ENTITY compute "http://geni-orca.renci.org/owl/compute.owl#" >
|
|
14
|
+
<!ENTITY topology "http://geni-orca.renci.org/owl/topology.owl#" >
|
|
15
|
+
]>
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
<rdf:RDF xmlns="http://geni-orca.renci.org/owl/storage.owl#"
|
|
19
|
+
xml:base="http://geni-orca.renci.org/owl/storage.owl"
|
|
20
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
21
|
+
xmlns:dtn="http://geni-orca.renci.org/owl/dtn.owl#"
|
|
22
|
+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
|
23
|
+
xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
|
|
24
|
+
xmlns:layer="http://geni-orca.renci.org/owl/layer.owl#"
|
|
25
|
+
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
|
26
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
|
27
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
28
|
+
xmlns:compute="http://geni-orca.renci.org/owl/compute.owl#"
|
|
29
|
+
xmlns:topology="http://geni-orca.renci.org/owl/topology.owl#">
|
|
30
|
+
<owl:Ontology rdf:about="http://geni-orca.renci.org/owl/storage.owl">
|
|
31
|
+
<rdfs:comment>An Ontology to describe the storage services.</rdfs:comment>
|
|
32
|
+
<dc:contributor>Yufeng Xin</dc:contributor>
|
|
33
|
+
<rdfs:isDefinedBy>RENCI
|
|
34
|
+
UNC-Chapel Hill
|
|
35
|
+
Nov. 10 2009
|
|
36
|
+
yxin@renci.org</rdfs:isDefinedBy>
|
|
37
|
+
<owl:imports rdf:resource="http://geni-orca.renci.org/owl/compute.owl"/>
|
|
38
|
+
</owl:Ontology>
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
<!--
|
|
43
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
44
|
+
//
|
|
45
|
+
// Annotation properties
|
|
46
|
+
//
|
|
47
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
48
|
+
-->
|
|
49
|
+
|
|
50
|
+
<owl:AnnotationProperty rdf:about="&dc;contributor"/>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
<!--
|
|
55
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
56
|
+
//
|
|
57
|
+
// Datatypes
|
|
58
|
+
//
|
|
59
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
60
|
+
-->
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<!-- http://org.semanticweb.owlapi/error#Error1 -->
|
|
66
|
+
|
|
67
|
+
<rdfs:Datatype rdf:about="http://org.semanticweb.owlapi/error#Error1"/>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<!-- http://org.semanticweb.owlapi/error#Error2 -->
|
|
72
|
+
|
|
73
|
+
<rdfs:Datatype rdf:about="http://org.semanticweb.owlapi/error#Error2"/>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
<!--
|
|
78
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
79
|
+
//
|
|
80
|
+
// Object Properties
|
|
81
|
+
//
|
|
82
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
83
|
+
-->
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#availableLabelSet -->
|
|
89
|
+
|
|
90
|
+
<owl:ObjectProperty rdf:about="&layer;availableLabelSet"/>
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#feature -->
|
|
95
|
+
|
|
96
|
+
<owl:ObjectProperty rdf:about="&layer;feature"/>
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#label -->
|
|
101
|
+
|
|
102
|
+
<owl:ObjectProperty rdf:about="&layer;label"/>
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#usedLabelSet -->
|
|
107
|
+
|
|
108
|
+
<owl:ObjectProperty rdf:about="&layer;usedLabelSet"/>
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#availableLUNLabelSet -->
|
|
113
|
+
|
|
114
|
+
<owl:ObjectProperty rdf:about="http://geni-orca.renci.org/owl/storage.owl#availableLUNLabelSet">
|
|
115
|
+
<rdfs:subPropertyOf rdf:resource="&layer;availableLabelSet"/>
|
|
116
|
+
</owl:ObjectProperty>
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#lun -->
|
|
121
|
+
|
|
122
|
+
<owl:ObjectProperty rdf:about="http://geni-orca.renci.org/owl/storage.owl#lun">
|
|
123
|
+
<rdfs:comment>Logic Unit Number</rdfs:comment>
|
|
124
|
+
<rdfs:subPropertyOf rdf:resource="&layer;label"/>
|
|
125
|
+
</owl:ObjectProperty>
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#raidLevel -->
|
|
130
|
+
|
|
131
|
+
<owl:ObjectProperty rdf:about="http://geni-orca.renci.org/owl/storage.owl#raidLevel">
|
|
132
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
133
|
+
<rdfs:domain rdf:resource="&compute;Storage"/>
|
|
134
|
+
<rdfs:subPropertyOf rdf:resource="&layer;feature"/>
|
|
135
|
+
<rdfs:range rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
136
|
+
</owl:ObjectProperty>
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#storageVolume -->
|
|
141
|
+
|
|
142
|
+
<owl:ObjectProperty rdf:about="http://geni-orca.renci.org/owl/storage.owl#storageVolume">
|
|
143
|
+
<rdfs:domain rdf:resource="&compute;Storage"/>
|
|
144
|
+
<rdfs:subPropertyOf rdf:resource="&layer;feature"/>
|
|
145
|
+
<rdfs:range rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
146
|
+
</owl:ObjectProperty>
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#usedLUNLabelSet -->
|
|
151
|
+
|
|
152
|
+
<owl:ObjectProperty rdf:about="http://geni-orca.renci.org/owl/storage.owl#usedLUNLabelSet">
|
|
153
|
+
<rdfs:subPropertyOf rdf:resource="&layer;usedLabelSet"/>
|
|
154
|
+
</owl:ObjectProperty>
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
<!--
|
|
159
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
160
|
+
//
|
|
161
|
+
// Data properties
|
|
162
|
+
//
|
|
163
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
164
|
+
-->
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#metric -->
|
|
170
|
+
|
|
171
|
+
<owl:DatatypeProperty rdf:about="&layer;metric"/>
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#numVolumes -->
|
|
176
|
+
|
|
177
|
+
<owl:DatatypeProperty rdf:about="http://geni-orca.renci.org/owl/storage.owl#numVolumes">
|
|
178
|
+
<rdfs:domain rdf:resource="&compute;Storage"/>
|
|
179
|
+
<rdfs:subPropertyOf rdf:resource="&layer;metric"/>
|
|
180
|
+
<rdfs:range rdf:resource="&xsd;integer"/>
|
|
181
|
+
</owl:DatatypeProperty>
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#storageCapacity -->
|
|
186
|
+
|
|
187
|
+
<owl:DatatypeProperty rdf:about="http://geni-orca.renci.org/owl/storage.owl#storageCapacity">
|
|
188
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
189
|
+
<rdfs:subPropertyOf rdf:resource="&layer;metric"/>
|
|
190
|
+
<rdfs:range rdf:resource="&xsd;integer"/>
|
|
191
|
+
<rdfs:domain>
|
|
192
|
+
<owl:Class>
|
|
193
|
+
<owl:unionOf rdf:parseType="Collection">
|
|
194
|
+
<rdf:Description rdf:about="&compute;Storage"/>
|
|
195
|
+
<rdf:Description rdf:about="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
196
|
+
</owl:unionOf>
|
|
197
|
+
</owl:Class>
|
|
198
|
+
</rdfs:domain>
|
|
199
|
+
</owl:DatatypeProperty>
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
<!--
|
|
204
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
205
|
+
//
|
|
206
|
+
// Classes
|
|
207
|
+
//
|
|
208
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
209
|
+
-->
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ComputeElement -->
|
|
215
|
+
|
|
216
|
+
<owl:Class rdf:about="&compute;ComputeElement"/>
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Storage -->
|
|
221
|
+
|
|
222
|
+
<owl:Class rdf:about="&compute;Storage"/>
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#Feature -->
|
|
227
|
+
|
|
228
|
+
<owl:Class rdf:about="&layer;Feature"/>
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#FiberChannel -->
|
|
233
|
+
|
|
234
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#FiberChannel">
|
|
235
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#SAN"/>
|
|
236
|
+
</owl:Class>
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#IDE40G -->
|
|
241
|
+
|
|
242
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#IDE40G">
|
|
243
|
+
<owl:equivalentClass>
|
|
244
|
+
<owl:Restriction>
|
|
245
|
+
<owl:onProperty rdf:resource="http://geni-orca.renci.org/owl/storage.owl#storageCapacity"/>
|
|
246
|
+
<owl:hasValue>40GB</owl:hasValue>
|
|
247
|
+
</owl:Restriction>
|
|
248
|
+
</owl:equivalentClass>
|
|
249
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#IDEDisk"/>
|
|
250
|
+
</owl:Class>
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#IDEDisk -->
|
|
255
|
+
|
|
256
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#IDEDisk">
|
|
257
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
258
|
+
</owl:Class>
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#ISCSI -->
|
|
263
|
+
|
|
264
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#ISCSI">
|
|
265
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#SAN"/>
|
|
266
|
+
</owl:Class>
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#NFS -->
|
|
271
|
+
|
|
272
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#NFS">
|
|
273
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#StorageServer"/>
|
|
274
|
+
</owl:Class>
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#PhysicalStorage -->
|
|
279
|
+
|
|
280
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#PhysicalStorage">
|
|
281
|
+
<rdfs:subClassOf rdf:resource="&layer;Feature"/>
|
|
282
|
+
</owl:Class>
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid0 -->
|
|
287
|
+
|
|
288
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid0">
|
|
289
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
290
|
+
</owl:Class>
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid1 -->
|
|
295
|
+
|
|
296
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid1">
|
|
297
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
298
|
+
</owl:Class>
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid10 -->
|
|
303
|
+
|
|
304
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid10">
|
|
305
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
306
|
+
</owl:Class>
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid2 -->
|
|
311
|
+
|
|
312
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid2">
|
|
313
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
314
|
+
</owl:Class>
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid3 -->
|
|
319
|
+
|
|
320
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid3">
|
|
321
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
322
|
+
</owl:Class>
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid4 -->
|
|
327
|
+
|
|
328
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid4">
|
|
329
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
330
|
+
</owl:Class>
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid5 -->
|
|
335
|
+
|
|
336
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid5">
|
|
337
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
338
|
+
</owl:Class>
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#Raid6 -->
|
|
343
|
+
|
|
344
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#Raid6">
|
|
345
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RaidLevel"/>
|
|
346
|
+
</owl:Class>
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#RaidLevel -->
|
|
351
|
+
|
|
352
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#RaidLevel">
|
|
353
|
+
<rdfs:subClassOf rdf:resource="&layer;Feature"/>
|
|
354
|
+
</owl:Class>
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#RamDisk -->
|
|
359
|
+
|
|
360
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#RamDisk">
|
|
361
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
362
|
+
</owl:Class>
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume -->
|
|
367
|
+
|
|
368
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume">
|
|
369
|
+
<rdfs:subClassOf rdf:resource="&layer;Feature"/>
|
|
370
|
+
</owl:Class>
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#RawStorageVolumeInstance -->
|
|
375
|
+
|
|
376
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolumeInstance">
|
|
377
|
+
<rdfs:subClassOf rdf:resource="&layer;Feature"/>
|
|
378
|
+
</owl:Class>
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SAN -->
|
|
383
|
+
|
|
384
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#SAN">
|
|
385
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#PhysicalStorage"/>
|
|
386
|
+
</owl:Class>
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SASDisk -->
|
|
391
|
+
|
|
392
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#SASDisk">
|
|
393
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
394
|
+
</owl:Class>
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SATA250G -->
|
|
399
|
+
|
|
400
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#SATA250G">
|
|
401
|
+
<owl:equivalentClass>
|
|
402
|
+
<owl:Restriction>
|
|
403
|
+
<owl:onProperty rdf:resource="http://geni-orca.renci.org/owl/storage.owl#storageCapacity"/>
|
|
404
|
+
<owl:hasValue>250GB</owl:hasValue>
|
|
405
|
+
</owl:Restriction>
|
|
406
|
+
</owl:equivalentClass>
|
|
407
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#SATADisk"/>
|
|
408
|
+
</owl:Class>
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SATADisk -->
|
|
413
|
+
|
|
414
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#SATADisk">
|
|
415
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
416
|
+
</owl:Class>
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SCSI146G -->
|
|
421
|
+
|
|
422
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#SCSI146G">
|
|
423
|
+
<owl:equivalentClass>
|
|
424
|
+
<owl:Restriction>
|
|
425
|
+
<owl:onProperty rdf:resource="http://geni-orca.renci.org/owl/storage.owl#storageCapacity"/>
|
|
426
|
+
<owl:hasValue>146GB</owl:hasValue>
|
|
427
|
+
</owl:Restriction>
|
|
428
|
+
</owl:equivalentClass>
|
|
429
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#SCSIDisk"/>
|
|
430
|
+
</owl:Class>
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SCSIDisk -->
|
|
435
|
+
|
|
436
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#SCSIDisk">
|
|
437
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
438
|
+
</owl:Class>
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#StorageCloud -->
|
|
443
|
+
|
|
444
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#StorageCloud">
|
|
445
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#PhysicalStorage"/>
|
|
446
|
+
</owl:Class>
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#StorageInstance -->
|
|
451
|
+
|
|
452
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#StorageInstance">
|
|
453
|
+
<rdfs:subClassOf rdf:resource="&compute;ComputeElementComponent"/>
|
|
454
|
+
</owl:Class>
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#StorageServer -->
|
|
459
|
+
|
|
460
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#StorageServer">
|
|
461
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#PhysicalStorage"/>
|
|
462
|
+
</owl:Class>
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#USBDisk -->
|
|
467
|
+
|
|
468
|
+
<owl:Class rdf:about="http://geni-orca.renci.org/owl/storage.owl#USBDisk">
|
|
469
|
+
<rdfs:subClassOf rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolume"/>
|
|
470
|
+
</owl:Class>
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
<!--
|
|
475
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
476
|
+
//
|
|
477
|
+
// Individuals
|
|
478
|
+
//
|
|
479
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
480
|
+
-->
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#IDE40G -->
|
|
486
|
+
|
|
487
|
+
<owl:NamedIndividual rdf:about="http://geni-orca.renci.org/owl/storage.owl#IDE40G">
|
|
488
|
+
<rdf:type rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolumeInstance"/>
|
|
489
|
+
</owl:NamedIndividual>
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SATA250G -->
|
|
494
|
+
|
|
495
|
+
<owl:NamedIndividual rdf:about="http://geni-orca.renci.org/owl/storage.owl#SATA250G">
|
|
496
|
+
<rdf:type rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolumeInstance"/>
|
|
497
|
+
</owl:NamedIndividual>
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
<!-- http://geni-orca.renci.org/owl/storage.owl#SCSI146G -->
|
|
502
|
+
|
|
503
|
+
<owl:NamedIndividual rdf:about="http://geni-orca.renci.org/owl/storage.owl#SCSI146G">
|
|
504
|
+
<rdf:type rdf:resource="http://geni-orca.renci.org/owl/storage.owl#RawStorageVolumeInstance"/>
|
|
505
|
+
</owl:NamedIndividual>
|
|
506
|
+
</rdf:RDF>
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
<!-- Generated by the OWL API (version 3.2.3.22702) http://owlapi.sourceforge.net -->
|
|
511
|
+
|