Class: Google::Cloud::Storage::File::List
- Inherits:
-
Array
- Object
- Array
- Google::Cloud::Storage::File::List
- Defined in:
- lib/google/cloud/storage/file/list.rb
Overview
File::List is a special case Array with additional values.
Instance Attribute Summary collapse
-
#prefixes ⇒ Object
The list of prefixes of objects matching-but-not-listed up to and including the requested delimiter.
-
#token ⇒ Object
If not empty, indicates that there are more files that match the request and this value should be passed to the next Bucket#files to continue.
Class Method Summary collapse
-
.from_gapi(gapi_list, service, bucket = nil, prefix = nil, delimiter = nil, max = nil, versions = nil) ⇒ Object
Google::Apis::StorageV1::Objects object.
Instance Method Summary collapse
- #all(request_limit: nil) {|file| ... } ⇒ Enumerator
-
#initialize(arr = []) ⇒ List
constructor
A new instance of List.
-
#next ⇒ File::List
Retrieve the next page of files.
-
#next? ⇒ Boolean
Whether there is a next page of files.
Constructor Details
#initialize(arr = []) ⇒ List
Returns a new instance of List.
37 38 39 |
# File 'lib/google/cloud/storage/file/list.rb', line 37 def initialize arr = [] super arr end |
Instance Attribute Details
#prefixes ⇒ Object
The list of prefixes of objects matching-but-not-listed up to and including the requested delimiter.
33 34 35 |
# File 'lib/google/cloud/storage/file/list.rb', line 33 def prefixes @prefixes end |
#token ⇒ Object
If not empty, indicates that there are more files that match the request and this value should be passed to the next Bucket#files to continue.
29 30 31 |
# File 'lib/google/cloud/storage/file/list.rb', line 29 def token @token end |
Class Method Details
.from_gapi(gapi_list, service, bucket = nil, prefix = nil, delimiter = nil, max = nil, versions = nil) ⇒ Object
Google::Apis::StorageV1::Objects object.
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/google/cloud/storage/file/list.rb', line 166 def self.from_gapi gapi_list, service, bucket = nil, prefix = nil, delimiter = nil, max = nil, versions = nil files = new(Array(gapi_list.items).map do |gapi_object| File.from_gapi gapi_object, service end) files.instance_variable_set :@token, gapi_list.next_page_token files.instance_variable_set :@prefixes, Array(gapi_list.prefixes) files.instance_variable_set :@service, service files.instance_variable_set :@bucket, bucket files.instance_variable_set :@prefix, prefix files.instance_variable_set :@delimiter, delimiter files.instance_variable_set :@max, max files.instance_variable_set :@versions, versions files end |
Instance Method Details
#all(request_limit: nil) {|file| ... } ⇒ Enumerator
Retrieves all files by repeatedly loading #next until #next? returns ‘false`. Calls the given block once for each file, which is passed as the parameter.
An Enumerator is returned if no block is given.
This method may make several API calls until all files are retrieved. Be sure to use as narrow a search criteria as possible. Please use with caution.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/google/cloud/storage/file/list.rb', line 146 def all request_limit: nil request_limit = request_limit.to_i if request_limit unless block_given? return enum_for(:all, request_limit: request_limit) end results = self loop do results.each { |r| yield r } if request_limit request_limit -= 1 break if request_limit < 0 end break unless results.next? results = results.next end end |
#next ⇒ File::List
Retrieve the next page of files.
79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/google/cloud/storage/file/list.rb', line 79 def next return nil unless next? ensure_service! = { prefix: @prefix, delimiter: @delimiter, token: @token, max: @max, versions: @versions } gapi = @service.list_files @bucket, File::List.from_gapi gapi, @service, @bucket, @prefix, @delimiter, @max, @versions end |
#next? ⇒ Boolean
Whether there is a next page of files.
58 59 60 |
# File 'lib/google/cloud/storage/file/list.rb', line 58 def next? !token.nil? end |