Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Copyright 2017 gRPC authors. |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | // Package status implements errors returned by gRPC. These errors are |
| 20 | // serialized and transmitted on the wire between server and client, and allow |
| 21 | // for additional data to be transmitted via the Details field in the status |
| 22 | // proto. gRPC service handlers should return an error created by this |
| 23 | // package, and gRPC clients should expect a corresponding error to be |
| 24 | // returned from the RPC call. |
| 25 | // |
| 26 | // This package upholds the invariants that a non-nil error may not |
| 27 | // contain an OK code, and an OK code must result in a nil error. |
| 28 | package status |
| 29 | |
| 30 | import ( |
| 31 | "context" |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 32 | "fmt" |
| 33 | |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 34 | spb "google.golang.org/genproto/googleapis/rpc/status" |
amit.ghosh | 258d14c | 2020-10-02 15:13:38 +0200 | [diff] [blame] | 35 | |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 36 | "google.golang.org/grpc/codes" |
amit.ghosh | 258d14c | 2020-10-02 15:13:38 +0200 | [diff] [blame] | 37 | "google.golang.org/grpc/internal/status" |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 38 | ) |
| 39 | |
amit.ghosh | 258d14c | 2020-10-02 15:13:38 +0200 | [diff] [blame] | 40 | // Status references google.golang.org/grpc/internal/status. It represents an |
| 41 | // RPC status code, message, and details. It is immutable and should be |
| 42 | // created with New, Newf, or FromProto. |
| 43 | // https://godoc.org/google.golang.org/grpc/internal/status |
| 44 | type Status = status.Status |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 45 | |
| 46 | // New returns a Status representing c and msg. |
| 47 | func New(c codes.Code, msg string) *Status { |
amit.ghosh | 258d14c | 2020-10-02 15:13:38 +0200 | [diff] [blame] | 48 | return status.New(c, msg) |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | // Newf returns New(c, fmt.Sprintf(format, a...)). |
| 52 | func Newf(c codes.Code, format string, a ...interface{}) *Status { |
| 53 | return New(c, fmt.Sprintf(format, a...)) |
| 54 | } |
| 55 | |
| 56 | // Error returns an error representing c and msg. If c is OK, returns nil. |
| 57 | func Error(c codes.Code, msg string) error { |
| 58 | return New(c, msg).Err() |
| 59 | } |
| 60 | |
| 61 | // Errorf returns Error(c, fmt.Sprintf(format, a...)). |
| 62 | func Errorf(c codes.Code, format string, a ...interface{}) error { |
| 63 | return Error(c, fmt.Sprintf(format, a...)) |
| 64 | } |
| 65 | |
| 66 | // ErrorProto returns an error representing s. If s.Code is OK, returns nil. |
| 67 | func ErrorProto(s *spb.Status) error { |
| 68 | return FromProto(s).Err() |
| 69 | } |
| 70 | |
| 71 | // FromProto returns a Status representing s. |
| 72 | func FromProto(s *spb.Status) *Status { |
amit.ghosh | 258d14c | 2020-10-02 15:13:38 +0200 | [diff] [blame] | 73 | return status.FromProto(s) |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | // FromError returns a Status representing err if it was produced from this |
| 77 | // package or has a method `GRPCStatus() *Status`. Otherwise, ok is false and a |
| 78 | // Status is returned with codes.Unknown and the original error message. |
| 79 | func FromError(err error) (s *Status, ok bool) { |
| 80 | if err == nil { |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 81 | return nil, true |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 82 | } |
| 83 | if se, ok := err.(interface { |
| 84 | GRPCStatus() *Status |
| 85 | }); ok { |
| 86 | return se.GRPCStatus(), true |
| 87 | } |
| 88 | return New(codes.Unknown, err.Error()), false |
| 89 | } |
| 90 | |
| 91 | // Convert is a convenience function which removes the need to handle the |
| 92 | // boolean return value from FromError. |
| 93 | func Convert(err error) *Status { |
| 94 | s, _ := FromError(err) |
| 95 | return s |
| 96 | } |
| 97 | |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 98 | // Code returns the Code of the error if it is a Status error, codes.OK if err |
| 99 | // is nil, or codes.Unknown otherwise. |
| 100 | func Code(err error) codes.Code { |
| 101 | // Don't use FromError to avoid allocation of OK status. |
| 102 | if err == nil { |
| 103 | return codes.OK |
| 104 | } |
| 105 | if se, ok := err.(interface { |
| 106 | GRPCStatus() *Status |
| 107 | }); ok { |
| 108 | return se.GRPCStatus().Code() |
| 109 | } |
| 110 | return codes.Unknown |
| 111 | } |
| 112 | |
| 113 | // FromContextError converts a context error into a Status. It returns a |
| 114 | // Status with codes.OK if err is nil, or a Status with codes.Unknown if err is |
| 115 | // non-nil and not a context error. |
| 116 | func FromContextError(err error) *Status { |
| 117 | switch err { |
| 118 | case nil: |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 119 | return nil |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 120 | case context.DeadlineExceeded: |
| 121 | return New(codes.DeadlineExceeded, err.Error()) |
| 122 | case context.Canceled: |
| 123 | return New(codes.Canceled, err.Error()) |
| 124 | default: |
| 125 | return New(codes.Unknown, err.Error()) |
| 126 | } |
| 127 | } |