Class: CloudFiles::StorageObject
- Inherits:
-
Object
- Object
- CloudFiles::StorageObject
- Defined in:
- lib/cloudfiles/storage_object.rb
Instance Attribute Summary collapse
-
#container ⇒ Object
readonly
The parent CloudFiles::Container object.
-
#name ⇒ Object
readonly
Name of the object corresponding to the instantiated object.
Instance Method Summary collapse
-
#bytes ⇒ Object
Size of the object (in bytes).
-
#content_type ⇒ Object
Content type of the object data.
-
#copy(options = {}) ⇒ Object
Copy this object to a new location (optionally in a new container).
-
#data(size = -1,, offset = 0, headers = {}) ⇒ Object
Retrieves the data from an object and stores the data in memory.
-
#data_stream(size = -1,, offset = 0, headers = {}, &block) ⇒ Object
Retrieves the data from an object and returns a stream that must be passed to a block.
-
#etag ⇒ Object
ETag of the object data.
-
#initialize(container, objectname, force_exists = false, make_path = false) ⇒ StorageObject
constructor
Builds a new CloudFiles::StorageObject in the current container.
-
#last_modified ⇒ Object
Date of the object’s last modification.
-
#load_from_filename(filename, headers = {}) ⇒ Object
A convenience method to stream data into an object from a local file (or anything that can be loaded by Ruby’s open method).
-
#metadata ⇒ Object
Returns the object’s metadata as a nicely formatted hash, stripping off the X-Meta-Object- prefix that the system prepends to the key name.
-
#move(options = {}) ⇒ Object
Takes the same options as the copy method, only it does a copy followed by a delete on the original object.
-
#object_metadata ⇒ Object
Retrieves Metadata for the object.
-
#public_url ⇒ Object
If the parent container is public (CDN-enabled), returns the CDN URL to this object.
-
#refresh ⇒ Object
(also: #populate)
Refreshes the object metadata.
-
#save_to_filename(filename) ⇒ Object
A convenience method to stream data from an object into a local file.
-
#set_metadata(metadatahash) ⇒ Object
Sets the metadata for an object.
-
#to_s ⇒ Object
:nodoc:.
-
#write(data = nil, headers = {}) ⇒ Object
Takes supplied data and writes it to the object, saving it.
Constructor Details
#initialize(container, objectname, force_exists = false, make_path = false) ⇒ StorageObject
Builds a new CloudFiles::StorageObject in the current container. If force_exist is set, the object must exist or a CloudFiles::Exception::NoSuchObject Exception will be raised. If not, an “empty” CloudFiles::StorageObject will be returned, ready for data via CloudFiles::StorageObject.write
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/cloudfiles/storage_object.rb', line 15 def initialize(container, objectname, force_exists = false, make_path = false) if objectname.match(/\?/) raise CloudFiles::Exception::Syntax, "Object #{objectname} contains an invalid character in the name (? not allowed)" end @container = container @containername = container.name @name = objectname @make_path = make_path @storagehost = self.container.connection.storagehost @storagepath = self.container.connection.storagepath + "/#{CloudFiles.escape @containername}/#{CloudFiles.escape @name, '/'}" @storageport = self.container.connection.storageport @storagescheme = self.container.connection.storagescheme if force_exists raise CloudFiles::Exception::NoSuchObject, "Object #{@name} does not exist" unless container.object_exists?(objectname) end end |
Instance Attribute Details
#container ⇒ Object (readonly)
The parent CloudFiles::Container object
10 11 12 |
# File 'lib/cloudfiles/storage_object.rb', line 10 def container @container end |
#name ⇒ Object (readonly)
Name of the object corresponding to the instantiated object
7 8 9 |
# File 'lib/cloudfiles/storage_object.rb', line 7 def name @name end |
Instance Method Details
#bytes ⇒ Object
Size of the object (in bytes)
57 58 59 |
# File 'lib/cloudfiles/storage_object.rb', line 57 def bytes self.[:bytes] end |
#content_type ⇒ Object
Content type of the object data
72 73 74 |
# File 'lib/cloudfiles/storage_object.rb', line 72 def content_type self.[:content_type] end |
#copy(options = {}) ⇒ Object
Copy this object to a new location (optionally in a new container)
You must supply either a name for the new object or a container name, or both. If a :name is supplied without a :container, the object is copied within the current container. If the :container is specified with no :name, then the object is copied to the new container with its current name.
object.copy(:name => "images/funny/lolcat.jpg", :container => "pictures")
You may also supply a hash of headers in the :headers option. From there, you can set things like Content-Type, or other headers as available in the API document.
object.copy(:name => 'newfile.tmp', :headers => {'Content-Type' => 'text/plain'})
Returns the new CloudFiles::StorageObject for the copied item.
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
# File 'lib/cloudfiles/storage_object.rb', line 269 def copy( = {}) raise CloudFiles::Exception::Syntax, "You must either provide the :container or the :name for this operation" unless ([:container] || [:name]) new_container = [:container] || self.container.name new_name = [:name] || self.name new_headers = [:headers] || {} raise CloudFiles::Exception::Syntax, "The :headers option must be a hash" unless new_headers.is_a?(Hash) new_name.sub!(/^\//,'') headers = {'X-Copy-From' => "#{self.container.name}/#{self.name}", 'Content-Type' => self.content_type.sub(/;.+/, '')}.merge(new_headers) # , 'Content-Type' => self.content_type new_path = self.container.connection.storagepath + "/#{CloudFiles.escape new_container}/#{CloudFiles.escape new_name, '/'}" response = self.container.connection.cfreq("PUT", @storagehost, new_path, @storageport, @storagescheme, headers) code = response.code raise CloudFiles::Exception::InvalidResponse, "Invalid response code #{response.code}" unless (response.code =~ /^20/) return CloudFiles::Container.new(self.container.connection, new_container).object(new_name) end |
#data(size = -1,, offset = 0, headers = {}) ⇒ Object
Retrieves the data from an object and stores the data in memory. The data is returned as a string. Throws a NoSuchObjectException if the object doesn’t exist.
If the optional size and range arguments are provided, the call will return the number of bytes provided by size, starting from the offset provided in offset.
object.data
=> "This is the text stored in the file"
84 85 86 87 88 89 90 91 92 |
# File 'lib/cloudfiles/storage_object.rb', line 84 def data(size = -1, offset = 0, headers = {}) if size.to_i > 0 range = sprintf("bytes=%d-%d", offset.to_i, (offset.to_i + size.to_i) - 1) headers['Range'] = range end response = self.container.connection.cfreq("GET", @storagehost, @storagepath, @storageport, @storagescheme, headers) raise CloudFiles::Exception::NoSuchObject, "Object #{@name} does not exist" unless (response.code =~ /^20/) response.body end |
#data_stream(size = -1,, offset = 0, headers = {}, &block) ⇒ Object
Retrieves the data from an object and returns a stream that must be passed to a block. Throws a NoSuchObjectException if the object doesn’t exist.
If the optional size and range arguments are provided, the call will return the number of bytes provided by size, starting from the offset provided in offset.
data = ""
object.data_stream do |chunk|
data += chunk
end
data
=> "This is the text stored in the file"
107 108 109 110 111 112 113 114 115 116 |
# File 'lib/cloudfiles/storage_object.rb', line 107 def data_stream(size = -1, offset = 0, headers = {}, &block) if size.to_i > 0 range = sprintf("bytes=%d-%d", offset.to_i, (offset.to_i + size.to_i) - 1) headers['Range'] = range end self.container.connection.cfreq("GET", @storagehost, @storagepath, @storageport, @storagescheme, headers, nil) do |response| raise CloudFiles::Exception::NoSuchObject, "Object #{@name} does not exist" unless (response.code == "200") response.read_body(&block) end end |
#etag ⇒ Object
ETag of the object data
67 68 69 |
# File 'lib/cloudfiles/storage_object.rb', line 67 def etag self.[:etag] end |
#last_modified ⇒ Object
Date of the object’s last modification
62 63 64 |
# File 'lib/cloudfiles/storage_object.rb', line 62 def last_modified self.[:last_modified] end |
#load_from_filename(filename, headers = {}) ⇒ Object
A convenience method to stream data into an object from a local file (or anything that can be loaded by Ruby’s open method)
You can provide an optional hash of headers, in case you want to do something like set the Content-Type manually.
Throws an Errno::ENOENT if the file cannot be read.
object.data
=> "This is my data"
object.load_from_filename("/tmp/file.txt")
=> true
object.load_from_filename("/home/rackspace/myfile.tmp", 'Content-Type' => 'text/plain')
object.data
=> "This data was in the file /tmp/file.txt"
object.load_from_filename("/tmp/nonexistent.txt")
=> Errno::ENOENT: No such file or directory - /tmp/nonexistent.txt
212 213 214 215 216 217 |
# File 'lib/cloudfiles/storage_object.rb', line 212 def load_from_filename(filename, headers = {}) f = open(filename) self.write(f, headers) f.close true end |
#metadata ⇒ Object
Returns the object’s metadata as a nicely formatted hash, stripping off the X-Meta-Object- prefix that the system prepends to the key name.
object.
=> {"ruby"=>"cool", "foo"=>"bar"}
123 124 125 126 127 |
# File 'lib/cloudfiles/storage_object.rb', line 123 def = {} self.[:metadata].each{ |key, value| [key.gsub(/x-object-meta-/, '').gsub(/\+\-/, ' ')] = URI.decode(value).gsub(/\+\-/, ' ') } end |
#move(options = {}) ⇒ Object
Takes the same options as the copy method, only it does a copy followed by a delete on the original object.
Returns the new CloudFiles::StorageObject for the moved item. You should not attempt to use the old object after doing a move.
289 290 291 292 293 294 |
# File 'lib/cloudfiles/storage_object.rb', line 289 def move( = {}) new_object = self.copy() self.container.delete_object(self.name) self.freeze return new_object end |
#object_metadata ⇒ Object
Retrieves Metadata for the object
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/cloudfiles/storage_object.rb', line 40 def ||= ( response = self.container.connection.cfreq("HEAD", @storagehost, @storagepath, @storageport, @storagescheme) raise CloudFiles::Exception::NoSuchObject, "Object #{@name} does not exist" unless (response.code =~ /^20/) resphash = {} response.to_hash.select { |k,v| k.match(/^x-object-meta/) }.each { |x| resphash[x[0]] = x[1].to_s } { :bytes => response["content-length"], :last_modified => Time.parse(response["last-modified"]), :etag => response["etag"], :content_type => response["content-type"], :metadata => resphash } ) end |
#public_url ⇒ Object
If the parent container is public (CDN-enabled), returns the CDN URL to this object. Otherwise, return nil
public_object.public_url
=> "http://c0001234.cdn.cloudfiles.rackspacecloud.com/myfile.jpg"
private_object.public_url
=> nil
251 252 253 |
# File 'lib/cloudfiles/storage_object.rb', line 251 def public_url self.container.public? ? self.container.cdn_url + "/#{CloudFiles.escape @name, '/'}" : nil end |
#refresh ⇒ Object Also known as: populate
Refreshes the object metadata
33 34 35 36 |
# File 'lib/cloudfiles/storage_object.rb', line 33 def refresh = nil true end |
#save_to_filename(filename) ⇒ Object
A convenience method to stream data from an object into a local file
Throws an Errno::ENOENT if the file cannot be opened for writing due to a path error, and Errno::EACCES if the file cannot be opened for writing due to permissions.
object.data
=> "This is my data"
object.save_to_filename("/tmp/file.txt")
=> true
$ cat /tmp/file.txt
"This is my data"
object.save_to_filename("/tmp/owned_by_root.txt")
=> Errno::EACCES: Permission denied - /tmp/owned_by_root.txt
235 236 237 238 239 240 241 242 |
# File 'lib/cloudfiles/storage_object.rb', line 235 def save_to_filename(filename) File.open(filename, 'w+') do |f| self.data_stream do |chunk| f.write chunk end end true end |
#set_metadata(metadatahash) ⇒ Object
Sets the metadata for an object. By passing a hash as an argument, you can set the metadata for an object. However, setting metadata will overwrite any existing metadata for the object.
Throws NoSuchObjectException if the object doesn’t exist. Throws InvalidResponseException if the request fails.
134 135 136 137 138 139 140 141 |
# File 'lib/cloudfiles/storage_object.rb', line 134 def () headers = {} .each{ |key, value| headers['X-Object-Meta-' + key.to_s.capitalize] = value.to_s } response = self.container.connection.cfreq("POST", @storagehost, @storagepath, @storageport, @storagescheme, headers) raise CloudFiles::Exception::NoSuchObject, "Object #{@name} does not exist" if (response.code == "404") raise CloudFiles::Exception::InvalidResponse, "Invalid response code #{response.code}" unless (response.code == "202") true end |
#to_s ⇒ Object
:nodoc:
297 298 299 |
# File 'lib/cloudfiles/storage_object.rb', line 297 def to_s # :nodoc: @name end |
#write(data = nil, headers = {}) ⇒ Object
Takes supplied data and writes it to the object, saving it. You can supply an optional hash of headers, including Content-Type and ETag, that will be applied to the object.
If you would rather stream the data in chunks, instead of reading it all into memory at once, you can pass an IO object for the data, such as: object.write(open(‘/path/to/file.mp3’))
You can compute your own MD5 sum and send it in the “ETag” header. If you provide yours, it will be compared to the MD5 sum on the server side. If they do not match, the server will return a 422 status code and a CloudFiles::Exception::MisMatchedChecksum Exception will be raised. If you do not provide an MD5 sum as the ETag, one will be computed on the server side.
Updates the container cache and returns true on success, raises exceptions if stuff breaks.
object = container.create_object("newfile.txt")
object.write("This is new data")
=> true
object.data
=> "This is new data"
If you are passing your data in via STDIN, just do an
object.write
with no data (or, if you need to pass headers)
object.write(nil,{'header' => 'value})
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/cloudfiles/storage_object.rb', line 171 def write(data = nil, headers = {}) raise CloudFiles::Exception::Syntax, "No data or header updates supplied" if ((data.nil? && $stdin.tty?) and headers.empty?) if headers['Content-Type'].nil? type = MIME::Types.type_for(self.name).first.to_s if type.empty? headers['Content-Type'] = "application/octet-stream" else headers['Content-Type'] = type end end # If we're taking data from standard input, send that IO object to cfreq data = $stdin if (data.nil? && $stdin.tty? == false) response = self.container.connection.cfreq("PUT", @storagehost, "#{@storagepath}", @storageport, @storagescheme, headers, data) code = response.code raise CloudFiles::Exception::InvalidResponse, "Invalid content-length header sent" if (code == "412") raise CloudFiles::Exception::MisMatchedChecksum, "Mismatched etag" if (code == "422") raise CloudFiles::Exception::InvalidResponse, "Invalid response code #{code}" unless (code =~ /^20./) make_path(File.dirname(self.name)) if @make_path == true self.refresh true end |