This repository was archived by the owner on Nov 28, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathetcdClient.go
More file actions
244 lines (201 loc) · 5.87 KB
/
etcdClient.go
File metadata and controls
244 lines (201 loc) · 5.87 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
/***
Copyright 2014 Cisco Systems Inc. All rights reserved.
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 objdb
import (
"encoding/json"
"errors"
"sync"
"time"
"golang.org/x/net/context"
log "github.com/Sirupsen/logrus"
"github.com/coreos/etcd/client"
)
type etcdPlugin struct {
mutex *sync.Mutex
}
// EtcdClient has etcd client state
type EtcdClient struct {
client client.Client // etcd client
kapi client.KeysAPI
serviceDb map[string]*etcdServiceState
}
// Max retry count
const maxEtcdRetries = 10
// Register the plugin
func init() {
RegisterPlugin("etcd", &etcdPlugin{mutex: new(sync.Mutex)})
}
// Initialize the etcd client
func (ep *etcdPlugin) NewClient(endpoints []string) (API, error) {
var err error
var ec = new(EtcdClient)
ep.mutex.Lock()
defer ep.mutex.Unlock()
// Setup default url
if len(endpoints) == 0 {
endpoints = []string{"http://127.0.0.1:2379"}
}
etcdConfig := client.Config{
Endpoints: endpoints,
}
// Create a new client
ec.client, err = client.New(etcdConfig)
if err != nil {
log.Fatalf("Error creating etcd client. Err: %v", err)
return nil, err
}
// create keys api
ec.kapi = client.NewKeysAPI(ec.client)
// Initialize service DB
ec.serviceDb = make(map[string]*etcdServiceState)
// Make sure we can read from etcd
_, err = ec.kapi.Get(context.Background(), "/", &client.GetOptions{Recursive: true, Sort: true})
if err != nil {
log.Errorf("Failed to connect to etcd. Err: %v", err)
return nil, err
}
return ec, nil
}
// GetObj Get an object
func (ep *EtcdClient) GetObj(key string, retVal interface{}) error {
keyName := "/contiv.io/obj/" + key
// Get the object from etcd client
resp, err := ep.kapi.Get(context.Background(), keyName, &client.GetOptions{Quorum: true})
if err != nil {
// Retry few times if cluster is unavailable
if err.Error() == client.ErrClusterUnavailable.Error() {
for i := 0; i < maxEtcdRetries; i++ {
resp, err = ep.kapi.Get(context.Background(), keyName, &client.GetOptions{Quorum: true})
if err == nil {
break
}
// Retry after a delay
time.Sleep(time.Second)
}
}
if err != nil {
log.Errorf("Error getting key %s. Err: %v", keyName, err)
return err
}
}
// Parse JSON response
if err := json.Unmarshal([]byte(resp.Node.Value), retVal); err != nil {
log.Errorf("Error parsing object %s, Err %v", resp.Node.Value, err)
return err
}
return nil
}
// Recursive function to look thru each directory and get the files
func recursAddNode(node *client.Node, list []string) []string {
for _, innerNode := range node.Nodes {
// add only the files.
if !innerNode.Dir {
list = append(list, innerNode.Value)
} else {
list = recursAddNode(innerNode, list)
}
}
return list
}
// ListDir Get a list of objects in a directory
func (ep *EtcdClient) ListDir(key string) ([]string, error) {
keyName := "/contiv.io/obj/" + key
getOpts := client.GetOptions{
Recursive: true,
Sort: true,
Quorum: true,
}
// Get the object from etcd client
resp, err := ep.kapi.Get(context.Background(), keyName, &getOpts)
if err != nil {
// Retry few times if cluster is unavailable
if err.Error() == client.ErrClusterUnavailable.Error() {
for i := 0; i < maxEtcdRetries; i++ {
resp, err = ep.kapi.Get(context.Background(), keyName, &getOpts)
if err == nil {
break
}
// Retry after a delay
time.Sleep(time.Second)
}
}
if err != nil {
return nil, err
}
}
if !resp.Node.Dir {
log.Errorf("ListDir response is not a directory")
return nil, errors.New("Response is not directory")
}
var retList []string
// Call a recursive function to recurse thru each directory and get all files
// Warning: assumes directory itep is not interesting to the caller
// Warning2: there is also an assumption that keynames are not required
// Which means, caller has to derive the key from value :(
retList = recursAddNode(resp.Node, retList)
return retList, nil
}
// SetObj Save an object, create if it doesnt exist
func (ep *EtcdClient) SetObj(key string, value interface{}) error {
keyName := "/contiv.io/obj/" + key
// JSON format the object
jsonVal, err := json.Marshal(value)
if err != nil {
log.Errorf("Json conversion error. Err %v", err)
return err
}
// Set it via etcd client
_, err = ep.kapi.Set(context.Background(), keyName, string(jsonVal[:]), nil)
if err != nil {
// Retry few times if cluster is unavailable
if err.Error() == client.ErrClusterUnavailable.Error() {
for i := 0; i < maxEtcdRetries; i++ {
_, err = ep.kapi.Set(context.Background(), keyName, string(jsonVal[:]), nil)
if err == nil {
break
}
// Retry after a delay
time.Sleep(time.Second)
}
}
if err != nil {
log.Errorf("Error setting key %s, Err: %v", keyName, err)
return err
}
}
return nil
}
// DelObj Remove an object
func (ep *EtcdClient) DelObj(key string) error {
keyName := "/contiv.io/obj/" + key
// Remove it via etcd client
_, err := ep.kapi.Delete(context.Background(), keyName, nil)
if err != nil {
// Retry few times if cluster is unavailable
if err.Error() == client.ErrClusterUnavailable.Error() {
for i := 0; i < maxEtcdRetries; i++ {
_, err = ep.kapi.Delete(context.Background(), keyName, nil)
if err == nil {
break
}
// Retry after a delay
time.Sleep(time.Second)
}
}
if err != nil {
log.Errorf("Error removing key %s, Err: %v", keyName, err)
return err
}
}
return nil
}