Source File
codec.go
Belonging Package
google.golang.org/grpc
/*** Copyright 2014 gRPC authors.** 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** http://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.**/package grpcimport (_ // to register the Codec for "proto")// baseCodec captures the new encoding.CodecV2 interface without the Name// function, allowing it to be implemented by older Codec and encoding.Codec// implementations. The omitted Name function is only needed for the register in// the encoding package and is not part of the core functionality.type baseCodec interface {Marshal(v any) (mem.BufferSlice, error)Unmarshal(data mem.BufferSlice, v any) error}// getCodec returns an encoding.CodecV2 for the codec of the given name (if// registered). Initially checks the V2 registry with encoding.GetCodecV2 and// returns the V2 codec if it is registered. Otherwise, it checks the V1 registry// with encoding.GetCodec and if it is registered wraps it with newCodecV1Bridge// to turn it into an encoding.CodecV2. Returns nil otherwise.func ( string) encoding.CodecV2 {if := encoding.GetCodec(); != nil {return newCodecV1Bridge()}return encoding.GetCodecV2()}func ( Codec) baseCodec {return codecV0Bridge{codec: }}func ( encoding.Codec) encoding.CodecV2 {return codecV1Bridge{codecV0Bridge: codecV0Bridge{codec: },name: .Name(),}}var _ baseCodec = codecV0Bridge{}type codecV0Bridge struct {codec interface {Marshal(v any) ([]byte, error)Unmarshal(data []byte, v any) error}}func ( codecV0Bridge) ( any) (mem.BufferSlice, error) {, := .codec.Marshal()if != nil {return nil,}return mem.BufferSlice{mem.SliceBuffer()}, nil}func ( codecV0Bridge) ( mem.BufferSlice, any) ( error) {return .codec.Unmarshal(.Materialize(), )}var _ encoding.CodecV2 = codecV1Bridge{}type codecV1Bridge struct {codecV0Bridgename string}func ( codecV1Bridge) () string {return .name}// Codec defines the interface gRPC uses to encode and decode messages.// Note that implementations of this interface must be thread safe;// a Codec's methods can be called from concurrent goroutines.//// Deprecated: use encoding.Codec instead.type Codec interface {// Marshal returns the wire format of v.Marshal(v any) ([]byte, error)// Unmarshal parses the wire format into v.Unmarshal(data []byte, v any) error// String returns the name of the Codec implementation. This is unused by// gRPC.String() string}
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)