-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathSqliteConnectionStringBuilder.cs
More file actions
501 lines (430 loc) · 16.7 KB
/
SqliteConnectionStringBuilder.cs
File metadata and controls
501 lines (430 loc) · 16.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Common;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using Microsoft.Data.Sqlite.Properties;
namespace Microsoft.Data.Sqlite;
/// <summary>
/// Provides a simple way to create and manage the contents of connection strings used by
/// <see cref="SqliteConnection" />.
/// </summary>
/// <seealso href="https://docs.microsoft.com/dotnet/standard/data/sqlite/connection-strings">Connection Strings</seealso>
[UnconditionalSuppressMessage(
"ReflectionAnalysis", "IL2112:ReflectionToRequiresUnreferencedCode",
Justification =
"Suppressing the same warnings as suppressed in the base DbConnectionStringBuilder. See https://github.com/dotnet/runtime/issues/97057"),
UnconditionalSuppressMessage(
"ReflectionAnalysis", "IL2113:ReflectionToRequiresUnreferencedCode",
Justification =
"Suppressing the same warnings as suppressed in the base DbConnectionStringBuilder. See https://github.com/dotnet/runtime/issues/97057")]
public class SqliteConnectionStringBuilder : DbConnectionStringBuilder
{
private const string DataSourceKeyword = "Data Source";
private const string DataSourceNoSpaceKeyword = "DataSource";
private const string ModeKeyword = "Mode";
private const string CacheKeyword = "Cache";
private const string FilenameKeyword = "Filename";
private const string PasswordKeyword = "Password";
private const string ForeignKeysKeyword = "Foreign Keys";
private const string RecursiveTriggersKeyword = "Recursive Triggers";
private const string DefaultTimeoutKeyword = "Default Timeout";
private const string CommandTimeoutKeyword = "Command Timeout";
private const string PoolingKeyword = "Pooling";
private const string VfsKeyword = "Vfs";
private enum Keywords
{
DataSource,
Mode,
Cache,
Password,
ForeignKeys,
RecursiveTriggers,
DefaultTimeout,
Pooling,
Vfs,
}
private static readonly IReadOnlyList<string> _validKeywords;
private static readonly IReadOnlyDictionary<string, Keywords> _keywords;
private string _dataSource = string.Empty;
private SqliteOpenMode _mode = SqliteOpenMode.ReadWriteCreate;
private SqliteCacheMode _cache = SqliteCacheMode.Default;
private string _password = string.Empty;
private bool? _foreignKeys;
private bool _recursiveTriggers;
private int _defaultTimeout = 30;
private bool _pooling = true;
private string? _vfs;
static SqliteConnectionStringBuilder()
{
var validKeywords = new string[9];
validKeywords[(int)Keywords.DataSource] = DataSourceKeyword;
validKeywords[(int)Keywords.Mode] = ModeKeyword;
validKeywords[(int)Keywords.Cache] = CacheKeyword;
validKeywords[(int)Keywords.Password] = PasswordKeyword;
validKeywords[(int)Keywords.ForeignKeys] = ForeignKeysKeyword;
validKeywords[(int)Keywords.RecursiveTriggers] = RecursiveTriggersKeyword;
validKeywords[(int)Keywords.DefaultTimeout] = DefaultTimeoutKeyword;
validKeywords[(int)Keywords.Pooling] = PoolingKeyword;
validKeywords[(int)Keywords.Vfs] = VfsKeyword;
_validKeywords = validKeywords;
_keywords = new Dictionary<string, Keywords>(12, StringComparer.OrdinalIgnoreCase)
{
[DataSourceKeyword] = Keywords.DataSource,
[ModeKeyword] = Keywords.Mode,
[CacheKeyword] = Keywords.Cache,
[PasswordKeyword] = Keywords.Password,
[ForeignKeysKeyword] = Keywords.ForeignKeys,
[RecursiveTriggersKeyword] = Keywords.RecursiveTriggers,
[DefaultTimeoutKeyword] = Keywords.DefaultTimeout,
[PoolingKeyword] = Keywords.Pooling,
[VfsKeyword] = Keywords.Vfs,
// aliases
[FilenameKeyword] = Keywords.DataSource,
[DataSourceNoSpaceKeyword] = Keywords.DataSource,
[CommandTimeoutKeyword] = Keywords.DefaultTimeout
};
}
/// <summary>
/// Initializes a new instance of the <see cref="SqliteConnectionStringBuilder" /> class.
/// </summary>
public SqliteConnectionStringBuilder()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="SqliteConnectionStringBuilder" /> class.
/// </summary>
/// <param name="connectionString">
/// The initial connection string the builder will represent. Can be null.
/// </param>
public SqliteConnectionStringBuilder(string? connectionString)
=> ConnectionString = connectionString;
/// <summary>
/// Gets or sets the database file.
/// </summary>
/// <value>The database file.</value>
[AllowNull]
public virtual string DataSource
{
get => _dataSource;
set => base[DataSourceKeyword] = _dataSource = value ?? string.Empty;
}
/// <summary>
/// Gets or sets the connection mode.
/// </summary>
/// <value>The connection mode.</value>
public virtual SqliteOpenMode Mode
{
get => _mode;
set => base[ModeKeyword] = _mode = 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 caching mode used by the connection.
/// </summary>
/// <value>The caching mode used by the connection.</value>
public virtual SqliteCacheMode Cache
{
get => _cache;
set => base[CacheKeyword] = _cache = value;
}
/// <summary>
/// Gets or sets the encryption key. Warning, this has no effect when the native SQLite library doesn't
/// support encryption. When specified, <c>PRAGMA key</c> is sent immediately after opening the connection.
/// </summary>
/// <value>The encryption key.</value>
/// <seealso href="https://docs.microsoft.com/dotnet/standard/data/sqlite/encryption">Encryption</seealso>
[AllowNull]
public string Password
{
get => _password;
set => base[PasswordKeyword] = _password = value ?? string.Empty;
}
/// <summary>
/// Gets or sets a value indicating whether to enable foreign key constraints. When true,
/// <c>PRAGMA foreign_keys = 1</c> is sent immediately after opening the connection. When false,
/// <c>PRAGMA foreign_keys = 0</c> is sent. When null, no pragma is sent. There is no need to enable foreign
/// keys if, like in e_sqlite3, SQLITE_DEFAULT_FOREIGN_KEYS was used to compile the native library.
/// </summary>
/// <value>A value indicating whether to enable foreign key constraints.</value>
public bool? ForeignKeys
{
get => _foreignKeys;
set => base[ForeignKeysKeyword] = _foreignKeys = value;
}
/// <summary>
/// Gets or sets a value indicating whether to enable recursive triggers. When true,
/// <c>PRAGMA recursive_triggers</c> is sent immediately after opening the connection. When false, no pragma
/// is sent.
/// </summary>
/// <value>A value indicating whether to enable recursive triggers.</value>
public bool RecursiveTriggers
{
get => _recursiveTriggers;
set => base[RecursiveTriggersKeyword] = _recursiveTriggers = value;
}
/// <summary>
/// Gets or sets the default <see cref="SqliteConnection.DefaultTimeout" /> value.
/// </summary>
/// <value>The default <see cref="SqliteConnection.DefaultTimeout" /> value.</value>
public int DefaultTimeout
{
get => _defaultTimeout;
set => base[DefaultTimeoutKeyword] = _defaultTimeout = value;
}
/// <summary>
/// Gets or sets a value indicating whether the connection will be pooled.
/// </summary>
/// <value>A value indicating whether the connection will be pooled.</value>
public bool Pooling
{
get => _pooling;
set => base[PoolingKeyword] = _pooling = value;
}
/// <summary>
/// Gets or sets the SQLite VFS used by the connection.
/// </summary>
/// <value>The SQLite VFS used by the connection.</value>
/// <seealso href="https://www.sqlite.org/vfs.html">SQLite VFS</seealso>
public string? Vfs
{
get => _vfs;
set => base[VfsKeyword] = _vfs = value;
}
/// <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]
{
#pragma warning disable CS8764 // NB: this["Foreign Keys"] may return null
get => GetAt(GetIndex(keyword));
#pragma warning restore CS8764
set
{
if (value == null)
{
Remove(keyword);
return;
}
switch (GetIndex(keyword))
{
case Keywords.DataSource:
DataSource = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.Mode:
Mode = ConvertToEnum<SqliteOpenMode>(value);
return;
case Keywords.Cache:
Cache = ConvertToEnum<SqliteCacheMode>(value);
return;
case Keywords.Password:
Password = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
case Keywords.ForeignKeys:
ForeignKeys = ConvertToNullableBoolean(value);
return;
case Keywords.RecursiveTriggers:
RecursiveTriggers = Convert.ToBoolean(value, CultureInfo.InvariantCulture);
return;
case Keywords.DefaultTimeout:
DefaultTimeout = Convert.ToInt32(value);
return;
case Keywords.Pooling:
Pooling = Convert.ToBoolean(value, CultureInfo.InvariantCulture);
return;
case Keywords.Vfs:
Vfs = Convert.ToString(value, CultureInfo.InvariantCulture);
return;
default:
Debug.Fail("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);
}
TEnum enumValue;
if (value is TEnum)
{
enumValue = (TEnum)value;
}
else if (value.GetType().IsEnum)
{
throw new ArgumentException(Resources.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,
Resources.InvalidEnumValue(typeof(TEnum), enumValue));
}
return enumValue;
}
private static bool? ConvertToNullableBoolean(object value)
=> value is null or string { Length: 0 }
? null
: Convert.ToBoolean(value, CultureInfo.InvariantCulture);
/// <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><see langword="true" /> if it is used; otherwise, <see langword="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><see langword="true" /> if the key was used; otherwise, <see langword="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><see langword="true" /> if it should be serialized; otherwise, <see langword="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><see langword="true" /> if the key was used; otherwise, <see langword="false" />.</returns>
#pragma warning disable CS8765 // NB: TryGetValue("Foreign Keys", out value) returns true, but value may be null
public override bool TryGetValue(string keyword, out object? value)
#pragma warning restore CS8765
{
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.Mode:
return Mode;
case Keywords.Cache:
return Cache;
case Keywords.Password:
return Password;
case Keywords.ForeignKeys:
return ForeignKeys;
case Keywords.RecursiveTriggers:
return RecursiveTriggers;
case Keywords.DefaultTimeout:
return DefaultTimeout;
case Keywords.Pooling:
return Pooling;
case Keywords.Vfs:
return Vfs;
default:
Debug.Fail("Unexpected keyword: " + index);
return null;
}
}
private static Keywords GetIndex(string keyword)
=> !_keywords.TryGetValue(keyword, out var index)
? throw new ArgumentException(Resources.KeywordNotSupported(keyword))
: index;
private void Reset(Keywords index)
{
switch (index)
{
case Keywords.DataSource:
_dataSource = string.Empty;
return;
case Keywords.Mode:
_mode = SqliteOpenMode.ReadWriteCreate;
return;
case Keywords.Cache:
_cache = SqliteCacheMode.Default;
return;
case Keywords.Password:
_password = string.Empty;
return;
case Keywords.ForeignKeys:
_foreignKeys = null;
return;
case Keywords.RecursiveTriggers:
_recursiveTriggers = false;
return;
case Keywords.DefaultTimeout:
_defaultTimeout = 30;
return;
case Keywords.Pooling:
_pooling = true;
return;
case Keywords.Vfs:
_vfs = null;
return;
default:
Debug.Fail("Unexpected keyword: " + index);
return;
}
}
}