RESOLVED FIXED 109827
[Qt][WK2] Keep the WebContext alive during the whole application's lifetime
https://bugs.webkit.org/show_bug.cgi?id=109827
Summary [Qt][WK2] Keep the WebContext alive during the whole application's lifetime
Jocelyn Turcotte
Reported 2013-02-14 06:55:19 PST
[Qt][WK2] Keep the WebContext alive during the whole application's lifetime
Attachments
Patch (12.51 KB, patch)
2013-02-14 07:00 PST, Jocelyn Turcotte
hausmann: review+
Jocelyn Turcotte
Comment 1 2013-02-14 07:00:58 PST
Simon Hausmann
Comment 2 2013-02-20 06:58:32 PST
Comment on attachment 188341 [details] Patch Patch looks good to me. Benjamin, can you sign off on this patch? Thank you :)
Simon Hausmann
Comment 3 2013-02-27 01:00:00 PST
WK2-sign-off-ping :)
Benjamin Poulain
Comment 4 2013-02-27 12:45:20 PST
Comment on attachment 188341 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=188341&action=review I have no problem with this landing. Why do you have issues with the lifetime of WebContext? Is it because you want to keep a global shared Context? > Source/WebKit2/UIProcess/qt/QtWebContext.cpp:123 > QtWebContext::~QtWebContext() > { > - ASSERT(!s_defaultQtWebContext || s_defaultQtWebContext == this); > - s_defaultQtWebContext = 0; > } Can't you remove the destructor entirely? > Source/WebKit2/UIProcess/qt/QtWebContext.cpp:135 > + RefPtr<WebContext> webContext = WebContext::create(String()); WKContextCreate?
Jocelyn Turcotte
Comment 5 2013-02-28 01:36:22 PST
(In reply to comment #4) > Why do you have issues with the lifetime of WebContext? Is it because you want to keep a global shared Context? The main issue I had was when trying to open/close the IconDatabase quickly in tests. IconDatabase::dispatchDidFinishURLImportOnMainThread would post a callback on the main thread, but by the time it's run there the object would be deleted already. Since it uses a temporary work item object with no reference elsewhere I can't fix it by calling cancelCallOnMainThread. On top of that, internal references are kept to the WebContext by WebProcessProxies, which only release it after their web process terminated, 60 seconds after the last page closed. To keep it that way I would also need some callback in the C API to know when all internal references have been dropped to know when I can destroy my wrapper objects. So for the moment it's simpler and more reliable to keep it alive. > > > Source/WebKit2/UIProcess/qt/QtWebContext.cpp:123 > > QtWebContext::~QtWebContext() > > { > > - ASSERT(!s_defaultQtWebContext || s_defaultQtWebContext == this); > > - s_defaultQtWebContext = 0; > > } > > Can't you remove the destructor entirely? Yes I might as well. > > > Source/WebKit2/UIProcess/qt/QtWebContext.cpp:135 > > + RefPtr<WebContext> webContext = WebContext::create(String()); > > WKContextCreate? It's done later in bug 108475. Thanks!
Jocelyn Turcotte
Comment 6 2013-03-12 04:14:49 PDT
Note You need to log in before you can comment on or make changes to this bug.