Class: Google::Cloud::Spanner::Results
- Inherits:
-
Object
- Object
- Google::Cloud::Spanner::Results
- Defined in:
- lib/google/cloud/spanner/results.rb
Overview
Results
Represents the result set from an operation returning data.
See Client#execute_query and Client#read.
Instance Method Summary collapse
-
#fields ⇒ Fields
Returns the configuration object (Fields) of the names and types of the rows in the returned data.
-
#rows {|row| ... } ⇒ Object
The values returned from the request.
-
#timestamp ⇒ Time
The read timestamp chosen for single-use snapshots (read-only transactions).
Instance Method Details
#fields ⇒ Fields
Returns the configuration object (Fields) of the names and types of the rows in the returned data.
102 103 104 |
# File 'lib/google/cloud/spanner/results.rb', line 102 def fields @fields ||= Fields.from_grpc @metadata.row_type.fields end |
#rows {|row| ... } ⇒ Object
The values returned from the request.
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/google/cloud/spanner/results.rb', line 134 def rows return nil if @closed unless block_given? return enum_for(:rows) end fields = @metadata.row_type.fields values = [] buffered_responses = [] buffer_upper_bound = 10 chunked_value = nil resume_token = nil should_resume_request = false should_retry_request = false # Cannot call Enumerator#each because it won't return the first # value that was already identified when calling Enumerator#peek. # Iterate only using Enumerator#next and break on StopIteration. loop do begin if should_resume_request @partial_result_sets = resume_request(resume_token) buffered_responses = [] should_resume_request = false elsif should_retry_request @partial_result_sets = retry_request() buffered_responses = [] should_retry_request = false end # @type [::Google::Cloud::Spanner::V1::PartialResultsSet] grpc = @partial_result_sets.next # metadata should be set before the first iteration... @metadata ||= grpc. @stats ||= grpc.stats buffered_responses << grpc if (grpc.resume_token && grpc.resume_token != "") || buffered_responses.size >= buffer_upper_bound # This can set the resume_token to nil resume_token = grpc.resume_token if fields.count > 0 buffered_responses.each do |resp| if chunked_value resp.values.unshift merge(chunked_value, resp.values.shift) chunked_value = nil end to_iterate = values + Array(resp.values) chunked_value = to_iterate.pop if resp.chunked_value values = to_iterate.pop(to_iterate.count % fields.count) to_iterate.each_slice(fields.count) do |slice| yield Data.from_grpc(slice, fields) end end end # Flush the buffered responses now that they are all handled buffered_responses = [] end # TODO: once the generated client throws only Google Cloud errors, remove # the GRPC errors from the rescue block rescue GRPC::Aborted, GRPC::Cancelled, GRPC::DeadlineExceeded, GRPC::Internal, GRPC::ResourceExhausted, GRPC::Unauthenticated, GRPC::Unavailable, GRPC::Core::CallError, Google::Cloud::AbortedError, Google::Cloud::CanceledError, Google::Cloud::DeadlineExceededError, Google::Cloud::InternalError, Google::Cloud::ResourceExhaustedError, Google::Cloud::UnauthenticatedError, Google::Cloud::UnavailableError => err if resumable?(resume_token) should_resume_request = true elsif @service.retryable?(err) should_retry_request = true elsif err.is_a?(Google::Cloud::Error) raise err else raise Google::Cloud::Error.from_error(err) end # TODO: once the generated client throws only Google Cloud errors, remove # this rescue block (for GRPC::BadStatus) rescue GRPC::BadStatus => err raise Google::Cloud::Error.from_error(err) rescue StopIteration break end end # clear out any remaining values left over if fields.count > 0 buffered_responses.each do |resp| if chunked_value resp.values.unshift merge(chunked_value, resp.values.shift) chunked_value = nil end to_iterate = values + Array(resp.values) chunked_value = to_iterate.pop if resp.chunked_value values = to_iterate.pop(to_iterate.count % fields.count) to_iterate.each_slice(fields.count) do |slice| yield Data.from_grpc(slice, fields) end end values.each_slice(fields.count) do |slice| yield Data.from_grpc(slice, fields) end end # If we get this far then we can release the session @closed = true nil end |
#timestamp ⇒ Time
The read timestamp chosen for single-use snapshots (read-only transactions).
78 79 80 81 |
# File 'lib/google/cloud/spanner/results.rb', line 78 def return nil if transaction.nil? Convert. transaction. end |