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/compute.owl
ADDED
|
@@ -0,0 +1,1486 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
<!DOCTYPE rdf:RDF [
|
|
5
|
+
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
|
|
6
|
+
<!ENTITY owl2 "http://geni-orca.renci.org/owl/" >
|
|
7
|
+
<!ENTITY dc "http://purl.org/dc/elements/1.1/" >
|
|
8
|
+
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
|
|
9
|
+
<!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" >
|
|
10
|
+
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
|
|
11
|
+
<!ENTITY dtn "http://geni-orca.renci.org/owl/dtn.owl#" >
|
|
12
|
+
<!ENTITY layer "http://geni-orca.renci.org/owl/layer.owl#" >
|
|
13
|
+
<!ENTITY domain "http://geni-orca.renci.org/owl/domain.owl#" >
|
|
14
|
+
<!ENTITY storage "http://geni-orca.renci.org/owl/storage.owl#" >
|
|
15
|
+
<!ENTITY compute "http://geni-orca.renci.org/owl/compute.owl#" >
|
|
16
|
+
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
|
|
17
|
+
<!ENTITY topology "http://geni-orca.renci.org/owl/topology.owl#" >
|
|
18
|
+
<!ENTITY compute3 "http://geni-orca.renci.org/owl/compute.owl#32" >
|
|
19
|
+
<!ENTITY compute2 "http://geni-orca.renci.org/owl/compute.owl#64" >
|
|
20
|
+
]>
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
<rdf:RDF xmlns="&owl2;compute.owl#"
|
|
24
|
+
xml:base="&owl2;compute.owl"
|
|
25
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
26
|
+
xmlns:layer="&owl2;layer.owl#"
|
|
27
|
+
xmlns:owl2="http://geni-orca.renci.org/owl/"
|
|
28
|
+
xmlns:dtn="&owl2;dtn.owl#"
|
|
29
|
+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
|
30
|
+
xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
|
|
31
|
+
xmlns:domain="&owl2;domain.owl#"
|
|
32
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
|
33
|
+
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
|
34
|
+
xmlns:compute3="&owl2;compute.owl#32"
|
|
35
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
36
|
+
xmlns:compute="&owl2;compute.owl#"
|
|
37
|
+
xmlns:topology="&owl2;topology.owl#"
|
|
38
|
+
xmlns:compute2="&owl2;compute.owl#64"
|
|
39
|
+
xmlns:storage="&owl2;storage.owl#">
|
|
40
|
+
<owl:Ontology rdf:about="">
|
|
41
|
+
<rdfs:comment
|
|
42
|
+
>Compute element ontology</rdfs:comment>
|
|
43
|
+
<rdfs:isDefinedBy
|
|
44
|
+
>RENCI
|
|
45
|
+
UNC-Chapel Hill
|
|
46
|
+
2009-2011
|
|
47
|
+
yxin@renci.org, ibaldin@renci.org</rdfs:isDefinedBy>
|
|
48
|
+
<dc:contributor
|
|
49
|
+
>Yufeng Xin, Ilia Baldine</dc:contributor>
|
|
50
|
+
<owl:imports rdf:resource="&owl2;collections.owl"/>
|
|
51
|
+
<owl:imports rdf:resource="&owl2;domain.owl"/>
|
|
52
|
+
<owl:imports rdf:resource="&owl2;layer.owl"/>
|
|
53
|
+
<owl:imports rdf:resource="&owl2;location.owl"/>
|
|
54
|
+
<owl:imports rdf:resource="&owl2;topology.owl"/>
|
|
55
|
+
</owl:Ontology>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<!--
|
|
60
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
61
|
+
//
|
|
62
|
+
// Annotation properties
|
|
63
|
+
//
|
|
64
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
65
|
+
-->
|
|
66
|
+
|
|
67
|
+
<owl:AnnotationProperty rdf:about="&dc;contributor"/>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<!--
|
|
72
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
73
|
+
//
|
|
74
|
+
// Object Properties
|
|
75
|
+
//
|
|
76
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
77
|
+
-->
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VM-in-Server -->
|
|
83
|
+
|
|
84
|
+
<owl:ObjectProperty rdf:about="#VM-in-Server">
|
|
85
|
+
<rdfs:range rdf:resource="#ClassifiedComputeElement"/>
|
|
86
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
87
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#AdaptationProperty"/>
|
|
88
|
+
</owl:ObjectProperty>
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#availablePortLabelSet -->
|
|
93
|
+
|
|
94
|
+
<owl:ObjectProperty rdf:about="#availablePortLabelSet">
|
|
95
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#availableLabelSet"/>
|
|
96
|
+
</owl:ObjectProperty>
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#availableVMLabelSet -->
|
|
101
|
+
|
|
102
|
+
<owl:ObjectProperty rdf:about="#availableVMLabelSet">
|
|
103
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
104
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#availableLabelSet"/>
|
|
105
|
+
</owl:ObjectProperty>
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#computeElementType -->
|
|
110
|
+
|
|
111
|
+
<owl:ObjectProperty rdf:about="#computeElementType">
|
|
112
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
113
|
+
<rdfs:comment
|
|
114
|
+
>A blade, a mote, a server, a laptop?</rdfs:comment>
|
|
115
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
116
|
+
<rdfs:range rdf:resource="#ComputeElementType"/>
|
|
117
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
118
|
+
</owl:ObjectProperty>
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#cpu -->
|
|
123
|
+
|
|
124
|
+
<owl:ObjectProperty rdf:about="#cpu">
|
|
125
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
126
|
+
<rdfs:range rdf:resource="#CPU"/>
|
|
127
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
128
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
129
|
+
</owl:ObjectProperty>
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#cpuArchitecture -->
|
|
134
|
+
|
|
135
|
+
<owl:ObjectProperty rdf:about="#cpuArchitecture">
|
|
136
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
137
|
+
<rdfs:comment
|
|
138
|
+
>x86, x86-64 or other</rdfs:comment>
|
|
139
|
+
<rdfs:domain rdf:resource="#CPU"/>
|
|
140
|
+
<rdfs:range rdf:resource="#CPUArchitecture"/>
|
|
141
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
142
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
143
|
+
</owl:ObjectProperty>
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#diskImage -->
|
|
148
|
+
|
|
149
|
+
<owl:ObjectProperty rdf:about="#diskImage">
|
|
150
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
151
|
+
<rdfs:range rdf:resource="#DiskImage"/>
|
|
152
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
153
|
+
</owl:ObjectProperty>
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#hasHost -->
|
|
158
|
+
|
|
159
|
+
<owl:ObjectProperty rdf:about="#hasHost">
|
|
160
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
161
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
162
|
+
<rdfs:range rdf:resource="#ComputeElement"/>
|
|
163
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
164
|
+
</owl:ObjectProperty>
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#hasServerSize -->
|
|
169
|
+
|
|
170
|
+
<owl:ObjectProperty rdf:about="#hasServerSize">
|
|
171
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
172
|
+
<rdf:type rdf:resource="&owl;InverseFunctionalProperty"/>
|
|
173
|
+
<rdfs:domain rdf:resource="#ClassifiedComputeElement"/>
|
|
174
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
175
|
+
</owl:ObjectProperty>
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#hasUnitServer -->
|
|
180
|
+
|
|
181
|
+
<owl:ObjectProperty rdf:about="#hasUnitServer">
|
|
182
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
183
|
+
</owl:ObjectProperty>
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#memory -->
|
|
188
|
+
|
|
189
|
+
<owl:ObjectProperty rdf:about="#memory">
|
|
190
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
191
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
192
|
+
<rdfs:range rdf:resource="#RAM"/>
|
|
193
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
194
|
+
</owl:ObjectProperty>
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#os -->
|
|
199
|
+
|
|
200
|
+
<owl:ObjectProperty rdf:about="#os">
|
|
201
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
202
|
+
<rdfs:range rdf:resource="#OS"/>
|
|
203
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
204
|
+
<rdfs:domain>
|
|
205
|
+
<owl:Class>
|
|
206
|
+
<owl:unionOf rdf:parseType="Collection">
|
|
207
|
+
<rdf:Description rdf:about="#ComputeElement"/>
|
|
208
|
+
<rdf:Description rdf:about="#DiskImage"/>
|
|
209
|
+
</owl:unionOf>
|
|
210
|
+
</owl:Class>
|
|
211
|
+
</rdfs:domain>
|
|
212
|
+
</owl:ObjectProperty>
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ram -->
|
|
217
|
+
|
|
218
|
+
<owl:ObjectProperty rdf:about="#ram">
|
|
219
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
220
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
221
|
+
<rdfs:range rdf:resource="#RAMInstance"/>
|
|
222
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
223
|
+
</owl:ObjectProperty>
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ramType -->
|
|
228
|
+
|
|
229
|
+
<owl:ObjectProperty rdf:about="#ramType">
|
|
230
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
231
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
232
|
+
<rdfs:range rdf:resource="#RAMTypeInstance"/>
|
|
233
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
234
|
+
</owl:ObjectProperty>
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#specificCE -->
|
|
239
|
+
|
|
240
|
+
<owl:ObjectProperty rdf:about="#specificCE">
|
|
241
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
242
|
+
<rdfs:comment
|
|
243
|
+
>Allows specify what specific CE this is e.g. in a request - a ComputeElement <ceInstance specificCE EucaC1Medium></rdfs:comment>
|
|
244
|
+
<rdfs:range rdf:resource="#ClassifiedComputeElementInstance"/>
|
|
245
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
246
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
247
|
+
</owl:ObjectProperty>
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#storage -->
|
|
252
|
+
|
|
253
|
+
<owl:ObjectProperty rdf:about="#storage">
|
|
254
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
255
|
+
<rdfs:range rdf:resource="#Storage"/>
|
|
256
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
257
|
+
</owl:ObjectProperty>
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#usedVMLabelSet -->
|
|
262
|
+
|
|
263
|
+
<owl:ObjectProperty rdf:about="#usedVMLabelSet">
|
|
264
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#usedLabelSet"/>
|
|
265
|
+
</owl:ObjectProperty>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#vendor -->
|
|
270
|
+
|
|
271
|
+
<owl:ObjectProperty rdf:about="#vendor">
|
|
272
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
273
|
+
<rdfs:range rdf:resource="#Vendor"/>
|
|
274
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
275
|
+
</owl:ObjectProperty>
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#virtualize -->
|
|
280
|
+
|
|
281
|
+
<owl:ObjectProperty rdf:about="#virtualize">
|
|
282
|
+
<rdfs:range rdf:resource="#ClassifiedComputeElementInstance"/>
|
|
283
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
284
|
+
</owl:ObjectProperty>
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#vmLabel -->
|
|
289
|
+
|
|
290
|
+
<owl:ObjectProperty rdf:about="#vmLabel">
|
|
291
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
292
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#label"/>
|
|
293
|
+
</owl:ObjectProperty>
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#vmm -->
|
|
298
|
+
|
|
299
|
+
<owl:ObjectProperty rdf:about="#vmm">
|
|
300
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
301
|
+
<rdfs:range rdf:resource="#VMM"/>
|
|
302
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#feature"/>
|
|
303
|
+
</owl:ObjectProperty>
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#AdaptationProperty -->
|
|
308
|
+
|
|
309
|
+
<owl:ObjectProperty rdf:about="&owl2;layer.owl#AdaptationProperty"/>
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#availableLabelSet -->
|
|
314
|
+
|
|
315
|
+
<owl:ObjectProperty rdf:about="&owl2;layer.owl#availableLabelSet"/>
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#feature -->
|
|
320
|
+
|
|
321
|
+
<owl:ObjectProperty rdf:about="&owl2;layer.owl#feature"/>
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#label -->
|
|
326
|
+
|
|
327
|
+
<owl:ObjectProperty rdf:about="&owl2;layer.owl#label"/>
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#usedLabelSet -->
|
|
332
|
+
|
|
333
|
+
<owl:ObjectProperty rdf:about="&owl2;layer.owl#usedLabelSet"/>
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
<!-- http://www.w3.org/2002/07/owl#versionIRI -->
|
|
338
|
+
|
|
339
|
+
<owl:ObjectProperty rdf:about="&owl;versionIRI"/>
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
<!--
|
|
344
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
345
|
+
//
|
|
346
|
+
// Data properties
|
|
347
|
+
//
|
|
348
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
349
|
+
-->
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#clockFrequency -->
|
|
355
|
+
|
|
356
|
+
<owl:DatatypeProperty rdf:about="#clockFrequency">
|
|
357
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
358
|
+
<rdfs:domain rdf:resource="#CPU"/>
|
|
359
|
+
<rdfs:domain rdf:resource="#RAM"/>
|
|
360
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#metric"/>
|
|
361
|
+
<rdfs:range rdf:resource="&rdfs;Literal"/>
|
|
362
|
+
</owl:DatatypeProperty>
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#cpuFamily -->
|
|
367
|
+
|
|
368
|
+
<owl:DatatypeProperty rdf:about="#cpuFamily">
|
|
369
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
370
|
+
<rdfs:domain rdf:resource="#CPU"/>
|
|
371
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
372
|
+
<rdfs:range rdf:resource="&rdfs;Literal"/>
|
|
373
|
+
</owl:DatatypeProperty>
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#cpuModel -->
|
|
378
|
+
|
|
379
|
+
<owl:DatatypeProperty rdf:about="#cpuModel">
|
|
380
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
381
|
+
</owl:DatatypeProperty>
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#memoryCapacity -->
|
|
386
|
+
|
|
387
|
+
<owl:DatatypeProperty rdf:about="#memoryCapacity">
|
|
388
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
389
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#metric"/>
|
|
390
|
+
<rdfs:range rdf:resource="&rdfs;Literal"/>
|
|
391
|
+
<rdfs:domain>
|
|
392
|
+
<owl:Class>
|
|
393
|
+
<owl:unionOf rdf:parseType="Collection">
|
|
394
|
+
<rdf:Description rdf:about="#ClassifiedComputeElement"/>
|
|
395
|
+
<rdf:Description rdf:about="#ComputeElement"/>
|
|
396
|
+
<rdf:Description rdf:about="#RAM"/>
|
|
397
|
+
</owl:unionOf>
|
|
398
|
+
</owl:Class>
|
|
399
|
+
</rdfs:domain>
|
|
400
|
+
</owl:DatatypeProperty>
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#numCPUCores -->
|
|
405
|
+
|
|
406
|
+
<owl:DatatypeProperty rdf:about="#numCPUCores">
|
|
407
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
408
|
+
<rdfs:domain rdf:resource="#CPU"/>
|
|
409
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
410
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#metric"/>
|
|
411
|
+
<rdfs:range rdf:resource="&xsd;integer"/>
|
|
412
|
+
</owl:DatatypeProperty>
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#numCPUs -->
|
|
417
|
+
|
|
418
|
+
<owl:DatatypeProperty rdf:about="#numCPUs">
|
|
419
|
+
<rdfs:domain rdf:resource="#ComputeElement"/>
|
|
420
|
+
<rdfs:subPropertyOf rdf:resource="&owl2;layer.owl#metric"/>
|
|
421
|
+
<rdfs:range rdf:resource="&xsd;integer"/>
|
|
422
|
+
</owl:DatatypeProperty>
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#osDistribution -->
|
|
427
|
+
|
|
428
|
+
<owl:DatatypeProperty rdf:about="#osDistribution">
|
|
429
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
430
|
+
<rdfs:range rdf:resource="&rdfs;Literal"/>
|
|
431
|
+
</owl:DatatypeProperty>
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#osVersion -->
|
|
436
|
+
|
|
437
|
+
<owl:DatatypeProperty rdf:about="#osVersion">
|
|
438
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
439
|
+
<rdfs:domain rdf:resource="#OS"/>
|
|
440
|
+
<rdfs:range rdf:resource="&rdfs;Literal"/>
|
|
441
|
+
</owl:DatatypeProperty>
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#serverSize -->
|
|
446
|
+
|
|
447
|
+
<owl:DatatypeProperty rdf:about="#serverSize">
|
|
448
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
449
|
+
<rdfs:range rdf:resource="&xsd;integer"/>
|
|
450
|
+
</owl:DatatypeProperty>
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#resourceTypeRank -->
|
|
455
|
+
|
|
456
|
+
<owl:DatatypeProperty rdf:about="&owl2;domain.owl#resourceTypeRank"/>
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#metric -->
|
|
461
|
+
|
|
462
|
+
<owl:DatatypeProperty rdf:about="&owl2;layer.owl#metric">
|
|
463
|
+
<rdfs:comment
|
|
464
|
+
>Individual performance metrics</rdfs:comment>
|
|
465
|
+
</owl:DatatypeProperty>
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasName -->
|
|
470
|
+
|
|
471
|
+
<owl:DatatypeProperty rdf:about="&owl2;topology.owl#hasName"/>
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasURL -->
|
|
476
|
+
|
|
477
|
+
<owl:DatatypeProperty rdf:about="&owl2;topology.owl#hasURL">
|
|
478
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
479
|
+
</owl:DatatypeProperty>
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasURN -->
|
|
484
|
+
|
|
485
|
+
<owl:DatatypeProperty rdf:about="&owl2;topology.owl#hasURN">
|
|
486
|
+
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
|
487
|
+
</owl:DatatypeProperty>
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
<!--
|
|
492
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
493
|
+
//
|
|
494
|
+
// Classes
|
|
495
|
+
//
|
|
496
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
497
|
+
-->
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#BareMetalCE -->
|
|
503
|
+
|
|
504
|
+
<owl:Class rdf:about="#BareMetalCE">
|
|
505
|
+
<owl:equivalentClass>
|
|
506
|
+
<owl:Restriction>
|
|
507
|
+
<owl:onProperty rdf:resource="#vmm"/>
|
|
508
|
+
<owl:hasValue rdf:resource="#None"/>
|
|
509
|
+
</owl:Restriction>
|
|
510
|
+
</owl:equivalentClass>
|
|
511
|
+
<rdfs:subClassOf rdf:resource="#ClassifiedComputeElement"/>
|
|
512
|
+
</owl:Class>
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#CPU -->
|
|
517
|
+
|
|
518
|
+
<owl:Class rdf:about="#CPU">
|
|
519
|
+
<rdfs:subClassOf rdf:resource="#ComputeElementComponent"/>
|
|
520
|
+
<rdfs:subClassOf>
|
|
521
|
+
<owl:Restriction>
|
|
522
|
+
<owl:onProperty rdf:resource="#cpuArchitecture"/>
|
|
523
|
+
<owl:someValuesFrom rdf:resource="#CPUArchitecture"/>
|
|
524
|
+
</owl:Restriction>
|
|
525
|
+
</rdfs:subClassOf>
|
|
526
|
+
<rdfs:comment
|
|
527
|
+
>Parent class of various CPU types</rdfs:comment>
|
|
528
|
+
</owl:Class>
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#CPUArchitecture -->
|
|
533
|
+
|
|
534
|
+
<owl:Class rdf:about="#CPUArchitecture">
|
|
535
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Feature"/>
|
|
536
|
+
</owl:Class>
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#CPUInstance -->
|
|
541
|
+
|
|
542
|
+
<owl:Class rdf:about="#CPUInstance">
|
|
543
|
+
<rdfs:subClassOf rdf:resource="#ComputeElementComponent"/>
|
|
544
|
+
</owl:Class>
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ClassifiedComputeElement -->
|
|
549
|
+
|
|
550
|
+
<owl:Class rdf:about="#ClassifiedComputeElement">
|
|
551
|
+
<rdfs:subClassOf rdf:resource="#ComputeElement"/>
|
|
552
|
+
</owl:Class>
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ClassifiedComputeElementInstance -->
|
|
557
|
+
|
|
558
|
+
<owl:Class rdf:about="#ClassifiedComputeElementInstance">
|
|
559
|
+
<rdfs:subClassOf rdf:resource="#ComputeElement"/>
|
|
560
|
+
</owl:Class>
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ComputeElement -->
|
|
565
|
+
|
|
566
|
+
<owl:Class rdf:about="#ComputeElement">
|
|
567
|
+
<rdfs:subClassOf rdf:resource="&owl2;topology.owl#NetworkElement"/>
|
|
568
|
+
</owl:Class>
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ComputeElementComponent -->
|
|
573
|
+
|
|
574
|
+
<owl:Class rdf:about="#ComputeElementComponent">
|
|
575
|
+
<rdfs:subClassOf rdf:resource="&owl;Thing"/>
|
|
576
|
+
</owl:Class>
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ComputeElementType -->
|
|
581
|
+
|
|
582
|
+
<owl:Class rdf:about="#ComputeElementType">
|
|
583
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Feature"/>
|
|
584
|
+
</owl:Class>
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR1066 -->
|
|
589
|
+
|
|
590
|
+
<owl:Class rdf:about="#DDR1066">
|
|
591
|
+
<owl:equivalentClass>
|
|
592
|
+
<owl:Restriction>
|
|
593
|
+
<owl:onProperty rdf:resource="#clockFrequency"/>
|
|
594
|
+
<owl:hasValue>1066MHz</owl:hasValue>
|
|
595
|
+
</owl:Restriction>
|
|
596
|
+
</owl:equivalentClass>
|
|
597
|
+
<rdfs:subClassOf rdf:resource="#DDRRam"/>
|
|
598
|
+
</owl:Class>
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR2-1066 -->
|
|
603
|
+
|
|
604
|
+
<owl:Class rdf:about="#DDR2-1066">
|
|
605
|
+
<owl:equivalentClass>
|
|
606
|
+
<owl:Restriction>
|
|
607
|
+
<owl:onProperty rdf:resource="#clockFrequency"/>
|
|
608
|
+
<owl:hasValue>1066MHz</owl:hasValue>
|
|
609
|
+
</owl:Restriction>
|
|
610
|
+
</owl:equivalentClass>
|
|
611
|
+
<rdfs:subClassOf rdf:resource="#DDR2Ram"/>
|
|
612
|
+
</owl:Class>
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR2-400 -->
|
|
617
|
+
|
|
618
|
+
<owl:Class rdf:about="#DDR2-400">
|
|
619
|
+
<owl:equivalentClass>
|
|
620
|
+
<owl:Restriction>
|
|
621
|
+
<owl:onProperty rdf:resource="#clockFrequency"/>
|
|
622
|
+
<owl:hasValue>400MHz</owl:hasValue>
|
|
623
|
+
</owl:Restriction>
|
|
624
|
+
</owl:equivalentClass>
|
|
625
|
+
<rdfs:subClassOf rdf:resource="#DDR2Ram"/>
|
|
626
|
+
</owl:Class>
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR266 -->
|
|
631
|
+
|
|
632
|
+
<owl:Class rdf:about="#DDR266">
|
|
633
|
+
<owl:equivalentClass>
|
|
634
|
+
<owl:Restriction>
|
|
635
|
+
<owl:onProperty rdf:resource="#clockFrequency"/>
|
|
636
|
+
<owl:hasValue>266MHz</owl:hasValue>
|
|
637
|
+
</owl:Restriction>
|
|
638
|
+
</owl:equivalentClass>
|
|
639
|
+
<rdfs:subClassOf rdf:resource="#DDRRam"/>
|
|
640
|
+
</owl:Class>
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR2Ram -->
|
|
645
|
+
|
|
646
|
+
<owl:Class rdf:about="#DDR2Ram">
|
|
647
|
+
<rdfs:subClassOf rdf:resource="#RAMType"/>
|
|
648
|
+
</owl:Class>
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDRRam -->
|
|
653
|
+
|
|
654
|
+
<owl:Class rdf:about="#DDRRam">
|
|
655
|
+
<rdfs:subClassOf rdf:resource="#RAMType"/>
|
|
656
|
+
</owl:Class>
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DiskImage -->
|
|
661
|
+
|
|
662
|
+
<owl:Class rdf:about="#DiskImage">
|
|
663
|
+
<rdfs:subClassOf rdf:resource="#ComputeElementComponent"/>
|
|
664
|
+
<rdfs:subClassOf>
|
|
665
|
+
<owl:Restriction>
|
|
666
|
+
<owl:onProperty rdf:resource="#os"/>
|
|
667
|
+
<owl:someValuesFrom rdf:resource="#OS"/>
|
|
668
|
+
</owl:Restriction>
|
|
669
|
+
</rdfs:subClassOf>
|
|
670
|
+
<rdfs:subClassOf>
|
|
671
|
+
<owl:Restriction>
|
|
672
|
+
<owl:onProperty rdf:resource="&owl2;topology.owl#hasName"/>
|
|
673
|
+
<owl:someValuesFrom rdf:resource="&rdfs;Literal"/>
|
|
674
|
+
</owl:Restriction>
|
|
675
|
+
</rdfs:subClassOf>
|
|
676
|
+
</owl:Class>
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#GenericX86 -->
|
|
681
|
+
|
|
682
|
+
<owl:Class rdf:about="#GenericX86">
|
|
683
|
+
<owl:equivalentClass>
|
|
684
|
+
<owl:Restriction>
|
|
685
|
+
<owl:onProperty rdf:resource="#cpuArchitecture"/>
|
|
686
|
+
<owl:hasValue rdf:resource="#x86"/>
|
|
687
|
+
</owl:Restriction>
|
|
688
|
+
</owl:equivalentClass>
|
|
689
|
+
<rdfs:subClassOf rdf:resource="#CPU"/>
|
|
690
|
+
</owl:Class>
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#GenericX86-64 -->
|
|
695
|
+
|
|
696
|
+
<owl:Class rdf:about="#GenericX86-64">
|
|
697
|
+
<owl:equivalentClass>
|
|
698
|
+
<owl:Restriction>
|
|
699
|
+
<owl:onProperty rdf:resource="#cpuArchitecture"/>
|
|
700
|
+
<owl:hasValue rdf:resource="#x86-64"/>
|
|
701
|
+
</owl:Restriction>
|
|
702
|
+
</owl:equivalentClass>
|
|
703
|
+
<rdfs:subClassOf rdf:resource="#CPU"/>
|
|
704
|
+
</owl:Class>
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#KVMCE -->
|
|
709
|
+
|
|
710
|
+
<owl:Class rdf:about="#KVMCE">
|
|
711
|
+
<owl:equivalentClass>
|
|
712
|
+
<owl:Restriction>
|
|
713
|
+
<owl:onProperty rdf:resource="#vmm"/>
|
|
714
|
+
<owl:hasValue rdf:resource="#KVM"/>
|
|
715
|
+
</owl:Restriction>
|
|
716
|
+
</owl:equivalentClass>
|
|
717
|
+
<rdfs:subClassOf rdf:resource="#VM"/>
|
|
718
|
+
</owl:Class>
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Linux -->
|
|
723
|
+
|
|
724
|
+
<owl:Class rdf:about="#Linux">
|
|
725
|
+
<rdfs:subClassOf rdf:resource="#OS"/>
|
|
726
|
+
</owl:Class>
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#MacOS -->
|
|
731
|
+
|
|
732
|
+
<owl:Class rdf:about="#MacOS">
|
|
733
|
+
<rdfs:subClassOf rdf:resource="#OS"/>
|
|
734
|
+
</owl:Class>
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#MemoryLabel -->
|
|
739
|
+
|
|
740
|
+
<owl:Class rdf:about="#MemoryLabel">
|
|
741
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Label"/>
|
|
742
|
+
</owl:Class>
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#OS -->
|
|
747
|
+
|
|
748
|
+
<owl:Class rdf:about="#OS">
|
|
749
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Feature"/>
|
|
750
|
+
</owl:Class>
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#OpenVZCE -->
|
|
755
|
+
|
|
756
|
+
<owl:Class rdf:about="#OpenVZCE">
|
|
757
|
+
<owl:equivalentClass>
|
|
758
|
+
<owl:Restriction>
|
|
759
|
+
<owl:onProperty rdf:resource="#vmm"/>
|
|
760
|
+
<owl:hasValue rdf:resource="#OpenVZ"/>
|
|
761
|
+
</owl:Restriction>
|
|
762
|
+
</owl:equivalentClass>
|
|
763
|
+
<rdfs:subClassOf rdf:resource="#VM"/>
|
|
764
|
+
</owl:Class>
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#PC133-SDRAM -->
|
|
769
|
+
|
|
770
|
+
<owl:Class rdf:about="#PC133-SDRAM">
|
|
771
|
+
<owl:equivalentClass>
|
|
772
|
+
<owl:Restriction>
|
|
773
|
+
<owl:onProperty rdf:resource="#clockFrequency"/>
|
|
774
|
+
<owl:hasValue>133MHz</owl:hasValue>
|
|
775
|
+
</owl:Restriction>
|
|
776
|
+
</owl:equivalentClass>
|
|
777
|
+
<rdfs:subClassOf rdf:resource="#SDRAM"/>
|
|
778
|
+
</owl:Class>
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Pentium3 -->
|
|
783
|
+
|
|
784
|
+
<owl:Class rdf:about="#Pentium3">
|
|
785
|
+
<owl:equivalentClass>
|
|
786
|
+
<owl:Restriction>
|
|
787
|
+
<owl:onProperty rdf:resource="#cpuArchitecture"/>
|
|
788
|
+
<owl:hasValue rdf:resource="#x86"/>
|
|
789
|
+
</owl:Restriction>
|
|
790
|
+
</owl:equivalentClass>
|
|
791
|
+
<rdfs:subClassOf rdf:resource="#CPU"/>
|
|
792
|
+
</owl:Class>
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Port -->
|
|
797
|
+
|
|
798
|
+
<owl:Class rdf:about="#Port">
|
|
799
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Label"/>
|
|
800
|
+
</owl:Class>
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#QuadNehalem24 -->
|
|
805
|
+
|
|
806
|
+
<owl:Class rdf:about="#QuadNehalem24">
|
|
807
|
+
<owl:equivalentClass>
|
|
808
|
+
<owl:Class>
|
|
809
|
+
<owl:intersectionOf rdf:parseType="Collection">
|
|
810
|
+
<owl:Restriction>
|
|
811
|
+
<owl:onProperty rdf:resource="#cpuArchitecture"/>
|
|
812
|
+
<owl:hasValue rdf:resource="#x86-64"/>
|
|
813
|
+
</owl:Restriction>
|
|
814
|
+
<owl:Restriction>
|
|
815
|
+
<owl:onProperty rdf:resource="#vendor"/>
|
|
816
|
+
<owl:hasValue rdf:resource="#Intel"/>
|
|
817
|
+
</owl:Restriction>
|
|
818
|
+
<owl:Restriction>
|
|
819
|
+
<owl:onProperty rdf:resource="#clockFrequency"/>
|
|
820
|
+
<owl:hasValue>2.4GHz</owl:hasValue>
|
|
821
|
+
</owl:Restriction>
|
|
822
|
+
<owl:Restriction>
|
|
823
|
+
<owl:onProperty rdf:resource="#cpuFamily"/>
|
|
824
|
+
<owl:hasValue>Xeon</owl:hasValue>
|
|
825
|
+
</owl:Restriction>
|
|
826
|
+
<owl:Restriction>
|
|
827
|
+
<owl:onProperty rdf:resource="#cpuModel"/>
|
|
828
|
+
<owl:hasValue>Nehalem</owl:hasValue>
|
|
829
|
+
</owl:Restriction>
|
|
830
|
+
<owl:Restriction>
|
|
831
|
+
<owl:onProperty rdf:resource="#numCPUCores"/>
|
|
832
|
+
<owl:hasValue rdf:datatype="&xsd;integer">4</owl:hasValue>
|
|
833
|
+
</owl:Restriction>
|
|
834
|
+
</owl:intersectionOf>
|
|
835
|
+
</owl:Class>
|
|
836
|
+
</owl:equivalentClass>
|
|
837
|
+
<rdfs:subClassOf rdf:resource="#CPU"/>
|
|
838
|
+
</owl:Class>
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#RAM -->
|
|
843
|
+
|
|
844
|
+
<owl:Class rdf:about="#RAM">
|
|
845
|
+
<rdfs:subClassOf rdf:resource="#ComputeElementComponent"/>
|
|
846
|
+
<rdfs:comment
|
|
847
|
+
>Parent class of various RAMs</rdfs:comment>
|
|
848
|
+
</owl:Class>
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#RAMInstance -->
|
|
853
|
+
|
|
854
|
+
<owl:Class rdf:about="#RAMInstance">
|
|
855
|
+
<rdfs:subClassOf rdf:resource="#ComputeElementComponent"/>
|
|
856
|
+
</owl:Class>
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#RAMType -->
|
|
861
|
+
|
|
862
|
+
<owl:Class rdf:about="#RAMType">
|
|
863
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Feature"/>
|
|
864
|
+
</owl:Class>
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#RAMTypeInstance -->
|
|
869
|
+
|
|
870
|
+
<owl:Class rdf:about="#RAMTypeInstance">
|
|
871
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Feature"/>
|
|
872
|
+
</owl:Class>
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#SDRAM -->
|
|
877
|
+
|
|
878
|
+
<owl:Class rdf:about="#SDRAM">
|
|
879
|
+
<rdfs:subClassOf rdf:resource="#RAMType"/>
|
|
880
|
+
</owl:Class>
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ServerCloud -->
|
|
885
|
+
|
|
886
|
+
<owl:Class rdf:about="#ServerCloud">
|
|
887
|
+
<rdfs:subClassOf rdf:resource="#ComputeElement"/>
|
|
888
|
+
</owl:Class>
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Storage -->
|
|
893
|
+
|
|
894
|
+
<owl:Class rdf:about="#Storage">
|
|
895
|
+
<rdfs:subClassOf rdf:resource="#ComputeElementComponent"/>
|
|
896
|
+
<rdfs:comment
|
|
897
|
+
>See storage.owl for details</rdfs:comment>
|
|
898
|
+
</owl:Class>
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Testbed -->
|
|
903
|
+
|
|
904
|
+
<owl:Class rdf:about="#Testbed">
|
|
905
|
+
<rdfs:subClassOf rdf:resource="#ComputeElement"/>
|
|
906
|
+
</owl:Class>
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VM -->
|
|
911
|
+
|
|
912
|
+
<owl:Class rdf:about="#VM">
|
|
913
|
+
<owl:equivalentClass>
|
|
914
|
+
<owl:Restriction>
|
|
915
|
+
<owl:onProperty rdf:resource="#os"/>
|
|
916
|
+
<owl:someValuesFrom rdf:resource="#OS"/>
|
|
917
|
+
</owl:Restriction>
|
|
918
|
+
</owl:equivalentClass>
|
|
919
|
+
<rdfs:subClassOf rdf:resource="#ClassifiedComputeElement"/>
|
|
920
|
+
</owl:Class>
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VMM -->
|
|
925
|
+
|
|
926
|
+
<owl:Class rdf:about="#VMM">
|
|
927
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Feature"/>
|
|
928
|
+
</owl:Class>
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VServerCE -->
|
|
933
|
+
|
|
934
|
+
<owl:Class rdf:about="#VServerCE">
|
|
935
|
+
<owl:equivalentClass>
|
|
936
|
+
<owl:Restriction>
|
|
937
|
+
<owl:onProperty rdf:resource="#vmm"/>
|
|
938
|
+
<owl:hasValue rdf:resource="#VServer"/>
|
|
939
|
+
</owl:Restriction>
|
|
940
|
+
</owl:equivalentClass>
|
|
941
|
+
<rdfs:subClassOf rdf:resource="#VM"/>
|
|
942
|
+
</owl:Class>
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Vendor -->
|
|
947
|
+
|
|
948
|
+
<owl:Class rdf:about="#Vendor">
|
|
949
|
+
<rdfs:subClassOf rdf:resource="&owl2;layer.owl#Feature"/>
|
|
950
|
+
</owl:Class>
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Windows -->
|
|
955
|
+
|
|
956
|
+
<owl:Class rdf:about="#Windows">
|
|
957
|
+
<rdfs:subClassOf rdf:resource="#OS"/>
|
|
958
|
+
</owl:Class>
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#XenCE -->
|
|
963
|
+
|
|
964
|
+
<owl:Class rdf:about="#XenCE">
|
|
965
|
+
<owl:equivalentClass>
|
|
966
|
+
<owl:Restriction>
|
|
967
|
+
<owl:onProperty rdf:resource="#vmm"/>
|
|
968
|
+
<owl:hasValue rdf:resource="#Xen"/>
|
|
969
|
+
</owl:Restriction>
|
|
970
|
+
</owl:equivalentClass>
|
|
971
|
+
<rdfs:subClassOf rdf:resource="#VM"/>
|
|
972
|
+
</owl:Class>
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Xeon3 -->
|
|
977
|
+
|
|
978
|
+
<owl:Class rdf:about="#Xeon3">
|
|
979
|
+
<owl:equivalentClass>
|
|
980
|
+
<owl:Class>
|
|
981
|
+
<owl:intersectionOf rdf:parseType="Collection">
|
|
982
|
+
<owl:Restriction>
|
|
983
|
+
<owl:onProperty rdf:resource="#cpuArchitecture"/>
|
|
984
|
+
<owl:hasValue rdf:resource="#x86-64"/>
|
|
985
|
+
</owl:Restriction>
|
|
986
|
+
<owl:Restriction>
|
|
987
|
+
<owl:onProperty rdf:resource="#vendor"/>
|
|
988
|
+
<owl:hasValue rdf:resource="#Intel"/>
|
|
989
|
+
</owl:Restriction>
|
|
990
|
+
<owl:Restriction>
|
|
991
|
+
<owl:onProperty rdf:resource="#clockFrequency"/>
|
|
992
|
+
<owl:hasValue>3.0GHz</owl:hasValue>
|
|
993
|
+
</owl:Restriction>
|
|
994
|
+
<owl:Restriction>
|
|
995
|
+
<owl:onProperty rdf:resource="#cpuFamily"/>
|
|
996
|
+
<owl:hasValue>Xeon</owl:hasValue>
|
|
997
|
+
</owl:Restriction>
|
|
998
|
+
<owl:Restriction>
|
|
999
|
+
<owl:onProperty rdf:resource="#cpuModel"/>
|
|
1000
|
+
<owl:hasValue>Xeon</owl:hasValue>
|
|
1001
|
+
</owl:Restriction>
|
|
1002
|
+
<owl:Restriction>
|
|
1003
|
+
<owl:onProperty rdf:resource="#numCPUCores"/>
|
|
1004
|
+
<owl:hasValue rdf:datatype="&xsd;integer">1</owl:hasValue>
|
|
1005
|
+
</owl:Restriction>
|
|
1006
|
+
</owl:intersectionOf>
|
|
1007
|
+
</owl:Class>
|
|
1008
|
+
</owl:equivalentClass>
|
|
1009
|
+
<rdfs:subClassOf rdf:resource="#CPU"/>
|
|
1010
|
+
</owl:Class>
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#ResourceType -->
|
|
1015
|
+
|
|
1016
|
+
<owl:Class rdf:about="&owl2;domain.owl#ResourceType"/>
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
|
|
1020
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#Feature -->
|
|
1021
|
+
|
|
1022
|
+
<owl:Class rdf:about="&owl2;layer.owl#Feature"/>
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#Label -->
|
|
1027
|
+
|
|
1028
|
+
<owl:Class rdf:about="&owl2;layer.owl#Label"/>
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
|
|
1032
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#NetworkElement -->
|
|
1033
|
+
|
|
1034
|
+
<owl:Class rdf:about="&owl2;topology.owl#NetworkElement"/>
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
<!-- http://www.w3.org/2002/07/owl#NamedIndividual -->
|
|
1039
|
+
|
|
1040
|
+
<owl:Class rdf:about="&owl;NamedIndividual"/>
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
<!-- http://www.w3.org/2002/07/owl#Thing -->
|
|
1045
|
+
|
|
1046
|
+
<owl:Class rdf:about="&owl;Thing"/>
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
|
|
1050
|
+
<!--
|
|
1051
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
1052
|
+
//
|
|
1053
|
+
// Individuals
|
|
1054
|
+
//
|
|
1055
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
1056
|
+
-->
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
<!-- http://geni-orca.renci.org/owl/compute-v2.owl -->
|
|
1062
|
+
|
|
1063
|
+
<rdf:Description rdf:about="&owl2;compute-v2.owl"/>
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl -->
|
|
1068
|
+
|
|
1069
|
+
<rdf:Description rdf:about="">
|
|
1070
|
+
<owl:versionIRI rdf:resource="&owl2;compute-v2.owl"/>
|
|
1071
|
+
</rdf:Description>
|
|
1072
|
+
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#AMD -->
|
|
1076
|
+
|
|
1077
|
+
<owl:NamedIndividual rdf:about="#AMD">
|
|
1078
|
+
<rdf:type rdf:resource="#Vendor"/>
|
|
1079
|
+
</owl:NamedIndividual>
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ARM2 -->
|
|
1084
|
+
|
|
1085
|
+
<CPUArchitecture rdf:about="#ARM2">
|
|
1086
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1087
|
+
</CPUArchitecture>
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ARM6 -->
|
|
1092
|
+
|
|
1093
|
+
<owl:NamedIndividual rdf:about="#ARM6">
|
|
1094
|
+
<rdf:type rdf:resource="#CPUArchitecture"/>
|
|
1095
|
+
</owl:NamedIndividual>
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#AppleInc -->
|
|
1100
|
+
|
|
1101
|
+
<Vendor rdf:about="#AppleInc">
|
|
1102
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1103
|
+
</Vendor>
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
|
|
1107
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Atmel -->
|
|
1108
|
+
|
|
1109
|
+
<owl:NamedIndividual rdf:about="#Atmel">
|
|
1110
|
+
<rdf:type rdf:resource="#Vendor"/>
|
|
1111
|
+
</owl:NamedIndividual>
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#BareMetalCE -->
|
|
1116
|
+
|
|
1117
|
+
<owl:NamedIndividual rdf:about="#BareMetalCE">
|
|
1118
|
+
<rdf:type rdf:resource="#ClassifiedComputeElementInstance"/>
|
|
1119
|
+
<rdf:type rdf:resource="&owl2;domain.owl#ResourceType"/>
|
|
1120
|
+
</owl:NamedIndividual>
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Blade -->
|
|
1125
|
+
|
|
1126
|
+
<owl:NamedIndividual rdf:about="#Blade">
|
|
1127
|
+
<rdf:type rdf:resource="#ComputeElementType"/>
|
|
1128
|
+
</owl:NamedIndividual>
|
|
1129
|
+
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#CentOS-5.5 -->
|
|
1133
|
+
|
|
1134
|
+
<Linux rdf:about="#CentOS-5.5">
|
|
1135
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1136
|
+
<osVersion>5.5</osVersion>
|
|
1137
|
+
<osDistribution>CentOS</osDistribution>
|
|
1138
|
+
<vendor rdf:resource="#CentOSFoundation"/>
|
|
1139
|
+
</Linux>
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#CentOSFoundation -->
|
|
1144
|
+
|
|
1145
|
+
<owl:NamedIndividual rdf:about="#CentOSFoundation">
|
|
1146
|
+
<rdf:type rdf:resource="#Vendor"/>
|
|
1147
|
+
</owl:NamedIndividual>
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
|
|
1151
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR1066 -->
|
|
1152
|
+
|
|
1153
|
+
<RAMTypeInstance rdf:about="#DDR1066">
|
|
1154
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1155
|
+
</RAMTypeInstance>
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR2-1066 -->
|
|
1160
|
+
|
|
1161
|
+
<owl:NamedIndividual rdf:about="#DDR2-1066">
|
|
1162
|
+
<rdf:type rdf:resource="#RAMTypeInstance"/>
|
|
1163
|
+
</owl:NamedIndividual>
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR2-400 -->
|
|
1168
|
+
|
|
1169
|
+
<RAMTypeInstance rdf:about="#DDR2-400">
|
|
1170
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1171
|
+
</RAMTypeInstance>
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#DDR266 -->
|
|
1176
|
+
|
|
1177
|
+
<owl:NamedIndividual rdf:about="#DDR266">
|
|
1178
|
+
<rdf:type rdf:resource="#RAMTypeInstance"/>
|
|
1179
|
+
</owl:NamedIndividual>
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Debian -->
|
|
1184
|
+
|
|
1185
|
+
<owl:NamedIndividual rdf:about="#Debian">
|
|
1186
|
+
<rdf:type rdf:resource="#Vendor"/>
|
|
1187
|
+
</owl:NamedIndividual>
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#ESX -->
|
|
1192
|
+
|
|
1193
|
+
<VMM rdf:about="#ESX">
|
|
1194
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1195
|
+
</VMM>
|
|
1196
|
+
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#GenericRam -->
|
|
1200
|
+
|
|
1201
|
+
<owl:NamedIndividual rdf:about="#GenericRam">
|
|
1202
|
+
<rdf:type rdf:resource="#RAMType"/>
|
|
1203
|
+
</owl:NamedIndividual>
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
|
|
1207
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#GenericX86 -->
|
|
1208
|
+
|
|
1209
|
+
<owl:NamedIndividual rdf:about="#GenericX86">
|
|
1210
|
+
<rdf:type rdf:resource="#CPUInstance"/>
|
|
1211
|
+
</owl:NamedIndividual>
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#GenericX86-64 -->
|
|
1216
|
+
|
|
1217
|
+
<CPUInstance rdf:about="#GenericX86-64">
|
|
1218
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1219
|
+
</CPUInstance>
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
|
|
1223
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#IA-64 -->
|
|
1224
|
+
|
|
1225
|
+
<CPUArchitecture rdf:about="#IA-64">
|
|
1226
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1227
|
+
<rdfs:comment
|
|
1228
|
+
>Server-class 64-bit x64 from Intel</rdfs:comment>
|
|
1229
|
+
</CPUArchitecture>
|
|
1230
|
+
|
|
1231
|
+
|
|
1232
|
+
|
|
1233
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Intel -->
|
|
1234
|
+
|
|
1235
|
+
<Vendor rdf:about="#Intel">
|
|
1236
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1237
|
+
</Vendor>
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
|
|
1241
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#KVM -->
|
|
1242
|
+
|
|
1243
|
+
<VMM rdf:about="#KVM">
|
|
1244
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1245
|
+
</VMM>
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#KVMCE -->
|
|
1250
|
+
|
|
1251
|
+
<domain:ResourceType rdf:about="#KVMCE">
|
|
1252
|
+
<rdf:type rdf:resource="#ClassifiedComputeElementInstance"/>
|
|
1253
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1254
|
+
</domain:ResourceType>
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Laptop -->
|
|
1259
|
+
|
|
1260
|
+
<ComputeElementType rdf:about="#Laptop">
|
|
1261
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1262
|
+
</ComputeElementType>
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Microsoft -->
|
|
1267
|
+
|
|
1268
|
+
<owl:NamedIndividual rdf:about="#Microsoft">
|
|
1269
|
+
<rdf:type rdf:resource="#Vendor"/>
|
|
1270
|
+
</owl:NamedIndividual>
|
|
1271
|
+
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#None -->
|
|
1275
|
+
|
|
1276
|
+
<owl:NamedIndividual rdf:about="#None">
|
|
1277
|
+
<rdf:type rdf:resource="#VMM"/>
|
|
1278
|
+
</owl:NamedIndividual>
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#OpenVZ -->
|
|
1283
|
+
|
|
1284
|
+
<owl:NamedIndividual rdf:about="#OpenVZ">
|
|
1285
|
+
<rdf:type rdf:resource="#VMM"/>
|
|
1286
|
+
</owl:NamedIndividual>
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
|
|
1290
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#OpenVZCE -->
|
|
1291
|
+
|
|
1292
|
+
<ClassifiedComputeElementInstance rdf:about="#OpenVZCE">
|
|
1293
|
+
<rdf:type rdf:resource="&owl2;domain.owl#ResourceType"/>
|
|
1294
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1295
|
+
</ClassifiedComputeElementInstance>
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
|
|
1299
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#PC133-SDRAM -->
|
|
1300
|
+
|
|
1301
|
+
<RAMTypeInstance rdf:about="#PC133-SDRAM">
|
|
1302
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1303
|
+
</RAMTypeInstance>
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Pentium3 -->
|
|
1308
|
+
|
|
1309
|
+
<owl:NamedIndividual rdf:about="#Pentium3">
|
|
1310
|
+
<rdf:type rdf:resource="#CPUInstance"/>
|
|
1311
|
+
</owl:NamedIndividual>
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
|
|
1315
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#QuadNehalem24 -->
|
|
1316
|
+
|
|
1317
|
+
<owl:NamedIndividual rdf:about="#QuadNehalem24">
|
|
1318
|
+
<rdf:type rdf:resource="#CPUInstance"/>
|
|
1319
|
+
</owl:NamedIndividual>
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
|
|
1323
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#RackedServer -->
|
|
1324
|
+
|
|
1325
|
+
<ComputeElementType rdf:about="#RackedServer">
|
|
1326
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1327
|
+
</ComputeElementType>
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
|
|
1331
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#RedHat-6 -->
|
|
1332
|
+
|
|
1333
|
+
<owl:NamedIndividual rdf:about="#RedHat-6">
|
|
1334
|
+
<rdf:type rdf:resource="#Linux"/>
|
|
1335
|
+
<osDistribution>RHEL</osDistribution>
|
|
1336
|
+
<osVersion>6</osVersion>
|
|
1337
|
+
<vendor rdf:resource="#RedHatInc"/>
|
|
1338
|
+
</owl:NamedIndividual>
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#RedHatInc -->
|
|
1343
|
+
|
|
1344
|
+
<Vendor rdf:about="#RedHatInc">
|
|
1345
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1346
|
+
</Vendor>
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Ubuntu-10.04 -->
|
|
1351
|
+
|
|
1352
|
+
<Linux rdf:about="#Ubuntu-10.04">
|
|
1353
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1354
|
+
<osVersion>10.04</osVersion>
|
|
1355
|
+
<osDistribution>Ubuntu</osDistribution>
|
|
1356
|
+
<vendor rdf:resource="#UbuntuFoundation"/>
|
|
1357
|
+
</Linux>
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#UbuntuFoundation -->
|
|
1362
|
+
|
|
1363
|
+
<Vendor rdf:about="#UbuntuFoundation">
|
|
1364
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1365
|
+
</Vendor>
|
|
1366
|
+
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VM -->
|
|
1370
|
+
|
|
1371
|
+
<domain:ResourceType rdf:about="#VM">
|
|
1372
|
+
<rdf:type rdf:resource="#ClassifiedComputeElementInstance"/>
|
|
1373
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1374
|
+
<domain:resourceTypeRank rdf:datatype="&xsd;int">10</domain:resourceTypeRank>
|
|
1375
|
+
</domain:ResourceType>
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
|
|
1379
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VMWare -->
|
|
1380
|
+
|
|
1381
|
+
<owl:NamedIndividual rdf:about="#VMWare">
|
|
1382
|
+
<rdf:type rdf:resource="#VMM"/>
|
|
1383
|
+
</owl:NamedIndividual>
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VServer -->
|
|
1388
|
+
|
|
1389
|
+
<VMM rdf:about="#VServer">
|
|
1390
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1391
|
+
</VMM>
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
|
|
1395
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VServerCE -->
|
|
1396
|
+
|
|
1397
|
+
<owl:NamedIndividual rdf:about="#VServerCE">
|
|
1398
|
+
<rdf:type rdf:resource="#ClassifiedComputeElementInstance"/>
|
|
1399
|
+
<rdf:type rdf:resource="&owl2;domain.owl#ResourceType"/>
|
|
1400
|
+
</owl:NamedIndividual>
|
|
1401
|
+
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#VirtualBox -->
|
|
1405
|
+
|
|
1406
|
+
<owl:NamedIndividual rdf:about="#VirtualBox">
|
|
1407
|
+
<rdf:type rdf:resource="#VMM"/>
|
|
1408
|
+
</owl:NamedIndividual>
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
|
|
1412
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Windows7 -->
|
|
1413
|
+
|
|
1414
|
+
<owl:NamedIndividual rdf:about="#Windows7">
|
|
1415
|
+
<rdf:type rdf:resource="#Windows"/>
|
|
1416
|
+
<osVersion>7</osVersion>
|
|
1417
|
+
<osDistribution>Windows</osDistribution>
|
|
1418
|
+
<vendor rdf:resource="#Microsoft"/>
|
|
1419
|
+
</owl:NamedIndividual>
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Xen -->
|
|
1424
|
+
|
|
1425
|
+
<VMM rdf:about="#Xen">
|
|
1426
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1427
|
+
</VMM>
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
|
|
1431
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#XenCE -->
|
|
1432
|
+
|
|
1433
|
+
<domain:ResourceType rdf:about="#XenCE">
|
|
1434
|
+
<rdf:type rdf:resource="#ClassifiedComputeElementInstance"/>
|
|
1435
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1436
|
+
</domain:ResourceType>
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#Xeon3 -->
|
|
1441
|
+
|
|
1442
|
+
<owl:NamedIndividual rdf:about="#Xeon3">
|
|
1443
|
+
<rdf:type rdf:resource="#CPUInstance"/>
|
|
1444
|
+
</owl:NamedIndividual>
|
|
1445
|
+
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#d710RAM -->
|
|
1449
|
+
|
|
1450
|
+
<owl:NamedIndividual rdf:about="#d710RAM"/>
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
|
|
1454
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#pc3000RAM -->
|
|
1455
|
+
|
|
1456
|
+
<owl:NamedIndividual rdf:about="#pc3000RAM"/>
|
|
1457
|
+
|
|
1458
|
+
|
|
1459
|
+
|
|
1460
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#pc850RAM -->
|
|
1461
|
+
|
|
1462
|
+
<owl:NamedIndividual rdf:about="#pc850RAM"/>
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#x86 -->
|
|
1467
|
+
|
|
1468
|
+
<owl:NamedIndividual rdf:about="#x86">
|
|
1469
|
+
<rdf:type rdf:resource="#CPUArchitecture"/>
|
|
1470
|
+
<rdfs:comment>32-bit x86</rdfs:comment>
|
|
1471
|
+
</owl:NamedIndividual>
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
<!-- http://geni-orca.renci.org/owl/compute.owl#x86-64 -->
|
|
1476
|
+
|
|
1477
|
+
<CPUArchitecture rdf:about="#x86-64">
|
|
1478
|
+
<rdf:type rdf:resource="&owl;NamedIndividual"/>
|
|
1479
|
+
<rdfs:comment>64-bit x86</rdfs:comment>
|
|
1480
|
+
</CPUArchitecture>
|
|
1481
|
+
</rdf:RDF>
|
|
1482
|
+
|
|
1483
|
+
|
|
1484
|
+
|
|
1485
|
+
<!-- Generated by the OWL API (version 2.2.1.1101) http://owlapi.sourceforge.net -->
|
|
1486
|
+
|