cubefs

Форк
0
48 строк · 1.3 Кб
1
/*
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.
21
package proto
22

23
import (
24
	"github.com/golang/protobuf/proto"
25
	"google.golang.org/grpc/encoding"
26
)
27

28
// Name is the name registered for the proto compressor.
29
const Name = "proto"
30

31
func init() {
32
	encoding.RegisterCodec(codec{})
33
}
34

35
// codec is a Codec implementation with protobuf. It is the default codec for gRPC.
36
type codec struct{}
37

38
func (codec) Marshal(v interface{}) ([]byte, error) {
39
	return proto.Marshal(v.(proto.Message))
40
}
41

42
func (codec) Unmarshal(data []byte, v interface{}) error {
43
	return proto.Unmarshal(data, v.(proto.Message))
44
}
45

46
func (codec) Name() string {
47
	return Name
48
}
49

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.