-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathExtensions.cs
770 lines (653 loc) · 23.8 KB
/
Extensions.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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
/////////////////////////////////////////////////////////////////////////////////
// CodeLab for Paint.NET
// Copyright 2017-2018 Jason Wendt. All Rights Reserved.
// Portions Copyright ©Microsoft Corporation. All Rights Reserved.
//
// THE DEVELOPERS MAKE NO WARRANTY OF ANY KIND REGARDING THE CODE. THEY
// SPECIFICALLY DISCLAIM ANY WARRANTY OF FITNESS FOR ANY PARTICULAR PURPOSE OR
// ANY OTHER WARRANTY. THE CODELAB DEVELOPERS DISCLAIM ALL LIABILITY RELATING
// TO THE USE OF THIS CODE. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR
// OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED HEREIN.
//
// Latest distribution: https://www.BoltBait.com/pdn/codelab
/////////////////////////////////////////////////////////////////////////////////
using PaintDotNet;
using PluralizeService.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text.RegularExpressions;
using System.Windows.Forms;
namespace PdnCodeLab
{
internal static class Extensions
{
internal static string InsertLineBreaks(this string original, int maxCharWidth)
{
if (original.Length <= maxCharWidth)
{
return original;
}
List<string> splitOriginal = new List<string>();
for (int i = 0; i < original.Length; i += maxCharWidth)
{
int segmentLength = maxCharWidth;
if (i + segmentLength >= original.Length)
{
segmentLength -= i + segmentLength - original.Length;
}
else
{
while (!char.IsWhiteSpace(original[i + segmentLength]))
{
segmentLength--;
}
segmentLength++;
if (segmentLength == 0)
{
segmentLength = maxCharWidth;
}
}
splitOriginal.Add(original.Substring(i, segmentLength));
i -= maxCharWidth - segmentLength;
}
return string.Join("\r\n", splitOriginal);
}
internal static bool IsNullOrEmpty(this string str)
{
return string.IsNullOrEmpty(str);
}
internal static bool IsCSharpIdentifier(this string value)
{
if (value.Length == 0 || char.IsNumber(value[0]))
{
return false;
}
for (int i = 0; i < value.Length; i++)
{
char c = value[i];
if (!(char.IsLetterOrDigit(c) || c == '_'))
{
return false;
}
}
return true;
}
internal static bool IsWebAddress(this string str)
{
return str.Length > 0 && (str.StartsWith("http://", StringComparison.OrdinalIgnoreCase) || str.StartsWith("https://", StringComparison.OrdinalIgnoreCase));
}
internal static string StripComments(this string str)
{
const string blockComments = @"/\*(.*?)\*/";
const string lineComments = @"//(.*?)\r?\n";
return Regex.Replace(
str,
blockComments + "|" + lineComments,
match =>
{
if (match.Value.StartsWith("//", StringComparison.Ordinal))
{
return "\r\n";
}
else if (match.Value.StartsWith("/*", StringComparison.Ordinal))
{
string newLines = "";
for (int i = 0; i < match.Value.CountLines(); i++)
{
newLines += "\r\n";
}
return newLines;
}
return match.Value;
},
RegexOptions.Singleline);
}
internal static string StripParens(this string str)
{
return Regex.Replace(str, @"\((?:\([^()]*\)|[^()])*\)", string.Empty);
}
internal static string StripBraces(this string str)
{
return Regex.Replace(str, @"\{(?:\{[^{}]*\}|[^{}])*\}", string.Empty);
}
internal static string StripAngleBrackets(this string str)
{
return Regex.Replace(str, @"\<(?:\<[^<>]*\>|[^<>])*\>", string.Empty);
}
internal static string StripSquareBrackets(this string str)
{
return Regex.Replace(str, @"\[(?:\[[^[\]]*\]|[^[\]])*\]", string.Empty);
}
internal static string GetInitials(this string str)
{
return new string(str.Where(c => char.IsUpper(c)).ToArray());
}
internal static string SplitCamel(this string str)
{
return Regex.Replace(str, "(\\B[A-Z])", " $1");
}
internal static string FirstCharToUpper(this string str)
{
if (string.IsNullOrEmpty(str) || !char.IsLetter(str[0]))
{
return str;
}
char capped = char.ToUpperInvariant(str[0]);
if (str.Length == 1)
{
return capped.ToString();
}
return capped + str.Substring(1);
}
internal static string FirstCharToLower(this string str)
{
if (string.IsNullOrEmpty(str) || !char.IsLetter(str[0]))
{
return str;
}
char unCapped = char.ToLowerInvariant(str[0]);
if (str.Length == 1)
{
return unCapped.ToString();
}
return unCapped + str.Substring(1);
}
internal static string MakePlural(this string str)
{
return PluralizationProvider.Pluralize(str);
}
internal static int CountLines(this string str)
{
return str.Count(c => c == '\n');
}
internal static void ForEach<T>(this IEnumerable<T> ie, Action<T> action)
{
foreach (T i in ie)
{
action(i);
}
}
internal static string GetDisplayName(this Type type)
{
if (type.HasElementType)
{
Type elementType = type.GetElementType();
if (elementType.IsGenericType)
{
return elementType.GetGenericName() + (type.IsArray ? "[]" : string.Empty);
}
}
return (type.IsGenericType) ? type.GetGenericName() : type.GetAliasName();
}
internal static string GetDisplayNameWithExclusion(this Type type, Type typeExclusion)
{
return (type.IsGenericType) ? type.GetGenericName() : (type == typeExclusion) ? type.Name : type.GetAliasName();
}
internal static string GetGenericName(this Type type)
{
if (type.IsValueType && type.IsConstructedGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>))
{
return Nullable.GetUnderlyingType(type).GetDisplayName();
}
string typeName = Regex.Replace(type.Name, @"`\d", string.Empty);
List<string> argList = new List<string>();
foreach (Type argType in type.GetGenericArguments())
{
string arg = string.Empty;
if (argType.IsGenericParameter)
{
GenericParameterAttributes attributes = argType.GenericParameterAttributes;
if (attributes == GenericParameterAttributes.Contravariant)
{
arg += "in ";
}
else if (attributes == GenericParameterAttributes.Covariant)
{
arg += "out ";
}
}
arg += argType.GetDisplayName();
argList.Add(arg);
}
return $"{typeName}<{argList.Join(", ")}>";
}
internal static bool Contains(this Type type, string memberName, bool onlyUserDefined)
{
if (type == null)
{
return false;
}
BindingFlags flags = (onlyUserDefined) ?
BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.DeclaredOnly :
BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic;
return type.GetMember(memberName, flags).Length > 0;
}
internal static char ToChar(this int charCode)
{
return (char)charCode;
}
internal static char ToUpperInvariant(this char c)
{
return char.ToUpperInvariant(c);
}
internal static char ToLowerInvariant(this char c)
{
return char.ToLowerInvariant(c);
}
private static string ToLiteral(this char c)
{
switch (c)
{
case '\'': return @"\'";
case '\"': return "\\\"";
case '\\': return @"\\";
case '\0': return @"\0";
case '\a': return @"\a";
case '\b': return @"\b";
case '\f': return @"\f";
case '\n': return @"\n";
case '\r': return @"\r";
case '\t': return @"\t";
case '\v': return @"\v";
default:
if (char.GetUnicodeCategory(c) != UnicodeCategory.Control && !c.Equals('\uffff'))
{
return c.ToString();
}
else
{
return @"\u" + ((ushort)c).ToString("x4");
}
}
}
internal static bool IsBrace(this char c, bool openBrace)
{
if (openBrace)
{
switch (c)
{
case '(':
case '[':
case '{':
//case '<':
return true;
}
}
else
{
switch (c)
{
case ')':
case ']':
case '}':
//case '>':
return true;
}
}
return false;
}
private static string ObjectToString(this object obj)
{
if (obj is null)
{
return "null";
}
if (obj is string)
{
return "\"" + obj.ToString() + "\"";
}
if (obj is char c)
{
return "'" + c.ToLiteral() + "'";
}
if (obj is Enum)
{
Type enumType = obj.GetType();
return enumType.Name + "." + obj.ToString();
}
return obj.ToString();
}
internal static MethodInfo MakeGenericMethod(this MethodInfo method, string args)
{
Type[] types = StringToTypeArray(args);
if (types.Length == 0 || types.Length != method.GetGenericArguments().Length)
{
return method;
}
try
{
return method.MakeGenericMethod(types);
}
catch
{
return method;
}
}
internal static string GetEnumValue(this FieldInfo field)
{
object value = field.GetValue(null);
Type type = Enum.GetUnderlyingType(field.FieldType);
return Convert.ChangeType(value, type).ToString();
}
internal static string GetConstValue(this FieldInfo field)
{
return field.GetValue(null).ObjectToString();
}
internal static string GetterSetter(this PropertyInfo property)
{
if (property.CanRead && property.CanWrite)
return " { get; set; }";
if (property.CanRead)
return " { get; }";
if (property.CanWrite)
return " { set; }";
return string.Empty;
}
internal static bool IsIndexer(this PropertyInfo property)
{
return property.GetIndexParameters().Length > 0;
}
internal static string Params(this MethodBase method, bool skipExtensionParam = true)
{
List<string> methodParams = new List<string>();
bool isExtension = method.IsOrHasExtension();
foreach (ParameterInfo param in method.GetParameters())
{
if (skipExtensionParam && param.Position == 0 && isExtension)
{
continue;
}
methodParams.Add(param.BuildParamString());
}
return (isExtension && !skipExtensionParam)
? "this " + methodParams.Join(", ")
: methodParams.Join(", ");
}
internal static string BuildParamString(this ParameterInfo parameter)
{
string modifier = parameter.IsOut ? "out " : parameter.ParameterType.IsByRef ? "ref " : parameter.IsDefined(typeof(ParamArrayAttribute), false) ? "params " : string.Empty;
string defaultValue = parameter.HasDefaultValue ? parameter.GetDefaultValue() : string.Empty;
string nullable = parameter.IsNullable() ? "?" : string.Empty;
return $"{modifier}{parameter.ParameterType.GetDisplayName()}{nullable} {parameter.Name}{defaultValue}";
}
internal static bool IsOrHasExtension(this MemberInfo member)
{
return member.IsDefined(typeof(ExtensionAttribute), false);
}
private static string GetDefaultValue(this ParameterInfo parameter)
{
if (parameter.ParameterType.IsValueType && parameter.RawDefaultValue is null)
{
return " = default";
}
return " = " + parameter.DefaultValue.ObjectToString();
}
internal static Type ExtendingType(this MethodInfo method)
{
return method.GetParameters()[0].ParameterType;
}
internal static MethodInfo Extends(this MethodInfo method, Type type)
{
Type extType = method.ExtendingType();
if (extType.IsAssignableFrom(type))
{
return method;
}
if (extType.IsAssignableFromAsIEnumerable(type))
{
if (method.GetGenericArguments().Length == 1)
{
if (type.IsConstructedGenericType)
{
return method.MakeGenericMethod(type.GenericTypeArguments[0]);
}
if (type.IsArray)
{
return method.MakeGenericMethod(type.GetElementType());
}
}
return method;
}
return null;
}
private static bool IsAssignableFromAsIEnumerable(this Type type1, Type type)
{
if (!type1.IsInterface || !type1.Name.Equals("IEnumerable`1", StringComparison.OrdinalIgnoreCase))
{
return false;
}
Type iEnumType = type.GetInterface("IEnumerable`1");
if (iEnumType == null)
{
if (type.IsInterface && type.IsConstructedGenericType && type.Name.Equals("IEnumerable`1", StringComparison.OrdinalIgnoreCase))
{
iEnumType = type;
}
if (iEnumType == null)
{
return false;
}
}
Type[] args = type1.GenericTypeArguments;
if (args.Length != 1 || !args[0].IsGenericParameter)
{
return false;
}
Type innerType = iEnumType.GenericTypeArguments[0];
if (args[0].IsConstrainedToClass() && !innerType.IsClass)
{
return false;
}
Type[] constraints = args[0].GetGenericParameterConstraints();
if (!constraints.All(t => t.IsAssignableFrom(innerType)))
{
return false;
}
Type genericType = type1.GetGenericTypeDefinition().MakeGenericType(innerType);
return genericType.IsAssignableFrom(type);
}
private static bool IsConstrainedToClass(this Type type)
{
return (type.GenericParameterAttributes &
GenericParameterAttributes.SpecialConstraintMask &
GenericParameterAttributes.ReferenceTypeConstraint) != 0;
}
internal static Type GetReturnType(this MemberInfo member)
{
return member.MemberType switch
{
MemberTypes.Property => ((PropertyInfo)member).PropertyType,
MemberTypes.Method => ((MethodInfo)member).ReturnType,
MemberTypes.Field => ((FieldInfo)member).FieldType,
MemberTypes.Event => ((EventInfo)member).EventHandlerType,
MemberTypes.NestedType => (Type)member,
_ => null,
};
}
internal static bool IsObsolete(this MemberInfo member)
{
return member.IsDefined(typeof(ObsoleteAttribute), false);
}
internal static bool IsCompilerGenerated(this MemberInfo member)
{
return member.IsDefined(typeof(CompilerGeneratedAttribute), false);
}
internal static bool IsVisibleToReflectedType(this MethodInfo method)
{
return method.IsPublic || method.IsFamily || method.DeclaringType == method.ReflectedType;
}
internal static bool IsVisibleToReflectedType(this PropertyInfo property)
{
return property.GetMethod.IsPublic || property.GetMethod.IsFamily || property.DeclaringType == property.ReflectedType;
}
internal static bool IsDelegate(this Type type)
{
return typeof(Delegate).IsAssignableFrom(type);
}
internal static string GetObjectType(this Type type)
{
if (type.IsEnum)
{
return "enum";
}
if (type.IsValueType)
{
return "struct";
}
if (type.IsDelegate())
{
return "delegate";
}
if (type.IsClass)
{
return "class";
}
if (type.IsInterface)
{
return "interface";
}
return "Type";
}
private static string GetAliasName(this Type type)
{
string typeName = type.IsByRef ? type.Name.TrimEnd('&') : type.Name;
return Intelli.TypeAliases.TryGetValue(typeName, out string alias) ? alias : typeName;
}
internal static Type MakeGenericType(this Type type, string args)
{
Type[] types = StringToTypeArray(args);
if (types.Length == 0 || types.Length != type.GetGenericArguments().Length)
{
return type;
}
try
{
return type.MakeGenericType(types);
}
catch
{
return type;
}
}
internal static IEnumerable<string> GetConstraints(this IEnumerable<Type> args)
{
List<string> constraints = new List<string>();
foreach (Type arg in args)
{
Type[] argConstraints = arg.GetGenericParameterConstraints();
bool mustBeClass = arg.IsConstrainedToClass();
if (argConstraints.Length > 0 || mustBeClass)
{
IEnumerable<string> types = argConstraints.Select(t => t.GetDisplayName());
if (mustBeClass)
{
types = types.Prepend("class");
}
constraints.Add($"where {arg.GetDisplayName()} : {types.Join(", ")}");
}
}
return constraints;
}
internal static string GetDescription(this Enum value)
{
Type type = value.GetType();
string name = Enum.GetName(type, value);
if (name == null)
{
return null;
}
return type.GetField(name)?.GetCustomAttribute<DescriptionAttribute>(false)?.Description;
}
private static Type[] StringToTypeArray(string types)
{
if (types.Length == 0)
{
return Array.Empty<Type>();
}
string[] argArray = types.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries);
if (argArray.Length == 0)
{
return Array.Empty<Type>();
}
List<Type> argTypes = new List<Type>();
foreach (string arg in argArray)
{
if (Intelli.AllTypes.TryGetValue(arg, out Type t))
{
argTypes.Add(t);
}
else
{
return Array.Empty<Type>();
}
}
return argTypes.ToArray();
}
internal static int FindStringExact(this ListBox listBox, string s, bool preferCaseMatch)
{
if (preferCaseMatch)
{
for (int i = 0; i < listBox.Items.Count; i++)
{
if (listBox.Items[i].ToString().Equals(s, StringComparison.Ordinal))
{
return i;
}
}
}
return listBox.FindStringExact(s);
}
internal static int FindString(this ListBox listBox, string s, bool preferCaseMatch)
{
if (preferCaseMatch)
{
for (int i = 0; i < listBox.Items.Count; i++)
{
if (listBox.Items[i].ToString().StartsWith(s, StringComparison.Ordinal))
{
return i;
}
}
}
return listBox.FindString(s);
}
internal static void InvalidateSelectedIndex(this ListBox listBox)
{
int selectedIndex = listBox.SelectedIndex;
if (selectedIndex > -1)
{
listBox.Invalidate(listBox.GetItemRectangle(selectedIndex));
}
}
internal static bool IsNullable(this MethodInfo method)
{
return nullabilityInfo
.Create(method.ReturnParameter)
.ReadState == NullabilityState.Nullable;
}
internal static bool IsNullable(this PropertyInfo property)
{
return nullabilityInfo
.Create(property)
.ReadState == NullabilityState.Nullable;
}
internal static bool IsNullable(this FieldInfo field)
{
return nullabilityInfo
.Create(field)
.ReadState == NullabilityState.Nullable;
}
internal static bool IsNullable(this ParameterInfo parameter)
{
return nullabilityInfo
.Create(parameter)
.ReadState == NullabilityState.Nullable;
}
private static readonly NullabilityInfoContext nullabilityInfo = new NullabilityInfoContext();
}
}