/* * * 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 getCodec( string) encoding.CodecV2 {if := encoding.GetCodec(); != nil {returnnewCodecV1Bridge() }returnencoding.GetCodecV2()}func newCodecV0Bridge( Codec) baseCodec {returncodecV0Bridge{codec: }}func newCodecV1Bridge( encoding.Codec) encoding.CodecV2 {returncodecV1Bridge{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 {returnnil, }returnmem.BufferSlice{mem.SliceBuffer()}, nil}func ( codecV0Bridge) ( mem.BufferSlice, any) ( error) {return .codec.Unmarshal(.Materialize(), )}var _ encoding.CodecV2 = codecV1Bridge{}type codecV1Bridge struct {codecV0Bridge name 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.typeCodecinterface {// 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 Goldsv0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.