-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathservice_instance.go
233 lines (197 loc) · 6.72 KB
/
service_instance.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/*
* 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 registry
import (
"encoding/json"
url2 "net/url"
"strconv"
)
import (
"github.com/dubbogo/gost/log/logger"
gxsort "github.com/dubbogo/gost/sort"
)
import (
"dubbo.apache.org/dubbo-go/v3/common"
"dubbo.apache.org/dubbo-go/v3/common/constant"
)
// ServiceInstance is the interface which is used for service registration and discovery.
type ServiceInstance interface {
// GetID will return this instance's id. It should be unique.
GetID() string
// GetServiceName will return the serviceName
GetServiceName() string
// GetHost will return the hostname
GetHost() string
// GetPort will return the port.
GetPort() int
// IsEnable will return the enable status of this instance
IsEnable() bool
// IsHealthy will return the value represent the instance whether healthy or not
IsHealthy() bool
// GetMetadata will return the metadata
GetMetadata() map[string]string
// ToURLs will return a list of url
ToURLs(service *common.ServiceInfo) []*common.URL
// GetEndPoints will get end points from metadata
GetEndPoints() []*Endpoint
// Copy will return a instance with different port
Copy(endpoint *Endpoint) ServiceInstance
// GetAddress will return the ip:Port
GetAddress() string
// SetServiceMetadata saves metadata in instance
SetServiceMetadata(info *common.MetadataInfo)
// GetTag will return the tag of the instance
GetTag() string
}
// nolint
type Endpoint struct {
Port int `json:"port,omitempty"`
Protocol string `json:"protocol,omitempty"`
}
// DefaultServiceInstance the default implementation of ServiceInstance
// or change the ServiceInstance to be struct???
type DefaultServiceInstance struct {
ID string
ServiceName string
Host string
Port int
Enable bool
Healthy bool
Metadata map[string]string
ServiceMetadata *common.MetadataInfo
Address string
GroupName string
endpoints []*Endpoint `json:"-"`
Tag string
}
// GetID will return this instance's id. It should be unique.
func (d *DefaultServiceInstance) GetID() string {
return d.ID
}
// GetServiceName will return the serviceName
func (d *DefaultServiceInstance) GetServiceName() string {
return d.ServiceName
}
// GetHost will return the hostname
func (d *DefaultServiceInstance) GetHost() string {
return d.Host
}
// GetPort will return the port.
func (d *DefaultServiceInstance) GetPort() int {
return d.Port
}
// IsEnable will return the enable status of this instance
func (d *DefaultServiceInstance) IsEnable() bool {
return d.Enable
}
// IsHealthy will return the value represent the instance whether healthy or not
func (d *DefaultServiceInstance) IsHealthy() bool {
return d.Healthy
}
// GetAddress will return the ip:Port
func (d *DefaultServiceInstance) GetAddress() string {
if d.Address != "" {
return d.Address
}
if d.Port <= 0 {
d.Address = d.Host
} else {
d.Address = d.Host + ":" + strconv.Itoa(d.Port)
}
return d.Address
}
// SetServiceMetadata save metadata in instance
func (d *DefaultServiceInstance) SetServiceMetadata(m *common.MetadataInfo) {
d.ServiceMetadata = m
}
func (d *DefaultServiceInstance) GetTag() string {
return d.Tag
}
// ToURLs return a list of url.
func (d *DefaultServiceInstance) ToURLs(service *common.ServiceInfo) []*common.URL {
urls := make([]*common.URL, 0, 8)
if d.endpoints == nil {
err := json.Unmarshal([]byte(d.Metadata[constant.ServiceInstanceEndpoints]), &d.endpoints)
if err != nil {
logger.Errorf("Error parsing endpoints of service instance v%, multiple protocol services might not be able to work properly, err is v%.", d, err)
}
}
if len(d.endpoints) > 0 {
for _, endpoint := range d.endpoints {
if endpoint.Protocol == service.Protocol {
url := common.NewURLWithOptions(common.WithProtocol(service.Protocol),
common.WithIp(d.Host), common.WithPort(strconv.Itoa(endpoint.Port)),
common.WithPath(service.Name), common.WithInterface(service.Name),
common.WithMethods(service.GetMethods()), common.WithParams(service.GetParams()),
common.WithParams(url2.Values{constant.Tagkey: {d.Tag}}))
urls = append(urls, url)
}
}
} else {
url := common.NewURLWithOptions(common.WithProtocol(service.Protocol),
common.WithIp(d.Host), common.WithPort(strconv.Itoa(d.Port)),
common.WithPath(service.Name), common.WithInterface(service.Name),
common.WithMethods(service.GetMethods()), common.WithParams(service.GetParams()),
common.WithParams(url2.Values{constant.Tagkey: {d.Tag}}))
urls = append(urls, url)
}
return urls
}
// GetEndPoints get end points from metadata
func (d *DefaultServiceInstance) GetEndPoints() []*Endpoint {
rawEndpoints := d.Metadata[constant.ServiceInstanceEndpoints]
if len(rawEndpoints) == 0 {
return nil
}
var endpoints []*Endpoint
err := json.Unmarshal([]byte(rawEndpoints), &endpoints)
if err != nil {
logger.Errorf("json umarshal rawEndpoints[%s] catch error:%s", rawEndpoints, err.Error())
return nil
}
return endpoints
}
// Copy return a instance with different port
func (d *DefaultServiceInstance) Copy(endpoint *Endpoint) ServiceInstance {
dn := &DefaultServiceInstance{
ID: d.ID,
ServiceName: d.ServiceName,
Host: d.Host,
Port: endpoint.Port,
Enable: d.Enable,
Healthy: d.Healthy,
Metadata: d.Metadata,
ServiceMetadata: d.ServiceMetadata,
Tag: d.Tag,
}
dn.ID = d.GetAddress()
return dn
}
// GetMetadata will return the metadata, it will never return nil
func (d *DefaultServiceInstance) GetMetadata() map[string]string {
if d.Metadata == nil {
d.Metadata = make(map[string]string)
}
return d.Metadata
}
// ServiceInstanceCustomizer is an extension point which allow user using custom
// logic to modify instance. Be careful of priority. Usually you should use number
// between [100, 9000] other number will be thought as system reserve number
type ServiceInstanceCustomizer interface {
gxsort.Prioritizer
Customize(instance ServiceInstance)
}