WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
231008
Add support for ServiceWorkerGlobalScope push event handler
https://bugs.webkit.org/show_bug.cgi?id=231008
Summary
Add support for ServiceWorkerGlobalScope push event handler
youenn fablet
Reported
2021-09-30 00:46:26 PDT
Add support for ServiceWorkerGlobalScope push event handler
Attachments
Patch
(26.76 KB, patch)
2021-09-30 02:46 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
Patch
(30.34 KB, patch)
2021-10-01 01:59 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
Patch for landing
(30.31 KB, patch)
2021-10-02 03:45 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Thomas Steiner
Comment 1
2021-09-30 02:12:29 PDT
***
Bug 182566
has been marked as a duplicate of this bug. ***
youenn fablet
Comment 2
2021-09-30 02:46:13 PDT
Created
attachment 439712
[details]
Patch
Radar WebKit Bug Importer
Comment 3
2021-09-30 02:46:57 PDT
<
rdar://problem/83710760
>
Alex Christensen
Comment 4
2021-09-30 08:35:41 PDT
Comment on
attachment 439712
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=439712&action=review
> Source/WebCore/workers/service/context/ServiceWorkerThreadProxy.cpp:305 > + if (m_ongoingPushTasks.isEmpty())
It seems like we might be able to get away with just storing the number of ongoing tasks in a size_t instead of a HashMap of the CompletionHandlers.
youenn fablet
Comment 5
2021-10-01 01:59:38 PDT
Created
attachment 439833
[details]
Patch
Chris Dumez
Comment 6
2021-10-01 14:33:54 PDT
Comment on
attachment 439833
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=439833&action=review
r=me with fixes.
> Source/WebCore/testing/ServiceWorkerInternals.cpp:60 > +void ServiceWorkerInternals::schedulePushEvent(const std::optional<String>& message, RefPtr<DeferredPromise>&& promise)
We never use std::optional<String> because String already has a null state (different than empty string). The generated bindings code will pass you a null string if the parameter was omitted in JS, not std::nullopt, so this is wrong.
> Source/WebCore/testing/ServiceWorkerInternals.cpp:66 > + if (message) {
if (!message.isNull())
> Source/WebCore/workers/service/context/ServiceWorkerThread.cpp:220 > + RELEASE_LOG(ServiceWorker, "ServiceWorkerThread::queueTaskToFirePushEvent firing event for worker %llu", serviceWorkerGlobalScope->thread().identifier().toUInt64());
PRIu64 not %llu
> Source/WebCore/workers/service/context/ServiceWorkerThreadProxy.cpp:311 > + callOnMainRunLoop([this, protectedThis = WTFMove(protectedThis), identifier, result]() mutable {
We're in WebCore so we should use callOnMainThread() or postTaskToLoader(). ServiceWorkers are WebKit2 only but I remember we used to get tasks out of order by mixing callOnMainThread and callOnMainRunLoop (not sure if this is still the case nowadays).
youenn fablet
Comment 7
2021-10-02 03:45:00 PDT
Created
attachment 439961
[details]
Patch for landing
EWS
Comment 8
2021-10-02 04:57:55 PDT
Committed
r283438
(
242425@main
): <
https://commits.webkit.org/242425@main
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 439961
[details]
.
collimarco91
Comment 9
2021-10-02 05:30:24 PDT
"Status: RESOLVED FIXED" ... Does this mean that Web Push Notifications will be finally available in Safari?
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