-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.xaml.cs
442 lines (375 loc) · 13.6 KB
/
MainWindow.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
441
442
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Windows.Devices.Bluetooth;
using Windows.Devices.Enumeration;
using Windows.Foundation;
namespace EasyPair
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
static byte[] FindBluetoothMAC()
{
foreach (NetworkInterface network in NetworkInterface.GetAllNetworkInterfaces())
{
//if (network.NetworkInterfaceType != NetworkInterfaceType.FastEthernetFx &&
// network.NetworkInterfaceType != NetworkInterfaceType.Wireless80211)
//{
// network.GetPhysicalAddress().GetAddressBytes();
//}
if (network.Name.ToLower().Contains("bluetooth"))
{
return network.GetPhysicalAddress().GetAddressBytes();
}
}
return null;
}
public ObservableCollection<Info> Devices { get; private set; }
DeviceWatcher _watcher;
private IAsyncOperation<DevicePairingResult> _pairingTask;
private TaskCompletionSource<string> _pinTask;
private TaskCompletionSource<bool> _matchTask;
public MainWindow()
{
InitializeComponent();
Devices = new ObservableCollection<Info>();
list.ItemsSource = Devices;
list.SelectionChanged += OnSelectionChanged;
string addr = BitConverter.ToString(FindBluetoothMAC());
if (addr == null) addr = "";
macAddress.Text = addr.Replace('-', ':');
}
void StartWatcher()
{
Devices.Clear();
string selector = "(" + BluetoothDevice.GetDeviceSelectorFromPairingState(false) + ") AND (System.Devices.Aep.CanPair:=System.StructuredQueryType.Boolean#True)";
_watcher = DeviceInformation.CreateWatcher(selector, null);
_watcher.Added += OnDeviceAdded;
_watcher.Updated += OnDeviceUpdated;
_watcher.Removed += OnDeviceRemoved;
_watcher.EnumerationCompleted += OnCompleted;
_watcher.Stopped += OnStopped;
_watcher.Start();
UpdateUI();
}
void StopWatcher()
{
if (_watcher != null)
{
_watcher.Added -= OnDeviceAdded;
_watcher.Updated -= OnDeviceUpdated;
_watcher.Removed -= OnDeviceRemoved;
_watcher.EnumerationCompleted -= OnCompleted;
if (_watcher.Status == DeviceWatcherStatus.Started || _watcher.Status == DeviceWatcherStatus.EnumerationCompleted)
{
_watcher.Stop();
}
}
UpdateUI();
}
void UpdateUI(string message = null)
{
Dispatcher.Invoke(new Action(() =>
{
if (_watcher != null && _watcher.Status == DeviceWatcherStatus.Started || _watcher.Status == DeviceWatcherStatus.EnumerationCompleted)
{
btnStart.IsEnabled = false;
btnStop.IsEnabled = true;
}
else
{
btnStart.IsEnabled = true;
btnStop.IsEnabled = false;
}
Info info = list.SelectedItem as Info;
if (info != null && info.CanPair)
{
btnPair.IsEnabled = true;
selectedLabel.Content = info.Name;
}
else
{
status.Content = "";
btnPair.IsEnabled = false;
selectedLabel.Content = "None";
}
if (_pairingTask != null && _pairingTask.Status == AsyncStatus.Started)
{
btnPair.IsEnabled = false;
list.IsEnabled = false;
btnAbort.IsEnabled = true;
}
else
{
list.IsEnabled = true;
btnAbort.IsEnabled = false;
}
if (_pinTask != null)
{
pin.IsEnabled = true;
btnPin.IsEnabled = true;
macAddress.IsEnabled = true;
btnMac.IsEnabled = true;
}
else
{
pin.IsEnabled = false;
btnPin.IsEnabled = false;
macAddress.IsEnabled = false;
btnMac.IsEnabled = false;
}
if (_matchTask != null)
{
btnAccept.Visibility = Visibility.Visible;
btnReject.Visibility = Visibility.Visible;
}
else
{
btnAccept.Visibility = Visibility.Collapsed;
btnReject.Visibility = Visibility.Collapsed;
}
if (message != null)
{
status.Content = message;
}
}));
}
async void HandlePairingRequest(DeviceInformationCustomPairing sender, DevicePairingRequestedEventArgs args)
{
switch (args.PairingKind)
{
case DevicePairingKinds.ConfirmOnly:
args.Accept();
break;
case DevicePairingKinds.ProvidePin:
var pinDefer = args.GetDeferral();
if (_pinTask != null)
{
_pinTask.SetResult(null);
_pinTask = null;
}
_pinTask = new TaskCompletionSource<string>();
UpdateUI("Provide a PIN");
string pin = await _pinTask.Task;
if (!string.IsNullOrEmpty(pin))
{
await Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
args.Accept(pin);
}));
}
//await Task.Delay(5000);
pinDefer.Complete();
UpdateUI();
break;
case DevicePairingKinds.DisplayPin:
args.Accept();
UpdateUI("Use this PIN: " + args.Pin);
break;
case DevicePairingKinds.ConfirmPinMatch:
var displayDefer = args.GetDeferral();
if (_matchTask != null)
{
_matchTask.SetResult(false);
_matchTask = null;
}
_matchTask = new TaskCompletionSource<bool>();
UpdateUI("Confirm the PIN: " + args.Pin);
if (await _matchTask.Task)
{
args.Accept();
}
displayDefer.Complete();
UpdateUI();
break;
}
}
#region Device Watcher Callbacks
void OnDeviceAdded(DeviceWatcher watcher, DeviceInformation device)
{
Dispatcher.Invoke(new Action(() =>
{
Devices.Add(new Info(device));
}));
}
void OnDeviceUpdated(DeviceWatcher watcher, DeviceInformationUpdate update)
{
Info target = null;
foreach (var info in Devices.ToArray())
{
if (info.Id == update.Id)
{
target = info;
break;
}
}
if (target == null) return;
Dispatcher.Invoke(new Action(() =>
{
target.Update(update);
CollectionViewSource.GetDefaultView(list.ItemsSource).Refresh();
if (target == (list.SelectedItem as Info))
{
UpdateUI();
}
}));
}
void OnDeviceRemoved(DeviceWatcher watcher, DeviceInformationUpdate update)
{
Info target = null;
foreach (var info in Devices)
{
if (info.Id == update.Id)
{
target = info;
break;
}
}
if (target == null) return;
Dispatcher.Invoke(new Action(() =>
{
Devices.Remove(target);
}));
}
void OnCompleted(DeviceWatcher watcher, Object obj)
{
UpdateUI();
}
void OnStopped(DeviceWatcher watcher, Object obj)
{
UpdateUI();
}
#endregion
#region UI Events
private void btnStart_Click(object sender, RoutedEventArgs e)
{
StartWatcher();
}
private void btnStop_Click(object sender, RoutedEventArgs e)
{
StopWatcher();
}
private void OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
UpdateUI();
}
private async void btnPair_Click(object sender, RoutedEventArgs e)
{
Info target = list.SelectedItem as Info;
if (target != null)
{
DevicePairingKinds pairOptions = DevicePairingKinds.None;
if (checkConfirm.IsChecked ?? false) pairOptions |= DevicePairingKinds.ConfirmOnly;
if (checkProvide.IsChecked ?? false) pairOptions |= DevicePairingKinds.ProvidePin;
if (checkDisplay.IsChecked ?? false) pairOptions |= DevicePairingKinds.DisplayPin;
if (checkDisplay.IsChecked ?? false) pairOptions |= DevicePairingKinds.ConfirmPinMatch;
DeviceInformationCustomPairing custom = target.Device.Pairing.Custom;
custom.PairingRequested += HandlePairingRequest;
_pairingTask = custom.PairAsync(pairOptions, DevicePairingProtectionLevel.None);
UpdateUI();
while (_pairingTask.Status == AsyncStatus.Started)
{
await Task.Delay(500);
}
custom.PairingRequested -= HandlePairingRequest;
UpdateUI();
if (_pairingTask.Status == AsyncStatus.Completed)
{
var result = _pairingTask.GetResults();
status.Content = result.Status.ToString();
}
_pairingTask = null;
}
}
private void btnPin_Click(object sender, RoutedEventArgs e)
{
if (_pinTask != null)
{
_pinTask.SetResult(pin.Text);
_pinTask = null;
}
}
private void btnMac_Click(object sender, RoutedEventArgs e)
{
// Remove all non-hex characters
StringBuilder sBuilder = new StringBuilder();
foreach (char c in macAddress.Text.ToLower())
{
if ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f'))
{
sBuilder.Append(c);
}
}
// Convert from Hex string
string hexString = sBuilder.ToString();
sBuilder.Clear();
for (int i = hexString.Length - 2; i >= 0; i -= 2)
{
if (i + 1 > hexString.Length) break;
var b = Byte.Parse(hexString.Substring(i, 2), System.Globalization.NumberStyles.HexNumber);
sBuilder.Append((char)b);
}
_pinTask.SetResult(sBuilder.ToString());
_pinTask = null;
}
private void btnAccept_Click(object sender, RoutedEventArgs e)
{
if (_matchTask != null)
{
_matchTask.SetResult(true);
_matchTask = null;
}
}
private void btnReject_Click(object sender, RoutedEventArgs e)
{
if (_matchTask != null)
{
_matchTask.SetResult(false);
_matchTask = null;
}
}
private void btnAbort_Click(object sender, RoutedEventArgs e)
{
if (_pinTask != null)
{
_pinTask.SetResult(null);
Task.Delay(1000).Wait();
_pinTask = null;
}
UpdateUI();
}
#endregion
public class Info
{
public string Name { get { return _info.Name; } }
public string Id { get { return _info.Id; } }
public bool CanPair { get { return _info.Pairing.CanPair; } }
public DeviceInformation Device { get { return _info; } }
private DeviceInformation _info;
public Info(DeviceInformation deviceInfo)
{
_info = deviceInfo;
}
public void Update(DeviceInformationUpdate update)
{
_info.Update(update);
}
}
}
}