-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMainPage.xaml.cs
440 lines (302 loc) · 13.6 KB
/
MainPage.xaml.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
using System;
using System.Collections.Generic;
using System.Threading;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
using Opc.Ua.Client;
using Windows.UI.Core;
using muxc = Microsoft.UI.Xaml.Controls;
using System.Threading.Tasks;
using OPCUA2DTDL.Models;
using Newtonsoft.Json;
using Microsoft.Azure.DigitalTwins.Parser;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Net;
using System.Collections.Specialized;
using Microsoft.IdentityModel.Clients.ActiveDirectory; // ADAL
using System.Text;
using Newtonsoft.Json.Linq;
using System.Linq;
using Windows.UI.ViewManagement;
using Windows.Foundation;
// https://docs.microsoft.com/en-us/windows/uwp/design/layout/
namespace OPCUA2DTDL
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{
// Do not edit
private static OpcUaClient _opcUaClient;
private OpcUaNodeList _dataSource = new OpcUaNodeList();
private static List<DtdlInterface> _interfaceList = new List<DtdlInterface>();
private static string _opcUaEndpointURL;
private OpcUaNodeList _children = new OpcUaNodeList();
private bool _isExpandedDtdlMode = false;
private bool _autoAccept = true;
private OpcUaNode _selectedNode;
private string _authority = "https://login.microsoftonline.com";
private string _resource = "0b07f429-9f4b-4714-9392-cc5e8e80c8b0"; // ADT resource id. Do not change.
private static HttpClient _httpClient = new HttpClient();
// Edit these as needed
private const string _appName = "OPCUA2DTDL";
private static string _dtmiPrefix = "dtmi:com:example:";
// Fill in your ADT instance URL
private string _adtInstanceUrl = "https://<yourinstance>.digitaltwins.azure.net";
// Fill in with your AAD app registration.
// See https://docs.microsoft.com/en-us/azure/digital-twins/how-to-create-app-registration
// Ensure your app has "Azure Digital Twins Data Owner" permissions to your ADT instance
private string _tenantId = "";
private string _clientId = "";
private string _secret = "";
public MainPage()
{
this.InitializeComponent();
// Set preferred window size
ApplicationView.PreferredLaunchViewSize = new Size(1400, 800);
ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.PreferredLaunchViewSize;
}
private async void btnConnect_Click(object sender, RoutedEventArgs e)
{
btnConnect.IsEnabled = false;
ProgressRing.IsActive = true;
this.OpcUaNodeTree.RootNodes.Clear();
_opcUaEndpointURL = txtBoxOpcServer.Text;
_dataSource.Clear();
_children.Clear();
try
{
await Task.Run(() => ConnectAndBrowse());
// Hack to get the treeview to refresh.
// ObservableCollection with built-in INotifyCollectionChanged doesn't appear to work.
this.OpcUaNodeTree.ItemsSource = _dataSource;
NotifyUser("Finished browsing nodes");
}
catch (Exception ex)
{
NotifyUser(ex.Message);
}
btnConnect.IsEnabled = true;
ProgressRing.IsActive = false;
}
private async Task ConnectAndBrowse()
{
int stopTimeout = Timeout.Infinite;
_opcUaClient = new OpcUaClient(_opcUaEndpointURL, _autoAccept, stopTimeout, _appName);
NotifyUser("Connecting...");
Session opcsession = await _opcUaClient.Connect();
if (opcsession.Connected)
{
NotifyUser("Connected");
NotifyUser("Browsing nodes...");
// https://docs.microsoft.com/en-us/windows/winui/api/microsoft.ui.xaml.controls.treeview?view=winui-2.5
_dataSource = await _opcUaClient.Browse();
}
}
private void OpcUaNodeTree_ItemInvoked(muxc.TreeView sender, muxc.TreeViewItemInvokedEventArgs args)
{
_selectedNode = (OpcUaNode)args.InvokedItem;
// Display the node's properties in the console window when user clicks on the node
NotifyUser("**********************************************************************************************************************");
NotifyUser($"BrowseName: {_selectedNode.BrowseName}");
NotifyUser($"DisplayName: {_selectedNode.DisplayName}");
NotifyUser($"NodeId: {_selectedNode.NodeId}");
NotifyUser($"NodeClass: {_selectedNode.NodeClass}");
NotifyUser($"DataType: {_selectedNode.DataType}");
NotifyUser($"Child Count: {_selectedNode.Children.Count}");
NotifyUser($"ReferenceTypeId: {_selectedNode.ReferenceTypeId} Name: {OpcUaClient.GetTypeDefinition(_selectedNode.ReferenceTypeId)}");
NotifyUser($"TypeDefinitionId: {_selectedNode.TypeDefinition} Name: {OpcUaClient.GetTypeDefinition(_selectedNode.TypeDefinition)}");
NotifyUser("**********************************************************************************************************************");
}
private bool IsVariableOrMethod(OpcUaNode node)
{
if (node.NodeClass == "Variable" || node.NodeClass == "Method")
{
return true;
}
else
{
return false;
}
}
public void NotifyUser(string strMessage)
{
// If called from the UI thread, then update immediately.
// Otherwise, schedule a task on the UI thread to perform the update.
if (Dispatcher.HasThreadAccess)
{
UpdateStatus(strMessage);
}
else
{
var task = Dispatcher.RunAsync(CoreDispatcherPriority.Low, () => UpdateStatus(strMessage));
}
}
private void UpdateStatus(string strMessage)
{
txtBoxConsole.Text += strMessage + "\n";
}
// Hack to allow status textbox to autoscroll to bottom
private void txtBoxStatus_TextChanged(object sender, TextChangedEventArgs e)
{
var grid = (Grid)VisualTreeHelper.GetChild(txtBoxConsole, 0);
for (var i = 0; i <= VisualTreeHelper.GetChildrenCount(grid) - 1; i++)
{
object obj = VisualTreeHelper.GetChild(grid, i);
if (!(obj is ScrollViewer)) continue;
((ScrollViewer)obj).ChangeView(0.0f, ((ScrollViewer)obj).ExtentHeight, 1.0f);
break;
}
}
private void btnValidate_Click(object sender, RoutedEventArgs e)
{
NotifyUser("Validating DTDL...");
try
{
string json = txtBoxDTDL.Text.ToString();
ModelParser modelParser = new ModelParser();
List<string> model = new List<string>();
model.Add(json);
IReadOnlyDictionary<Dtmi, DTEntityInfo> parseTask = modelParser.ParseAsync(model).GetAwaiter().GetResult();
NotifyUser($"Validation passed");
}
catch (ParsingException pe)
{
NotifyUser($"Validation error(s)");
int errCount = 1;
foreach (ParsingError err in pe.Errors)
{
NotifyUser($"Error {errCount}: {err.Message}");
NotifyUser($"Primary ID: {err.PrimaryID}");
NotifyUser($"Secondary ID: {err.SecondaryID}");
NotifyUser($"Property: {err.Property}");
errCount++;
}
}
catch (Exception ex)
{
NotifyUser($"{ex.Message}");
}
}
private void btnClear_Click(object sender, RoutedEventArgs e)
{
txtBoxDTDL.Text = "";
_interfaceList.Clear();
}
private void btnAddSampleInterface_Click(object sender, RoutedEventArgs e)
{
// If text box contains json, load json from text box into list
if (txtBoxDTDL.Text.Length != 0)
{
_interfaceList.AddRange(JsonConvert.DeserializeObject<List<DtdlInterface>>(txtBoxDTDL.Text));
}
// Generate DTDL for selected tree node and add to list
var dtdl = DTDL.GenerateSampleDTDL(_dtmiPrefix);
_interfaceList.Add(dtdl);
// Display list in text box
txtBoxDTDL.Text = JsonConvert.SerializeObject(_interfaceList, Formatting.Indented);
// Clear list
_interfaceList.Clear();
}
private void btnConvertNodeToDtdl_Click(object sender, RoutedEventArgs e)
{
if (_selectedNode != null)
{
if (IsVariableOrMethod(_selectedNode) && _isExpandedDtdlMode == false)
{
NotifyUser("Select this node's parent or enable expanded mode to convert individual Properties, Variables, or Methods to DTDL Interfaces.");
return;
}
// If text box contains json, load json from text box into list
if (txtBoxDTDL.Text.Length != 0)
{
_interfaceList.AddRange(JsonConvert.DeserializeObject<List<DtdlInterface>>(txtBoxDTDL.Text));
}
// Generate the DTDL for selected node
DtdlInterface dtdl = DTDL.GenerateDTDL(_selectedNode, _isExpandedDtdlMode, _dtmiPrefix);
// Add DTDL to the list of Interfaces
_interfaceList.Add(dtdl);
// Display list in text box
txtBoxDTDL.Text = JsonConvert.SerializeObject(_interfaceList, Formatting.Indented);
// Clear list
_interfaceList.Clear();
}
}
private void btnCollapsedExpandedToggle_Click(object sender, RoutedEventArgs e)
{
if (btnCollapsedExpandedToggle.IsChecked == true)
{
btnCollapsedExpandedToggle.Label = "Expanded DTDL";
_isExpandedDtdlMode = true;
}
else
{
btnCollapsedExpandedToggle.Label = "Collapsed DTDL";
_isExpandedDtdlMode = false;
}
}
private async void btnUploadToAdt_Click(object sender, RoutedEventArgs e)
{
try
{
// ADAL - TODO Replace with MSAL PublicClientApplication
var credentials = new ClientCredential(_clientId, _secret);
var authContext = new AuthenticationContext($"{_authority}/{_tenantId}");
var result = await authContext.AcquireTokenAsync(_resource, credentials);
_httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", result.AccessToken);
string content = txtBoxDTDL.Text.ToString();
var buffer = Encoding.UTF8.GetBytes(content);
var byteContent = new ByteArrayContent(buffer);
byteContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
var response = await _httpClient.PostAsync($"{_adtInstanceUrl}/models?api-version=2020-10-31", byteContent);
if (response.IsSuccessStatusCode)
{
NotifyUser($"Model upload successful.");
}
else
{
NotifyUser($"Model upload error: {response.StatusCode}");
}
}
catch(Exception ex)
{
NotifyUser($"{ex.Message}");
}
}
private async void btnDownloadFromAdt_Click(object sender, RoutedEventArgs e)
{
try
{
// ADAL - TODO Replace with MSAL PublicClientApplication
var credentials = new ClientCredential(_clientId, _secret);
var authContext = new AuthenticationContext($"{_authority}/{_tenantId}");
var result = await authContext.AcquireTokenAsync(_resource, credentials);
_httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", result.AccessToken);
string json = await _httpClient.GetStringAsync($"{_adtInstanceUrl}/models?includeModelDefinition=true&api-version=2020-10-31");
if(!String.IsNullOrEmpty(json))
{
JObject jObject = JObject.Parse(json);
// Get JSON result objects into a list
IList<JToken> results = jObject["value"].Children().ToList();
IList<DtdlInterface> resultsList = new List<DtdlInterface>();
foreach (JToken r in results)
{
JObject inner = r["model"].Value<JObject>();
_interfaceList.Add(inner.ToObject<DtdlInterface>());
}
txtBoxDTDL.Text = JsonConvert.SerializeObject(_interfaceList, Formatting.Indented);
// Clear list
_interfaceList.Clear();
NotifyUser($"Model download complete.");
}
}
catch (Exception ex)
{
NotifyUser($"{ex.Message}");
}
}
}
}