Newer
Older
package zookeeper
import (
"fmt"
"github.com/AlexStocks/goext/net"
log "github.com/AlexStocks/log4go"
"github.com/dubbo/dubbo-go/registry"

vito.he
committed
"github.com/dubbo/dubbo-go/service"
"github.com/dubbo/dubbo-go/version"
jerrors "github.com/juju/errors"
const (
defaultTimeout = int64(10e9)
RegistryZkClient = "zk registry"
type ZkRegistryConfig struct {
Address []string `required:"true" yaml:"address" json:"address,omitempty"`
UserName string `yaml:"user_name" json:"user_name,omitempty"`
Password string `yaml:"password" json:"password,omitempty"`
TimeoutStr string `yaml:"timeout" default:"5s" json:"timeout,omitempty"` // unit: second
Timeout time.Duration `yaml:"-" json:"-"`
}
type Options struct {
registry.Options
ZkRegistryConfig
}
type Option func(*Options)
func (Option) OptionName() string {
return "zk's option func"
}
type ZkRegistry struct {
Options
birth int64 // time of file birth, seconds since Epoch; 0 if unknown
wg sync.WaitGroup // wg+done for zk restart
done chan struct{}
sync.Mutex
client *zookeeperClient
services map[string]service.ServiceConfigIf // service name + protocol -> service config
listenerLock sync.Mutex
listener *zkEventListener
zkPath map[string]int // key = protocol://ip:port/interface
outerEventCh chan *registry.ServiceURLEvent
}
func init() {
processID = fmt.Sprintf("%d", os.Getpid())
localIP, _ = gxnet.GetLocalIP()
}
func WithRegistryConf(conf ZkRegistryConfig) Option {
return func(o *Options) {
o.ZkRegistryConfig = conf
}
}
func NewZkRegistry(opts ...registry.OptionInf) (registry.Registry, error) {
var (
err error
r *ZkRegistry
)
r = &ZkRegistry{
birth: time.Now().UnixNano(),
done: make(chan struct{}),
services: make(map[string]service.ServiceConfigIf),
zkPath: make(map[string]int),
outerEventCh: make(chan *registry.ServiceURLEvent),
}
}
//if r.DubboType == 0{
// return nil ,errors.New("Dubbo type should be specified.")
//}
if r.Name == "" {
r.Name = RegistryZkClient
}
if r.Version == "" {
r.Version = version.Version
}
if r.ZkRegistryConfig.Timeout == 0 {
r.ZkRegistryConfig.Timeout = DEFAULT_REGISTRY_TIMEOUT
}
err = r.validateZookeeperClient()
if err != nil {
return nil, jerrors.Trace(err)
}
r.wg.Add(1)
go r.handleZkRestart()
return r, nil
}
func (r *ZkRegistry) Close() {
close(r.done)
r.wg.Wait()
r.closeRegisters()
}
func (r *ZkRegistry) validateZookeeperClient() error {
var (
err error
)
err = nil
r.Lock()
defer r.Unlock()
if r.client == nil {
r.client, err = newZookeeperClient(RegistryZkClient, r.Address, r.ZkRegistryConfig.Timeout)
if err != nil {
log.Warn("newZookeeperClient(name{%s}, zk addresss{%v}, timeout{%d}) = error{%v}",
RegistryZkClient, r.Address, r.Timeout.String(), err)
}
}
if r.client.conn == nil {
var event <-chan zk.Event
r.client.conn, event, err = zk.Connect(r.client.zkAddrs, r.client.timeout)
if err != nil {
r.client.wait.Add(1)
go r.client.handleZkEvent(event)
}
}
return jerrors.Annotatef(err, "newZookeeperClient(address:%+v)", r.Address)
}
func (r *ZkRegistry) handleZkRestart() {
var (
err error
flag bool
failTimes int

vito.he
committed
confIf service.ServiceConfigIf
services []service.ServiceConfigIf
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
)
defer r.wg.Done()
LOOP:
for {
select {
case <-r.done:
log.Warn("(ZkProviderRegistry)reconnectZkRegistry goroutine exit now...")
break LOOP
// re-register all services
case <-r.client.done():
r.Lock()
r.client.Close()
r.client = nil
r.Unlock()
// 接zk,直至成功
failTimes = 0
for {
select {
case <-r.done:
log.Warn("(ZkProviderRegistry)reconnectZkRegistry goroutine exit now...")
break LOOP
case <-time.After(time.Duration(1e9 * failTimes * REGISTRY_CONN_DELAY)): // 防止疯狂重连zk
}
err = r.validateZookeeperClient()
log.Info("ZkProviderRegistry.validateZookeeperClient(zkAddr{%s}) = error{%#v}",
r.client.zkAddrs, jerrors.ErrorStack(err))
if err == nil {
// copy r.services
r.Lock()
for _, confIf = range r.services {
services = append(services, confIf)
}
r.Unlock()
flag = true
for _, confIf = range services {
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
if err != nil {
log.Error("(ZkProviderRegistry)register(conf{%#v}) = error{%#v}",
confIf, jerrors.ErrorStack(err))
flag = false
break
}
}
if flag {
break
}
}
failTimes++
if MAX_TIMES <= failTimes {
failTimes = MAX_TIMES
}
}
}
}
}
func (r *ZkRegistry) register(c interface{}) error {
var (
err error
revision string
params url.Values
urlPath string
rawURL string
encodedURL string
dubboPath string
)
err = r.validateZookeeperClient()
if err != nil {
return jerrors.Trace(err)
}
params = url.Values{}
params.Add("application", r.ApplicationConfig.Name)
params.Add("default.timeout", fmt.Sprintf("%d", defaultTimeout/1e6))
params.Add("environment", r.ApplicationConfig.Environment)
params.Add("org", r.ApplicationConfig.Organization)
params.Add("module", r.ApplicationConfig.Module)
params.Add("owner", r.ApplicationConfig.Owner)
params.Add("pid", processID)
params.Add("ip", localIP)
params.Add("timeout", fmt.Sprintf("%d", int64(r.Timeout)/1e6))
params.Add("timestamp", fmt.Sprintf("%d", r.birth/1e6))
revision = r.ApplicationConfig.Version
if revision == "" {
revision = "0.1.0"
}
params.Add("revision", revision) // revision是pox.xml中application的version属性的值
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
conf := c.(ProviderServiceConfig)
if conf.Service == "" || conf.Methods == "" {
return jerrors.Errorf("conf{Service:%s, Methods:%s}", conf.Service, conf.Methods)
}
// 先创建服务下面的provider node
dubboPath = fmt.Sprintf("/dubbo/%s/%s", conf.Service, registry.DubboNodes[registry.PROVIDER])
r.Lock()
err = r.client.Create(dubboPath)
r.Unlock()
if err != nil {
log.Error("zkClient.create(path{%s}) = error{%#v}", dubboPath, jerrors.ErrorStack(err))
return jerrors.Annotatef(err, "zkclient.Create(path:%s)", dubboPath)
}
params.Add("anyhost", "true")
params.Add("interface", conf.ServiceConfig.Service)
if conf.ServiceConfig.Group != "" {
params.Add("group", conf.ServiceConfig.Group)
}
// dubbo java consumer来启动找provider url时,因为category不匹配,会找不到provider,导致consumer启动不了,所以使用consumers&providers
// DubboRole = [...]string{"consumer", "", "", "provider"}
// params.Add("category", (DubboType(PROVIDER)).Role())
params.Add("category", (registry.DubboType(registry.PROVIDER)).String())
params.Add("dubbo", "dubbo-provider-golang-"+version.Version)
params.Add("side", (registry.DubboType(registry.PROVIDER)).Role())
if conf.ServiceConfig.Version != "" {
params.Add("version", conf.ServiceConfig.Version)
}
if conf.Methods != "" {
params.Add("methods", conf.Methods)
}
log.Debug("provider zk url params:%#v", params)
if conf.Path == "" {
conf.Path = localIP
}
urlPath = conf.Service
if r.zkPath[urlPath] != 0 {
}
r.zkPath[urlPath]++
rawURL = fmt.Sprintf("%s://%s/%s?%s", conf.Protocol, conf.Path, urlPath, params.Encode())
encodedURL = url.QueryEscape(rawURL)
// 把自己注册service providers
dubboPath = fmt.Sprintf("/dubbo/%s/%s", conf.Service, (registry.DubboType(registry.PROVIDER)).String())
log.Debug("provider path:%s, url:%s", dubboPath, rawURL)

vito.he
committed
conf := c.(*service.ServiceConfig)
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
dubboPath = fmt.Sprintf("/dubbo/%s/%s", conf.Service, registry.DubboNodes[registry.CONSUMER])
r.Lock()
err = r.client.Create(dubboPath)
r.Unlock()
if err != nil {
log.Error("zkClient.create(path{%s}) = error{%v}", dubboPath, jerrors.ErrorStack(err))
return jerrors.Trace(err)
}
dubboPath = fmt.Sprintf("/dubbo/%s/%s", conf.Service, registry.DubboNodes[registry.PROVIDER])
r.Lock()
err = r.client.Create(dubboPath)
r.Unlock()
if err != nil {
log.Error("zkClient.create(path{%s}) = error{%v}", dubboPath, jerrors.ErrorStack(err))
return jerrors.Trace(err)
}
params.Add("protocol", conf.Protocol)
params.Add("interface", conf.Service)
revision = r.ApplicationConfig.Version
if revision == "" {
revision = "0.1.0"
}
params.Add("revision", revision)
if conf.Group != "" {
params.Add("group", conf.Group)
}
params.Add("category", (registry.DubboType(registry.CONSUMER)).String())
params.Add("dubbo", "dubbogo-consumer-"+version.Version)
if conf.Version != "" {
params.Add("version", conf.Version)
}
rawURL = fmt.Sprintf("consumer://%s/%s?%s", localIP, conf.Service+conf.Version, params.Encode())
encodedURL = url.QueryEscape(rawURL)
dubboPath = fmt.Sprintf("/dubbo/%s/%s", conf.Service, (registry.DubboType(registry.CONSUMER)).String())
log.Debug("consumer path:%s, url:%s", dubboPath, rawURL)
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
return jerrors.Errorf("@c{%v} type is not ServiceConfig or ProviderServiceConfig", c)
}
err = r.registerTempZookeeperNode(dubboPath, encodedURL)
if err != nil {
return jerrors.Annotatef(err, "registerTempZookeeperNode(path:%s, url:%s)", dubboPath, rawURL)
}
return nil
}
func (r *ZkRegistry) registerTempZookeeperNode(root string, node string) error {
var (
err error
zkPath string
)
r.Lock()
defer r.Unlock()
err = r.client.Create(root)
if err != nil {
log.Error("zk.Create(root{%s}) = err{%v}", root, jerrors.ErrorStack(err))
return jerrors.Trace(err)
}
zkPath, err = r.client.RegisterTemp(root, node)
if err != nil {
log.Error("RegisterTempNode(root{%s}, node{%s}) = error{%v}", root, node, jerrors.ErrorStack(err))
return jerrors.Annotatef(err, "RegisterTempNode(root{%s}, node{%s})", root, node)
}
log.Debug("create a zookeeper node:%s", zkPath)
return nil
}
func (r *ZkRegistry) closeRegisters() {
r.Lock()
defer r.Unlock()
log.Info("begin to close provider zk client")
// 先关闭旧client,以关闭tmp node
r.client.Close()
r.client = nil
r.services = nil