-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetting.cs
More file actions
560 lines (486 loc) · 17.8 KB
/
Setting.cs
File metadata and controls
560 lines (486 loc) · 17.8 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
// Copyright (c) 2013-2016 Cemalettin Dervis, MIT License.
// https://github.com/cemdervis/SharpConfig
using System;
namespace Aaf.Sinc.SharpConfig
{
/// <summary>
/// Represents a setting in a <see cref="Configuration"/>.
/// Settings are always stored in a <see cref="Section"/>.
/// </summary>
public sealed class Setting : ConfigurationElement
{
#region Fields
private string mRawValue;
#endregion Fields
#region Construction
/// <summary>
/// Initializes a new instance of the <see cref="Setting"/> class.
/// </summary>
public Setting(string name) :
this(name, string.Empty)
{
mRawValue = string.Empty;
}
/// <summary>
/// Initializes a new instance of the <see cref="Setting"/> class.
/// </summary>
///
/// <param name="name"> The name of the setting.</param>
/// <param name="value">The value of the setting.</param>
public Setting(string name, object value) :
base(name)
{
SetValue(value);
}
#endregion Construction
#region Properties
/// <summary>
/// Gets or sets the raw string value of this setting.
/// </summary>
public string StringValue
{
get { return mRawValue; }
set { mRawValue = value; }
}
/// <summary>
/// Gets or sets the value of this setting as an int.
/// Note: this is a shortcut to GetValue and SetValue.
/// </summary>
public int IntValue
{
get { return GetValue<int>(); }
set { SetValue(value); }
}
/// <summary>
/// Gets or sets the value of this setting as a float.
/// Note: this is a shortcut to GetValue and SetValue.
/// </summary>
public float FloatValue
{
get { return GetValue<float>(); }
set { SetValue(value); }
}
/// <summary>
/// Gets or sets the value of this setting as a double.
/// Note: this is a shortcut to GetValue and SetValue.
/// </summary>
public double DoubleValue
{
get { return GetValue<double>(); }
set { SetValue(value); }
}
/// <summary>
/// Gets or sets the value of this setting as a bool.
/// Note: this is a shortcut to GetValue and SetValue.
/// </summary>
public bool BoolValue
{
get { return GetValue<bool>(); }
set { SetValue(value); }
}
/// <summary>
/// Gets or sets the value of this settings as a date.
/// Note: this is a shortcut to GetValue and SetValue.
/// </summary>
public DateTime DateTimeValue
{
get { return GetValue<DateTime>(); }
set { SetValue(value); }
}
/// <summary>
/// Gets a value indicating whether this setting is an array.
/// </summary>
public bool IsArray
{
get { return ArraySize >= 0; }
}
/// <summary>
/// Gets the size of the array that this setting represents.
/// If this setting is not an array, -1 is returned.
/// </summary>
public int ArraySize
{
get
{
if (string.IsNullOrEmpty(mRawValue))
{
return -1;
}
int arrayStartIdx = mRawValue.IndexOf('{');
int arrayEndIdx = mRawValue.LastIndexOf('}');
if (arrayStartIdx < 0 || arrayEndIdx < 0)
{
// Not an array.
return -1;
}
// There may only be spaces between the beginning
// of the string and the first left bracket.
for (int i = 0; i < arrayStartIdx; ++i)
{
if (mRawValue[i] != ' ')
{
return -1;
}
}
// Also, there may only be spaces between the last
// right brace and the end of the string.
for (int i = arrayEndIdx + 1; i < mRawValue.Length; ++i)
{
if (mRawValue[i] != ' ')
{
return -1;
}
}
int arraySize = 0;
// Naive algorithm; assume the number of commas equals the number of elements + 1.
for (int i = 0; i < mRawValue.Length; ++i)
{
if (mRawValue[i] == ',')
{
++arraySize;
}
}
if (arraySize == 0)
{
// There were no commas in the array expression.
// That does not mean that there are no elements.
// Check if there is at least something.
// If so, that is the single element of the array.
for (int i = arrayStartIdx + 1; i < arrayEndIdx; ++i)
{
if (mRawValue[i] != ' ')
{
++arraySize;
break;
}
}
}
else if (arraySize > 0)
{
// If there were any commas in the array expression,
// we have to increment the array size, as we assumed
// that the number of commas equaled the number of elements + 1.
++arraySize;
}
return arraySize;
}
}
#endregion Properties
#region GetValueTyped
/// <summary>
/// Gets this setting's value as a specific type.
/// </summary>
///
/// <typeparam name="T">The type of the object to retrieve.</typeparam>
[Obsolete("consider using GetValue().")]
public T GetValueTyped<T>()
{
return GetValue<T>();
}
/// <summary>
/// Gets this setting's value as a specific type.
/// </summary>
///
/// <param name="type">The type of the object to retrieve.</param>
[Obsolete("consider using GetValue().")]
public object GetValueTyped(Type type)
{
return GetValue(type);
}
/// <summary>
/// Gets this setting's value as a specific type.
/// </summary>
///
/// <typeparam name="T">The type of the object to retrieve.</typeparam>
public T GetValue<T>()
{
Type type = typeof(T);
if (type.IsArray)
{
throw new InvalidOperationException(
"To obtain an array value, use GetValueArray instead of GetValueTyped.");
}
if (this.IsArray)
{
throw new InvalidOperationException(
"The setting represents an array. Use GetValueArray to obtain its value.");
}
return (T)CreateObjectFromString(mRawValue, type);
}
/// <summary>
/// Gets this setting's value as a specific type.
/// </summary>
///
/// <param name="type">The type of the object to retrieve.</param>
public object GetValue(Type type)
{
if (type == null)
{
throw new ArgumentNullException("type");
}
if (type.IsArray)
{
throw new InvalidOperationException(
"To obtain an array value, use GetValueArray instead of GetValueTyped.");
}
if (this.IsArray)
{
throw new InvalidOperationException(
"The setting represents an array. Use GetValueArray to obtain its value.");
}
return CreateObjectFromString(mRawValue, type);
}
/// <summary>
/// Gets this setting's value as an array of a specific type.
/// Note: this only works if the setting represents an array. If it is not, then null is returned.
/// </summary>
/// <typeparam name="T">
/// The type of elements in the array. All values in the array are going to be converted to objects of this type.
/// If the conversion of an element fails, an exception is thrown.
/// </typeparam>
/// <returns></returns>
public T[] GetValueArray<T>()
{
int myArraySize = this.ArraySize;
if (myArraySize < 0)
{
return null;
}
var values = new T[myArraySize];
if (myArraySize > 0)
{
var enumerator = new SettingArrayEnumerator(mRawValue);
while (enumerator.Next())
{
values[enumerator.Index] = (T)CreateObjectFromString(enumerator.Current, typeof(T));
}
}
return values;
}
/// <summary>
/// Gets this setting's value as an array of a specific type.
/// Note: this only works if the setting represents an array. If it is not, then null is returned.
/// </summary>
/// <param name="elementType">
/// The type of elements in the array. All values in the array are going to be converted to objects of this type.
/// If the conversion of an element fails, an exception is thrown.
/// </param>
/// <returns></returns>
public object[] GetValueArray(Type elementType)
{
int myArraySize = this.ArraySize;
if (myArraySize < 0)
{
return null;
}
var values = new object[myArraySize];
if (myArraySize > 0)
{
var enumerator = new SettingArrayEnumerator(mRawValue);
while (enumerator.Next())
{
values[enumerator.Index] = CreateObjectFromString(enumerator.Current, elementType);
}
}
return values;
}
// Converts the value of a single element to a desired type.
private static object CreateObjectFromString(string value, Type dstType)
{
var underlyingType = Nullable.GetUnderlyingType(dstType);
if (underlyingType != null)
{
if (string.IsNullOrEmpty(value))
{
// Returns Nullable<type>().
return null;
}
// Otherwise, continue with our conversion using
// the underlying type of the nullable.
dstType = underlyingType;
}
object ret = null;
IFormatProvider formatProvider = null;
if (dstType == typeof(bool))
{
// Special case for bool.
switch (value.ToLowerInvariant())
{
case "false":
case "off":
case "no":
case "0":
ret = false;
break;
case "true":
case "on":
case "yes":
case "1":
ret = true;
break;
}
}
else if (dstType.BaseType == typeof(Enum))
{
// It's possible that the value is something like:
// UriFormat.Unescaped
// We, and especially Enum.Parse do not want this format.
// Instead, it wants the clean name like:
// Unescaped
//
// Because of that, let's get rid of unwanted type names.
int indexOfLastDot = value.LastIndexOf('.');
if (indexOfLastDot >= 0)
{
value = value.Substring(indexOfLastDot + 1, value.Length - indexOfLastDot - 1).Trim();
}
try
{
ret = Enum.Parse(dstType, value);
}
catch (Exception ex)
{
throw new SettingValueCastException(value, dstType, ex);
}
}
else if (dstType == typeof(DateTime))
{
formatProvider = Configuration.DateTimeFormat;
}
else
{
// Assume that the destination type is a number.
formatProvider = Configuration.NumberFormat;
}
if (formatProvider != null)
{
try
{
// Main conversion routine.
ret = Convert.ChangeType(value, dstType, formatProvider);
}
catch (Exception ex)
{
throw new SettingValueCastException(value, dstType, ex);
}
}
return ret;
}
#endregion GetValueTyped
#region SetValue
/// <summary>
/// Sets the value of this setting via an object.
/// </summary>
///
/// <param name="value">The value to set.</param>
public void SetValue<T>(T value)
{
mRawValue = (value == null) ? string.Empty : value.ToString();
}
/// <summary>
/// Sets the value of this setting via an array.
/// </summary>
///
/// <param name="values">The values to set.</param>
public void SetValue<T>(T[] values)
{
if (values == null)
{
mRawValue = string.Empty;
}
else
{
var strings = new string[values.Length];
for (int i = 0; i < values.Length; ++i)
{
strings[i] = values[i].ToString();
}
mRawValue = string.Format("{{{0}}}", string.Join(",", strings));
}
}
/// <summary>
/// Sets the value of this setting via a DateTime object.
/// DateTime.ToString() is used for the conversion, using the format string and DateTimeFormat that
/// is set in and <see cref="Configuration.DateTimeFormat"/>, respectively.
/// </summary>
/// <param name="value">The time value to set.</param>
public void SetValue(DateTime value)
{
mRawValue = value.ToString(Configuration.DateTimeFormat);
}
/// <summary>
/// Sets the value of this setting via a DateTime array.
/// DateTime.ToString() is used for the conversion, using the format string and DateTimeFormat that
/// is set in and <see cref="Configuration.DateTimeFormat"/>, respectively.
/// </summary>
/// <param name="values">The time values to set.</param>
public void SetValue(DateTime[] values)
{
if (values == null)
{
mRawValue = null;
}
else
{
var strings = new string[values.Length];
for (int i = 0; i < values.Length; ++i)
{
strings[i] = values[i].ToString(Configuration.DateTimeFormat);
}
mRawValue = string.Format("{{{0}}}", string.Join(",", strings));
}
}
#endregion SetValue
#region Public Methods
/// <summary>
/// Gets the string representation of the setting, without its comments.
/// </summary>
public override string ToString()
{
return ToString(false);
}
/// <summary>
/// Gets the string representation of the setting.
/// </summary>
///
/// <param name="includeComment">Specify true to include the comments in the string; false otherwise.</param>
public string ToString(bool includeComment)
{
if (includeComment)
{
bool hasPreComments = mPreComments != null && mPreComments.Count > 0;
string[] preCommentStrings = hasPreComments ?
mPreComments.ConvertAll(c => c.ToString()).ToArray() : null;
if (Comment != null && hasPreComments)
{
// Include inline comment and pre-comments.
return string.Format("{0}{1}{2} = {3} {4}",
string.Join(Environment.NewLine, preCommentStrings), // {0}
Environment.NewLine, // {1}
Name, // {2}
mRawValue, // {3}
Comment.ToString() // {4}
);
}
else if (Comment != null)
{
// Include only the inline comment.
return string.Format("{0} = {1} {2}", Name, mRawValue, Comment.ToString());
}
else if (hasPreComments)
{
// Include only the pre-comments.
return string.Format("{0}{1}{2} = {3}",
string.Join(Environment.NewLine, preCommentStrings), // {0}
Environment.NewLine, // {1}
Name, // {2}
mRawValue // {3}
);
}
}
// In every other case, include just the assignment in the string.
return string.Format("{0} = {1}", Name, mRawValue);
}
#endregion Public Methods
}
}