-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLog.cs
299 lines (255 loc) · 8.59 KB
/
Log.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
using System.Runtime.CompilerServices;
using System.Text;
using System.Text.Json;
namespace EXDTooler;
public static class Log
{
public static bool IsGHA;
private static bool IsOnProgressLine;
private static readonly List<(LogLevel, string, AnnotatedMetadata?)> WritableAnnotations = [];
public static IReadOnlyList<(LogLevel, string, AnnotatedMetadata?)> Annotations => WritableAnnotations;
static Log()
{
JsonOptions = new JsonSerializerOptions { WriteIndented = true, IncludeFields = true };
}
public enum LogLevel
{
Error,
Warn,
Info,
Verbose,
Debug
}
private static string GetName(this LogLevel level) =>
level switch
{
LogLevel.Error => "ERROR",
LogLevel.Warn => "WARN",
LogLevel.Info => "INFO",
LogLevel.Verbose => "VERBOSE",
LogLevel.Debug => "DEBUG",
_ => throw new ArgumentOutOfRangeException(nameof(level))
};
private static string GetGHAName(this LogLevel level) =>
level switch
{
LogLevel.Error => "error",
LogLevel.Warn => "warning",
LogLevel.Info => "notice",
_ => throw new ArgumentOutOfRangeException(nameof(level))
};
private static TextWriter GetWriter(this LogLevel level) =>
level switch
{
LogLevel.Error => Console.Error,
_ => Console.Out,
};
private static void LogMessage(LogLevel logLevel, string message)
{
var writer = logLevel.GetWriter();
if (IsOnProgressLine)
{
IsOnProgressLine = false;
writer.WriteLine();
}
writer.WriteLine($"[{logLevel.GetName()}] {message}");
}
private static void LogProgress(LogLevel logLevel, string message)
{
if (IsGHA)
return;
var writer = logLevel.GetWriter();
writer.Write($"\r[{logLevel.GetName()}] {message}");
IsOnProgressLine = true;
}
private static void LogProgressClear(LogLevel logLevel)
{
if (IsGHA)
return;
var writer = logLevel.GetWriter();
writer.Write("\r" + new string(' ', Console.BufferWidth) + "\r");
IsOnProgressLine = false;
}
private static void LogAnnotated(LogLevel logLevel, string message, AnnotatedMetadata? metadata)
{
WritableAnnotations.Add((logLevel, message, metadata));
if (IsGHA)
Console.WriteLine($"::{logLevel.GetGHAName()}{(metadata ?? new()).FormatGHA(message)}");
else
{
var writer = logLevel.GetWriter();
if (IsOnProgressLine)
{
IsOnProgressLine = false;
writer.WriteLine();
}
writer.WriteLine($"[{logLevel.GetName()}]{(metadata ?? new()).FormatPlain(message)}");
}
}
//
public record struct AnnotatedMetadata
{
public string? Title;
public string? File;
public int? Line;
public int? EndLine;
public int? StartColumn;
public int? EndColumn;
// https://github.com/actions/toolkit/blob/dc22dc7cad322ab3cf9280133face378c63195f7/packages/core/src/command.ts#L80-L85
private static string EscapeData(string data) =>
data
.Replace("%", "%25")
.Replace("\r", "%0D")
.Replace("\n", "%0A");
// https://github.com/actions/toolkit/blob/dc22dc7cad322ab3cf9280133face378c63195f7/packages/core/src/command.ts#L87-94
private static string EscapeProperty(string property) =>
property
.Replace("%", "%25")
.Replace("\r", "%0D")
.Replace("\n", "%0A")
.Replace(":", "%3A")
.Replace(",", "%2C");
public readonly string FormatGHA(string message)
{
List<string> ret = [];
if (Title != null)
ret.Add($"title={EscapeProperty(Title)}");
if (File != null)
ret.Add($"file={EscapeProperty(File)}");
if (Line != null)
ret.Add($"line={EscapeProperty(Line.Value.ToString())}");
if (EndLine != null)
ret.Add($"endLine={EscapeProperty(EndLine.Value.ToString())}");
if (StartColumn != null)
ret.Add($"col={EscapeProperty(StartColumn.Value.ToString())}");
if (EndColumn != null)
ret.Add($"endColumn={EscapeProperty(EndColumn.Value.ToString())}");
var msg = new StringBuilder();
if (ret.Count != 0)
{
msg.Append(' ');
msg.Append(string.Join(',', ret));
}
msg.Append("::");
msg.Append(EscapeData(message));
return msg.ToString();
}
public readonly string FormatPlain(string message)
{
var msg = new StringBuilder();
if (Title != null)
{
msg.Append(' ');
msg.Append(Title);
}
if (File != null)
{
msg.Append(' ');
msg.Append(File);
}
if (Line != null)
{
msg.Append(' ');
msg.Append(Line);
}
if (EndLine != null)
{
msg.Append('-');
msg.Append(EndLine);
}
if (StartColumn != null)
{
msg.Append(':');
msg.Append(StartColumn);
}
if (EndColumn != null)
{
msg.Append('-');
msg.Append(EndColumn);
}
msg.Append(' ');
msg.Append(message);
return msg.ToString();
}
}
//
public static void AnnotatedError(string message, AnnotatedMetadata? metadata = null) =>
LogAnnotated(LogLevel.Error, message, metadata);
public static void Error(Exception e) =>
Error(e.ToString());
public static void Error(string message) =>
LogMessage(LogLevel.Error, message);
//
public static void AnnotatedWarn(string message, AnnotatedMetadata? metadata = null) =>
LogAnnotated(LogLevel.Warn, message, metadata);
public static void Warn(string message) =>
LogMessage(LogLevel.Warn, message);
//
public static void AnnotatedInfo(string message, AnnotatedMetadata? metadata = null) =>
LogAnnotated(LogLevel.Info, message, metadata);
public static void Info(string message) =>
LogMessage(LogLevel.Info, message);
public static void Info() =>
Info(string.Empty);
//
public static bool IsVerboseEnabled;
public static void Verbose(DefaultInterpolatedStringHandler message)
{
if (IsVerboseEnabled)
Verbose(message.ToStringAndClear());
}
public static void Verbose(string message)
{
if (IsVerboseEnabled)
LogMessage(LogLevel.Verbose, message);
}
public static void Verbose() =>
Verbose(string.Empty);
public static void VerboseProgress(DefaultInterpolatedStringHandler message)
{
if (IsVerboseEnabled)
LogProgress(LogLevel.Verbose, message.ToStringAndClear());
}
public static void VerboseProgressClear()
{
if (IsVerboseEnabled)
LogProgressClear(LogLevel.Verbose);
}
//
public static bool IsDebugEnabled;
public static void Debug(DefaultInterpolatedStringHandler handler)
{
if (IsDebugEnabled)
Debug(handler.ToStringAndClear());
}
public static void Debug(string message)
{
if (IsDebugEnabled)
LogMessage(LogLevel.Debug, message);
}
private static JsonSerializerOptions JsonOptions { get; }
public static void DebugObject(object value)
{
if (IsDebugEnabled)
LogMessage(LogLevel.Debug, JsonSerializer.Serialize(value, JsonOptions));
}
//
public static void Output(string key, string value)
{
if (IsGHA && Environment.GetEnvironmentVariable("GITHUB_OUTPUT") is { } file)
{
using var writer = new StreamWriter(file, true, Encoding.UTF8);
if (value.Contains('\n'))
{
var delimiter = Guid.NewGuid().ToString("N");
writer.WriteLine($"{key}<<{delimiter}");
writer.WriteLine(value);
writer.WriteLine(delimiter);
}
else
writer.WriteLine(value);
}
else
Info($"GITHUB_OUTPUT => {key} = {value}");
}
}