-
Notifications
You must be signed in to change notification settings - Fork 929
/
protocol_config.go
98 lines (81 loc) · 3.24 KB
/
protocol_config.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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 config
import (
"github.com/creasty/defaults"
)
import (
"dubbo.apache.org/dubbo-go/v3/common/constant"
)
// ProtocolConfig is protocol configuration
type ProtocolConfig struct {
Name string `default:"tri" validate:"required" yaml:"name" json:"name,omitempty" property:"name"`
Ip string `yaml:"ip" json:"ip,omitempty" property:"ip"`
Port string `default:"50051" yaml:"port" json:"port,omitempty" property:"port"`
Params interface{} `yaml:"params" json:"params,omitempty" property:"params"`
// MaxServerSendMsgSize max size of server send message, 1mb=1000kb=1000000b 1mib=1024kb=1048576b.
// more detail to see https://pkg.go.dev/github.com/dustin/go-humanize#pkg-constants
MaxServerSendMsgSize string `yaml:"max-server-send-msg-size" json:"max-server-send-msg-size,omitempty"`
// MaxServerRecvMsgSize max size of server receive message
MaxServerRecvMsgSize string `default:"4mib" yaml:"max-server-recv-msg-size" json:"max-server-recv-msg-size,omitempty"`
}
// Prefix dubbo.config-center
func (ProtocolConfig) Prefix() string {
return constant.ConfigCenterPrefix
}
func GetProtocolsInstance() map[string]*ProtocolConfig {
return make(map[string]*ProtocolConfig, 1)
}
func (p *ProtocolConfig) Init() error {
if err := defaults.Set(p); err != nil {
return err
}
return verify(p)
}
func NewProtocolConfigBuilder() *ProtocolConfigBuilder {
return &ProtocolConfigBuilder{protocolConfig: &ProtocolConfig{}}
}
type ProtocolConfigBuilder struct {
protocolConfig *ProtocolConfig
}
func (pcb *ProtocolConfigBuilder) SetName(name string) *ProtocolConfigBuilder {
pcb.protocolConfig.Name = name
return pcb
}
func (pcb *ProtocolConfigBuilder) SetIp(ip string) *ProtocolConfigBuilder {
pcb.protocolConfig.Ip = ip
return pcb
}
func (pcb *ProtocolConfigBuilder) SetPort(port string) *ProtocolConfigBuilder {
pcb.protocolConfig.Port = port
return pcb
}
func (pcb *ProtocolConfigBuilder) SetParams(params interface{}) *ProtocolConfigBuilder {
pcb.protocolConfig.Params = params
return pcb
}
func (pcb *ProtocolConfigBuilder) SetMaxServerSendMsgSize(maxServerSendMsgSize string) *ProtocolConfigBuilder {
pcb.protocolConfig.MaxServerSendMsgSize = maxServerSendMsgSize
return pcb
}
func (pcb *ProtocolConfigBuilder) SetMaxServerRecvMsgSize(maxServerRecvMsgSize string) *ProtocolConfigBuilder {
pcb.protocolConfig.MaxServerRecvMsgSize = maxServerRecvMsgSize
return pcb
}
func (pcb *ProtocolConfigBuilder) Build() *ProtocolConfig {
return pcb.protocolConfig
}