WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
108952
[Qt][WK2] Replace use of WebPreferences with use of WKPrefences C API
https://bugs.webkit.org/show_bug.cgi?id=108952
Summary
[Qt][WK2] Replace use of WebPreferences with use of WKPrefences C API
Michael Brüning
Reported
2013-02-05 09:43:49 PST
Most of this is used in QWebPreferences and QQuickWebView*...
Attachments
Patch
(24.51 KB, patch)
2013-02-06 08:50 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(24.70 KB, patch)
2013-02-07 06:56 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(24.79 KB, patch)
2013-02-07 07:34 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(16.85 KB, patch)
2013-02-08 03:06 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(16.29 KB, patch)
2013-02-08 03:28 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(18.79 KB, patch)
2013-02-08 07:08 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(19.03 KB, patch)
2013-02-11 08:44 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(19.04 KB, patch)
2013-02-11 09:36 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(20.70 KB, patch)
2013-02-27 02:52 PST
,
Michael Brüning
no flags
Details
Formatted Diff
Diff
Patch
(20.62 KB, patch)
2013-02-27 03:33 PST
,
Michael Brüning
hausmann
: review+
Details
Formatted Diff
Diff
Show Obsolete
(9)
View All
Add attachment
proposed patch, testcase, etc.
Michael Brüning
Comment 1
2013-02-06 08:50:04 PST
Created
attachment 186865
[details]
Patch
Caio Marcelo de Oliveira Filho
Comment 2
2013-02-07 05:39:35 PST
Comment on
attachment 186865
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=186865&action=review
I have a couple of comments. Would "int(x)" syntax work as good as "static_cast<int>(x)" but with less noise?
> Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:187 > + WKPreferencesSetStandardFontFamily(preferencesRef(), WKStringCreateWithQString(family));
I think these WKStringRefs leaking here and below.
Michael Brüning
Comment 3
2013-02-07 06:49:43 PST
(In reply to
comment #2
)
> (From update of
attachment 186865
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=186865&action=review
Thanks for the comments, Caio!
> > I have a couple of comments. > > Would "int(x)" syntax work as good as "static_cast<int>(x)" but with less noise?
I'd rather not use the function-style cast since it is not explicitly defined which cast type will be used and static_cast does not have this ambiguity.
> > > Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:187 > > + WKPreferencesSetStandardFontFamily(preferencesRef(), WKStringCreateWithQString(family)); > > I think these WKStringRefs leaking here and below.
True, good catch, thanks :).
Michael Brüning
Comment 4
2013-02-07 06:56:15 PST
Created
attachment 187098
[details]
Patch
Early Warning System Bot
Comment 5
2013-02-07 07:18:47 PST
Comment on
attachment 187098
[details]
Patch
Attachment 187098
[details]
did not pass qt-wk2-ews (qt): Output:
http://queues.webkit.org/results/16430185
Michael Brüning
Comment 6
2013-02-07 07:34:51 PST
Created
attachment 187107
[details]
Patch Fixed leaks by using adoptWK(xyz).get().
Caio Marcelo de Oliveira Filho
Comment 7
2013-02-07 07:40:54 PST
LGTM. To add those WK2 C APIs you need feedback from Apple developers.
Michael Brüning
Comment 8
2013-02-07 08:48:31 PST
Dear Benjamin, could I ask you to please have a look once again?
Benjamin Poulain
Comment 9
2013-02-07 14:25:59 PST
Can you please split the patch in two. One using the existing APIs, and create a second bug for the new C APIs? The change from WebKit::WebPreferences to WKPreferencesRef is great. I can review that quickly for all the existing APIs. Adding the API is against our goal of diminishing the current mess. I'll have to look carefully at that part and possibly ask it to be Qt specific.
Michael Brüning
Comment 10
2013-02-08 03:06:40 PST
Created
attachment 187275
[details]
Patch
Michael Brüning
Comment 11
2013-02-08 03:28:47 PST
Created
attachment 187279
[details]
Patch
Simon Hausmann
Comment 12
2013-02-08 03:50:45 PST
Comment on
attachment 187107
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=187107&action=review
> Source/WebKit2/UIProcess/API/C/WKPreferences.h:242 > +// Defaults to false. > +WK_EXPORT bool WKPreferencesGetForceCompositingMode(WKPreferencesRef preferencesRef); > +WK_EXPORT void WKPreferencesSetForceCompositingMode(WKPreferencesRef preferencesRef, bool enabled); > + > +// Defaults to false. > +WK_EXPORT bool WKPreferencesGetScrollAnimatorEnabled(WKPreferencesRef preferencesRef); > +WK_EXPORT void WKPreferencesSetScrollAnimatorEnabled(WKPreferencesRef preferencesRef, bool enabled); > +
Let's just not expose these in the "QML" preferences API and then we also don't need them here at all.
> Source/WebKit2/UIProcess/API/C/WKPreferences.h:253 > +WK_EXPORT uint32_t WKPreferencesGetLayoutFallbackWidth(WKPreferencesRef preferencesRef); > +WK_EXPORT void WKPreferencesSetLayoutFallbackWidth(WKPreferencesRef preferencesRef, uint32_t width); > + > +// Defaults to 0. > +WK_EXPORT uint32_t WKPreferencesGetDeviceWidth(WKPreferencesRef preferencesRef); > +WK_EXPORT void WKPreferencesSetDeviceWidth(WKPreferencesRef preferencesRef, uint32_t width); > + > +// Defaults to 0. > +WK_EXPORT uint32_t WKPreferencesGetDeviceHeight(WKPreferencesRef preferencesRef); > +WK_EXPORT void WKPreferencesSetDeviceHeight(WKPreferencesRef preferencesRef, uint32_t height);
We might not need those public either if instead it's just the view that uses them (the rawwebview in the current design).
Michael Brüning
Comment 13
2013-02-08 05:37:41 PST
(In reply to
comment #12
)
> (From update of
attachment 187107
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=187107&action=review
> > > +// Defaults to false. > > +WK_EXPORT bool WKPreferencesGetScrollAnimatorEnabled(WKPreferencesRef preferencesRef); > > +WK_EXPORT void WKPreferencesSetScrollAnimatorEnabled(WKPreferencesRef preferencesRef, bool enabled); > > +
At least this one is currently exposed to QWebPreferences - should we remove it then?
> > Let's just not expose these in the "QML" preferences API and then we also don't need them here at all. > > > Source/WebKit2/UIProcess/API/C/WKPreferences.h:253 > > +WK_EXPORT uint32_t WKPreferencesGetLayoutFallbackWidth(WKPreferencesRef preferencesRef); > > +WK_EXPORT void WKPreferencesSetLayoutFallbackWidth(WKPreferencesRef preferencesRef, uint32_t width); > > + > > +// Defaults to 0. > > +WK_EXPORT uint32_t WKPreferencesGetDeviceWidth(WKPreferencesRef preferencesRef); > > +WK_EXPORT void WKPreferencesSetDeviceWidth(WKPreferencesRef preferencesRef, uint32_t width); > > + > > +// Defaults to 0. > > +WK_EXPORT uint32_t WKPreferencesGetDeviceHeight(WKPreferencesRef preferencesRef); > > +WK_EXPORT void WKPreferencesSetDeviceHeight(WKPreferencesRef preferencesRef, uint32_t height); > > We might not need those public either if instead it's just the view that uses them (the rawwebview in the current design).
True, they are only used by the view afaics. So let's leave them for now and see what we do with them as part of the move to QRawWebView.
Kenneth Rohde Christiansen
Comment 14
2013-02-08 05:42:41 PST
Comment on
attachment 187107
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=187107&action=review
> Source/WebKit2/UIProcess/API/C/WKPreferences.cpp:1040 > +void WKPreferencesSetForceCompositingMode(WKPreferencesRef preferencesRef, bool enabled) > +{ > + toImpl(preferencesRef)->setForceCompositingMode(enabled); > +}
These are not generic settings, thus we should not add C API for them. Instead these could either be set when you construct your view or as part of your view API. I would prefer the former. It is basically the same for all these settings you are exposing here. They are either view related or not something you would want to expose to a app developer.
Michael Brüning
Comment 15
2013-02-08 07:08:32 PST
Created
attachment 187314
[details]
Patch
Kenneth Rohde Christiansen
Comment 16
2013-02-11 06:30:28 PST
Comment on
attachment 187314
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=187314&action=review
> Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:48 > { > switch (attr) { > case AutoLoadImages: > - return preferences()->loadsImagesAutomatically(); > + return WKPreferencesGetLoadsImagesAutomatically(preferencesRef()); > #if ENABLE(FULLSCREEN_API) > case FullScreenEnabled: > - return preferences()->fullScreenEnabled(); > + return WKPreferencesGetFullScreenEnabled(preferencesRef()); > #endif > case JavascriptEnabled:
Why don't you not just get the preferencesRef once? then I guess you could avoid that weird getter
Michael Brüning
Comment 17
2013-02-11 07:29:08 PST
(In reply to
comment #16
)
> (From update of
attachment 187314
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=187314&action=review
> > > Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:48 > > { > > switch (attr) { > > case AutoLoadImages: > > - return preferences()->loadsImagesAutomatically(); > > + return WKPreferencesGetLoadsImagesAutomatically(preferencesRef()); > > #if ENABLE(FULLSCREEN_API) > > case FullScreenEnabled: > > - return preferences()->fullScreenEnabled(); > > + return WKPreferencesGetFullScreenEnabled(preferencesRef()); > > #endif > > case JavascriptEnabled: > > Why don't you not just get the preferencesRef once? then I guess you could avoid that weird getter
Could you please elaborate why this getter is "weird"? It is how the preferences reference was retrieved before we moved to the C++ API and changed the getter to the return a WebPreferences pointer. I can change it of course and save a little bit in the binary, I just would like to understand if there is anything else that I have overlooked. Or did you mean saving the preferences reference in a member variable? I would rather not do that as the C API offers a way to set another preferences object as well.
Michael Brüning
Comment 18
2013-02-11 08:44:09 PST
Created
attachment 187581
[details]
Patch
Kenneth Rohde Christiansen
Comment 19
2013-02-11 08:46:12 PST
Comment on
attachment 187581
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=187581&action=review
I lot nicer
> Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:573 > -WebKit::WebPreferences* QWebPreferencesPrivate::preferences() const > +WKPreferencesRef QWebPreferencesPrivate::getPreferencesRef() const > { > - return webViewPrivate->webPageProxy->pageGroup()->preferences(); > + return WKPageGroupGetPreferences(WKPageGetPageGroup(webViewPrivate->webPage.get()));
you still really need this? If you need it outside of this class, isnt it better using it direclty?
Michael Brüning
Comment 20
2013-02-11 09:23:35 PST
(In reply to
comment #19
)
> (From update of
attachment 187581
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=187581&action=review
> > I lot nicer > > > Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:573 > > -WebKit::WebPreferences* QWebPreferencesPrivate::preferences() const > > +WKPreferencesRef QWebPreferencesPrivate::getPreferencesRef() const > > { > > - return webViewPrivate->webPageProxy->pageGroup()->preferences(); > > + return WKPageGroupGetPreferences(WKPageGetPageGroup(webViewPrivate->webPage.get())); > > you still really need this? > > If you need it outside of this class, isnt it better using it direclty?
Okay, now I see your point. Why didn't you mention that you wanted to use the pageGroup directly ? :)
Michael Brüning
Comment 21
2013-02-11 09:36:34 PST
Created
attachment 187598
[details]
Patch
Allan Sandfeld Jensen
Comment 22
2013-02-12 06:52:19 PST
Looks good to me. Though if ScrollAnimator is removed as a preference, I personally think we should change it to default enabled to match the other WK2 ports. We have it special cased in WebPreferenceStore.h.
Simon Hausmann
Comment 23
2013-02-12 07:06:08 PST
Comment on
attachment 187598
[details]
Patch LGTM. Benjamin, can you sign off on this? :)
Simon Hausmann
Comment 24
2013-02-20 07:02:17 PST
Ping, seeking sign-off from WK2 owners :). This is a fairly straight-forward port from internal preferences to WKPreferences usage.
Simon Hausmann
Comment 25
2013-02-27 01:01:00 PST
WK2-sign-off-ping :)
Benjamin Poulain
Comment 26
2013-02-27 01:15:54 PST
Comment on
attachment 187598
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=187598&action=review
I sign off on this, feel free to review for WK2.
> Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:197 > + WKPreferencesRef preferencesRef = WKPageGroupGetPreferences(webViewPrivate->pageGroup.get()); > switch (which) { > case StandardFont: > - preferences()->setStandardFontFamily(family); > + WKPreferencesSetStandardFontFamily(preferencesRef, adoptWK(WKStringCreateWithQString(family)).get()); > break; > case FixedFont: > - preferences()->setFixedFontFamily(family); > + WKPreferencesSetFixedFontFamily(preferencesRef, adoptWK(WKStringCreateWithQString(family)).get()); > break; > case SerifFont: > - preferences()->setSerifFontFamily(family); > + WKPreferencesSetSerifFontFamily(preferencesRef, adoptWK(WKStringCreateWithQString(family)).get()); > break; > case SansSerifFont: > - preferences()->setSansSerifFontFamily(family); > + WKPreferencesSetSansSerifFontFamily(preferencesRef, adoptWK(WKStringCreateWithQString(family)).get()); > break; > case CursiveFont: > - preferences()->setCursiveFontFamily(family); > + WKPreferencesSetCursiveFontFamily(preferencesRef, adoptWK(WKStringCreateWithQString(family)).get()); > break; > case FantasyFont: > - preferences()->setFantasyFontFamily(family); > + WKPreferencesSetFantasyFontFamily(preferencesRef, adoptWK(WKStringCreateWithQString(family)).get());
Please move adoptWK(WKStringCreateWithQString(family)) above the switch. Something like: WKRetain<WKStringRef> familyRef = adoptWK(WKStringCreateWithQString(family).
> Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp:209 > - return preferences()->standardFontFamily(); > + return WKStringCopyQString(adoptWK(WKPreferencesCopyStandardFontFamily(preferencesRef)).get());
A new function adoptToQString(WKStringRef) would be useful here: return adoptToQString(WKPreferencesCopyStandardFontFamily(preferencesRef))
Michael Brüning
Comment 27
2013-02-27 02:52:02 PST
Created
attachment 190479
[details]
Patch Added the adoptToQString method Benjamin suggested.
Michael Brüning
Comment 28
2013-02-27 03:33:12 PST
Created
attachment 190484
[details]
Patch Moved adoptToQString into the WebKit namespace.
Michael Brüning
Comment 29
2013-02-27 03:42:46 PST
Committed
r144165
: <
http://trac.webkit.org/changeset/144165
>
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