-
Notifications
You must be signed in to change notification settings - Fork 929
/
remote_config.go
154 lines (132 loc) · 4.6 KB
/
remote_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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
* 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 (
"net/url"
"time"
)
import (
perrors "github.com/pkg/errors"
)
import (
"dubbo.apache.org/dubbo-go/v3/common"
"dubbo.apache.org/dubbo-go/v3/common/constant"
)
// RemoteConfig usually we need some middleware, including nacos, zookeeper
// this represents an instance of this middleware
// so that other module, like config center, registry could reuse the config
// but now, only metadata report, metadata service, service discovery use this structure
type RemoteConfig struct {
Protocol string `yaml:"protocol" json:"protocol,omitempty" property:"protocol"`
Address string `yaml:"address" json:"address,omitempty" property:"address"`
Timeout string `default:"5s" yaml:"timeout" json:"timeout,omitempty" property:"timeout"`
Username string `yaml:"username" json:"username,omitempty" property:"username"`
Password string `yaml:"password" json:"password,omitempty" property:"password"`
Params map[string]string `yaml:"params" json:"params,omitempty"`
}
// Prefix dubbo.remote.
func (rc *RemoteConfig) Prefix() string {
return constant.RemotePrefix
}
func (rc *RemoteConfig) Init() error {
return nil
}
// GetTimeout return timeout duration.
// if the configure is invalid, or missing, the default value 5s will be returned
func (rc *RemoteConfig) GetTimeout() time.Duration {
if res, err := time.ParseDuration(rc.Timeout); err == nil {
return res
}
return 5 * time.Second
}
// GetParam will return the value of the key. If not found, def will be return;
// def => default value
func (rc *RemoteConfig) GetParam(key string, def string) string {
param, ok := rc.Params[key]
if !ok {
return def
}
return param
}
// ToURL config to url
func (rc *RemoteConfig) ToURL() (*common.URL, error) {
if len(rc.Protocol) == 0 {
return nil, perrors.Errorf("Must provide protocol in RemoteConfig.")
}
return common.NewURL(rc.Address,
common.WithProtocol(rc.Protocol),
common.WithUsername(rc.Username),
common.WithPassword(rc.Password),
common.WithLocation(rc.Address),
common.WithParams(rc.getUrlMap()),
)
}
// getUrlMap get url map
func (rc *RemoteConfig) getUrlMap() url.Values {
urlMap := url.Values{}
urlMap.Set(constant.ConfigUsernameKey, rc.Username)
urlMap.Set(constant.ConfigPasswordKey, rc.Password)
urlMap.Set(constant.ConfigTimeoutKey, rc.Timeout)
urlMap.Set(constant.ClientNameKey, clientNameID(rc, rc.Protocol, rc.Protocol))
for key, val := range rc.Params {
urlMap.Set(key, val)
}
return urlMap
}
func NewRemoteConfigBuilder() *RemoteConfigBuilder {
return &RemoteConfigBuilder{remoteConfig: &RemoteConfig{}}
}
type RemoteConfigBuilder struct {
remoteConfig *RemoteConfig
}
func (rcb *RemoteConfigBuilder) SetProtocol(protocol string) *RemoteConfigBuilder {
rcb.remoteConfig.Protocol = protocol
return rcb
}
func (rcb *RemoteConfigBuilder) SetAddress(address string) *RemoteConfigBuilder {
rcb.remoteConfig.Address = address
return rcb
}
func (rcb *RemoteConfigBuilder) SetTimeout(timeout string) *RemoteConfigBuilder {
rcb.remoteConfig.Timeout = timeout
return rcb
}
func (rcb *RemoteConfigBuilder) SetUsername(username string) *RemoteConfigBuilder {
rcb.remoteConfig.Username = username
return rcb
}
func (rcb *RemoteConfigBuilder) SetPassword(password string) *RemoteConfigBuilder {
rcb.remoteConfig.Password = password
return rcb
}
func (rcb *RemoteConfigBuilder) SetParams(params map[string]string) *RemoteConfigBuilder {
rcb.remoteConfig.Params = params
return rcb
}
func (rcb *RemoteConfigBuilder) AddParam(key, value string) *RemoteConfigBuilder {
if rcb.remoteConfig.Params == nil {
rcb.remoteConfig.Params = make(map[string]string)
}
rcb.remoteConfig.Params[key] = value
return rcb
}
func (rcb *RemoteConfigBuilder) Build() *RemoteConfig {
if err := rcb.remoteConfig.Init(); err != nil {
panic(err)
}
return rcb.remoteConfig
}