Class: AWS::S3::Bucket

Inherits:
Base
  • Object
show all
Includes:
Enumerable
Defined in:
lib/aws-matt/s3/bucket.rb,
lib/aws-matt/s3/response.rb

Overview

Buckets are containers for objects (the files you store on S3). To create a new bucket you just specify its name.

# Pick a unique name, or else you'll get an error 
# if the name is already taken.
Bucket.create('jukebox')

Bucket names must be unique across the entire S3 system, sort of like domain names across the internet. If you try to create a bucket with a name that is already taken, you will get an error.

Assuming the name you chose isn’t already taken, your new bucket will now appear in the bucket list:

Service.buckets
# => [#<AWS::S3::Bucket @attributes={"name"=>"jukebox"}>]

Once you have succesfully created a bucket you can you can fetch it by name using Bucket.find.

music_bucket = Bucket.find('jukebox')

The bucket that is returned will contain a listing of all the objects in the bucket.

music_bucket.objects.size
# => 0

If all you are interested in is the objects of the bucket, you can get to them directly using Bucket.objects.

Bucket.objects('jukebox').size
# => 0

By default all objects will be returned, though there are several options you can use to limit what is returned, such as specifying that only objects whose name is after a certain place in the alphabet be returned, and etc. Details about these options can be found in the documentation for Bucket.find.

To add an object to a bucket you specify the name of the object, its value, and the bucket to put it in.

file = 'black-flowers.mp3'
S3Object.store(file, open(file), 'jukebox')

You’ll see your file has been added to it:

music_bucket.objects
# => [#<AWS::S3::S3Object '/jukebox/black-flowers.mp3'>]

You can treat your bucket like a hash and access objects by name:

jukebox['black-flowers.mp3']
# => #<AWS::S3::S3Object '/jukebox/black-flowers.mp3'>

In the event that you want to delete a bucket, you can use Bucket.delete.

Bucket.delete('jukebox')

Keep in mind, like unix directories, you can not delete a bucket unless it is empty. Trying to delete a bucket that contains objects will raise a BucketNotEmpty exception.

Passing the :force => true option to delete will take care of deleting all the bucket’s objects for you.

Bucket.delete('photos', :force => true)
# => true

Defined Under Namespace

Classes: Response

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Bucket

:nodoc:



193
194
195
196
197
198
# File 'lib/aws-matt/s3/bucket.rb', line 193

def initialize(attributes = {}) #:nodoc:
  super
  @object_cache = []
  @common_prefix_cache = []
  build_contents!
end

Instance Attribute Details

#common_prefix_cacheObject (readonly)

:nodoc:



189
190
191
# File 'lib/aws-matt/s3/bucket.rb', line 189

def common_prefix_cache
  @common_prefix_cache
end

#object_cacheObject (readonly)

:nodoc:



189
190
191
# File 'lib/aws-matt/s3/bucket.rb', line 189

def object_cache
  @object_cache
end

Class Method Details

.common_prefixes(name = nil, options = {}) ⇒ Object



148
149
150
# File 'lib/aws-matt/s3/bucket.rb', line 148

def common_prefixes(name= nil, options = {})
  find(name, options).common_prefix_cache
end

.create(name, options = {}) ⇒ Object

Creates a bucket named name.

Bucket.create('jukebox')

Your bucket name must be unique across all of S3. If the name you request has already been taken, you will get a 409 Conflict response, and a BucketAlreadyExists exception will be raised.

By default new buckets have their access level set to private. You can override this using the :access option.

Bucket.create('internet_drop_box', :access => :public_read_write)

The full list of access levels that you can set on Bucket and S3Object creation are listed in the README in the section called ‘Setting access levels’.



77
78
79
80
# File 'lib/aws-matt/s3/bucket.rb', line 77

def create(name, options = {})
  validate_name!(name)
  put("/#{name}", options).success?
end

.delete(name = nil, options = {}) ⇒ Object

Deletes the bucket named name.

All objects in the bucket must be deleted before the bucket can be deleted. If the bucket is not empty, BucketNotEmpty will be raised.

You can side step this issue by passing the :force => true option to delete which will take care of emptying the bucket before deleting it.

Bucket.delete('photos', :force => true)

Only the owner of a bucket can delete a bucket, regardless of the bucket’s access control policy.



163
164
165
166
167
168
# File 'lib/aws-matt/s3/bucket.rb', line 163

def delete(name = nil, options = {})
  find(name).delete_all if options[:force]
  
  name = path(name)
  Base.delete(name).success?
end

.find(name = nil, options = {}) ⇒ Object

Fetches the bucket named name.

Bucket.find('jukebox')

If a default bucket is inferable from the current connection’s subdomain, or if set explicitly with Base.set_current_bucket, it will be used if no bucket is specified.

MusicBucket.current_bucket
=> 'jukebox'
MusicBucket.find.name
=> 'jukebox'

By default all objects contained in the bucket will be returned (sans their data) along with the bucket. You can access your objects using the Bucket#objects method.

Bucket.find('jukebox').objects

There are several options which allow you to limit which objects are retrieved. The list of object filtering options are listed in the documentation for Bucket.objects.



101
102
103
# File 'lib/aws-matt/s3/bucket.rb', line 101

def find(name = nil, options = {})
  new(get(path(name, options)).bucket)
end

.list(reload = false) ⇒ Object

List all your buckets. This is a convenient wrapper around AWS::S3::Service.buckets.



171
172
173
# File 'lib/aws-matt/s3/bucket.rb', line 171

def list(reload = false)
  Service.buckets(reload)
end

.objects(name = nil, options = {}) ⇒ Object

Return just the objects in the bucket named name.

By default all objects of the named bucket will be returned. There are options, though, for filtering which objects are returned.

Object filtering options

  • :max_keys - The maximum number of keys you’d like to see in the response body. The server may return fewer than this many keys, but will not return more.

    Bucket.objects('jukebox').size
    # => 3
    Bucket.objects('jukebox', :max_keys => 1).size
    # => 1
    
  • :prefix - Restricts the response to only contain results that begin with the specified prefix.

    Bucket.objects('jukebox')
    # => [<AWS::S3::S3Object '/jazz/miles.mp3'>, <AWS::S3::S3Object '/jazz/dolphy.mp3'>, <AWS::S3::S3Object '/classical/malher.mp3'>]
    Bucket.objects('jukebox', :prefix => 'classical')
    # => [<AWS::S3::S3Object '/classical/malher.mp3'>]
    
  • :marker - Marker specifies where in the result set to resume listing. It restricts the response to only contain results that occur alphabetically after the value of marker. To retrieve the next set of results, use the last key from the current page of results as the marker in your next request.

    # Skip 'mahler'
    Bucket.objects('jukebox', :marker => 'mb')
    # => [<AWS::S3::S3Object '/jazz/miles.mp3'>]
    

Examples

# Return no more than 2 objects whose key's are listed alphabetically after the letter 'm'.
Bucket.objects('jukebox', :marker => 'm', :max_keys => 2)
# => [<AWS::S3::S3Object '/jazz/miles.mp3'>, <AWS::S3::S3Object '/classical/malher.mp3'>]

# Return no more than 2 objects whose key's are listed alphabetically after the letter 'm' and have the 'jazz' prefix.
Bucket.objects('jukebox', :marker => 'm', :max_keys => 2, :prefix => 'jazz')
# => [<AWS::S3::S3Object '/jazz/miles.mp3'>]


144
145
146
# File 'lib/aws-matt/s3/bucket.rb', line 144

def objects(name = nil, options = {})
  find(name, options).object_cache
end

Instance Method Details

#[](object_key) ⇒ Object

Fetches the object named object_key, or nil if the bucket does not contain an object with the specified key.

bucket.objects
=> [#<AWS::S3::S3Object '/marcel_molina/beluga_baby.jpg'>,
    #<AWS::S3::S3Object '/marcel_molina/tongue_overload.jpg'>]
bucket['beluga_baby.jpg']
=> #<AWS::S3::S3Object '/marcel_molina/beluga_baby.jpg'>


208
209
210
# File 'lib/aws-matt/s3/bucket.rb', line 208

def [](object_key)
  detect {|file| file.key == object_key.to_s}
end

#common_prefixes(options = {}) ⇒ Object



251
252
253
254
255
256
257
258
259
260
261
# File 'lib/aws-matt/s3/bucket.rb', line 251

def common_prefixes(options = {})
  if options.is_a?(Hash)
    reload = !options.empty?
  else
    reload = options
    options = {}
  end
  
  reload!(options) if reload || common_prefix_cache.empty?
  common_prefix_cache
end

#delete(options = {}) ⇒ Object

Deletes the bucket. See its class method counter part Bucket.delete for caveats about bucket deletion and how to ensure a bucket is deleted no matter what.



285
286
287
# File 'lib/aws-matt/s3/bucket.rb', line 285

def delete(options = {})
  self.class.delete(name, options)
end

#delete_allObject Also known as: clear

Delete all files in the bucket. Use with caution. Can not be undone.



290
291
292
293
294
295
# File 'lib/aws-matt/s3/bucket.rb', line 290

def delete_all
  each do |object|
    object.delete
  end
  self
end

#each(&block) ⇒ Object

Iterates over the objects in the bucket.

bucket.each do |object|
  # Do something with the object ...
end


268
269
270
271
# File 'lib/aws-matt/s3/bucket.rb', line 268

def each(&block)
  # Dup the collection since we might be destructively modifying the object_cache during the iteration.
  objects.dup.each(&block)
end

#empty?Boolean

Returns true if there are no objects in the bucket.

Returns:

  • (Boolean)


274
275
276
# File 'lib/aws-matt/s3/bucket.rb', line 274

def empty?
  objects.empty? && common_prefixes.empty?
end

#new_object(attributes = {}) ⇒ Object

Initializes a new S3Object belonging to the current bucket.

object = bucket.new_object
object.value = data
object.key   = 'classical/mahler.mp3'
object.store
bucket.objects.include?(object)
=> true


220
221
222
223
224
# File 'lib/aws-matt/s3/bucket.rb', line 220

def new_object(attributes = {})
  object = S3Object.new(attributes)
  register(object)
  object
end

#objects(options = {}) ⇒ Object

List S3Object’s of the bucket.

Once fetched the objects will be cached. You can reload the objects by passing :reload.

bucket.objects(:reload)

You can also filter the objects using the same options listed in Bucket.objects.

bucket.objects(:prefix => 'jazz')

Using these filtering options will implictly reload the objects.

To reclaim all the objects for the bucket you can pass in :reload again.



239
240
241
242
243
244
245
246
247
248
249
# File 'lib/aws-matt/s3/bucket.rb', line 239

def objects(options = {})
  if options.is_a?(Hash)
    reload = !options.empty?
  else
    reload  = options
    options = {}
  end
  
  reload!(options) if reload || object_cache.empty?
  object_cache
end

#sizeObject

Returns the number of objects in the bucket.



279
280
281
# File 'lib/aws-matt/s3/bucket.rb', line 279

def size
  objects.size
end

#truncated?Boolean

Returns:

  • (Boolean)


307
308
309
# File 'lib/aws-matt/s3/bucket.rb', line 307

def truncated?
  attributes['is_truncated']
end

#update(action, object) ⇒ Object

Buckets observe their objects and have this method called when one of their objects is either stored or deleted.



300
301
302
303
304
305
# File 'lib/aws-matt/s3/bucket.rb', line 300

def update(action, object) #:nodoc:        
  case action
  when :stored  then add object unless objects.include?(object)
  when :deleted then object_cache.delete(object)
  end
end