Class: OpenNebula::Datastore
- Inherits:
-
PoolElement
- Object
- XMLElement
- PoolElement
- OpenNebula::Datastore
- Defined in:
- opennebula/datastore.rb
Constant Summary
- DATASTORE_METHODS =
Constants and Class Methods
{ :info => "datastore.info", :allocate => "datastore.allocate", :delete => "datastore.delete", :update => "datastore.update", :chown => "datastore.chown", :chmod => "datastore.chmod", :rename => "datastore.rename" }
- DATASTORE_TYPES =
%w{IMAGE SYSTEM FILE}
- SHORT_DATASTORE_TYPES =
{ "IMAGE" => "img", "SYSTEM"=> "sys", "FILE" => "fil" }
Class Method Summary (collapse)
-
+ (Object) build_xml(pe_id = nil)
Creates a Datastore description with just its identifier this method should be used to create plain Datastore objects.
Instance Method Summary (collapse)
-
- (Integer, OpenNebula::Error) allocate(description, cluster_id = ClusterPool::NONE_CLUSTER_ID)
Allocates a new Datastore in OpenNebula.
-
- (nil, OpenNebula::Error) chmod(owner_u, owner_m, owner_a, group_u, group_m, group_a, other_u, other_m, other_a)
Changes the datastore permissions.
-
- (nil, OpenNebula::Error) chmod_octet(octet)
Changes the datastore permissions.
-
- (nil, OpenNebula::Error) chown(uid, gid)
Changes the owner/group.
-
- (Object) contains(id)
Returns whether or not the image with id 'id' is part of this datastore.
-
- (Object) delete
Deletes the Datastore.
-
- (Object) img_ids
Returns an array with the numeric image ids.
-
- (Object) info
(also: #info!)
Retrieves the information of the given Datastore.
-
- (Datastore) initialize(xml, client)
constructor
Class constructor.
-
- (nil, OpenNebula::Error) rename(name)
Renames this datastore.
-
- (Object) short_type_str
Returns the datastore type (string value).
-
- (Object) type
XML-RPC Methods for the Datastore Object.
-
- (Object) type_str
Returns the datastore type (string value).
-
- (nil, OpenNebula::Error) update(new_template, append = false)
Replaces the template contents.
Methods inherited from PoolElement
#id, #name, new_with_id, #to_str
Methods inherited from XMLElement
#[], #add_element, #attr, #delete_element, #each, #each_xpath, #element_xml, #has_elements?, #initialize_xml, #name, #retrieve_elements, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml
Constructor Details
- (Datastore) initialize(xml, client)
Class constructor
62 63 64 |
# File 'opennebula/datastore.rb', line 62 def initialize(xml, client) super(xml,client) end |
Class Method Details
+ (Object) build_xml(pe_id = nil)
Creates a Datastore description with just its identifier this method should be used to create plain Datastore objects. id the id of the user
Example:
datastore = Datastore.new(Datastore.build_xml(3),rpc_client)
51 52 53 54 55 56 57 58 59 |
# File 'opennebula/datastore.rb', line 51 def Datastore.build_xml(pe_id=nil) if pe_id datastore_xml = "<DATASTORE><ID>#{pe_id}</ID></DATASTORE>" else datastore_xml = "<DATASTORE></DATASTORE>" end XMLElement.build_xml(datastore_xml,'DATASTORE') end |
Instance Method Details
- (Integer, OpenNebula::Error) allocate(description, cluster_id = ClusterPool::NONE_CLUSTER_ID)
Allocates a new Datastore in OpenNebula
98 99 100 |
# File 'opennebula/datastore.rb', line 98 def allocate(description, cluster_id=ClusterPool::NONE_CLUSTER_ID) super(DATASTORE_METHODS[:allocate], description, cluster_id) end |
- (nil, OpenNebula::Error) chmod(owner_u, owner_m, owner_a, group_u, group_m, group_a, other_u, other_m, other_a)
Changes the datastore permissions. Each [Integer] argument must be 1 to allow, 0 deny, -1 do not change
144 145 146 147 148 |
# File 'opennebula/datastore.rb', line 144 def chmod(owner_u, owner_m, owner_a, group_u, group_m, group_a, other_u, other_m, other_a) super(DATASTORE_METHODS[:chmod], owner_u, owner_m, owner_a, group_u, group_m, group_a, other_u, other_m, other_a) end |
- (nil, OpenNebula::Error) chmod_octet(octet)
Changes the datastore permissions.
135 136 137 |
# File 'opennebula/datastore.rb', line 135 def chmod_octet(octet) super(DATASTORE_METHODS[:chmod], octet) end |
- (nil, OpenNebula::Error) chown(uid, gid)
Changes the owner/group
126 127 128 |
# File 'opennebula/datastore.rb', line 126 def chown(uid, gid) super(DATASTORE_METHODS[:chown], uid, gid) end |
- (Object) contains(id)
Returns whether or not the image with id 'id' is part of this datastore
165 166 167 168 169 170 171 |
# File 'opennebula/datastore.rb', line 165 def contains(id) #This doesn't work in ruby 1.8.5 #return self["DATASTORE/ID[.=#{uid}]"] != nil id_array = retrieve_elements('IMAGES/ID') return id_array != nil && id_array.include?(uid.to_s) end |
- (Object) delete
Deletes the Datastore
103 104 105 |
# File 'opennebula/datastore.rb', line 103 def delete() super(DATASTORE_METHODS[:delete]) end |
- (Object) img_ids
Returns an array with the numeric image ids
174 175 176 177 178 179 180 181 182 |
# File 'opennebula/datastore.rb', line 174 def img_ids array = Array.new self.each("IMAGES/ID") do |id| array << id.text.to_i end return array end |
- (Object) info Also known as: info!
Retrieves the information of the given Datastore.
85 86 87 |
# File 'opennebula/datastore.rb', line 85 def info() super(DATASTORE_METHODS[:info], 'DATASTORE') end |
- (nil, OpenNebula::Error) rename(name)
Renames this datastore
156 157 158 |
# File 'opennebula/datastore.rb', line 156 def rename(name) return call(DATASTORE_METHODS[:rename], @pe_id, name) end |
- (Object) short_type_str
Returns the datastore type (string value)
80 81 82 |
# File 'opennebula/datastore.rb', line 80 def short_type_str SHORT_DATASTORE_TYPES[type_str] end |
- (Object) type
XML-RPC Methods for the Datastore Object
Returns the datastore type
70 71 72 |
# File 'opennebula/datastore.rb', line 70 def type self['TYPE'].to_i end |
- (Object) type_str
Returns the datastore type (string value)
75 76 77 |
# File 'opennebula/datastore.rb', line 75 def type_str DATASTORE_TYPES[type] end |
- (nil, OpenNebula::Error) update(new_template, append = false)
Replaces the template contents
115 116 117 |
# File 'opennebula/datastore.rb', line 115 def update(new_template, append=false) super(DATASTORE_METHODS[:update], new_template, append ? 1 : 0) end |