-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEtcdClient.cs
576 lines (518 loc) · 24.3 KB
/
EtcdClient.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
#if NET45
using System.Net.Cache;
#endif
using System.Threading;
using System.Threading.Tasks;
using System.Globalization;
#if NET45
using System.Security.Cryptography.X509Certificates;
#endif
namespace EtcdNet
{
/// <summary>
/// The EtcdClient class is used to talk with etcd service
/// </summary>
public class EtcdClient
{
HttpClientEx _currentClient;
readonly IJsonDeserializer _jsonDeserializer;
long _lastIndex;
/// <summary>
/// X-Etcd-Cluster-Id
/// </summary>
public string ClusterID { get; private set; }
/// <summary>
/// Lastest X-Etcd-Index received by this instance
/// </summary>
public long LastIndex { get; private set; }
#region constructor EtcdClient(EtcdClientOpitions options)
/// <summary>
/// Constructor
/// </summary>
/// <param name="options">options to initialize</param>
public EtcdClient(EtcdClientOpitions options)
{
if (options == null)
throw new ArgumentNullException("options");
if (options.Urls == null || options.Urls.Length == 0)
throw new ArgumentException("`EtcdClientOpitions.Urls` does not contain valid url");
AuthenticationHeaderValue authenticationHeaderValue = null;
if( !string.IsNullOrWhiteSpace(options.Username) &&
!string.IsNullOrWhiteSpace(options.Password) )
{
string auth = string.Format("{0}:{1}", options.Username, options.Password);
authenticationHeaderValue = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(ASCIIEncoding.ASCII.GetBytes(auth)));
}
_jsonDeserializer = options.JsonDeserializer == null ? new DefaultJsonDeserializer() : options.JsonDeserializer;
#if NET45
#endif
HttpClientEx [] httpClients = options.Urls.Select(u =>
{
if (string.IsNullOrWhiteSpace(u))
throw new ArgumentNullException("`urls` array contains empty url");
HttpClientEx httpClient = new HttpClientEx(options);
httpClient.BaseAddress = new Uri(u);
httpClient.DefaultRequestHeaders.Authorization = authenticationHeaderValue;
return httpClient;
}).ToArray();
// make the clients as a ring, so that we can try the next one when one fails
if( httpClients.Length > 1 )
{
for( int i = httpClients.Length - 2; i >= 0; i--)
{
httpClients[i].Next = httpClients[i + 1];
}
}
httpClients[httpClients.Length - 1].Next = httpClients[0];
// pick a client randomly
_currentClient = httpClients[DateTime.UtcNow.Ticks % httpClients.Length];
}
#endregion
#region Task<T> SendRequest<T>(HttpRequestMessage requestMessage, IEnumerable<KeyValuePair<string, string>> formFields)
private async Task<EtcdResponse> SendRequest(HttpMethod method, string requestUri, IEnumerable<KeyValuePair<string, string>> formFields = null)
{
HttpClientEx startClient = _currentClient;
HttpClientEx currentClient = _currentClient;
for (; ;)
{
try
{
using (HttpRequestMessage requestMessage = new HttpRequestMessage(method, requestUri))
{
if (formFields != null)
requestMessage.Content = new FormUrlEncodedContent(formFields);
using (HttpResponseMessage responseMessage = await currentClient.SendAsync(requestMessage))
{
string json = null;
if (responseMessage.Content != null)
json = await responseMessage.Content.ReadAsStringAsync();
if (!responseMessage.IsSuccessStatusCode)
{
if (!string.IsNullOrWhiteSpace(json))
{
ErrorResponse errorResponse = null;
try
{
errorResponse = _jsonDeserializer.Deserialize<ErrorResponse>(json);
}
catch { }
if (errorResponse != null)
throw EtcdGenericException.Create(requestMessage, errorResponse);
}
currentClient = currentClient.Next;
if (currentClient != startClient)
{
// try the next
continue;
}
else
{
responseMessage.EnsureSuccessStatusCode();
}
}
// if currentClient != _currentClient, update _currentClient
if (currentClient != startClient)
Interlocked.CompareExchange(ref _currentClient, currentClient, startClient);
if( !string.IsNullOrWhiteSpace(json) )
{
EtcdResponse resp = _jsonDeserializer.Deserialize<EtcdResponse>(json);
resp.EtcdServer = currentClient.BaseAddress.OriginalString;
resp.EtcdClusterID = GetStringHeader(responseMessage, "X-Etcd-Cluster-Id");
resp.EtcdIndex = GetLongHeader(responseMessage, "X-Etcd-Index");
resp.RaftIndex = GetLongHeader(responseMessage, "X-Raft-Index");
resp.RaftTerm = GetLongHeader(responseMessage, "X-Raft-Term");
long previousIndex = _lastIndex;
if (resp.EtcdIndex > previousIndex)
Interlocked.CompareExchange(ref _lastIndex, resp.EtcdIndex, previousIndex);
this.ClusterID = resp.EtcdClusterID;
return resp;
}
return null;
}
}
}
catch(EtcdRaftException)
{
currentClient = currentClient.Next;
if (currentClient != startClient)
continue; // try the next
else
throw; // tried all clients, all failed
}
catch(EtcdGenericException)
{
throw;
}
catch(Exception)
{
currentClient = currentClient.Next;
if (currentClient != startClient)
continue; // try the next
else
throw; // tried all clients, all failed
}
}
}
long GetLongHeader(HttpResponseMessage responseMessage, string name)
{
if (responseMessage.Headers != null)
{
IEnumerable<string> headerValues;
long longValue;
if (responseMessage.Headers.TryGetValues(name, out headerValues) && headerValues != null)
{
foreach( string headerValue in headerValues )
{
if (!string.IsNullOrWhiteSpace(headerValue) && long.TryParse(headerValue, out longValue))
return longValue;
}
}
}
return 0;
}
string GetStringHeader(HttpResponseMessage responseMessage, string name)
{
if (responseMessage.Headers != null)
{
IEnumerable<string> headerValues;
if (responseMessage.Headers.TryGetValues(name, out headerValues) && headerValues != null)
{
foreach (string headerValue in headerValues)
{
if (!string.IsNullOrWhiteSpace(headerValue))
return headerValue;
}
}
}
return null;
}
#endregion
/// <summary>
/// Get etcd node specified by `key`
/// </summary>
/// <param name="key">The path of the node, must start with `/`</param>
/// <param name="recursive">Represents whether list the children nodes</param>
/// <param name="sorted">To enumerate the in-order keys as a sorted list, use the "sorted" parameter.</param>
/// <param name="ignoreKeyNotFoundException">If `true`, `EtcdCommonException.KeyNotFound` exception is ignored and `null` is returned instead.</param>
/// <returns>represents response; or `null` if not exist</returns>
public async Task<EtcdResponse> GetNodeAsync(string key
, bool ignoreKeyNotFoundException = false
, bool recursive = false
, bool sorted = false
)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
try
{
string url = string.Format( CultureInfo.InvariantCulture
, "/v2/keys{0}?recursive={1}&sorted={2}"
, key
#if NET45
, recursive.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()
, sorted.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()
#else
, recursive.ToString().ToLowerInvariant()
, sorted.ToString().ToLowerInvariant()
#endif
);
EtcdResponse getNodeResponse = await SendRequest( HttpMethod.Get, url);
return getNodeResponse;
}
catch(EtcdCommonException.KeyNotFound)
{
if (ignoreKeyNotFoundException)
return null;
throw;
}
}
/// <summary>
/// Simplified version of `GetNodeAsync`.
/// Get the value of the specific node
/// </summary>
/// <param name="key">The path of the node, must start with `/`</param>
/// <param name="ignoreKeyNotFoundException">If `true`, `EtcdCommonException.KeyNotFound` exception is ignored and `null` is returned instead.</param>
/// <returns>A string represents a value. It could be `null`</returns>
public async Task<string> GetNodeValueAsync(string key, bool ignoreKeyNotFoundException = false)
{
EtcdResponse getNodeResponse = await this.GetNodeAsync(key, ignoreKeyNotFoundException);
if (getNodeResponse != null && getNodeResponse.Node != null)
return getNodeResponse.Node.Value;
return null;
}
/// <summary>
/// Get etcd node specified by `key`
/// </summary>
/// <param name="key">path of the node</param>
/// <param name="value">value to be set</param>
/// <param name="ttl">time to live, in seconds</param>
/// <param name="dir">indicates if this is a directory</param>
/// <returns>SetNodeResponse</returns>
public Task<EtcdResponse> SetNodeAsync(string key, string value, int? ttl = null, bool? dir = null)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}", key);
List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>();
if( value != null)
list.Add(new KeyValuePair<string, string>("value", value));
if (ttl.HasValue)
list.Add(new KeyValuePair<string, string>("ttl", ttl.Value.ToString(CultureInfo.InvariantCulture)));
if( dir.HasValue)
#if NET45
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()));
#else
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString().ToLowerInvariant()));
#endif
return SendRequest(HttpMethod.Put, url, list);
}
/// <summary>
/// delete specific node
/// </summary>
/// <param name="key">The path of the node, must start with `/`</param>
/// <param name="dir">true to delete an empty directory</param>
/// <param name="ignoreKeyNotFoundException">If `true`, `EtcdCommonException.KeyNotFound` exception is ignored and `null` is returned instead.</param>
/// <returns>SetNodeResponse instance or `null`</returns>
public async Task<EtcdResponse> DeleteNodeAsync(string key, bool ignoreKeyNotFoundException = false, bool? dir = null)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}", key);
if (dir == true)
url += "?dir=true";
try
{
return await SendRequest(HttpMethod.Delete, url);
}
catch(EtcdCommonException.KeyNotFound)
{
if (ignoreKeyNotFoundException)
return null;
throw;
}
}
/// <summary>
/// Create in-order node
/// </summary>
/// <param name="key"></param>
/// <param name="value"></param>
/// <param name="ttl"></param>
/// <param name="dir"></param>
/// <returns></returns>
public Task<EtcdResponse> CreateInOrderNodeAsync(string key, string value, int? ttl = null, bool? dir = null)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (value == null)
throw new ArgumentNullException("value");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}", key);
List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>()
{
new KeyValuePair<string,string>( "value", value)
};
if (ttl.HasValue)
list.Add(new KeyValuePair<string, string>("ttl", ttl.Value.ToString(CultureInfo.InvariantCulture)));
if (dir.HasValue)
#if NET45
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()));
#else
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString().ToLowerInvariant()));
#endif
return SendRequest(HttpMethod.Post, url, list);
}
/// <summary>
/// Create a new node. If node exists, EtcdCommonException.NodeExist occurs
/// </summary>
/// <param name="key"></param>
/// <param name="value"></param>
/// <param name="ttl"></param>
/// <param name="dir"></param>
/// <returns></returns>
public Task<EtcdResponse> CreateNodeAsync(string key, string value, int? ttl = null, bool? dir = null)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (value == null)
throw new ArgumentNullException("value");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}", key);
List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>()
{
new KeyValuePair<string,string>( "value", value),
new KeyValuePair<string,string>( "prevExist", "false")
};
if (ttl.HasValue)
list.Add(new KeyValuePair<string, string>("ttl", ttl.Value.ToString(CultureInfo.InvariantCulture)));
if (dir.HasValue)
#if NET45
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()));
#else
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString().ToLowerInvariant()));
#endif
return SendRequest(HttpMethod.Put, url, list);
}
/// <summary>
/// CAS(Compare and Swap) a node
/// </summary>
/// <param name="key"></param>
/// <param name="prevValue"></param>
/// <param name="value"></param>
/// <param name="ttl"></param>
/// <param name="dir"></param>
/// <returns></returns>
public Task<EtcdResponse> CompareAndSwapNodeAsync(string key, string prevValue, string value, int? ttl = null, bool? dir = null)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (value == null)
throw new ArgumentNullException("value");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}", key);
List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>()
{
new KeyValuePair<string,string>( "value", value),
new KeyValuePair<string,string>( "prevValue", prevValue)
};
if (ttl.HasValue)
list.Add(new KeyValuePair<string, string>("ttl", ttl.Value.ToString(CultureInfo.InvariantCulture)));
if (dir.HasValue)
#if NET45
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()));
#else
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString().ToLowerInvariant()));
#endif
return SendRequest(HttpMethod.Put, url, list);
}
/// <summary>
/// CAS(Compare and Swap) a node
/// </summary>
/// <param name="key">path of the node</param>
/// <param name="prevIndex">previous index</param>
/// <param name="value">value</param>
/// <param name="ttl">time to live (in seconds)</param>
/// <param name="dir">is directory</param>
/// <returns></returns>
public Task<EtcdResponse> CompareAndSwapNodeAsync(string key, long prevIndex, string value, int? ttl = null, bool? dir = null)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (value == null)
throw new ArgumentNullException("value");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}", key);
List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>()
{
new KeyValuePair<string,string>( "value", value),
new KeyValuePair<string,string>( "prevIndex", prevIndex.ToString(CultureInfo.InvariantCulture))
};
if (ttl.HasValue)
list.Add(new KeyValuePair<string, string>("ttl", ttl.Value.ToString(CultureInfo.InvariantCulture)));
if (dir.HasValue)
#if NET45
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()));
#else
list.Add(new KeyValuePair<string, string>("dir", dir.Value.ToString().ToLowerInvariant()));
#endif
return SendRequest(HttpMethod.Put, url, list);
}
/// <summary>
/// Compare and delete specific node
/// </summary>
/// <param name="key">Path of the node</param>
/// <param name="prevValue">previous value</param>
/// <returns>EtcdResponse</returns>
public Task<EtcdResponse> CompareAndDeleteNodeAsync(string key, string prevValue)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}?prevValue={1}", key, Uri.EscapeDataString(prevValue));
return SendRequest(HttpMethod.Delete, url);
}
/// <summary>
/// Compare and delete specific node
/// </summary>
/// <param name="key">path of the node</param>
/// <param name="prevIndex">previous index</param>
/// <returns>EtcdResponse</returns>
public Task<EtcdResponse> CompareAndDeleteNodeAsync(string key, long prevIndex)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string url = string.Format(CultureInfo.InvariantCulture, "/v2/keys{0}?prevValue={1}", key, prevIndex);
return SendRequest(HttpMethod.Delete, url);
}
/// <summary>
/// Watch changes
/// </summary>
/// <param name="key">Path of the node</param>
/// <param name="recursive">true to monitor descendants</param>
/// <param name="waitIndex">Etcd Index is continue monitor from</param>
/// <returns>EtcdResponse</returns>
public async Task<EtcdResponse> WatchNodeAsync(string key, bool recursive = false, long? waitIndex = null)
{
if (string.IsNullOrWhiteSpace(key))
throw new ArgumentNullException("key");
if (!key.StartsWith("/"))
throw new ArgumentException("The value of `key` must start with `/`.");
string requestUri = string.Format(CultureInfo.InvariantCulture
, "/v2/keys{0}?wait=true&recursive={1}"
, key
#if NET45
, recursive.ToString(CultureInfo.InvariantCulture).ToLowerInvariant()
#else
, recursive.ToString().ToLowerInvariant()
#endif
);
if (waitIndex.HasValue)
{
requestUri = string.Format(CultureInfo.InvariantCulture
, "{0}&waitIndex={1}"
, requestUri
, waitIndex.Value
);
}
for (; ; )
{
try
{
EtcdResponse resp = await SendRequest(HttpMethod.Get, requestUri);
if (resp != null)
return resp;
}
catch (TaskCanceledException)
{
// no changes detected and the connection idles for too long, try again
}
catch (HttpRequestException hrex)
{
// server closed connection
WebException webException = hrex.InnerException as WebException;
if (webException == null || webException.Status != WebExceptionStatus.ConnectionClosed)
throw;
}
}
}
}
}