Sha256: 69bac1c6142e79f324f29711e1b5946ba9496c126553690d04667c539afe1265

Contents?: true

Size: 1.25 KB

Versions: 10

Compression:

Stored size: 1.25 KB

Contents

# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require "grpc"
require "grpc/errors"
require "grpc/google_rpc_status_utils"
require "google/protobuf/well_known_types"
# Required in order to deserialize common error detail proto types
require "google/rpc/error_details_pb"

module GRPC
  class BadStatus < StandardError
    def status_details
      rpc_status = to_rpc_status

      return nil.to_a if rpc_status.nil?

      rpc_status.details.map do |detail|
        begin
          detail_type = Google::Protobuf::DescriptorPool.generated_pool.lookup detail.type_name
          detail = detail.unpack detail_type.msgclass if detail_type
          detail
        rescue Google::Protobuf::ParseError
          detail
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
gapic-common-0.3.4 lib/gapic/grpc/status_details.rb
gapic-common-0.3.3 lib/gapic/grpc/status_details.rb
gapic-common-0.3.2 lib/gapic/grpc/status_details.rb
gapic-common-0.3.1 lib/gapic/grpc/status_details.rb
gapic-common-0.3.0 lib/gapic/grpc/status_details.rb
gapic-common-0.2.1 lib/gapic/grpc/status_details.rb
gapic-common-0.2.0 lib/gapic/grpc/status_details.rb
gapic-common-0.1.0 lib/gapic/grpc/status_details.rb
gapic-common-0.0.2 lib/gapic/grpc/status_details.rb
gapic-common-0.0.1 lib/gapic/grpc/status_details.rb