REOPENED 171403
Add audio device change notifications to AudioSession.
https://bugs.webkit.org/show_bug.cgi?id=171403
Summary Add audio device change notifications to AudioSession.
Jer Noble
Reported 2017-04-27 16:19:44 PDT
Add audio device change notifications to AudioSession.
Attachments
Patch (32.50 KB, patch)
2017-04-28 08:33 PDT, Jer Noble
no flags
Patch (22.55 KB, patch)
2017-04-28 08:34 PDT, Jer Noble
no flags
Patch (25.05 KB, patch)
2017-04-28 08:45 PDT, Jer Noble
no flags
Patch (29.44 KB, patch)
2017-04-28 09:03 PDT, Jer Noble
no flags
Archive of layout-test-results from ews101 for mac-elcapitan (502.72 KB, application/zip)
2017-04-28 10:14 PDT, Build Bot
no flags
Archive of layout-test-results from ews104 for mac-elcapitan-wk2 (540.10 KB, application/zip)
2017-04-28 10:16 PDT, Build Bot
no flags
Archive of layout-test-results from ews117 for mac-elcapitan (835.76 KB, application/zip)
2017-04-28 10:22 PDT, Build Bot
no flags
Patch (39.48 KB, patch)
2017-04-28 12:05 PDT, Jer Noble
no flags
Patch (29.78 KB, patch)
2017-05-01 12:19 PDT, Jer Noble
no flags
Jer Noble
Comment 1 2017-04-28 08:33:37 PDT
Jer Noble
Comment 2 2017-04-28 08:34:36 PDT
Jer Noble
Comment 3 2017-04-28 08:45:46 PDT
Jer Noble
Comment 4 2017-04-28 09:03:53 PDT
Eric Carlson
Comment 5 2017-04-28 09:18:37 PDT
Comment on attachment 308534 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308534&action=review > Source/WebCore/platform/audio/AudioSession.h:52 > + virtual void audioInputDeviceChanged() { }; > + virtual void audioOutputDeviceChanged() { }; Nit: these don't tell the observer which device changed, just that the list of devices changed, so I think "Device" should be pluralized. > Source/WebCore/platform/audio/mac/AudioSessionMac.mmSource/WebCore/platform/audio/mac/AudioSessionMac.cpp:87 > + AudioObjectAddPropertyListenerBlock(defaultDevice(), &outputDeviceAddress, dispatch_get_main_queue(), m_private->outputDeviceChangedBlock); Why do this in the destructor? > Source/WebCore/platform/audio/mac/AudioSessionMac.mmSource/WebCore/platform/audio/mac/AudioSessionMac.cpp:279 > + m_private->lastMutedState = isCurrentlyMuted; Nit: this should probably be done before calling observers in case an observer does something that causes this to be called recursively.
Jer Noble
Comment 6 2017-04-28 09:59:42 PDT
(In reply to Eric Carlson from comment #5) > Comment on attachment 308534 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=308534&action=review > > > Source/WebCore/platform/audio/AudioSession.h:52 > > + virtual void audioInputDeviceChanged() { }; > > + virtual void audioOutputDeviceChanged() { }; > > Nit: these don't tell the observer which device changed, just that the list > of devices changed, so I think "Device" should be pluralized. Well, it's a notification that the "current" device changed. So maybe I'll change it to say that. > > Source/WebCore/platform/audio/mac/AudioSessionMac.mmSource/WebCore/platform/audio/mac/AudioSessionMac.cpp:87 > > + AudioObjectAddPropertyListenerBlock(defaultDevice(), &outputDeviceAddress, dispatch_get_main_queue(), m_private->outputDeviceChangedBlock); > > Why do this in the destructor? Because it's supposed to be AudioObject_Remove_PropertyListenerBlock. :-/ > > Source/WebCore/platform/audio/mac/AudioSessionMac.mmSource/WebCore/platform/audio/mac/AudioSessionMac.cpp:279 > > + m_private->lastMutedState = isCurrentlyMuted; > > Nit: this should probably be done before calling observers in case an > observer does something that causes this to be called recursively. Ok.
Build Bot
Comment 7 2017-04-28 10:14:19 PDT
Comment on attachment 308535 [details] Patch Attachment 308535 [details] did not pass mac-ews (mac): Output: http://webkit-queues.webkit.org/results/3627250 Number of test failures exceeded the failure limit.
Build Bot
Comment 8 2017-04-28 10:14:20 PDT
Created attachment 308547 [details] Archive of layout-test-results from ews101 for mac-elcapitan The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews101 Port: mac-elcapitan Platform: Mac OS X 10.11.6
Build Bot
Comment 9 2017-04-28 10:16:35 PDT
Comment on attachment 308535 [details] Patch Attachment 308535 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.webkit.org/results/3627253 Number of test failures exceeded the failure limit.
Build Bot
Comment 10 2017-04-28 10:16:36 PDT
Created attachment 308548 [details] Archive of layout-test-results from ews104 for mac-elcapitan-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-elcapitan-wk2 Platform: Mac OS X 10.11.6
Build Bot
Comment 11 2017-04-28 10:22:32 PDT
Comment on attachment 308535 [details] Patch Attachment 308535 [details] did not pass mac-debug-ews (mac): Output: http://webkit-queues.webkit.org/results/3627254 Number of test failures exceeded the failure limit.
Build Bot
Comment 12 2017-04-28 10:22:34 PDT
Created attachment 308550 [details] Archive of layout-test-results from ews117 for mac-elcapitan The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews117 Port: mac-elcapitan Platform: Mac OS X 10.11.6
Jer Noble
Comment 13 2017-04-28 12:05:39 PDT
Build Bot
Comment 14 2017-04-28 12:07:17 PDT
Attachment 308565 [details] did not pass style-queue: ERROR: Source/WebCore/platform/audio/mac/AudioSessionMac.mm:74: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/audio/mac/AudioSessionMac.mm:269: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/audio/mac/AudioSessionMac.mm:282: Place brace on its own line for function definitions. [whitespace/braces] [4] Total errors found: 3 in 8 files If any of these errors are false positives, please file a bug against check-webkit-style.
Jer Noble
Comment 15 2017-05-01 12:19:28 PDT
Build Bot
Comment 16 2017-05-01 12:21:46 PDT
Attachment 308745 [details] did not pass style-queue: ERROR: Source/WebCore/platform/audio/mac/AudioSessionMac.mm:74: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/audio/mac/AudioSessionMac.mm:269: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebCore/platform/audio/mac/AudioSessionMac.mm:282: Place brace on its own line for function definitions. [whitespace/braces] [4] Total errors found: 3 in 8 files If any of these errors are false positives, please file a bug against check-webkit-style.
Eric Carlson
Comment 17 2017-05-01 12:38:21 PDT
Comment on attachment 308745 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308745&action=review > Source/WebCore/platform/audio/mac/AudioSessionMac.mmSource/WebCore/platform/audio/mac/AudioSessionMac.cpp:266 > + if (m_private->observers.size() > 1) > return; Why "m_private->observers.size() > 1", should it be " > 0"?
Jer Noble
Comment 18 2017-05-01 12:39:46 PDT
Comment on attachment 308745 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308745&action=review >> Source/WebCore/platform/audio/mac/AudioSessionMac.mmSource/WebCore/platform/audio/mac/AudioSessionMac.cpp:266 >> return; > > Why "m_private->observers.size() > 1", should it be " > 0"? Whoops! Good catch.
Jer Noble
Comment 19 2017-05-01 13:02:13 PDT
(In reply to Jer Noble from comment #18) > Comment on attachment 308745 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=308745&action=review > > >> Source/WebCore/platform/audio/mac/AudioSessionMac.mmSource/WebCore/platform/audio/mac/AudioSessionMac.cpp:266 > >> return; > > > > Why "m_private->observers.size() > 1", should it be " > 0"? > > Whoops! Good catch. Wait, no, this is correct. We should bail out if we've already registered as an observer, so this should happen on the 0 -> 1 boundary. Hence early return if > 1
WebKit Commit Bot
Comment 20 2017-05-01 14:06:42 PDT
Comment on attachment 308745 [details] Patch Clearing flags on attachment: 308745 Committed r216024: <http://trac.webkit.org/changeset/216024>
WebKit Commit Bot
Comment 21 2017-05-01 14:06:44 PDT
All reviewed patches have been landed. Closing bug.
Ryan Haddad
Comment 22 2017-05-01 17:29:29 PDT
This change caused LayoutTests to exit early on ios-simulator due to assertion failures: ASSERTION FAILED: m_private->notificationCallbacks.isEmpty() /Volumes/Data/slave/ios-simulator-10-debug/build/Source/WebCore/platform/audio/ios/AudioSessionIOS.mm(238) : void WebCore::AudioSession::addObserver(WebCore::AudioSession::Observer &) https://build.webkit.org/builders/Apple%20iOS%2010%20Simulator%20Debug%20WK2%20%28Tests%29/builds/1007
Ryan Haddad
Comment 23 2017-05-01 18:07:49 PDT
Reverted r216024 for reason: This change caused ios-simulator LayoutTests to exit early with assertion failures. Committed r216050: <http://trac.webkit.org/changeset/216050>
Note You need to log in before you can comment on or make changes to this bug.