gitee.com/zhaochuninhefei/gmgo@v0.0.31-0.20240209061119-069254a02979/grpc/internal/status/status.go (about)

     1  /*
     2   *
     3   * Copyright 2020 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  	"errors"
    32  	"fmt"
    33  	"gitee.com/zhaochuninhefei/gmgo/grpc/codes"
    34  	"github.com/golang/protobuf/proto"
    35  	spb "google.golang.org/genproto/googleapis/rpc/status"
    36  	"google.golang.org/protobuf/types/known/anypb"
    37  )
    38  
    39  // Status represents an RPC status code, message, and details.  It is immutable
    40  // and should be created with New, Newf, or FromProto.
    41  type Status struct {
    42  	s *spb.Status
    43  }
    44  
    45  // New returns a Status representing c and msg.
    46  func New(c codes.Code, msg string) *Status {
    47  	return &Status{s: &spb.Status{Code: int32(c), Message: msg}}
    48  }
    49  
    50  // Newf returns New(c, fmt.Sprintf(format, a...)).
    51  //goland:noinspection GoUnusedExportedFunction
    52  func Newf(c codes.Code, format string, a ...interface{}) *Status {
    53  	return New(c, fmt.Sprintf(format, a...))
    54  }
    55  
    56  // FromProto returns a Status representing s.
    57  func FromProto(s *spb.Status) *Status {
    58  	return &Status{s: proto.Clone(s).(*spb.Status)}
    59  }
    60  
    61  // Err returns an error representing c and msg.  If c is OK, returns nil.
    62  func Err(c codes.Code, msg string) error {
    63  	return New(c, msg).Err()
    64  }
    65  
    66  // Errorf returns Error(c, fmt.Sprintf(format, a...)).
    67  //goland:noinspection GoUnusedExportedFunction
    68  func Errorf(c codes.Code, format string, a ...interface{}) error {
    69  	return Err(c, fmt.Sprintf(format, a...))
    70  }
    71  
    72  // Code returns the status code contained in s.
    73  func (s *Status) Code() codes.Code {
    74  	if s == nil || s.s == nil {
    75  		return codes.OK
    76  	}
    77  	return codes.Code(s.s.Code)
    78  }
    79  
    80  // Message returns the message contained in s.
    81  func (s *Status) Message() string {
    82  	if s == nil || s.s == nil {
    83  		return ""
    84  	}
    85  	return s.s.Message
    86  }
    87  
    88  // Proto returns s's status as an spb.Status proto message.
    89  func (s *Status) Proto() *spb.Status {
    90  	if s == nil {
    91  		return nil
    92  	}
    93  	return proto.Clone(s.s).(*spb.Status)
    94  }
    95  
    96  // Err returns an immutable error representing s; returns nil if s.Code() is OK.
    97  func (s *Status) Err() error {
    98  	if s.Code() == codes.OK {
    99  		return nil
   100  	}
   101  	return &Error{s: s}
   102  }
   103  
   104  // WithDetails returns a new status with the provided details messages appended to the status.
   105  // If any errors are encountered, it returns nil and the first error encountered.
   106  func (s *Status) WithDetails(details ...proto.Message) (*Status, error) {
   107  	if s.Code() == codes.OK {
   108  		return nil, errors.New("no error details for status with code OK")
   109  	}
   110  	// s.Code() != OK implies that s.Proto() != nil.
   111  	p := s.Proto()
   112  	for _, detail := range details {
   113  		// ptypes.MarshalAny is deprecated, Call the anypb.New function instead.
   114  		//any, err := ptypes.MarshalAny(detail)
   115  		any, err := anypb.New(proto.MessageV2(detail))
   116  		if err != nil {
   117  			return nil, err
   118  		}
   119  		p.Details = append(p.Details, any)
   120  	}
   121  	return &Status{s: p}, nil
   122  }
   123  
   124  // Details returns a slice of details messages attached to the status.
   125  // If a detail cannot be decoded, the error is returned in place of the detail.
   126  func (s *Status) Details() []interface{} {
   127  	if s == nil || s.s == nil {
   128  		return nil
   129  	}
   130  	details := make([]interface{}, 0, len(s.s.Details))
   131  	for _, any := range s.s.Details {
   132  		// ptypes.DynamicAny 与 ptypes.UnmarshalAny 已弃用,改为直接使用 any.UnmarshalNew()
   133  		//detail := &ptypes.DynamicAny{}
   134  		//if err := ptypes.UnmarshalAny(any, detail); err != nil {
   135  		//	details = append(details, err)
   136  		//	continue
   137  		//}
   138  		//details = append(details, detail.Message)
   139  		detail, err := any.UnmarshalNew()
   140  		if err != nil {
   141  			details = append(details, err)
   142  			continue
   143  		}
   144  		details = append(details, detail)
   145  	}
   146  	return details
   147  }
   148  
   149  func (s *Status) String() string {
   150  	return fmt.Sprintf("rpc error: code = %s desc = %s", s.Code(), s.Message())
   151  }
   152  
   153  // Error wraps a pointer of a status proto. It implements error and Status,
   154  // and a nil *Error should never be returned by this package.
   155  type Error struct {
   156  	s *Status
   157  }
   158  
   159  func (e *Error) Error() string {
   160  	return e.s.String()
   161  }
   162  
   163  // GRPCStatus returns the Status represented by se.
   164  func (e *Error) GRPCStatus() *Status {
   165  	return e.s
   166  }
   167  
   168  // Is implements future error.Is functionality.
   169  // A Error is equivalent if the code and message are identical.
   170  func (e *Error) Is(target error) bool {
   171  	tse, ok := target.(*Error)
   172  	if !ok {
   173  		return false
   174  	}
   175  	return proto.Equal(e.s.s, tse.s.s)
   176  }