-
Notifications
You must be signed in to change notification settings - Fork 1
/
StackCleaner.cs
2288 lines (2107 loc) · 104 KB
/
StackCleaner.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
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace StackCleaner;
/// <summary>
/// Tool that clears up stack traces to make them much more readable during debugging.<br/>
/// Supports highly customizable color formatting in the following formats:<br/>
/// <br/>
/// • <see cref="ConsoleColor"/> (Only compatible with <see cref="WriteToConsole(StackTrace,bool)"/>)<br/>
/// • ANSI color codes (3-bit and 4-bit)<br/>
/// • Extended ANSI color codes (32-bit where supported)<br/>
/// • Unity Rich Text<br/>
/// • Unity TextMeshPro Rich Text<br/>
/// • Html (with tags)<br/>
/// </summary>
public class StackTraceCleaner
{
private const char ConsoleEscapeCharacter = '\u001b';
private const char PointerSymbol = '*';
private const char MemberSeparatorSymbol = '.';
private const char NullableSymbol = '?';
private const char SpaceSymbol = ' ';
private const string SpaceSymbolStr = " ";
private const char DoubleQuotationMarkSymbol = '\"';
private const string RootDirectorySymbol = "~";
private const char GenericOpenSymbol = '<';
private const char GenericCloseSymbol = '>';
private const char ParametersOpenSymbol = '(';
private const char ParametersCloseSymbol = ')';
private const char IndexerParametersOpenSymbol = '[';
private const char IndexerParametersCloseSymbol = ']';
private const char MethodBodyOpenSymbol = '{';
private const char MethodBodyCloseSymbol = '}';
private const char ArrayOpenSymbol = '[';
private const char ArrayCloseSymbol = ']';
private const char TypeNameGenericSeparator = '`';
private const string ArraySymbol = "[]";
private const string ListSeparatorSymbol = ", ";
private const string GlobalSeparatorSymbol = "::";
private const string LambdaSymbol = "=>";
private const string HiddenMethodContentSymbol = "...";
private const string NullSymbol = "null";
private const string RefSymbol = "ref";
private const string OutSymbol = "out";
private const string ParamsSymbol = "params";
private const string AnonymousSymbol = "anonymous";
private const string StaticSymbol = "static";
private const string SetterSymbol = "set";
private const string GetterSymbol = "get";
private const string AsyncSymbol = "async";
private const string EnumeratorSymbol = "enumerator";
private const string UnityEndColorSymbol = "</color>";
private const string StartSpanTagStyleClassP1 = "<span class=\"";
private const string StartSpanTagStyleClassP2 = "\">";
private const string OuterStartHtmlTagStyleClass = "<div class=\"" + BackgroundClassName + "\">";
private const string OuterEndHtmlTagSymbol = "</div>";
private const string HtmlEndSpanSymbol = "</span>";
private const string StartParaTagSymbol = "<p>";
private const string EndParaTagSymbol = "</p>";
private const string GlobalSymbol = "global";
private const string AtPrefixSymbol = " at ";
private const string InSymbol = "in";
private const string LineNumberPrefixSymbol = "LN #";
private const string ColumnNumberPrefixSymbol = "COL #";
private const string ILOffsetPrefixSymbol = "IL";
private const string FilePrefixSymbol = "FILE: ";
private const string AssemblyPrefixSymbol = "ASSEMBLY: \"";
private const string AssemblyPathPrefixSymbol = "LOCATION: \"";
private const string HiddenLineWarning = "Some lines hidden for readability.";
/// <summary>Html class for the background div.</summary>
public const string BackgroundClassName = "st_bkgr";
/// <summary>Html class for keywords.</summary>
public const string KeywordClassName = "st_keyword";
/// <summary>Html class for methods.</summary>
public const string MethodClassName = "st_method";
/// <summary>Html class for properties.</summary>
public const string PropertyClassName = "st_property";
/// <summary>Html class for parameters.</summary>
public const string ParameterClassName = "st_parameter";
/// <summary>Html class for classes.</summary>
public const string ClassClassName = "st_class";
/// <summary>Html class for structs.</summary>
public const string StructClassName = "st_struct";
/// <summary>Html class for flow keywords.</summary>
public const string FlowKeywordClassName = "st_flow_keyword";
/// <summary>Html class for interface.</summary>
public const string InterfaceClassName = "st_interface";
/// <summary>Html class for generic parameters.</summary>
public const string GenericParameterClassName = "st_generic_parameter";
/// <summary>Html class for enums.</summary>
public const string EnumClassName = "st_enum";
/// <summary>Html class for namespaces.</summary>
public const string NamespaceClassName = "st_namespace";
/// <summary>Html class for punctuation.</summary>
public const string PunctuationClassName = "st_punctuation";
/// <summary>Html class for extra data (source data).</summary>
public const string ExtraDataClassName = "st_extra_data";
/// <summary>Html class for the lines hidden warning.</summary>
public const string LinesHiddenWarningClassName = "st_lines_hidden_warning";
private static readonly Type TypeBoolean = typeof(bool);
private static readonly Type TypeUInt8 = typeof(byte);
private static readonly Type TypeCharacter = typeof(char);
private static readonly Type TypeDecimal = typeof(decimal);
private static readonly Type TypeDouble = typeof(double);
private static readonly Type TypeSingle = typeof(float);
private static readonly Type TypeInt32 = typeof(int);
private static readonly Type TypeInt64 = typeof(long);
private static readonly Type TypeObject = typeof(object);
private static readonly Type TypeInt8 = typeof(sbyte);
private static readonly Type TypeInt16 = typeof(short);
private static readonly Type TypeString = typeof(string);
private static readonly Type TypeUInt32 = typeof(uint);
private static readonly Type TypeUInt64 = typeof(ulong);
private static readonly Type TypeUInt16 = typeof(ushort);
private static readonly Type TypeVoid = typeof(void);
private static readonly Type TypeNullableValueType = typeof(Nullable<>);
private static readonly Type TypeCompilerGenerated = typeof(CompilerGeneratedAttribute);
// private static readonly Type TypeStateMachineBase = typeof(StateMachineAttribute);
private static readonly Dictionary<Type, MethodInfo?> CompilerGeneratedStateMachineSourceCache = new Dictionary<Type, MethodInfo?>(64);
// types that are hidden by default. These are all the types used by the Task internal.
internal static readonly IReadOnlyCollection<Type> DefaultHiddenTypes = Array.AsReadOnly(new Type[]
{
typeof(ExecutionContext),
typeof(TaskAwaiter),
typeof(TaskAwaiter<>),
typeof(ConfiguredTaskAwaitable.ConfiguredTaskAwaiter),
typeof(ConfiguredTaskAwaitable<>.ConfiguredTaskAwaiter),
typeof(System.Runtime.ExceptionServices.ExceptionDispatchInfo),
});
private static StackTraceCleaner? _instance;
private readonly StackCleanerConfiguration _config;
private readonly bool _isArgbColor;
private readonly bool _appendColor;
private readonly bool _reqEndColor;
private readonly bool _writeNewline;
private readonly bool _writeParaTags;
private readonly int _defBufferSizeMult;
/// <summary>
/// Default implementation of <see cref="StackTraceCleaner"/>.
/// </summary>
public static StackTraceCleaner Default => _instance ??= new StackTraceCleaner();
/// <summary>Active configuration instance being used by this <see cref="StackTraceCleaner"/>.</summary>
/// <remarks>
/// This value and all it's properties are <see langword="readonly"/>. Trying to modify them will throw a <see cref="NotSupportedException"/>.
/// </remarks>>
public StackCleanerConfiguration Configuration => _config;
/// <summary>
/// Use <see cref="Default"/> to get a default implementation.
/// </summary>
private StackTraceCleaner() : this(StackCleanerConfiguration.Default) { }
/// <summary>
/// Load a new <see cref="StackTraceCleaner"/> with the specified <paramref name="config"/>.
/// </summary>
public StackTraceCleaner(StackCleanerConfiguration config)
{
// freeze config
if (config.ColorFormatting == StackColorFormatType.ExtendedANSIColor && config.Colors is Color4Config)
config.ColorFormatting = StackColorFormatType.ANSIColor;
config.Frozen = true;
config.Colors!.Frozen = true;
_config = config;
// are colors encoded as argb
_isArgbColor = config.Colors is not Color4Config;
// are colors added as text
_appendColor = config.ColorFormatting
is StackColorFormatType.UnityRichText
or StackColorFormatType.TextMeshProRichText
or StackColorFormatType.ANSIColor
or StackColorFormatType.ANSIColorNoBright
or StackColorFormatType.ExtendedANSIColor
or StackColorFormatType.Html;
// are end tags added to color spans
_reqEndColor = _appendColor &&
config.ColorFormatting is StackColorFormatType.UnityRichText or StackColorFormatType.Html;
// are newlines added
_writeNewline = config.ColorFormatting != StackColorFormatType.Html;
// are paragraph tags added
_writeParaTags = config.ColorFormatting == StackColorFormatType.Html;
// estimated buffer size per frame
_defBufferSizeMult = _config.ColorFormatting is StackColorFormatType.None
or StackColorFormatType.ConsoleColor
? 192
: _config.ColorFormatting is StackColorFormatType.ANSIColor or StackColorFormatType.ANSIColorNoBright ? 384 : 768;
}
/// <summary>
/// Conerts an <see cref="Exception"/> to a stack trace, just calls <see cref="StackTrace(Exception, bool)"/> if a stack trace has been added.
/// </summary>
/// <remarks><see cref="Exception.StackTrace"/> only gets set after calling <see langword="throw"/> on the <see cref="Exception"/>.</remarks>
/// <param name="fetchSourceInfo">Whether or not to capture the file name, line number, and column number of the exception.
/// If this isn't needed it's best to set it to false to save computing time.</param>
/// <param name="ex">Exception to fetch <see cref="StackTrace"/> from. This will only work after calling <see langword="throw"/> on it.</param>
/// <returns>A <see cref="StackTrace"/> representing the source of the exception if present, otherwise <see langword="null"/>.</returns>
public static StackTrace? GetStackTrace(Exception ex, bool fetchSourceInfo = true) => ex.StackTrace != null ? new StackTrace(ex, fetchSourceInfo) : null;
/// <summary>
/// Formats the <paramref name="exception"/>'s stack (and it's remote stacks when applicable) and returns it as a <see cref="string"/> using the runtime's default encoding.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public string GetString(Exception exception)
{
if (exception == null)
throw new ArgumentNullException(nameof(exception));
StackTrace stackTrace = new StackTrace(exception, _config.IncludeSourceData);
Encoding encoding = Encoding.Default;
using MemoryStream stream = new MemoryStream(encoding.GetMaxByteCount(_defBufferSizeMult * stackTrace.FrameCount));
//stream.Position = 0;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult * stackTrace.FrameCount, true);
WriteToTextWriterIntl(stackTrace, writer, true);
writer.Flush();
byte[] bytes = stream.GetBuffer();
return encoding.GetString(bytes, 0, (int)stream.Length);
}
/// <summary>
/// Formats the <paramref name="stackTrace"/> and returns it as a <see cref="string"/> using the runtime's default encoding.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public string GetString(StackTrace stackTrace)
{
if (stackTrace == null)
throw new ArgumentNullException(nameof(stackTrace));
Encoding encoding = Encoding.Default;
using MemoryStream stream = new MemoryStream(encoding.GetMaxByteCount(_defBufferSizeMult * stackTrace.FrameCount));
stream.Position = 0;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult * stackTrace.FrameCount, true);
WriteToTextWriterIntl(stackTrace, writer);
writer.Flush();
byte[] bytes = stream.GetBuffer();
return encoding.GetString(bytes, 0, (int)stream.Length);
}
/// <summary>
/// Formats the <paramref name="stackTrace"/> and writes it to <paramref name="stream"/> using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public void WriteToStream(Stream stream, StackTrace stackTrace, Encoding? encoding = null)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (stackTrace == null)
throw new ArgumentNullException(nameof(stackTrace));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.Default;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult * stackTrace.FrameCount, true);
WriteToTextWriterIntl(stackTrace, writer);
}
/// <summary>
/// Formats the <paramref name="exception"/>'s stack (and it's remote stacks when applicable) and writes it to <paramref name="stream"/> using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public void WriteToStream(Stream stream, Exception exception, Encoding? encoding = null)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (exception == null)
throw new ArgumentNullException(nameof(exception));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.Default;
StackTrace stackTrace = new StackTrace(exception, _config.IncludeSourceData);
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult * stackTrace.FrameCount, true);
WriteToTextWriterIntl(stackTrace, writer, true);
writer.Flush();
}
/// <summary>
/// Formats the <paramref name="stackTrace"/> and writes it to a file at <paramref name="path"/> using <paramref name="encoding"/> to encode it.<br/>
/// If the file exists, it'll be overwritten, otherwise it'll be created.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="IOException"/>
/// <exception cref="NotSupportedException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="ArgumentException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="System.Security.SecurityException">Missing file access.</exception>
/// <exception cref="UnauthorizedAccessException">Missing file write access.</exception>
public void WriteToFile(string path, StackTrace stackTrace, Encoding? encoding = null)
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (stackTrace == null)
throw new ArgumentNullException(nameof(stackTrace));
encoding ??= Encoding.Default;
using FileStream stream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, encoding.GetMaxByteCount(_defBufferSizeMult * stackTrace.FrameCount));
WriteToStream(stream, stackTrace, encoding);
}
/// <summary>
/// Formats the <paramref name="exception"/>'s stack (and it's remote stacks when applicable) and writes it to a file at <paramref name="path"/> using <paramref name="encoding"/> to encode it.<br/>
/// If the file exists, it'll be overwritten, otherwise it'll be created.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="IOException"/>
/// <exception cref="NotSupportedException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="ArgumentException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="System.Security.SecurityException">Missing file access.</exception>
/// <exception cref="UnauthorizedAccessException">Missing file write access.</exception>
public void WriteToFile(string path, Exception exception, Encoding? encoding = null)
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (exception == null)
throw new ArgumentNullException(nameof(exception));
encoding ??= Encoding.Default;
using FileStream stream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, encoding.GetMaxByteCount(_defBufferSizeMult * 8));
WriteToStream(stream, exception, encoding);
}
/// <summary>
/// Formats the <paramref name="stackTrace"/> and writes it to <paramref name="stream"/> asynchronously using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public async Task WriteToStreamAsync(Stream stream, StackTrace stackTrace, Encoding? encoding = null, CancellationToken token = default)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (stackTrace == null)
throw new ArgumentNullException(nameof(stackTrace));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.UTF8;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult * stackTrace.FrameCount, true);
await WriteToTextWriterIntlAsync(stackTrace, writer, true, token).ConfigureAwait(false);
await writer.FlushAsync().ConfigureAwait(false);
}
/// <summary>
/// Formats the <paramref name="exception"/>'s stack (and it's remote stacks when applicable) and writes it to <paramref name="stream"/> asynchronously using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public async Task WriteToStreamAsync(Stream stream, Exception exception, Encoding? encoding = null, CancellationToken token = default)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (exception == null)
throw new ArgumentNullException(nameof(exception));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.UTF8;
StackTrace stackTrace = new StackTrace(exception, _config.IncludeSourceData);
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult * stackTrace.FrameCount, true);
await WriteToTextWriterIntlAsync(stackTrace, writer, true, token).ConfigureAwait(false);
await writer.FlushAsync().ConfigureAwait(false);
}
/// <summary>
/// Output the stack trace to <see cref="Console"/> using the appropriate color format.
/// </summary>
/// <param name="stackTrace">Stack trace to write.</param>
/// <param name="writeToConsoleBuffer">Only set this to <see langword="true"/> if memory is a huge concern, writing to the console per span takes significantly (~5x) longer than writing to a memory buffer then writing the entire buffer to the console at once.</param>
/// <exception cref="ArgumentNullException"></exception>
public void WriteToConsole(StackTrace stackTrace, bool writeToConsoleBuffer = false)
{
if (stackTrace == null)
throw new ArgumentNullException(nameof(stackTrace));
if (_config.ColorFormatting is StackColorFormatType.ConsoleColor)
{
ConsoleColor currentColor = (ConsoleColor)255;
ConsoleColor old = Console.ForegroundColor;
foreach (SpanData span in EnumerateSpans(stackTrace, true))
{
if (_config.ColorFormatting != StackColorFormatType.None && span.Color != TokenType.Space)
{
ConsoleColor old2 = currentColor;
currentColor = _isArgbColor ? Color4Config.ToConsoleColor(GetColor(span.Color), _config.ColorFormatting != StackColorFormatType.ANSIColorNoBright) : (ConsoleColor)(GetColor(span.Color) - 1);
if (old2 != currentColor)
Console.ForegroundColor = currentColor;
}
if (span.Text != null)
Console.Write(span.Text);
else
Console.Write(span.Char);
}
if (_config.ColorFormatting != StackColorFormatType.None)
Console.ForegroundColor = old;
Console.WriteLine();
}
else if (!writeToConsoleBuffer) Console.WriteLine(GetString(stackTrace));
else
{
TextWriter cout = Console.Out;
WriteToTextWriterIntl(stackTrace, cout);
cout.Flush();
}
}
/// <summary>
/// Output the <paramref name="exception"/>'s stack (and it's remote stacks when applicable) to <see cref="Console"/> using the appropriate color format.
/// </summary>
/// <param name="exception">Exception to write.</param>
/// <param name="writeToConsoleBuffer">Only set this to <see langword="true"/> if memory is a huge concern, writing to the console per span takes significantly (~5x) longer than writing to a memory buffer then writing the entire buffer to the console at once.</param>
/// <exception cref="ArgumentNullException"></exception>
public void WriteToConsole(Exception exception, bool writeToConsoleBuffer = false)
{
if (exception == null)
throw new ArgumentNullException(nameof(exception));
if (_config.ColorFormatting is StackColorFormatType.ConsoleColor)
{
StackTrace trace = new StackTrace(exception, _config.IncludeSourceData);
ConsoleColor currentColor = (ConsoleColor)255;
ConsoleColor old = Console.ForegroundColor;
foreach (SpanData span in EnumerateSpans(trace, true))
{
if (_config.ColorFormatting != StackColorFormatType.None && span.Color != TokenType.Space)
{
ConsoleColor old2 = currentColor;
currentColor = _isArgbColor ? Color4Config.ToConsoleColor(GetColor(span.Color), _config.ColorFormatting != StackColorFormatType.ANSIColorNoBright) : (ConsoleColor)(GetColor(span.Color) - 1);
if (old2 != currentColor)
Console.ForegroundColor = currentColor;
}
if (span.Text != null)
Console.Write(span.Text);
else
Console.Write(span.Char);
}
if (_config.ColorFormatting != StackColorFormatType.None)
Console.ForegroundColor = old;
Console.WriteLine();
}
else if (!writeToConsoleBuffer) Console.WriteLine(GetString(exception));
else
{
TextWriter cout = Console.Out;
WriteToTextWriter(exception, cout);
cout.Flush();
}
}
/// <summary>
/// Formats the <paramref name="stackTrace"/> and writes it to <paramref name="writer"/>.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public void WriteToTextWriter(StackTrace stackTrace, TextWriter writer)
{
if (writer == null)
throw new ArgumentNullException(nameof(writer));
if (stackTrace == null)
throw new ArgumentNullException(nameof(stackTrace));
WriteToTextWriterIntl(stackTrace, writer);
writer.Flush();
}
/// <summary>
/// Formats the <paramref name="exception"/>'s stack (and it's remote stacks when applicable) and writes it to <paramref name="writer"/>.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public void WriteToTextWriter(Exception exception, TextWriter writer)
{
if (writer == null)
throw new ArgumentNullException(nameof(writer));
if (exception == null)
throw new ArgumentNullException(nameof(exception));
StackTrace stackTrace = new StackTrace(exception, _config.IncludeSourceData);
WriteToTextWriterIntl(stackTrace, writer, true);
writer.Flush();
}
/// <summary>
/// Formats the <paramref name="stackTrace"/> and writes it to <paramref name="writer"/> asynchronously.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public async Task WriteToTextWriterAsync(StackTrace stackTrace, TextWriter writer, CancellationToken token = default)
{
if (writer == null)
throw new ArgumentNullException(nameof(writer));
if (stackTrace == null)
throw new ArgumentNullException(nameof(stackTrace));
await WriteToTextWriterIntlAsync(stackTrace, writer, true, token).ConfigureAwait(false);
await writer.FlushAsync().ConfigureAwait(false);
}
/// <summary>
/// Formats the <paramref name="exception"/>'s stack (and it's remote stacks when applicable) and writes it to <paramref name="writer"/> asynchronously.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public async Task WriteToTextWriterAsync(Exception exception, TextWriter writer, CancellationToken token = default)
{
if (writer == null)
throw new ArgumentNullException(nameof(writer));
if (exception == null)
throw new ArgumentNullException(nameof(exception));
StackTrace stackTrace = new StackTrace(exception, _config.IncludeSourceData);
await WriteToTextWriterIntlAsync(stackTrace, writer, true, token).ConfigureAwait(false);
await writer.FlushAsync().ConfigureAwait(false);
}
/// <summary>
/// Formats the <paramref name="trace"/> and writes it to <paramref name="writer"/>.
/// </summary>
private void WriteToTextWriterIntl(StackTrace trace, TextWriter writer, bool warnIfApplicable = true)
{
TokenType currentColor = (TokenType)255;
bool div = false;
foreach (SpanData span in EnumerateSpans(trace, warnIfApplicable))
{
if (!div && _writeParaTags && _config.HtmlWriteOuterDiv)
{
// write the outer html tag if needed
writer.Write(GetDivTag());
div = true;
}
if (currentColor != span.Color)
{
// end last color if needed
if (currentColor != span.Color && (int)currentColor != 255 && ShouldWriteEnd(span.Color))
writer.Write(GetEndTag());
// start current color space is ignored
if (_appendColor && span.Color is not TokenType.Space && currentColor != span.Color)
{
writer.Write(GetColorString(span.Color));
currentColor = span.Color;
}
}
// write string or char for span
if (span.Text != null)
writer.Write(span.Text);
else
writer.Write(span.Char);
}
// end last color
if ((int)currentColor != 255 && ShouldWriteEnd(currentColor))
writer.Write(_config.ColorFormatting == StackColorFormatType.UnityRichText ? UnityEndColorSymbol : HtmlEndSpanSymbol);
// end outer html div
if (div)
writer.Write(OuterEndHtmlTagSymbol);
// reset console color
if (_config.ColorFormatting is StackColorFormatType.ANSIColor or StackColorFormatType.ExtendedANSIColor or StackColorFormatType.ANSIColorNoBright)
writer.Write(GetANSIResetString());
// end line
if (_writeNewline)
writer.Write(Environment.NewLine);
}
/// <summary>
/// Formats the <paramref name="trace"/> and writes it to <paramref name="writer"/> asynchronously.
/// </summary>
private async Task WriteToTextWriterIntlAsync(StackTrace trace, TextWriter writer, bool warnIfApplicable = true, CancellationToken token = default)
{
token.ThrowIfCancellationRequested();
TokenType currentColor = (TokenType)255;
bool div = false;
foreach (SpanData span in EnumerateSpans(trace, warnIfApplicable))
{
if (!div && _writeParaTags && _config.HtmlWriteOuterDiv)
{
// write the outer html tag if needed
await writer.WriteAsync(GetDivTag()).ConfigureAwait(false);
div = true;
token.ThrowIfCancellationRequested();
}
if (currentColor != span.Color)
{
// end last color if needed
if (currentColor != span.Color && (int)currentColor != 255 && ShouldWriteEnd(span.Color))
{
await writer.WriteAsync(GetEndTag()).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
}
// start current color space is ignored
if (_appendColor && span.Color is not TokenType.Space && currentColor != span.Color)
{
await writer.WriteAsync(GetColorString(span.Color)).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
currentColor = span.Color;
}
}
// write string or char for span
if (span.Text != null)
await writer.WriteAsync(span.Text).ConfigureAwait(false);
else
await writer.WriteAsync(span.Char).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
}
// end last color
if ((int)currentColor != 255 && ShouldWriteEnd(currentColor))
await writer.WriteAsync(_config.ColorFormatting == StackColorFormatType.UnityRichText ? UnityEndColorSymbol : HtmlEndSpanSymbol).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
// end outer html div
if (div)
writer.Write(OuterEndHtmlTagSymbol);
// reset console color
if (_config.ColorFormatting is StackColorFormatType.ANSIColor or StackColorFormatType.ExtendedANSIColor or StackColorFormatType.ANSIColorNoBright)
await writer.WriteAsync(GetANSIResetString()).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
// end line
if (_writeNewline)
await writer.WriteAsync(Environment.NewLine).ConfigureAwait(false);
}
/// <summary>
/// Formats the <paramref name="typedef"/> and returns it as a <see cref="string"/> using the runtime's default encoding.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public string GetString(Type typedef)
{
if (typedef == null)
throw new ArgumentNullException(nameof(typedef));
Encoding encoding = Encoding.Default;
using MemoryStream stream = new MemoryStream(encoding.GetMaxByteCount(_defBufferSizeMult));
stream.Position = 0;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult, true);
WriteToTextWriterIntl(typedef, writer);
writer.Flush();
byte[] bytes = stream.GetBuffer();
return encoding.GetString(bytes, 0, (int)stream.Length);
}
/// <summary>
/// Formats the <paramref name="typedef"/> and writes it to <paramref name="stream"/> using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public void WriteToStream(Stream stream, Type typedef, Encoding? encoding = null)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (typedef == null)
throw new ArgumentNullException(nameof(typedef));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.Default;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult, true);
WriteToTextWriterIntl(typedef, writer);
}
/// <summary>
/// Formats the <paramref name="typedef"/> and writes it to a file at <paramref name="path"/> using <paramref name="encoding"/> to encode it.<br/>
/// If the file exists, it'll be overwritten, otherwise it'll be created.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="IOException"/>
/// <exception cref="NotSupportedException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="ArgumentException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="System.Security.SecurityException">Missing file access.</exception>
/// <exception cref="UnauthorizedAccessException">Missing file write access.</exception>
public void WriteToFile(string path, Type typedef, Encoding? encoding = null)
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (typedef == null)
throw new ArgumentNullException(nameof(typedef));
encoding ??= Encoding.Default;
using FileStream stream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, encoding.GetMaxByteCount(_defBufferSizeMult));
WriteToStream(stream, typedef, encoding);
}
/// <summary>
/// Formats the <paramref name="typedef"/> and writes it to <paramref name="stream"/> asynchronously using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public async Task WriteToStreamAsync(Stream stream, Type typedef, Encoding? encoding = null, CancellationToken token = default)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (typedef == null)
throw new ArgumentNullException(nameof(typedef));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.UTF8;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult, true);
await WriteToTextWriterIntlAsync(typedef, writer, true, token).ConfigureAwait(false);
await writer.FlushAsync().ConfigureAwait(false);
}
/// <summary>
/// Output the type definition to <see cref="Console"/> using the appropriate color format.
/// </summary>
/// <param name="typedef">Type to write.</param>
/// <param name="writeToConsoleBuffer">Only set this to <see langword="true"/> if memory is a huge concern, writing to the console per span takes significantly (~5x) longer than writing to a memory buffer then writing the entire buffer to the console at once.</param>
/// <exception cref="ArgumentNullException"></exception>
public void WriteToConsole(Type typedef, bool writeToConsoleBuffer = false)
{
if (typedef == null)
throw new ArgumentNullException(nameof(typedef));
if (_config.ColorFormatting is StackColorFormatType.ConsoleColor)
{
ConsoleColor currentColor = (ConsoleColor)255;
ConsoleColor old = Console.ForegroundColor;
foreach (SpanData span in EnumerateTypeName(typedef, true))
{
if (_config.ColorFormatting != StackColorFormatType.None && span.Color != TokenType.Space)
{
ConsoleColor old2 = currentColor;
currentColor = _isArgbColor ? Color4Config.ToConsoleColor(GetColor(span.Color), _config.ColorFormatting != StackColorFormatType.ANSIColorNoBright)
: (ConsoleColor)(GetColor(span.Color) - 1);
if (old2 != currentColor)
Console.ForegroundColor = currentColor;
}
if (span.Text != null)
Console.Write(span.Text);
else
Console.Write(span.Char);
}
if (_config.ColorFormatting != StackColorFormatType.None)
Console.ForegroundColor = old;
Console.WriteLine();
}
else if (!writeToConsoleBuffer) Console.WriteLine(GetString(typedef));
else
{
TextWriter cout = Console.Out;
WriteToTextWriterIntl(typedef, cout);
cout.Flush();
}
}
/// <summary>
/// Formats the <paramref name="typedef"/> and writes it to <paramref name="writer"/>.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public void WriteToTextWriter(Type typedef, TextWriter writer)
{
if (writer == null)
throw new ArgumentNullException(nameof(writer));
if (typedef == null)
throw new ArgumentNullException(nameof(typedef));
WriteToTextWriterIntl(typedef, writer);
writer.Flush();
}
/// <summary>
/// Formats the <paramref name="typedef"/> and writes it to <paramref name="writer"/> asynchronously.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public async Task WriteToTextWriterAsync(Type typedef, TextWriter writer, CancellationToken token = default)
{
if (writer == null)
throw new ArgumentNullException(nameof(writer));
if (typedef == null)
throw new ArgumentNullException(nameof(typedef));
await WriteToTextWriterIntlAsync(typedef, writer, true, token).ConfigureAwait(false);
await writer.FlushAsync().ConfigureAwait(false);
}
/// <summary>
/// Formats the <paramref name="typedef"/> and writes it to <paramref name="writer"/>.
/// </summary>
private void WriteToTextWriterIntl(Type typedef, TextWriter writer, bool warnIfApplicable = true)
{
TokenType currentColor = (TokenType)255;
bool div = false;
foreach (SpanData span in EnumerateTypeName(typedef, warnIfApplicable))
{
if (!div && _writeParaTags && _config.HtmlWriteOuterDiv)
{
// write the outer html tag if needed
writer.Write(GetDivTag());
div = true;
}
if (currentColor != span.Color)
{
// end last color if needed
if (currentColor != span.Color && (int)currentColor != 255 && ShouldWriteEnd(span.Color))
writer.Write(GetEndTag());
// start current color space is ignored
if (_appendColor && span.Color is not TokenType.Space && currentColor != span.Color)
{
writer.Write(GetColorString(span.Color));
currentColor = span.Color;
}
}
// write string or char for span
if (span.Text != null)
writer.Write(span.Text);
else
writer.Write(span.Char);
}
// end last color
if ((int)currentColor != 255 && ShouldWriteEnd(currentColor))
writer.Write(_config.ColorFormatting == StackColorFormatType.UnityRichText ? UnityEndColorSymbol : HtmlEndSpanSymbol);
// end outer html div
if (div)
writer.Write(OuterEndHtmlTagSymbol);
// reset console color
if (_config.ColorFormatting is StackColorFormatType.ANSIColor or StackColorFormatType.ExtendedANSIColor or StackColorFormatType.ANSIColorNoBright)
writer.Write(GetANSIResetString());
}
/// <summary>
/// Formats the <paramref name="typedef"/> and writes it to <paramref name="writer"/> asynchronously.
/// </summary>
private async Task WriteToTextWriterIntlAsync(Type typedef, TextWriter writer, bool warnIfApplicable = true, CancellationToken token = default)
{
token.ThrowIfCancellationRequested();
TokenType currentColor = (TokenType)255;
bool div = false;
foreach (SpanData span in EnumerateTypeName(typedef, warnIfApplicable))
{
if (!div && _writeParaTags && _config.HtmlWriteOuterDiv)
{
// write the outer html tag if needed
await writer.WriteAsync(GetDivTag()).ConfigureAwait(false);
div = true;
token.ThrowIfCancellationRequested();
}
if (currentColor != span.Color)
{
// end last color if needed
if (currentColor != span.Color && (int)currentColor != 255 && ShouldWriteEnd(span.Color))
{
await writer.WriteAsync(GetEndTag()).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
}
// start current color space is ignored
if (_appendColor && span.Color is not TokenType.Space && currentColor != span.Color)
{
await writer.WriteAsync(GetColorString(span.Color)).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
currentColor = span.Color;
}
}
// write string or char for span
if (span.Text != null)
await writer.WriteAsync(span.Text).ConfigureAwait(false);
else
await writer.WriteAsync(span.Char).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
}
// end last color
if ((int)currentColor != 255 && ShouldWriteEnd(currentColor))
await writer.WriteAsync(_config.ColorFormatting == StackColorFormatType.UnityRichText ? UnityEndColorSymbol : HtmlEndSpanSymbol).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
// end outer html div
if (div)
writer.Write(OuterEndHtmlTagSymbol);
// reset console color
if (_config.ColorFormatting is StackColorFormatType.ANSIColor or StackColorFormatType.ExtendedANSIColor or StackColorFormatType.ANSIColorNoBright)
await writer.WriteAsync(GetANSIResetString()).ConfigureAwait(false);
token.ThrowIfCancellationRequested();
}
/// <summary>
/// Formats the <paramref name="method"/> and returns it as a <see cref="string"/> using the runtime's default encoding.
/// </summary>
/// <exception cref="ArgumentNullException"/>
public string GetString(MethodBase method)
{
if (method == null)
throw new ArgumentNullException(nameof(method));
Encoding encoding = Encoding.Default;
using MemoryStream stream = new MemoryStream(encoding.GetMaxByteCount(_defBufferSizeMult));
stream.Position = 0;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult, true);
WriteToTextWriterIntl(method, writer);
writer.Flush();
byte[] bytes = stream.GetBuffer();
return encoding.GetString(bytes, 0, (int)stream.Length);
}
/// <summary>
/// Formats the <paramref name="method"/> and writes it to <paramref name="stream"/> using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public void WriteToStream(Stream stream, MethodBase method, Encoding? encoding = null)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (method == null)
throw new ArgumentNullException(nameof(method));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.Default;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult, true);
WriteToTextWriterIntl(method, writer);
}
/// <summary>
/// Formats the <paramref name="method"/> and writes it to a file at <paramref name="path"/> using <paramref name="encoding"/> to encode it.<br/>
/// If the file exists, it'll be overwritten, otherwise it'll be created.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="IOException"/>
/// <exception cref="NotSupportedException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="ArgumentException"><paramref name="path"/> is not a valid writable file.</exception>
/// <exception cref="System.Security.SecurityException">Missing file access.</exception>
/// <exception cref="UnauthorizedAccessException">Missing file write access.</exception>
public void WriteToFile(string path, MethodBase method, Encoding? encoding = null)
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (method == null)
throw new ArgumentNullException(nameof(method));
encoding ??= Encoding.Default;
using FileStream stream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, encoding.GetMaxByteCount(_defBufferSizeMult));
WriteToStream(stream, method, encoding);
}
/// <summary>
/// Formats the <paramref name="method"/> and writes it to <paramref name="stream"/> asynchronously using <paramref name="encoding"/> to encode it.
/// </summary>
/// <remarks>If <paramref name="encoding"/> is <see langword="null"/>, it's set to <see cref="Encoding.Default"/> instead.</remarks>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="ArgumentException"><paramref name="stream"/> is unable to be written to.</exception>
public async Task WriteToStreamAsync(Stream stream, MethodBase method, Encoding? encoding = null, CancellationToken token = default)
{
if (stream == null)
throw new ArgumentNullException(nameof(stream));
if (method == null)
throw new ArgumentNullException(nameof(method));
if (!stream.CanWrite)
throw new ArgumentException("Stream must be able to write.", nameof(stream));
encoding ??= Encoding.UTF8;
using TextWriter writer = new StreamWriter(stream, encoding, _defBufferSizeMult, true);
await WriteToTextWriterIntlAsync(method, writer, token).ConfigureAwait(false);
await writer.FlushAsync().ConfigureAwait(false);
}
/// <summary>
/// Output the method definition to <see cref="Console"/> using the appropriate color format.
/// </summary>
/// <param name="method">Method to write.</param>