forked from apache/dubbo-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_instance.go
201 lines (168 loc) · 5.4 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
/*
* 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"
"strconv"
)
import (
gxsort "github.com/dubbogo/gost/sort"
)
import (
"dubbo.apache.org/dubbo-go/v3/common"
"dubbo.apache.org/dubbo-go/v3/common/constant"
"dubbo.apache.org/dubbo-go/v3/common/logger"
)
// ServiceInstance is the model class of an instance of a service, 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
ToURLs() []*common.URL
// GetEndPoints
GetEndPoints() []*Endpoint
// Copy
Copy(endpoint *Endpoint) ServiceInstance
// GetAddress
GetAddress() string
// SetServiceMetadata
SetServiceMetadata(info *common.MetadataInfo)
}
// 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
}
// 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
}
// ToURLs
func (d *DefaultServiceInstance) ToURLs() []*common.URL {
urls := make([]*common.URL, 0, 8)
for _, service := range d.ServiceMetadata.Services {
url := common.NewURLWithOptions(common.WithProtocol(service.Protocol),
common.WithIp(d.Host), common.WithPort(strconv.Itoa(d.Port)),
common.WithMethods(service.GetMethods()), common.WithParams(service.GetParams()))
urls = append(urls, url)
}
return urls
}
// GetEndPoints get end points from metadata
func (d *DefaultServiceInstance) GetEndPoints() []*Endpoint {
rawEndpoints := d.Metadata[constant.SERVICE_INSTANCE_ENDPOINTS]
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,
}
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)
}