blob: 3009b35afe7d329009ff010665286991522815a2 [file] [log] [blame]
kesavand2cde6582020-06-22 04:56:23 -04001/*
2 *
3 * Copyright 2018 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 proto defines the protobuf codec. Importing this package will
20// register the codec.
21package proto
22
23import (
Andrea Campanella764f1ed2022-03-24 11:46:38 +010024 "fmt"
kesavand2cde6582020-06-22 04:56:23 -040025
26 "github.com/golang/protobuf/proto"
27 "google.golang.org/grpc/encoding"
28)
29
30// Name is the name registered for the proto compressor.
31const Name = "proto"
32
33func init() {
34 encoding.RegisterCodec(codec{})
35}
36
37// codec is a Codec implementation with protobuf. It is the default codec for gRPC.
38type codec struct{}
39
kesavand2cde6582020-06-22 04:56:23 -040040func (codec) Marshal(v interface{}) ([]byte, error) {
Andrea Campanella764f1ed2022-03-24 11:46:38 +010041 vv, ok := v.(proto.Message)
42 if !ok {
43 return nil, fmt.Errorf("failed to marshal, message is %T, want proto.Message", v)
kesavand2cde6582020-06-22 04:56:23 -040044 }
Andrea Campanella764f1ed2022-03-24 11:46:38 +010045 return proto.Marshal(vv)
kesavand2cde6582020-06-22 04:56:23 -040046}
47
48func (codec) Unmarshal(data []byte, v interface{}) error {
Andrea Campanella764f1ed2022-03-24 11:46:38 +010049 vv, ok := v.(proto.Message)
50 if !ok {
51 return fmt.Errorf("failed to unmarshal, message is %T, want proto.Message", v)
kesavand2cde6582020-06-22 04:56:23 -040052 }
Andrea Campanella764f1ed2022-03-24 11:46:38 +010053 return proto.Unmarshal(data, vv)
kesavand2cde6582020-06-22 04:56:23 -040054}
55
56func (codec) Name() string {
57 return Name
58}