-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathProgram.cs
More file actions
155 lines (139 loc) · 6.46 KB
/
Copy pathProgram.cs
File metadata and controls
155 lines (139 loc) · 6.46 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
/* ========================================================================
* Copyright (c) 2005-2020 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.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.Extensions.Logging;
using Opc.Ua;
using Opc.Ua.Configuration;
using Opc.Ua.Server.Controls;
using Serilog;
namespace Quickstarts.ReferenceServer
{
public sealed class ConsoleTelemetry : TelemetryContextBase
{
public ConsoleTelemetry()
: base(
#pragma warning disable CA2000 // Justification: Sample code retains existing ownership/lifetime and behavior.
Microsoft.Extensions.Logging.LoggerFactory.Create(builder =>
#pragma warning restore CA2000
{
builder.SetMinimumLevel(LogLevel.Information);
builder.AddConsole();
})
)
{
}
}
static class Program
{
private static readonly ITelemetryContext m_telemetry = new ConsoleTelemetry();
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// Initialize the user interface.
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
ApplicationInstance.MessageDlg = new ApplicationMessageDlg();
ApplicationInstance application = new ApplicationInstance(m_telemetry);
application.ApplicationType = ApplicationType.Server;
application.ConfigSectionName = "Quickstarts.ReferenceServer";
try
{
// load the application configuration.
ApplicationConfiguration config = application.LoadApplicationConfigurationAsync(false).AsTask().Result;
LoggerConfiguration loggerConfiguration = new LoggerConfiguration();
#if DEBUG
#pragma warning disable CA1305 // Specify IFormatProvider
loggerConfiguration.WriteTo.Debug(restrictedToMinimumLevel: Serilog.Events.LogEventLevel.Warning);
#pragma warning restore CA1305 // Specify IFormatProvider
#endif
// check the application certificate.
bool certOk = application.CheckApplicationInstanceCertificatesAsync(false).AsTask().Result;
if (!certOk)
{
#pragma warning disable CA2201 // Justification: Sample code retains existing ownership/lifetime and behavior.
throw new Exception("Application instance certificate invalid!");
#pragma warning restore CA2201
}
// Create server, add additional node managers
#pragma warning disable CA2000 // Justification: Sample code retains existing ownership/lifetime and behavior.
var server = new ReferenceServer(m_telemetry);
#pragma warning restore CA2000
Quickstarts.Servers.Utils.AddDefaultNodeManagers(server);
// start the server.
application.StartAsync(server).Wait();
// check whether the invalid certificates dialog should be displayed.
bool showCertificateValidationDialog = false;
// The 2.0 Quickstarts.Servers ReferenceServerConfiguration is still a
// [DataContract] POCO (not IEncodeable), so ApplicationConfiguration.ParseExtension<T>()
// can no longer bind it. Read the extension XML directly instead.
foreach (var extension in application.ApplicationConfiguration.Extensions)
{
if (extension.IsNull || extension.IsEmpty)
{
continue;
}
System.Xml.Linq.XElement element = extension.ToXElement();
if (element == null || element.Name.LocalName != "ReferenceServerConfiguration")
{
continue;
}
System.Xml.Linq.XElement show = System.Linq.Enumerable.FirstOrDefault(
element.Elements(),
e => e.Name.LocalName == "ShowCertificateValidationDialog");
if (show != null && bool.TryParse(show.Value, out bool value))
{
showCertificateValidationDialog = value;
}
break;
}
// run the application interactively.
#pragma warning disable CA2000 // Justification: Sample code retains existing ownership/lifetime and behavior.
Application.Run(new ServerForm(application, m_telemetry, showCertificateValidationDialog));
#pragma warning restore CA2000
}
catch (Exception e)
{
ExceptionDlg.Show(m_telemetry, application.ApplicationName, e);
}
}
}
/// <summary>
/// The <b>ReferenceServer</b> namespace contains classes which implement a Quickstart Server.
/// </summary>
/// <exclude/>
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class NamespaceDoc
{
}
}