-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbluetootha2dpsink.cpp
More file actions
489 lines (410 loc) · 13.8 KB
/
bluetootha2dpsink.cpp
File metadata and controls
489 lines (410 loc) · 13.8 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
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
#include "bluetootha2dpsink.h"
#include <QMetaObject>
#ifdef Q_OS_WIN
using namespace winrt;
using namespace winrt::Windows::Foundation;
using namespace winrt::Windows::Media::Audio;
using namespace winrt::Windows::Devices::Enumeration;
#endif
BluetoothA2DPSink::BluetoothA2DPSink(QObject *parent)
: QObject(parent)
, m_winrtInitialized(false)
, m_ownsApartment(false)
, m_isStreaming(false)
{
qDebug() << "Initializing BluetoothA2DPSink...";
initializeWinRT();
}
BluetoothA2DPSink::~BluetoothA2DPSink()
{
cleanupWinRT();
}
void BluetoothA2DPSink::initializeWinRT()
{
#ifdef Q_OS_WIN
try {
// Try to initialize as Single-Threaded Apartment
winrt::init_apartment(winrt::apartment_type::single_threaded);
m_winrtInitialized = true;
m_ownsApartment = true;
qDebug() << "WinRT initialized successfully (STA)";
}
catch (const winrt::hresult_error &ex) {
HRESULT hr = ex.code();
// RPC_E_CHANGED_MODE means COM already initialized - that's fine
if (hr == RPC_E_CHANGED_MODE) {
qDebug() << "COM already initialized, using existing apartment";
m_winrtInitialized = true;
m_ownsApartment = false;
}
else {
qWarning() << "Failed to initialize WinRT:"
<< QString::fromWCharArray(ex.message().c_str())
<< "HRESULT:" << QString::number(hr, 16);
m_winrtInitialized = false;
m_ownsApartment = false;
}
}
#else
qWarning() << "A2DP Sink is only supported on Windows 10 2004+";
#endif
}
void BluetoothA2DPSink::cleanupWinRT()
{
#ifdef Q_OS_WIN
try {
// Stop device watcher if running
if (m_deviceWatcher) {
if (m_deviceAddedToken.value != 0) {
m_deviceWatcher.Added(m_deviceAddedToken);
m_deviceAddedToken = {};
}
if (m_enumerationCompletedToken.value != 0) {
m_deviceWatcher.EnumerationCompleted(m_enumerationCompletedToken);
m_enumerationCompletedToken = {};
}
if (m_deviceWatcher.Status() == DeviceWatcherStatus::Started ||
m_deviceWatcher.Status() == DeviceWatcherStatus::EnumerationCompleted) {
m_deviceWatcher.Stop();
}
m_deviceWatcher = nullptr;
}
if (m_connection) {
if (m_stateChangedToken.value != 0) {
m_connection.StateChanged(m_stateChangedToken);
m_stateChangedToken = {};
}
// Close and dispose
if (m_connection.State() == AudioPlaybackConnectionState::Opened) {
m_connection.Close();
}
m_connection = nullptr;
}
if (m_winrtInitialized && m_ownsApartment) {
winrt::uninit_apartment();
qDebug() << "WinRT apartment uninitialized";
}
m_winrtInitialized = false;
m_ownsApartment = false;
}
catch (const winrt::hresult_error &ex) {
qWarning() << "Error during cleanup:"
<< QString::fromWCharArray(ex.message().c_str());
}
#endif
}
void BluetoothA2DPSink::startDeviceDiscovery()
{
#ifdef Q_OS_WIN
if (!m_winrtInitialized) {
emit connectionError("WinRT not initialized");
return;
}
try {
qDebug() << "Starting device discovery for A2DP-capable devices...";
// Get selector for devices that support AudioPlaybackConnection
auto selector = AudioPlaybackConnection::GetDeviceSelector();
qDebug() << "Device selector:" << QString::fromWCharArray(selector.c_str());
// Create device watcher
m_deviceWatcher = DeviceInformation::CreateWatcher(selector);
// Register for device added events
m_deviceAddedToken = m_deviceWatcher.Added(
[this](DeviceWatcher sender, DeviceInformation device) {
onDeviceAdded(sender, device);
}
);
// Register for enumeration completed
m_enumerationCompletedToken = m_deviceWatcher.EnumerationCompleted(
[this](DeviceWatcher sender, winrt::IInspectable args) {
onDeviceEnumerationCompleted(sender, args);
}
);
// Start watching
m_deviceWatcher.Start();
qDebug() << "Device watcher started";
}
catch (const winrt::hresult_error &ex) {
QString error = QString::fromWCharArray(ex.message().c_str());
qWarning() << "Error starting device discovery:" << error;
emit connectionError(error);
}
#else
emit connectionError("Device discovery only supported on Windows 10 2004+");
#endif
}
void BluetoothA2DPSink::stopDeviceDiscovery()
{
#ifdef Q_OS_WIN
if (m_deviceWatcher) {
try {
if (m_deviceWatcher.Status() == DeviceWatcherStatus::Started ||
m_deviceWatcher.Status() == DeviceWatcherStatus::EnumerationCompleted) {
m_deviceWatcher.Stop();
qDebug() << "Device watcher stopped";
}
}
catch (const winrt::hresult_error &ex) {
qWarning() << "Error stopping device watcher:"
<< QString::fromWCharArray(ex.message().c_str());
}
}
#endif
}
#ifdef Q_OS_WIN
void BluetoothA2DPSink::onDeviceAdded(winrt::DeviceWatcher sender, winrt::DeviceInformation device)
{
Q_UNUSED(sender);
QString deviceId = QString::fromWCharArray(device.Id().c_str());
QString deviceName = QString::fromWCharArray(device.Name().c_str());
qDebug() << "Found A2DP device:" << deviceName << "ID:" << deviceId;
// Emit on Qt thread
QMetaObject::invokeMethod(this, [this, deviceId, deviceName]() {
emit deviceDiscovered(deviceId, deviceName);
}, Qt::QueuedConnection);
}
void BluetoothA2DPSink::onDeviceEnumerationCompleted(winrt::DeviceWatcher sender, winrt::IInspectable args)
{
Q_UNUSED(sender);
Q_UNUSED(args);
qDebug() << "Device enumeration completed";
QMetaObject::invokeMethod(this, [this]() {
emit discoveryCompleted();
}, Qt::QueuedConnection);
}
#endif
bool BluetoothA2DPSink::enableSink(const QString &deviceId)
{
#ifdef Q_OS_WIN
if (!m_winrtInitialized) {
emit connectionError("WinRT not initialized");
return false;
}
// Release any existing connection first
releaseConnection();
m_currentDeviceId = deviceId;
qDebug() << "Enabling A2DP sink for device:" << deviceId;
// Convert QString to std::wstring
std::wstring wDeviceId = deviceId.toStdWString();
// Start async operation
enableSinkAsync(wDeviceId);
return true;
#else
emit connectionError("A2DP Sink only supported on Windows 10 2004+");
return false;
#endif
}
#ifdef Q_OS_WIN
winrt::fire_and_forget BluetoothA2DPSink::enableSinkAsync(std::wstring deviceId)
{
try {
qDebug() << "Creating AudioPlaybackConnection...";
// Create the AudioPlaybackConnection for this device
m_connection = AudioPlaybackConnection::TryCreateFromId(deviceId);
if (!m_connection) {
QMetaObject::invokeMethod(this, [this]() {
emit connectionError("Failed to create AudioPlaybackConnection");
}, Qt::QueuedConnection);
co_return;
}
qDebug() << "AudioPlaybackConnection created successfully";
// Register for state change events
m_stateChangedToken = m_connection.StateChanged(
[this](AudioPlaybackConnection sender, winrt::IInspectable args) {
onConnectionStateChanged(sender, args);
}
);
// Start the connection (enables incoming audio)
qDebug() << "Starting AudioPlaybackConnection...";
co_await m_connection.StartAsync();
qDebug() << "AudioPlaybackConnection started successfully";
// Notify on Qt thread
QMetaObject::invokeMethod(this, [this]() {
emit sinkEnabled();
emit stateChanged("Sink Enabled - Ready to Connect");
}, Qt::QueuedConnection);
}
catch (const winrt::hresult_error &ex) {
QString error = QString::fromWCharArray(ex.message().c_str());
qWarning() << "Error enabling sink:" << error;
QMetaObject::invokeMethod(this, [this, error]() {
emit connectionError(error);
}, Qt::QueuedConnection);
}
}
winrt::fire_and_forget BluetoothA2DPSink::openConnectionAsync()
{
try {
if (!m_connection) {
QMetaObject::invokeMethod(this, [this]() {
emit connectionError("No connection to open");
}, Qt::QueuedConnection);
co_return;
}
qDebug() << "Opening audio connection...";
// Open the connection (audio starts flowing)
auto result = co_await m_connection.OpenAsync();
if (result.Status() == AudioPlaybackConnectionOpenResultStatus::Success) {
qDebug() << "Audio connection opened successfully";
m_isStreaming = true;
QMetaObject::invokeMethod(this, [this]() {
emit connectionOpened();
emit stateChanged("Connected - Audio Streaming");
}, Qt::QueuedConnection);
}
else {
QString error = "Failed to open connection: ";
switch (result.Status()) {
case AudioPlaybackConnectionOpenResultStatus::RequestTimedOut:
error += "Request timed out";
break;
case AudioPlaybackConnectionOpenResultStatus::DeniedBySystem:
error += "Denied by system";
break;
case AudioPlaybackConnectionOpenResultStatus::UnknownFailure:
error += "Unknown failure";
break;
default:
error += "Unknown status";
break;
}
qWarning() << error;
QMetaObject::invokeMethod(this, [this, error]() {
emit connectionError(error);
}, Qt::QueuedConnection);
}
}
catch (const winrt::hresult_error &ex) {
QString error = QString::fromWCharArray(ex.message().c_str());
qWarning() << "Error opening connection:" << error;
QMetaObject::invokeMethod(this, [this, error]() {
emit connectionError(error);
}, Qt::QueuedConnection);
}
}
void BluetoothA2DPSink::onConnectionStateChanged(
winrt::AudioPlaybackConnection sender,
winrt::IInspectable args)
{
Q_UNUSED(args);
auto state = sender.State();
QMetaObject::invokeMethod(this, [this, state]() {
QString stateStr;
switch (state) {
case AudioPlaybackConnectionState::Closed:
stateStr = "Closed";
m_isStreaming = false;
emit connectionClosed();
break;
case AudioPlaybackConnectionState::Opened:
stateStr = "Opened";
m_isStreaming = true;
emit connectionOpened();
break;
default:
stateStr = "Unknown";
break;
}
qDebug() << "Connection state changed:" << stateStr;
emit stateChanged(stateStr);
}, Qt::QueuedConnection);
}
#endif
bool BluetoothA2DPSink::openConnection()
{
#ifdef Q_OS_WIN
if (!m_winrtInitialized) {
emit connectionError("WinRT not initialized");
return false;
}
if (!m_connection) {
emit connectionError("Sink not enabled - call enableSink() first");
return false;
}
qDebug() << "Requesting to open connection...";
// Start async operation
openConnectionAsync();
return true;
#else
emit connectionError("A2DP Sink only supported on Windows 10 2004+");
return false;
#endif
}
void BluetoothA2DPSink::releaseConnection()
{
#ifdef Q_OS_WIN
if (m_connection) {
try {
qDebug() << "Releasing A2DP connection...";
// Unregister state changed event
if (m_stateChangedToken.value != 0) {
m_connection.StateChanged(m_stateChangedToken);
m_stateChangedToken = {};
}
// Close if open
if (m_connection.State() == AudioPlaybackConnectionState::Opened) {
m_connection.Close();
}
m_connection = nullptr;
m_isStreaming = false;
emit connectionClosed();
emit stateChanged("Disconnected");
qDebug() << "Connection released successfully";
}
catch (const winrt::hresult_error &ex) {
qWarning() << "Error releasing connection:"
<< QString::fromWCharArray(ex.message().c_str());
}
}
#endif
}
bool BluetoothA2DPSink::isStreaming() const
{
return m_isStreaming;
}
// Media control functions using SendInput
void BluetoothA2DPSink::sendPlayPause()
{
#ifdef Q_OS_WIN
sendMediaKey(VK_MEDIA_PLAY_PAUSE);
qDebug() << "Sent Play/Pause command";
#endif
}
void BluetoothA2DPSink::sendNext()
{
#ifdef Q_OS_WIN
sendMediaKey(VK_MEDIA_NEXT_TRACK);
qDebug() << "Sent Next Track command";
#endif
}
void BluetoothA2DPSink::sendPrevious()
{
#ifdef Q_OS_WIN
sendMediaKey(VK_MEDIA_PREV_TRACK);
qDebug() << "Sent Previous Track command";
#endif
}
void BluetoothA2DPSink::sendStop()
{
#ifdef Q_OS_WIN
sendMediaKey(VK_MEDIA_STOP);
qDebug() << "Sent Stop command";
#endif
}
#ifdef Q_OS_WIN
void BluetoothA2DPSink::sendMediaKey(DWORD vkCode)
{
INPUT inputs[2] = {};
// Key down
inputs[0].type = INPUT_KEYBOARD;
inputs[0].ki.wVk = vkCode;
// Key up
inputs[1].type = INPUT_KEYBOARD;
inputs[1].ki.wVk = vkCode;
inputs[1].ki.dwFlags = KEYEVENTF_KEYUP;
UINT sent = SendInput(2, inputs, sizeof(INPUT));
if (sent != 2) {
qWarning() << "Failed to send media key:" << vkCode
<< "Error:" << GetLastError();
}
}
#endif