-
Notifications
You must be signed in to change notification settings - Fork 1
/
grpc.go
134 lines (104 loc) · 2.66 KB
/
grpc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package service
import (
"fmt"
grpcMiddleware "github.com/grpc-ecosystem/go-grpc-middleware"
"google.golang.org/grpc"
)
func (s *Service) GRPC() *grpc.Server {
if s.grpc != nil {
return s.grpc
}
opts := []grpc.ServerOption{}
opts = append(opts,
grpc.MaxRecvMsgSize(s.maxReceiveSize),
grpc.MaxSendMsgSize(s.maxSendSize),
)
opts = append(opts, s.grpcServerOptions...)
opts = append(opts, grpc.UnaryInterceptor(
grpcMiddleware.ChainUnaryServer(
s.unaryInterceptors...,
),
))
opts = append(opts, grpc.StreamInterceptor(
grpcMiddleware.ChainStreamServer(
s.streamInterceptors...,
),
))
s.grpc = grpc.NewServer(opts...)
return s.grpc
}
func WithGRPCPort(port int) func(*Service) error {
return func(s *Service) error {
if port <= 0 {
return fmt.Errorf(ErrInvalidPort.Error(), port)
}
s.grpcPort = port
return nil
}
}
func WithMaxRecieveSize(size int) func(*Service) error {
return func(s *Service) error {
if size <= 0 {
return fmt.Errorf(ErrInvalidRecieveSize.Error(), size)
}
return nil
}
}
func WithMaxSendSize(size int) func(*Service) error {
return func(s *Service) error {
if size <= 0 {
return fmt.Errorf(ErrInvalidSendSize.Error(), size)
}
return nil
}
}
func WithGRPCServerOptions(opts ...grpc.ServerOption) func(*Service) error {
return func(s *Service) error {
if len(opts) == 0 {
return ErrMissingGrpcServerOptions
}
s.grpcServerOptions = append(s.grpcServerOptions, opts...)
return nil
}
}
func WithGRPCServer(server *grpc.Server) func(*Service) error {
return func(s *Service) error {
if server == nil {
return ErrWithGRPCServerIsNil
}
s.grpc = server
return nil
}
}
func WithUnaryInterceptors(interceptors ...grpc.UnaryServerInterceptor) func(*Service) error {
return func(s *Service) error {
if len(interceptors) == 0 {
return ErrMissingGrpcUnaryInterceptors
}
s.unaryInterceptors = interceptors
return nil
}
}
func WithStreamInterceptors(interceptors ...grpc.StreamServerInterceptor) func(*Service) error {
return func(s *Service) error {
if len(interceptors) == 0 {
return ErrMissingGrpcStreamInterceptors
}
s.streamInterceptors = interceptors
return nil
}
}
func (s *Service) AddUnaryInterceptors(interceptors ...grpc.UnaryServerInterceptor) error {
if len(interceptors) == 0 {
return ErrMissingGrpcUnaryInterceptors
}
s.unaryInterceptors = append(s.unaryInterceptors, interceptors...)
return nil
}
func (s *Service) AddStreamInterceptors(interceptors ...grpc.StreamServerInterceptor) error {
if len(interceptors) == 0 {
return ErrMissingGrpcStreamInterceptors
}
s.streamInterceptors = append(s.streamInterceptors, interceptors...)
return nil
}