-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathProgram.cs
More file actions
321 lines (294 loc) · 15.4 KB
/
Copy pathProgram.cs
File metadata and controls
321 lines (294 loc) · 15.4 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
/* ========================================================================
* 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.CommandLine;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Opc.Ua;
using Opc.Ua.Gds.Server;
namespace Quickstarts.ReferenceServer
{
/// <summary>
/// The program.
/// </summary>
public static class Program
{
public static Task<int> Main(string[] args)
{
Console.WriteLine("{0} OPC UA Reference Server", Utils.IsRunningOnMono() ? "Mono" : ".NET Core");
Console.WriteLine(
"OPC UA library: {0} @ {1} -- {2}",
Utils.GetAssemblyBuildNumber(),
Utils.GetAssemblyTimestamp().ToString("G", CultureInfo.InvariantCulture),
Utils.GetAssemblySoftwareVersion()
);
// The application name and config file names
string applicationName = Utils.IsRunningOnMono() ? "MonoReferenceServer" : "ConsoleReferenceServer";
string configSectionName = Utils.IsRunningOnMono()
? "Quickstarts.MonoReferenceServer"
: "Quickstarts.ReferenceServer";
// command line options
var autoAcceptOption = new Option<bool>("--autoaccept", "-a") { Description = "auto accept certificates (for testing only)" };
var consoleOption = new Option<bool>("--console", "-c") { Description = "log to console" };
var logOption = new Option<bool>("--log", "-l") { Description = "log app output" };
var fileOption = new Option<bool>("--file", "-f") { Description = "log to file" };
var passwordOption = new Option<string>("--password", "-p") { Description = "optional password for private key" };
var renewOption = new Option<bool>("--renew", "-r") { Description = "renew application certificate" };
var timeoutOption = new Option<int>("--timeout", "-t")
{
Description = "timeout in seconds to exit application",
DefaultValueFactory = _ => -1
};
var shadowConfigOption = new Option<bool>("--shadowconfig", "-s") { Description = "create configuration in pki root" };
var samplingGroupsOption = new Option<bool>("--samplinggroups", "--sg")
{
Description = "use the sampling group mechanism in the Reference Node Manager"
};
var cttOption = new Option<bool>("--ctt") { Description = "CTT mode, use to preset alarms for CTT testing." };
var provisionOption = new Option<bool>("--provision")
{
Description = "start server in provisioning mode with limited namespace for certificate provisioning"
};
var reverseConnectOption = new Option<string>("--reverseconnect", "--rc")
{
Description = "Connect to the specified client endpoint for reverse connect. (e.g. --rc opc.tcp://localhost:65300)"
};
var rootCommand = new RootCommand(
Utils.IsRunningOnMono()
? $"Usage: mono {applicationName}.exe [OPTIONS]"
: $"Usage: dotnet {applicationName}.dll [OPTIONS]")
{
autoAcceptOption,
consoleOption,
logOption,
fileOption,
passwordOption,
renewOption,
timeoutOption,
shadowConfigOption,
samplingGroupsOption,
cttOption,
provisionOption,
reverseConnectOption
};
rootCommand.SetAction(async (parseResult, cancellationToken) =>
{
bool autoAccept = parseResult.GetValue(autoAcceptOption);
bool logConsole = parseResult.GetValue(consoleOption);
bool appLog = parseResult.GetValue(logOption);
bool fileLog = parseResult.GetValue(fileOption);
string? passwordStr = parseResult.GetValue(passwordOption);
char[]? password = passwordStr?.ToCharArray();
bool renewCertificate = parseResult.GetValue(renewOption);
int timeoutSec = parseResult.GetValue(timeoutOption);
int timeout = timeoutSec >= 0 ? timeoutSec * 1000 : -1;
bool shadowConfig = parseResult.GetValue(shadowConfigOption);
bool samplingGroups = parseResult.GetValue(samplingGroupsOption);
bool cttMode = parseResult.GetValue(cttOption);
bool provisioningMode = parseResult.GetValue(provisionOption);
string? reverseConnectUrlString = parseResult.GetValue(reverseConnectOption);
// Use CTT-specific config when CTT mode is enabled.
// Mono uses a separate server (MonoReferenceServer) with its own config, so CTT config is not applicable there.
if (cttMode && !Utils.IsRunningOnMono())
{
configSectionName = "Ctt.ReferenceServer";
}
using var telemetry = new ConsoleTelemetry();
ILogger logger = LoggerUtils.Null.Logger;
try
{
// log console output to logger
if (logConsole && appLog)
{
logger = telemetry.CreateLogger("Main");
}
var sw = Stopwatch.StartNew();
// create the UA server
var server = new UAServer<ReferenceServer>(
telemetry,
// The console reference server is the canonical
// host that exposes the full address space — turn
// FileSystem (Part 20) on by default so clients
// can browse Server.FileSystem without extra
// configuration. Unit-test fixtures construct
// ReferenceServer directly and keep the property
// at its default false.
t => new ReferenceServer(t) { EnableFileSystemNodeManager = true })
{
AutoAccept = autoAccept,
Password = password
};
// load the server configuration, validate certificates
Console.WriteLine($"Loading configuration from {configSectionName}.");
await server.LoadAsync(applicationName, configSectionName).ConfigureAwait(false);
// use the shadow config to map the config to an externally accessible location
if (shadowConfig)
{
Console.WriteLine("Using shadow configuration.");
// --shadowconfig requires TraceConfiguration.OutputFilePath and SourceFilePath to be set;
// null values would have thrown NullReferenceException historically — preserve that behavior.
string shadowPath = Directory
.GetParent(
Path.GetDirectoryName(
Utils.ReplaceSpecialFolderNames(server.Configuration.TraceConfiguration!.OutputFilePath))!)!
.FullName;
string shadowFilePath = Path.Combine(
shadowPath,
Path.GetFileName(server.Configuration.SourceFilePath)!
);
if (!File.Exists(shadowFilePath))
{
Console.WriteLine("Create a copy of the config in the shadow location.");
File.Copy(server.Configuration.SourceFilePath!, shadowFilePath, true);
}
Console.WriteLine($"Reloading configuration from shadow location {shadowFilePath}.");
await server
.LoadAsync(applicationName, Path.Combine(shadowPath, configSectionName))
.ConfigureAwait(false);
}
// setup the logging
telemetry.ConfigureLogging(
server.Configuration,
applicationName,
logConsole,
fileLog,
appLog,
LogLevel.Information);
// check or renew the certificate
Console.WriteLine("Check the certificate.");
await server.CheckCertificateAsync(renewCertificate).ConfigureAwait(false);
// Create and add the node managers
server.Create(Servers.Utils.NodeManagerFactories);
// Add async node managers
foreach (var asyncFactory in Servers.Utils.AsyncNodeManagerFactories)
{
server.Server!.AddNodeManager(asyncFactory);
}
// Add GDS node manager if configured
GlobalDiscoveryServerConfiguration? gdsConfig = server.Configuration
.ParseExtension<GlobalDiscoveryServerConfiguration>();
if (gdsConfig != null)
{
Console.WriteLine("GDS configuration found. Adding GDS node manager.");
server.Server!.AddNodeManager(new GdsNodeManagerFactory(gdsConfig));
}
// enable provisioning mode if requested
if (provisioningMode)
{
Console.WriteLine("Enabling provisioning mode.");
Servers.Utils.EnableProvisioningMode(server.Server!);
// Auto-accept is required in provisioning mode
if (!autoAccept)
{
Console.WriteLine("Auto-accept enabled for provisioning mode.");
autoAccept = true;
server.AutoAccept = autoAccept;
}
}
// enable the sampling groups if requested
if (samplingGroups)
{
Servers.Utils.UseSamplingGroupsInReferenceNodeManager(server.Server!);
}
// start the server
Console.WriteLine("Start the server.");
await server.StartAsync(cancellationToken).ConfigureAwait(false);
// setup reverse connect if specified
if (!string.IsNullOrEmpty(reverseConnectUrlString))
{
try
{
Console.WriteLine($"Adding reverse connection to {reverseConnectUrlString}.");
var reverseConnectUrl = new Uri(reverseConnectUrlString);
server.Server!.AddReverseConnection(reverseConnectUrl);
}
catch (UriFormatException ex)
{
logger.LogError(ex, "Invalid reverse connect URL: {Url}", reverseConnectUrlString);
throw new ErrorExitException(
$"Invalid reverse connect URL: {reverseConnectUrlString}",
ExitCode.ErrorInvalidCommandLine);
}
}
// Apply custom settings for CTT testing
if (cttMode)
{
Console.WriteLine("Apply settings for CTT.");
// start Alarms and other settings for CTT test
await Servers.Utils.ApplyCTTModeAsync(Console.Out, server.Server!)
.ConfigureAwait(false);
}
Console.WriteLine($"Server started ({sw.ElapsedMilliseconds} ms). Press Ctrl-C to exit...");
// wait for timeout or Ctrl-C (cancellationToken is cancelled on Ctrl-C by System.CommandLine)
if (timeout >= 0)
{
using var timeoutCts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken);
timeoutCts.CancelAfter(timeout);
try
{
await Task.Delay(Timeout.Infinite, timeoutCts.Token).ConfigureAwait(false);
}
catch (OperationCanceledException)
{
// expected — timeout or Ctrl-C
}
}
else
{
try
{
await Task.Delay(Timeout.Infinite, cancellationToken).ConfigureAwait(false);
}
catch (OperationCanceledException)
{
// expected — Ctrl-C
}
}
// stop server. May have to wait for clients to disconnect.
Console.WriteLine("Server stopped. Waiting for exit...");
await server.StopAsync(default).ConfigureAwait(false);
return (int)ExitCode.Ok;
}
catch (ErrorExitException eee)
{
Console.WriteLine($"The application exits with error: {eee.Message}");
return (int)eee.ExitCode;
}
});
args = ConsoleUtils.MergeEnvironmentArgs(args, "REFSERVER", rootCommand);
ParseResult parseResult = rootCommand.Parse(args);
return parseResult
.InvokeAsync(new InvocationConfiguration(), CancellationToken.None);
}
}
}