WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
203197
Web Inspector: make ObjC protocol dispatcher commands optional and add `respondsToSelector` checks to allow other inspector clients to choose what they implement
https://bugs.webkit.org/show_bug.cgi?id=203197
Summary
Web Inspector: make ObjC protocol dispatcher commands optional and add `respo...
Devin Rousso
Reported
2019-10-21 11:00:06 PDT
This will help eliminate internal build failures, and will also slim down on commands that simply error with "unsupported"
Attachments
Patch
(36.10 KB, patch)
2019-10-21 13:31 PDT
,
Devin Rousso
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Devin Rousso
Comment 1
2019-10-21 13:31:46 PDT
Created
attachment 381438
[details]
Patch
EWS Watchlist
Comment 2
2019-10-21 13:32:22 PDT
This patch modifies the inspector protocol generator. Please ensure that you have rebaselined any generator test results (i.e., by running `Tools/Scripts/run-inspector-generator-tests --reset-results`)
Joseph Pecoraro
Comment 3
2019-10-21 13:37:53 PDT
Comment on
attachment 381438
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=381438&action=review
r=me!
> Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_backend_dispatcher_implementation.py:110 > + def _generate_responds_to_selector_for_command(self, domain, command): > + return '[m_delegate respondsToSelector:@selector(%sWithErrorCallback:successCallback:%s)]' % (command.command_name, ''.join(map(lambda parameter: '%s:' % parameter.parameter_name, command.call_parameters)))
You can probably just simplify this to join parameters with a colon, and add the trailing colon to the respondsToSelector part of the format string.
Devin Rousso
Comment 4
2019-10-21 13:40:48 PDT
Comment on
attachment 381438
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=381438&action=review
>> Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_backend_dispatcher_implementation.py:110 >> + return '[m_delegate respondsToSelector:@selector(%sWithErrorCallback:successCallback:%s)]' % (command.command_name, ''.join(map(lambda parameter: '%s:' % parameter.parameter_name, command.call_parameters))) > > You can probably just simplify this to join parameters with a colon, and add the trailing colon to the respondsToSelector part of the format string.
As we just discussed, we actually don't want to do that because if `command.call_parameters` is empty, we don't want a second trailing colon.
Blaze Burg
Comment 5
2019-10-21 14:19:30 PDT
Comment on
attachment 381438
[details]
Patch r=me !!
WebKit Commit Bot
Comment 6
2019-10-21 16:30:20 PDT
Comment on
attachment 381438
[details]
Patch Clearing flags on attachment: 381438 Committed
r251395
: <
https://trac.webkit.org/changeset/251395
>
WebKit Commit Bot
Comment 7
2019-10-21 16:30:22 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 8
2019-10-21 16:31:16 PDT
<
rdar://problem/56481634
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug