-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclient.go
More file actions
executable file
·638 lines (569 loc) · 15.7 KB
/
client.go
File metadata and controls
executable file
·638 lines (569 loc) · 15.7 KB
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
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
260
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
302
303
304
305
306
307
308
309
310
311
312
313
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
352
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
// Copyright 2016 IBM Corporation
//
// Licensed 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 goEurekaClient Implements a go client that interacts with a eureka server
package goEurekaClient
import (
"bytes"
"context"
"crypto/tls"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
"sort"
"strings"
"sync"
"time"
)
const (
hashcodeDelimiter = "_"
actionAdded = "ADDED"
actionModified = "MODIFIED"
actionDeleted = "DELETED"
)
type client struct {
sync.Mutex
httpClient *http.Client
eurekaURLs []string
dictionary dictionary
versionDelta int64
handler InstanceEventHandler
UseJSON bool
}
func newClient(config *Config, handler InstanceEventHandler) (*client, error) {
eurekaURLs, err := config.createUrlsList()
if eurekaURLs == nil {
return nil, err
}
var httpsRequired bool
urls := make([]string, len(eurekaURLs))
for i, eu := range eurekaURLs {
for strings.HasSuffix(eu, "/") {
eu = strings.TrimSuffix(eu, "/")
}
u, err := url.Parse(eu)
if err != nil {
return nil, err
}
if u.Scheme == "https" {
httpsRequired = true
}
urls[i] = eu
}
hc := &http.Client{
Timeout: config.ConnectTimeoutSeconds,
}
if httpsRequired {
hc.Transport = &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
}
cl := &client{
httpClient: hc,
eurekaURLs: urls,
handler: handler,
UseJSON: config.UseJSON,
}
return cl, nil
}
func (cl *client) run(pollInterval time.Duration, context context.Context) {
cl.refresh(cl.handler)
ticker := time.NewTicker(pollInterval)
for {
select {
case <-ticker.C:
cl.refresh(cl.handler)
case <-context.Done():
log.Printf("stop chan revieved. stop running discovery cache...")
return
}
}
}
func (cl *client) refresh(handler InstanceEventHandler) {
var dict *dictionary
// diff is a map of key : instance_id, value: *instance
var diff map[string]*Instance
// If this is the 1st time then we need to retrieve the full registry,
// otherwise a delta could be sufficient
if cl.dictionary.isEmpty() == false {
// not first time :
dict, diff = cl.fetchDelta()
}
if dict == nil || (dict.appNameIndex == nil && dict.vipIndex == nil && dict.svipIndex == nil) {
// This means first time :
fetchdDict, err := cl.fetchAll()
if err != nil {
// TODO: what message to report?
return
}
dict = fetchdDict
diff = cl.populateDiff(dict)
cl.versionDelta = 0
}
oldDict := cl.dictionary.copyDictionary()
if dict.appNameIndex != nil || dict.vipIndex != nil || dict.svipIndex != nil {
cl.Lock()
cl.dictionary.vipIndex = dict.vipIndex
cl.dictionary.appNameIndex = dict.appNameIndex
cl.dictionary.svipIndex = dict.svipIndex
cl.Unlock()
}
// Send notifications
if len(diff) > 0 {
for name := range diff {
if diff[name].ActionType == actionAdded {
cl.handler.OnAdd(diff[name])
} else if diff[name].ActionType == actionModified {
oldObj := oldDict.vipIndex[diff[name].VIPAddr][name]
cl.handler.OnUpdate(oldObj, diff[name])
} else if diff[name].ActionType == actionDeleted {
cl.handler.OnDelete(diff[name])
}
}
}
}
func (cl *client) fetchAll() (*dictionary, error) {
apps, err := cl.fetchApps("apps")
if err != nil {
log.Printf("Faild to update full registry. %s\n", err)
return &cl.dictionary, err
}
dict := newDictionary()
if apps != nil && apps.Application != nil {
for _, app := range apps.Application {
for _, inst := range app.Instances {
id, err := resolveInstanceID(inst)
if err != nil {
log.Printf("Failed to resolve instance ID. error: %s\n", err)
continue
}
inst.ID = id
if inst.VIPAddr != "" {
instances := dict.vipIndex[inst.VIPAddr]
if instances == nil {
instances = map[string]*Instance{}
dict.vipIndex[inst.VIPAddr] = instances
dict.vipIndex[inst.VIPAddr][id] = inst
}
}
if inst.SecVIPAddr != "" {
if dict.svipIndex[inst.SecVIPAddr] == nil {
dict.svipIndex[inst.SecVIPAddr] = map[string]*Instance{}
dict.svipIndex[inst.SecVIPAddr][id] = inst
}
}
if inst.Application != "" {
if dict.appNameIndex[app.Name] == nil {
dict.appNameIndex[app.Name] = map[string]*Instance{}
dict.appNameIndex[app.Name][id] = inst
}
}
}
}
}
hashcode := calculateHashcode(dict.vipIndex)
log.Printf("A full fetch completed. %s\n", hashcode)
return &dict, nil
}
func (cl *client) fetchDelta() (*dictionary, map[string]*Instance) {
apps, err := cl.fetchApps("apps/delta")
if err != nil {
log.Printf("Faild to update delta. %s\n", err)
return &dictionary{}, nil
}
if apps == nil || apps.VersionDelta == -1 {
log.Println("Delta update is not supported")
return &dictionary{}, nil
}
diff := map[string]*Instance{}
// If we have the latest version, no need to do anything
if apps.VersionDelta == cl.versionDelta {
log.Printf("Delta update was skipped, because we have the latest version (%d)", apps.VersionDelta)
return &cl.dictionary, diff
}
dict := cl.dictionary.copyDictionary()
var updated, deleted int
for _, app := range apps.Application {
for _, inst := range app.Instances {
id, err := resolveInstanceID(inst)
if err != nil {
log.Printf("Failed to resolve instance ID. error: %s\n", err)
return &dictionary{}, nil
}
inst.ID = id
switch inst.ActionType {
case actionDeleted:
dict.Delete(inst, id, app)
deleted++
case actionAdded:
dict.Add(inst, id, app)
updated++
case actionModified:
dict.Update(inst, id, app)
updated++
default:
log.Printf("Unknown ActionType %s for instance %+v\n", inst.ActionType, inst)
}
diff[inst.ID] = inst
}
}
// Calculate the new hashcode and compare it to the server
hashcode := calculateHashcode(dict.vipIndex)
if apps.Hashcode != hashcode {
log.Printf("Failed to update delta (local: %s, remote %s). A full update is required\n", hashcode, apps.Hashcode)
return &dictionary{}, nil
}
cl.versionDelta = apps.VersionDelta
log.Printf("Delta update completed successfully (updated: %d, deleted: %d, version: %d)\n", updated, deleted, apps.VersionDelta)
return dict, diff
}
// fetchApps function return all the applications from the server.
func (cl *client) fetchApps(path string) (*Applications, error) {
var err error
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("GET", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
defer resp.Body.Close()
body, err2 := ioutil.ReadAll(resp.Body)
if err2 != nil {
err = err2
continue
}
var appsList applicationsList
err2 = json.Unmarshal(body, &appsList)
if err2 != nil {
err = err2
continue
}
return appsList.Applications, nil
}
return nil, err
}
// fetchApp function fetches all applications with the name app_name, where path = "apps/app_name"
func (cl *client) fetchApp(path string) (*Applications, error) {
var err error
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("GET", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
defer resp.Body.Close()
body, err2 := ioutil.ReadAll(resp.Body)
if err2 != nil {
err = err2
continue
}
var apps Applications
err2 = json.Unmarshal(body, &apps)
if err2 != nil {
err = err2
continue
}
return &apps, nil
}
return nil, err
}
func (cl *client) fetchInstance(appID, id string) (*Instance, error) {
var err error
path := "apps/" + appID + "/" + id
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("GET", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
defer resp.Body.Close()
body, err2 := ioutil.ReadAll(resp.Body)
if err2 != nil {
err = err2
continue
}
var inst instanceWrapper
err2 = json.Unmarshal(body, &inst)
if err2 != nil {
err = err2
continue
}
return inst.Inst, nil
}
return nil, err
}
func (cl *client) getListOfInstsFromAppList(appList applicationsList) []*Instance {
var instsToReturn []*Instance
apps := appList.Applications.Application
for _, app := range apps {
insts := app.Instances
for _, inst := range insts {
instsToReturn = append(instsToReturn, inst)
}
}
return instsToReturn
}
func (cl *client) fetchInstancesByVip(vipAddress string) ([]*Instance, error) {
var err error
path := "vips/" + vipAddress
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("GET", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
defer resp.Body.Close()
body, err2 := ioutil.ReadAll(resp.Body)
if err2 != nil {
err = err2
continue
}
var appsList applicationsList
err2 = json.Unmarshal(body, &appsList)
if err2 != nil {
err = err2
continue
}
insts := cl.getListOfInstsFromAppList(appsList)
return insts, nil
}
return nil, err
}
func (cl *client) fetchInstancesBySVip(vipAddress string) ([]*Instance, error) {
var err error
path := "svips/" + vipAddress
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("GET", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
defer resp.Body.Close()
body, err2 := ioutil.ReadAll(resp.Body)
if err2 != nil {
err = err2
continue
}
var appsList applicationsList
err2 = json.Unmarshal(body, &appsList)
if err2 != nil {
err = err2
continue
}
insts := cl.getListOfInstsFromAppList(appsList)
return insts, nil
}
return nil, err
}
func (cl *client) register(instance *Instance) error {
var err error
instanceWrapper := instanceWrapper{Inst: instance}
body, err := json.Marshal(instanceWrapper)
r := bytes.NewReader(body)
appName := instance.Application
if err != nil {
return err
}
path := "apps/" + appName
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("POST", fmt.Sprintf("%s/%s", eurl, path), r)
cl.setJasonRequestHeader(req,"Content-Type")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
if resp.StatusCode != 204 {
err = fmt.Errorf("response code unexcpeted: %d", resp.StatusCode)
continue
}
}
return err
}
func (cl *client) deregister(instance *Instance) error {
var err error
appName := instance.Application
instID, err := resolveInstanceID(instance)
if err != nil {
return fmt.Errorf("Failed to resolve instance ID. error: %s\n", err)
}
path := "apps/" + appName + "/" + instID
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("DELETE", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
if resp.StatusCode != http.StatusOK {
err = fmt.Errorf("bad response for deregister request. response is %v", resp.Status)
}
}
return err
}
func (cl *client) heartbeat(instance *Instance) error {
var err error
appName := instance.Application
instID, err := resolveInstanceID(instance)
if err != nil {
return fmt.Errorf("Failed to resolve instance ID. error: %s\n", err)
}
path := "apps/" + appName + "/" + instID
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("PUT", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req, "Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
if resp.StatusCode != http.StatusOK {
err = fmt.Errorf("bad response for heartbeat request. response is %v", resp.Status)
}
}
return err
}
func (cl *client) setStatusForInstance(instance *Instance, status StatusType) error {
if status != UP && status != DOWN && status != UNKNOWN && status != OUTOFSERVICE && status != STARTING {
return fmt.Errorf("requested status %v is not valid", status)
}
var err error
appName := instance.Application
instID, err := resolveInstanceID(instance)
if err != nil {
return fmt.Errorf("Failed to resolve instance ID. error: %s\n", err)
}
path := "apps/" + appName + "/" + instID + "/status?value=" + fmt.Sprintf("%v", status)
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("PUT", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
if resp.StatusCode != http.StatusOK {
err = fmt.Errorf("bad response for changing status request. response is %v", resp.Status)
}
}
return err
}
func (cl *client) setMetadataKey(inst *Instance, key string, value string) error {
var err error
appName := inst.Application
instID, err := resolveInstanceID(inst)
if err != nil {
return fmt.Errorf("Failed to resolve instance ID. error: %s\n", err)
}
path := "apps/" + appName + "/" + instID + "/metadata?" + key + "=" + value
for _, eurl := range cl.eurekaURLs {
req, _ := http.NewRequest("PUT", fmt.Sprintf("%s/%s", eurl, path), nil)
cl.setJasonRequestHeader(req,"Accept")
resp, err2 := cl.httpClient.Do(req)
if err2 != nil {
err = err2
continue
}
if resp.StatusCode != http.StatusOK {
err = fmt.Errorf("bad response for changing metadata request. response is %v", resp.Status)
}
}
return err
}
func calculateHashcode(dict map[string]map[string]*Instance) string {
var hashcode string
if len(dict) == 0 {
return hashcode
}
hashMap := map[string]uint32{}
for _, insts := range dict {
for _, inst := range insts {
if count, ok := hashMap[inst.Status]; !ok {
hashMap[inst.Status] = 1
} else {
hashMap[inst.Status] = count + 1
}
}
}
var keys []string
for status := range hashMap {
keys = append(keys, status)
}
sort.Strings(keys)
for _, status := range keys {
count := hashMap[status]
hashcode = hashcode + fmt.Sprintf("%s%s%d%s", status, hashcodeDelimiter, count, hashcodeDelimiter)
}
return hashcode
}
func (cl *client) populateDiff(dict *dictionary) map[string]*Instance {
if dict.vipIndex == nil && dict.svipIndex == nil && dict.appNameIndex == nil {
return nil
}
cl.Lock()
defer cl.Unlock()
diff := map[string]*Instance{}
// Scan the new dictionary and look for changes
for vip, newInsts := range dict.vipIndex {
if srcInsts, ok := cl.dictionary.vipIndex[vip]; ok {
for id, newInst := range newInsts {
if srcInst, ok := srcInsts[id]; ok {
if newInst.Status != srcInst.Status {
diff[id] = newInst
}
} else {
diff[id] = newInst
}
}
} else {
for id, newInst := range newInsts {
diff[id] = newInst
}
}
}
// Scan the source dictionary and look for deleted services
for vip := range cl.dictionary.vipIndex {
if _, ok := dict.vipIndex[vip]; !ok {
for id, delInsts := range cl.dictionary.vipIndex[vip] {
diff[id] = delInsts
}
} else {
for id, inst := range cl.dictionary.vipIndex[vip] {
if _, ok := dict.vipIndex[vip][id]; !ok {
diff[id] = inst
}
}
}
}
return diff
}
func (cl *client) setJasonRequestHeader(req *http.Request, key string) {
if cl.UseJSON {
req.Header.Set(key, "application/json")
}
// TODO: ADD xml support.
}