-
Notifications
You must be signed in to change notification settings - Fork 18
/
ParameterOverrideHelper.cs
506 lines (439 loc) · 18 KB
/
ParameterOverrideHelper.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
using DeltaKustoLib;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
using System.Text.Json;
namespace DeltaKustoIntegration.Parameterization
{
public static class ParameterOverrideHelper
{
// This is used instead of reflection since this isn't easily supported
// with self-contained executable
private readonly static IDictionary<
Type,
Action<object, IImmutableStack<PathComponent>, string>> _inplaceOverrideMap =
CreateInplaceOverrideMap();
private readonly static IDictionary<
Type,
Func<object>> _newInstanceMap =
CreateNewInstanceMap();
#region Inner Types
private class PathComponent
{
public PathComponent(string property, int? index = null)
{
Property = property;
Index = index;
}
public string Property { get; }
public int? Index { get; }
public override string ToString()
{
return Index == null
? Property
: $"{Property}[{Index}]";
}
}
#endregion
public static void InplaceOverride(object target, params string[] pathOverrides)
{
InplaceOverride(target, (IEnumerable<string>)pathOverrides);
}
public static void InplaceOverride(object target, IEnumerable<string> pathOverrides)
{
if (pathOverrides.Any())
{
try
{
var splits = pathOverrides.Select(t => t.Split('=', 2));
var noEquals = splits.FirstOrDefault(s => s.Length != 2);
if (noEquals != null)
{
throw new DeltaException(
$"Override must be of the form path=value ; "
+ $"exception: '{string.Join('=', noEquals)}'");
}
var overrides = splits.Select(s => (path: s[0], textValue: s[1]));
InplaceOverride(target, overrides);
}
catch (Exception ex)
{
throw new DeltaException(
$"Issue with the following parameter override: '{pathOverrides}'",
ex);
}
}
}
public static void InplaceOverride(
object target,
IEnumerable<(string path, string textValue)> overrides)
{
if (overrides is null)
{
throw new ArgumentNullException(nameof(overrides));
}
foreach (var o in overrides)
{
InplaceOverride(target, o.path, o.textValue);
}
}
public static void InplaceOverride(object target, string path, string textValue)
{
try
{
var components = ParsePath(path);
RecursiveInplaceOverride(target, components, textValue);
}
catch (DeltaException ex)
{
throw new DeltaException($"Issue with override property path '{path}'", ex);
}
}
[UnconditionalSuppressMessage("AssemblyLoadTrimming", "IL2026:RequiresUnreferencedCode")]
private static void RecursiveInplaceOverride(
object target,
IImmutableStack<PathComponent> components,
string textValue)
{ // Determine if target is a dictionary or object
var isDictionary = target.GetType().IsGenericType
&& target.GetType().GetGenericTypeDefinition() == typeof(Dictionary<,>);
if (isDictionary)
{
var arguments = target.GetType().GetGenericArguments();
var keyType = arguments[0];
var valueType = arguments[1];
var method = _inplaceOverrideMap[valueType];
method(target, components, textValue);
}
else
{
RecursiveInplaceOverrideOnObject(target, components, textValue);
}
}
private static IDictionary<Type, Action<object, IImmutableStack<PathComponent>, string>>
CreateInplaceOverrideMap()
{
var builder =
ImmutableDictionary<Type, Action<object, IImmutableStack<PathComponent>, string>>
.Empty
.ToBuilder();
builder.Add(
typeof(JobParameterization),
RecursiveInplaceOverrideOnDictionaryRouter<JobParameterization>);
builder.Add(
typeof(TokenParameterization),
RecursiveInplaceOverrideOnDictionaryRouter<TokenParameterization>);
var map = builder.ToImmutableDictionary();
#if DEBUG
ValidateInplaceOverrideMap(map, typeof(MainParameterization));
#endif
return map;
}
#if DEBUG
private static void ValidateInplaceOverrideMap(
IImmutableDictionary<Type, Action<object, IImmutableStack<PathComponent>, string>> map,
Type type)
{
foreach (var prop in type.GetProperties())
{
var isDictionary = prop.PropertyType.IsGenericType
&& prop.PropertyType.GetGenericTypeDefinition() == typeof(Dictionary<,>);
if (isDictionary)
{
var arguments = prop.PropertyType.GetGenericArguments();
var keyType = arguments[0];
var valueType = arguments[1];
if (keyType != typeof(string))
{
throw new NotSupportedException("We only support string-keyed map");
}
if (!map.ContainsKey(valueType))
{
throw new ArgumentOutOfRangeException(
nameof(map),
$"Missing key '{valueType.Name}'");
}
}
// Recursive validation
ValidateInplaceOverrideMap(map, prop.PropertyType);
}
}
#endif
private static void RecursiveInplaceOverrideOnDictionaryRouter<T>(
object target,
IImmutableStack<PathComponent> components,
string textValue) where T : class, new()
{
RecursiveInplaceOverrideOnDictionary(
(IDictionary<string, T>)target,
components,
textValue);
}
private static void RecursiveInplaceOverrideOnDictionary<T>(
IDictionary<string, T> target,
IImmutableStack<PathComponent> components,
string textValue) where T : class, new()
{
var component = components.Peek();
var remainingProperties = components.Pop();
if (remainingProperties.IsEmpty)
{
throw new DeltaException($"Can't override a dictionary at '{component.Property}'");
}
if (component.Index != null)
{
throw new DeltaException(
$"Dictionary can't be accessed with "
+ $"an index at '{component.Property}'");
}
// If the key doesn't exist in the dictionary, we create it
if (!target.ContainsKey(component.Property))
{
target[component.Property] = new T();
}
var newTarget = target[component.Property];
if (newTarget == null)
{
throw new DeltaException($"Property '{component.Property}' is null");
}
RecursiveInplaceOverride(
newTarget,
remainingProperties,
textValue);
}
private static IDictionary<Type, Func<object>> CreateNewInstanceMap()
{
var builder =
ImmutableDictionary<Type, Func<object>>
.Empty
.ToBuilder();
builder.Add(
typeof(TokenProviderParameterization),
() => new TokenProviderParameterization());
builder.Add(
typeof(ServicePrincipalLoginParameterization),
() => new ServicePrincipalLoginParameterization());
builder.Add(
typeof(UserPromptParameterization),
() => new UserPromptParameterization());
builder.Add(
typeof(AzCliParameterization),
() => new AzCliParameterization());
builder.Add(
typeof(UserManagedIdentityParameterization),
() => new UserManagedIdentityParameterization());
builder.Add(
typeof(SourceParameterization),
() => new SourceParameterization());
builder.Add(
typeof(AdxSourceParameterization),
() => new AdxSourceParameterization());
builder.Add(
typeof(SourceFileParametrization),
() => new SourceFileParametrization());
builder.Add(
typeof(SourceFileParametrization[]),
() => new SourceFileParametrization[0]);
builder.Add(
typeof(ActionParameterization),
() => new ActionParameterization());
builder.Add(
typeof(Dictionary<string, JobParameterization>),
() => new Dictionary<string, JobParameterization>());
builder.Add(
typeof(Dictionary<string, TokenParameterization>),
() => new Dictionary<string, TokenParameterization>());
var map = builder.ToImmutableDictionary();
#if DEBUG
ValidateNewInstanceMap(map, typeof(MainParameterization));
#endif
return map;
}
#if DEBUG
private static void ValidateNewInstanceMap(
ImmutableDictionary<Type, Func<object>> map,
Type type)
{
foreach (var prop in type.GetProperties())
{ // Excluse string, bool, etc.
if (prop.PropertyType.Namespace != "System")
{
var isDictionary = prop.PropertyType.IsGenericType
&& prop.PropertyType.GetGenericTypeDefinition() == typeof(Dictionary<,>);
if (!map.ContainsKey(prop.PropertyType))
{
throw new ArgumentOutOfRangeException(
nameof(map),
$"Missing key '{prop.PropertyType.Name}'");
}
if (!isDictionary)
{ // Recursive validation
ValidateNewInstanceMap(map, prop.PropertyType);
}
}
}
}
#endif
private static void RecursiveInplaceOverrideOnObject(
object target,
IImmutableStack<PathComponent> components,
string textValue)
{
var component = components.Peek();
var property = component.Property;
var realProperty = GetRealProperty(property);
var propertyInfo = target.GetType().GetProperty(realProperty);
var remainingProperties = components.Pop();
if (propertyInfo == null)
{
throw new DeltaException($"Property '{property}' doesn't exist on object");
}
if (!remainingProperties.IsEmpty)
{
var newTarget = propertyInfo.GetGetMethod()!.Invoke(target, new object[0]);
if (newTarget == null)
{ // Property is null, we try to create it
newTarget = _newInstanceMap[propertyInfo.PropertyType]();
propertyInfo.GetSetMethod()!.Invoke(target, new[] { newTarget });
}
if (component.Index != null)
{
var index = component.Index.Value;
var array = newTarget as object[];
if (array == null)
{
throw new DeltaException(
$"Property '{property}' can't be accessed by index");
}
if (array.Length <= component.Index)
{
var newArray = Array.CreateInstance(
newTarget.GetType().GetElementType()!,
component.Index.Value + 1);
Array.Copy(array, newArray, array.Length);
propertyInfo.GetSetMethod()!.Invoke(target, new object[] { newArray });
array = (object[])newArray;
}
if (array[index] == null)
{
array[index] = _newInstanceMap[newTarget.GetType().GetElementType()!]();
}
newTarget = array[index];
}
RecursiveInplaceOverride(
newTarget,
remainingProperties,
textValue);
}
else
{
var value = ParseValue(textValue, propertyInfo.PropertyType);
propertyInfo.GetSetMethod()!.Invoke(target, new object[] { value });
}
}
[UnconditionalSuppressMessage("AssemblyLoadTrimming", "IL2026:RequiresUnreferencedCode")]
private static object ParseValue(string textValue, Type type)
{
if (type == typeof(string))
{
return textValue;
}
else
{
try
{
var options = new JsonSerializerOptions
{
PropertyNameCaseInsensitive = true
};
var value = JsonSerializer.Deserialize(textValue, type, options);
if (value == null)
{
throw new DeltaException($"Following override leads to no value: '{textValue}'");
}
return value;
}
catch (Exception ex)
{
throw new DeltaException(
$"Issue deserializing override into expected type: '{textValue}'",
ex);
}
}
}
private static string GetRealProperty(string pathPropertyName)
{
var property = char.ToUpper(pathPropertyName[0]) + pathPropertyName.Substring(1);
return property;
}
private static IImmutableStack<PathComponent> ParsePath(string path)
{
var components = path
.Split('.')
.Select(p => ParseComponent(p))
.Reverse();
// Create a stack to efficiently recurse over the properties
var stack = ImmutableStack<PathComponent>.Empty;
foreach (var c in components)
{
stack = stack.Push(c);
}
return stack;
}
private static PathComponent ParseComponent(string componentText)
{
if (componentText.Length == 0)
{
throw new DeltaException("Empty property within property path");
}
var illegalCharacter = componentText
.Where(c => !(char.IsLetter(c) || char.IsDigit(c) || c != '_'))
.FirstOrDefault();
if (illegalCharacter != default(char))
{
throw new DeltaException(
$"Illegal character '{illegalCharacter}' in property path '{componentText}'");
}
var bracketOpenIndex = componentText.IndexOf('[');
if (bracketOpenIndex < 0)
{
return new PathComponent(componentText);
}
else
{
var bracketCloseIndex = componentText.IndexOf(']');
if (bracketCloseIndex < 0)
{
throw new DeltaException(
$"No corresponding closing bracket in property path '{componentText}'");
}
if (bracketCloseIndex < bracketOpenIndex)
{
throw new DeltaException(
$"Closing bracket before opening bracket in "
+ $"property path '{componentText}'");
}
if (bracketOpenIndex == 0)
{
throw new DeltaException(
$"Opening bracket should follow property name in "
+ $"property path '{componentText}'");
}
var inBrackets = componentText.Substring(
bracketOpenIndex + 1,
Math.Max(0, bracketCloseIndex - bracketOpenIndex - 1));
int index;
if (!int.TryParse(inBrackets, out index))
{
throw new DeltaException(
$"Brackets should contain an integer in "
+ $"property path '{componentText}'");
}
return new PathComponent(componentText.Substring(0, bracketOpenIndex), index);
}
}
}
}