-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathIoTDBConnectionStringBuilder.cs
More file actions
503 lines (453 loc) · 18.3 KB
/
Copy pathIoTDBConnectionStringBuilder.cs
File metadata and controls
503 lines (453 loc) · 18.3 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
/*
* 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.
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Common;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Threading;
namespace Apache.IoTDB.Data
{
/// <summary>
/// Provides a simple way to create and manage the contents of connection strings used by
/// <see cref="IoTDBConnection" />.
/// </summary>
public class IoTDBConnectionStringBuilder : DbConnectionStringBuilder
{
private const string DataSourceKeyword = "DataSource";
private const string UserNameKeyword = "Username";
private const string PasswordKeyword = "Password";
private const string PortKeyword = "Port";
private const string FetchSizeKeyword = "FetchSize";
private const string CompressionKeyword = "Compression";
private const string PoolSizeKeyword = "PoolSize";
private const string ZoneIdKeyword = "ZoneId";
private const string TimeOutKeyword = "TimeOut";
private const string UseSslKeyword = "UseSsl";
private const string ClientCertificatePathKeyword = "ClientCertificatePath";
private const string ClientCertificatePasswordKeyword = "ClientCertificatePassword";
private const string RootCertificatePathKeyword = "RootCertificatePath";
private enum Keywords
{
DataSource,
Username,
Password,
Port,
FetchSize,
Compression,
PoolSize,
ZoneId,
TimeOut,
UseSsl,
ClientCertificatePath,
ClientCertificatePassword,
RootCertificatePath
}
private static readonly IReadOnlyList<string> _validKeywords;
private static readonly IReadOnlyDictionary<string, Keywords> _keywords;
private string _dataSource = "127.0.0.1";
private string _userName = "root";
private string _password = "root";
private bool _enableRpcCompression = false;
private int _fetchSize = 1800;
private string _zoneId = "Asia/Shanghai";
private int _port = 6667;
private int _poolSize = 8;
private int _timeOut = 10000;
private bool _useSsl = false;
private string _clientCertificatePath = null;
private string _clientCertificatePassword = null;
private string _rootCertificatePath = null;
static IoTDBConnectionStringBuilder()
{
var validKeywords = new string[13];
validKeywords[(int)Keywords.DataSource] = DataSourceKeyword;
validKeywords[(int)Keywords.Username] = UserNameKeyword;
validKeywords[(int)Keywords.Password] = PasswordKeyword;
validKeywords[(int)Keywords.Port] = PortKeyword;
validKeywords[(int)Keywords.FetchSize] = FetchSizeKeyword;
validKeywords[(int)Keywords.Compression] = CompressionKeyword;
validKeywords[(int)Keywords.PoolSize] = PoolSizeKeyword;
validKeywords[(int)Keywords.ZoneId] = ZoneIdKeyword;
validKeywords[(int)Keywords.TimeOut] = TimeOutKeyword;
validKeywords[(int)Keywords.UseSsl] = UseSslKeyword;
validKeywords[(int)Keywords.ClientCertificatePath] = ClientCertificatePathKeyword;
validKeywords[(int)Keywords.ClientCertificatePassword] = ClientCertificatePasswordKeyword;
validKeywords[(int)Keywords.RootCertificatePath] = RootCertificatePathKeyword;
_validKeywords = validKeywords;
_keywords = new Dictionary<string, Keywords>(13, StringComparer.OrdinalIgnoreCase)
{
[DataSourceKeyword] = Keywords.DataSource,
[UserNameKeyword] = Keywords.Username,
[PasswordKeyword] = Keywords.Password,
[PortKeyword] = Keywords.Port,
[FetchSizeKeyword] = Keywords.FetchSize,
[CompressionKeyword] = Keywords.Compression,
[PoolSizeKeyword] = Keywords.PoolSize,
[ZoneIdKeyword] = Keywords.ZoneId,
[TimeOutKeyword] = Keywords.TimeOut,
[UseSslKeyword] = Keywords.UseSsl,
[ClientCertificatePathKeyword] = Keywords.ClientCertificatePath,
[ClientCertificatePasswordKeyword] = Keywords.ClientCertificatePassword,
[RootCertificatePathKeyword] = Keywords.RootCertificatePath
};
}
/// <summary>
/// Initializes a new instance of the <see cref="IoTDBConnectionStringBuilder" /> class.
/// </summary>
public IoTDBConnectionStringBuilder()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="IoTDBConnectionStringBuilder" /> class.
/// </summary>
/// <param name="connectionString">
/// The initial connection string the builder will represent. Can be null.
/// </param>
public IoTDBConnectionStringBuilder(string connectionString)
=> ConnectionString = connectionString;
/// <summary>
/// Gets or sets the database file.
/// </summary>
/// <value>The database file.</value>
public virtual string DataSource
{
get => _dataSource;
set => base[DataSourceKeyword] = _dataSource = value;
}
public virtual string Username
{
get => _userName;
set => base[UserNameKeyword] = _userName = value;
}
public virtual string Password
{
get => _password;
set => base[PasswordKeyword] = _password = value;
}
public virtual int Port
{
get => _port;
set => base[PortKeyword] = _port = value;
}
public virtual int FetchSize
{
get => _fetchSize;
set => base[FetchSizeKeyword] = _fetchSize = value;
}
public virtual bool Compression
{
get => _enableRpcCompression;
set => base[CompressionKeyword] = _enableRpcCompression = value;
}
public virtual int PoolSize
{
get => _poolSize;
set => base[PoolSizeKeyword] = _poolSize = value;
}
public virtual string ZoneId
{
get => _zoneId;
set => base[ZoneIdKeyword] = _zoneId = value;
}
public virtual int TimeOut
{
get => _timeOut;
set => base[TimeOutKeyword] = _timeOut = value;
}
public virtual bool UseSsl
{
get => _useSsl;
set => base[UseSslKeyword] = _useSsl = value;
}
public virtual string ClientCertificatePath
{
get => _clientCertificatePath;
set => base[ClientCertificatePathKeyword] = _clientCertificatePath = value;
}
public virtual string ClientCertificatePassword
{
get => _clientCertificatePassword;
set => base[ClientCertificatePasswordKeyword] = _clientCertificatePassword = value;
}
public virtual string RootCertificatePath
{
get => _rootCertificatePath;
set => base[RootCertificatePathKeyword] = _rootCertificatePath = value;
}
/// <summary>
/// Gets a collection containing the keys used by the connection string.
/// </summary>
/// <value>A collection containing the keys used by the connection string.</value>
public override ICollection Keys
=> new ReadOnlyCollection<string>((string[])_validKeywords);
/// <summary>
/// Gets a collection containing the values used by the connection string.
/// </summary>
/// <value>A collection containing the values used by the connection string.</value>
public override ICollection Values
{
get
{
var values = new object[_validKeywords.Count];
for (var i = 0; i < _validKeywords.Count; i++)
{
values[i] = GetAt((Keywords)i);
}
return new ReadOnlyCollection<object>(values);
}
}
/// <summary>
/// Gets or sets the value associated with the specified key.
/// </summary>
/// <param name="keyword">The key.</param>
/// <returns>The value.</returns>
public override object this[string keyword]
{
get => GetAt(GetIndex(keyword));
set
{
if (value == null)
{
Remove(keyword);
return;
}
switch (GetIndex(keyword))
{
case Keywords.DataSource:
DataSource = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.Username:
Username = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.Password:
Password = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.Port:
Port = Convert.ToInt32(value, CultureInfo.InvariantCulture);
return;
case Keywords.FetchSize:
FetchSize = Convert.ToInt32(value, CultureInfo.InvariantCulture);
return;
case Keywords.Compression:
Compression = Convert.ToBoolean(value, CultureInfo.InvariantCulture);
return;
case Keywords.PoolSize:
PoolSize = Convert.ToInt32(value, CultureInfo.InvariantCulture);
return;
case Keywords.ZoneId:
ZoneId = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.TimeOut:
TimeOut = Convert.ToInt32(value, CultureInfo.InvariantCulture);
return;
case Keywords.UseSsl:
UseSsl = Convert.ToBoolean(value, CultureInfo.InvariantCulture);
return;
case Keywords.ClientCertificatePath:
ClientCertificatePath = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.ClientCertificatePassword:
ClientCertificatePassword = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.RootCertificatePath:
RootCertificatePath = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
default:
Debug.WriteLine(false, "Unexpected keyword: " + keyword);
return;
}
}
}
private static TEnum ConvertToEnum<TEnum>(object value)
where TEnum : struct
{
if (value is string stringValue)
{
return (TEnum)Enum.Parse(typeof(TEnum), stringValue, ignoreCase: true);
}
if (value is TEnum enumValue)
{
enumValue = (TEnum)value;
}
else if (value.GetType().GetTypeInfo().IsEnum)
{
throw new ArgumentException($"ConvertFailed{value.GetType()},{typeof(TEnum)}");
}
else
{
enumValue = (TEnum)Enum.ToObject(typeof(TEnum), value);
}
if (!Enum.IsDefined(typeof(TEnum), enumValue))
{
throw new ArgumentOutOfRangeException(
nameof(value),
value,
$"Invalid Enum Value{typeof(TEnum)},{enumValue}");
}
return enumValue;
}
/// <summary>
/// Clears the contents of the builder.
/// </summary>
public override void Clear()
{
base.Clear();
for (var i = 0; i < _validKeywords.Count; i++)
{
Reset((Keywords)i);
}
}
/// <summary>
/// Determines whether the specified key is used by the connection string.
/// </summary>
/// <param name="keyword">The key to look for.</param>
/// <returns>true if it is use; otherwise, false.</returns>
public override bool ContainsKey(string keyword)
=> _keywords.ContainsKey(keyword);
/// <summary>
/// Removes the specified key and its value from the connection string.
/// </summary>
/// <param name="keyword">The key to remove.</param>
/// <returns>true if the key was used; otherwise, false.</returns>
public override bool Remove(string keyword)
{
if (!_keywords.TryGetValue(keyword, out var index)
|| !base.Remove(_validKeywords[(int)index]))
{
return false;
}
Reset(index);
return true;
}
/// <summary>
/// Determines whether the specified key should be serialized into the connection string.
/// </summary>
/// <param name="keyword">The key to check.</param>
/// <returns>true if it should be serialized; otherwise, false.</returns>
public override bool ShouldSerialize(string keyword)
=> _keywords.TryGetValue(keyword, out var index) && base.ShouldSerialize(_validKeywords[(int)index]);
/// <summary>
/// Gets the value of the specified key if it is used.
/// </summary>
/// <param name="keyword">The key.</param>
/// <param name="value">The value.</param>
/// <returns>true if the key was used; otherwise, false.</returns>
public override bool TryGetValue(string keyword, out object value)
{
if (!_keywords.TryGetValue(keyword, out var index))
{
value = null;
return false;
}
value = GetAt(index);
return true;
}
private object GetAt(Keywords index)
{
switch (index)
{
case Keywords.DataSource:
return DataSource;
case Keywords.Password:
return Password;
case Keywords.Username:
return Username;
case Keywords.Port:
return Port;
case Keywords.FetchSize:
return FetchSize;
case Keywords.Compression:
return Compression;
case Keywords.PoolSize:
return PoolSize;
case Keywords.ZoneId:
return ZoneId;
case Keywords.TimeOut:
return TimeOut;
case Keywords.UseSsl:
return UseSsl;
case Keywords.ClientCertificatePath:
return ClientCertificatePath;
case Keywords.ClientCertificatePassword:
return ClientCertificatePassword;
case Keywords.RootCertificatePath:
return RootCertificatePath;
default:
Debug.Assert(false, "Unexpected keyword: " + index);
return null;
}
}
private static Keywords GetIndex(string keyword)
=> !_keywords.TryGetValue(keyword, out var index)
? throw new ArgumentException($"Keyword Not Supported{keyword}")
: index;
private void Reset(Keywords index)
{
switch (index)
{
case Keywords.DataSource:
_dataSource = "127.0.0.1";
return;
case Keywords.Password:
_password = "root";
return;
case Keywords.Username:
_userName = "root";
return;
case Keywords.Port:
_port = 6667;
return;
case Keywords.FetchSize:
_fetchSize = 1800;
return;
case Keywords.Compression:
_enableRpcCompression = false;
return;
case Keywords.PoolSize:
_poolSize = 8;
return;
case Keywords.ZoneId:
_zoneId = "Asia/Shanghai";
return;
case Keywords.TimeOut:
_timeOut = 10000;//10sec.
return;
case Keywords.UseSsl:
_useSsl = false;
return;
case Keywords.ClientCertificatePath:
_clientCertificatePath = null;
return;
case Keywords.ClientCertificatePassword:
_clientCertificatePassword = null;
return;
case Keywords.RootCertificatePath:
_rootCertificatePath = null;
return;
default:
Debug.Assert(false, "Unexpected keyword: " + index);
return;
}
}
}
}