forked from OPCFoundation/UA-.NETStandard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsoleUtils.cs
More file actions
390 lines (351 loc) · 13.1 KB
/
ConsoleUtils.cs
File metadata and controls
390 lines (351 loc) · 13.1 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
/* ========================================================================
* Copyright (c) 2005-2025 The OPC Foundation, Inc. All rights reserved.
*
* OPC Foundation MIT License 1.00
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* The complete license agreement can be found here:
* http://opcfoundation.org/License/MIT/1.00/
* ======================================================================*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.Metrics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Mono.Options;
using Opc.Ua;
using Serilog;
using Serilog.Events;
using Serilog.Templates;
#if NET5_0_OR_GREATER
using Microsoft.Extensions.Configuration;
#endif
namespace Quickstarts
{
/// <summary>
/// Simple console based telemetry
/// </summary>
public sealed class ConsoleTelemetry : ITelemetryContext, IDisposable
{
private readonly Action<ILoggingBuilder> m_configure;
public ConsoleTelemetry(Action<ILoggingBuilder> configure = null)
{
m_configure = configure;
LoggerFactory = Microsoft.Extensions.Logging.LoggerFactory
.Create(builder =>
{
builder.SetMinimumLevel(LogLevel.Information);
m_configure?.Invoke(builder);
})
.AddSerilog(Log.Logger);
ActivitySource = new ActivitySource("Quickstarts", "1.0.0");
m_logger = LoggerFactory.CreateLogger("Main");
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
TaskScheduler.UnobservedTaskException += Unobserved_TaskException;
}
/// <inheritdoc/>
public ILoggerFactory LoggerFactory { get; internal set; }
/// <inheritdoc/>
public Meter CreateMeter()
{
return new Meter("Quickstarts", "1.0.0");
}
/// <inheritdoc/>
public ActivitySource ActivitySource { get; }
/// <inheritdoc/>
public void Dispose()
{
CreateMeter().Dispose();
ActivitySource.Dispose();
LoggerFactory.Dispose();
AppDomain.CurrentDomain.UnhandledException -= CurrentDomain_UnhandledException;
TaskScheduler.UnobservedTaskException -= Unobserved_TaskException;
}
/// <summary>
/// Configure the logging providers.
/// </summary>
/// <remarks>
/// Replaces the Opc.Ua.Core default ILogger with a
/// Microsoft.Extension.Logger with a Serilog file, debug and console logger.
/// The debug logger is only enabled for debug builds.
/// The console logger is enabled by the logConsole flag at the consoleLogLevel.
/// The file logger uses the setting in the ApplicationConfiguration.
/// The Trace logLevel is chosen if required by the Tracemasks.
/// </remarks>
/// <param name="configuration">The application configuration.</param>
/// <param name="context">The context name for the logger. </param>
/// <param name="logConsole">Enable logging to the console.</param>
/// <param name="logFile">Enable logging to a file.</param>
/// <param name="logApp">Enable application logging.</param>
/// <param name="consoleLogLevel">The LogLevel to use for the console/debug.<
/// /param>
public void ConfigureLogging(
ApplicationConfiguration configuration,
string context,
bool logConsole,
bool logFile,
bool logApp,
LogLevel consoleLogLevel)
{
if (!logApp)
{
return;
}
LoggerConfiguration loggerConfiguration = new LoggerConfiguration().Enrich
.FromLogContext();
if (logConsole)
{
loggerConfiguration.WriteTo.Console(
restrictedToMinimumLevel: (LogEventLevel)consoleLogLevel,
formatProvider: CultureInfo.InvariantCulture);
}
#if DEBUG
else
{
loggerConfiguration.WriteTo.Debug(
restrictedToMinimumLevel: (LogEventLevel)consoleLogLevel,
formatProvider: CultureInfo.InvariantCulture);
}
#endif
LogLevel fileLevel = LogLevel.Information;
// switch for Trace/Verbose output
int traceMasks = configuration.TraceConfiguration.TraceMasks;
if ((traceMasks &
~(
Utils.TraceMasks.Information |
Utils.TraceMasks.Error |
Utils.TraceMasks.Security |
Utils.TraceMasks.StartStop |
Utils.TraceMasks.StackTrace
)) != 0)
{
fileLevel = LogLevel.Trace;
}
// add file logging if configured
if (logFile)
{
string outputFilePath = configuration.TraceConfiguration.OutputFilePath;
if (!string.IsNullOrWhiteSpace(outputFilePath))
{
loggerConfiguration.WriteTo.File(
new ExpressionTemplate(
"{UtcDateTime(@t):yyyy-MM-dd HH:mm:ss.fff} [{@l:u3}] {@m}\n{@x}"),
Utils.ReplaceSpecialFolderNames(outputFilePath),
restrictedToMinimumLevel: (LogEventLevel)fileLevel,
rollOnFileSizeLimit: true
);
}
}
// adjust minimum level
if (fileLevel < LogLevel.Information || consoleLogLevel < LogLevel.Information)
{
loggerConfiguration.MinimumLevel.Verbose();
}
// create the serilog logger
Serilog.Core.Logger serilogger = loggerConfiguration.CreateLogger();
// Dispose the old LoggerFactory and create a new one with the updated configuration
ILoggerFactory oldLoggerFactory = LoggerFactory;
LoggerFactory = Microsoft.Extensions.Logging.LoggerFactory
.Create(builder =>
{
builder.SetMinimumLevel(consoleLogLevel);
m_configure?.Invoke(builder);
})
.AddSerilog(serilogger);
m_logger = LoggerFactory.CreateLogger("Main");
oldLoggerFactory.Dispose();
}
private void CurrentDomain_UnhandledException(
object sender,
UnhandledExceptionEventArgs args)
{
m_logger.LogCritical(
args.ExceptionObject as Exception,
"Unhandled Exception: (IsTerminating: {IsTerminating})",
args.IsTerminating);
}
private void Unobserved_TaskException(
object sender,
UnobservedTaskExceptionEventArgs args)
{
m_logger.LogCritical(
args.Exception,
"Unobserved Task Exception (Observed: {Observed})",
args.Observed);
}
private Microsoft.Extensions.Logging.ILogger m_logger;
}
/// <summary>
/// The error code why the application exit.
/// </summary>
public enum ExitCode
{
Ok = 0,
ErrorNotStarted = 0x80,
ErrorRunning = 0x81,
ErrorException = 0x82,
ErrorStopping = 0x83,
ErrorCertificate = 0x84,
ErrorInvalidCommandLine = 0x100
}
/// <summary>
/// An exception that occured and caused an exit of the application.
/// </summary>
[Serializable]
public class ErrorExitException : Exception
{
public ExitCode ExitCode { get; }
public ErrorExitException(ExitCode exitCode)
{
ExitCode = exitCode;
}
public ErrorExitException()
{
ExitCode = ExitCode.Ok;
}
public ErrorExitException(string message)
: base(message)
{
ExitCode = ExitCode.Ok;
}
public ErrorExitException(string message, ExitCode exitCode)
: base(message)
{
ExitCode = exitCode;
}
public ErrorExitException(string message, Exception innerException)
: base(message, innerException)
{
ExitCode = ExitCode.Ok;
}
public ErrorExitException(string message, Exception innerException, ExitCode exitCode)
: base(message, innerException)
{
ExitCode = exitCode;
}
}
/// <summary>
/// Helper functions shared in various console applications.
/// </summary>
public static class ConsoleUtils
{
/// <summary>
/// Process a command line of the console sample application.
/// </summary>
/// <exception cref="ErrorExitException"></exception>
public static string ProcessCommandLine(
string[] args,
Mono.Options.OptionSet options,
ref bool showHelp,
string environmentPrefix,
bool noExtraArgs = true,
TextWriter output = null)
{
output ??= Console.Out;
#if NET5_0_OR_GREATER
// Convert environment settings to command line flags
// because in some environments (e.g. docker cloud) it is
// the only supported way to pass arguments.
IConfigurationRoot config = new ConfigurationBuilder()
.AddEnvironmentVariables(environmentPrefix + "_")
.Build();
List<string> argslist = [.. args];
foreach (Option option in options)
{
string[] names = option.GetNames();
string longest = names.MaxBy(s => s.Length);
if (longest != null && longest.Length >= 3)
{
string envKey = config[longest.ToUpperInvariant()];
if (envKey != null)
{
if (string.IsNullOrWhiteSpace(envKey) ||
option.OptionValueType == OptionValueType.None)
{
argslist.Add("--" + longest);
}
else
{
argslist.Add("--" + longest + "=" + envKey);
}
}
}
}
args = [.. argslist];
#endif
IList<string> extraArgs = null;
try
{
extraArgs = options.Parse(args);
if (noExtraArgs)
{
foreach (string extraArg in extraArgs)
{
output.WriteLine("Error: Unknown option: {0}", extraArg);
showHelp = true;
}
}
}
catch (OptionException e)
{
output.WriteLine(e.Message);
showHelp = true;
}
if (showHelp)
{
options.WriteOptionDescriptions(output);
throw new ErrorExitException(
"Invalid Commandline or help requested.",
ExitCode.ErrorInvalidCommandLine
);
}
return extraArgs.FirstOrDefault();
}
/// <summary>
/// Create an event which is set if a user
/// enters the Ctrl-C key combination.
/// </summary>
public static ManualResetEvent CtrlCHandler(CancellationTokenSource cts)
{
var quitEvent = new ManualResetEvent(false);
try
{
Console.CancelKeyPress += (_, eArgs) =>
{
cts.Cancel();
quitEvent.Set();
eArgs.Cancel = true;
};
}
catch
{
// intentionally left blank
}
return quitEvent;
}
}
}