1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
|
/*
* Copyright (C) 2017-2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "WebSWServerToContextConnection.h"
#include "FormDataReference.h"
#include "Logging.h"
#include "MessageSenderInlines.h"
#include "NetworkConnectionToWebProcess.h"
#include "NetworkProcess.h"
#include "NetworkProcessProxyMessages.h"
#include "NetworkSession.h"
#include "ServiceWorkerFetchTask.h"
#include "ServiceWorkerFetchTaskMessages.h"
#include "WebSWContextManagerConnectionMessages.h"
#include "WebSWServerConnection.h"
#include <WebCore/NotificationData.h>
#include <WebCore/NotificationPayload.h>
#include <WebCore/SWServer.h>
#include <WebCore/SWServerWorker.h>
#include <WebCore/ServiceWorkerContextData.h>
#include <wtf/TZoneMallocInlines.h>
namespace WebKit {
using namespace WebCore;
#define MESSAGE_CHECK(assertion) MESSAGE_CHECK_BASE(assertion, *ipcConnection())
WTF_MAKE_TZONE_ALLOCATED_IMPL(WebSWServerToContextConnection);
Ref<WebSWServerToContextConnection> WebSWServerToContextConnection::create(NetworkConnectionToWebProcess& connection, WebPageProxyIdentifier webPageProxyID, Site&& registrableDomain, std::optional<WebCore::ScriptExecutionContextIdentifier> serviceWorkerPageIdentifier, WebCore::SWServer& server)
{
Ref contextConnection = adoptRef(*new WebSWServerToContextConnection(connection, webPageProxyID, WTFMove(registrableDomain), serviceWorkerPageIdentifier, server));
server.addContextConnection(contextConnection.get());
return contextConnection;
}
WebSWServerToContextConnection::WebSWServerToContextConnection(NetworkConnectionToWebProcess& connection, WebPageProxyIdentifier webPageProxyID, Site&& site, std::optional<ScriptExecutionContextIdentifier> serviceWorkerPageIdentifier, SWServer& server)
: SWServerToContextConnection(server, WTFMove(site), serviceWorkerPageIdentifier)
, m_webProcessIdentifier(connection.webProcessIdentifier())
, m_connection(connection)
, m_webPageProxyID(webPageProxyID)
{
}
WebSWServerToContextConnection::~WebSWServerToContextConnection()
{
ASSERT(m_ongoingFetches.isEmpty());
ASSERT(m_ongoingDownloads.isEmpty());
}
template<typename T>
void WebSWServerToContextConnection::sendToParentProcess(T&& message)
{
protectedNetworkProcess()->protectedParentProcessConnection()->send(WTFMove(message), 0);
}
template<typename T, typename C>
void WebSWServerToContextConnection::sendWithAsyncReplyToParentProcess(T&& message, C&& callback)
{
protectedNetworkProcess()->protectedParentProcessConnection()->sendWithAsyncReply(WTFMove(message), WTFMove(callback), 0);
}
void WebSWServerToContextConnection::stop()
{
auto fetches = WTFMove(m_ongoingFetches);
for (auto& weakPtr : fetches.values()) {
if (RefPtr fetch = weakPtr.get())
fetch->contextClosed();
}
auto downloads = WTFMove(m_ongoingDownloads);
for (auto& weakPtr : downloads.values()) {
if (RefPtr download = weakPtr.get())
download->contextClosed();
}
if (RefPtr server = this->server(); server && server->contextConnectionForRegistrableDomain(registrableDomain()) == this)
server->removeContextConnection(*this);
}
void WebSWServerToContextConnection::terminateIdleServiceWorkers()
{
if (RefPtr server = this->server(); server && server->contextConnectionForRegistrableDomain(registrableDomain()) == this)
server->terminateIdleServiceWorkers(*this);
}
RefPtr<NetworkConnectionToWebProcess> WebSWServerToContextConnection::protectedConnection() const
{
return m_connection.get();
}
NetworkProcess* WebSWServerToContextConnection::networkProcess()
{
return m_connection ? &m_connection->networkProcess() : nullptr;
}
RefPtr<NetworkProcess> WebSWServerToContextConnection::protectedNetworkProcess()
{
return networkProcess();
}
RefPtr<IPC::Connection> WebSWServerToContextConnection::protectedIPCConnection() const
{
return ipcConnection();
}
IPC::Connection* WebSWServerToContextConnection::ipcConnection() const
{
return m_connection ? &m_connection->connection() : nullptr;
}
IPC::Connection* WebSWServerToContextConnection::messageSenderConnection() const
{
return ipcConnection();
}
uint64_t WebSWServerToContextConnection::messageSenderDestinationID() const
{
return 0;
}
void WebSWServerToContextConnection::postMessageToServiceWorkerClient(const ScriptExecutionContextIdentifier& destinationIdentifier, const MessageWithMessagePorts& message, ServiceWorkerIdentifier sourceIdentifier, const String& sourceOrigin)
{
RefPtr server = this->server();
if (RefPtr connection = server ? server->connection(destinationIdentifier.processIdentifier()) : nullptr)
connection->postMessageToServiceWorkerClient(destinationIdentifier, message, sourceIdentifier, sourceOrigin);
}
void WebSWServerToContextConnection::skipWaiting(ServiceWorkerIdentifier serviceWorkerIdentifier, CompletionHandler<void()>&& callback)
{
if (RefPtr worker = SWServerWorker::existingWorkerForIdentifier(serviceWorkerIdentifier)) {
MESSAGE_CHECK(worker->isTerminating() || worker->registration());
worker->skipWaiting();
}
callback();
}
void WebSWServerToContextConnection::installServiceWorkerContext(const ServiceWorkerContextData& contextData, const ServiceWorkerData& workerData, const String& userAgent, WorkerThreadMode workerThreadMode, OptionSet<AdvancedPrivacyProtections> advancedPrivacyProtections)
{
send(Messages::WebSWContextManagerConnection::InstallServiceWorker { contextData, workerData, userAgent, workerThreadMode, m_isInspectable, advancedPrivacyProtections });
}
void WebSWServerToContextConnection::updateAppInitiatedValue(ServiceWorkerIdentifier serviceWorkerIdentifier, WebCore::LastNavigationWasAppInitiated lastNavigationWasAppInitiated)
{
send(Messages::WebSWContextManagerConnection::UpdateAppInitiatedValue(serviceWorkerIdentifier, lastNavigationWasAppInitiated));
}
void WebSWServerToContextConnection::fireInstallEvent(ServiceWorkerIdentifier serviceWorkerIdentifier)
{
send(Messages::WebSWContextManagerConnection::FireInstallEvent(serviceWorkerIdentifier));
}
void WebSWServerToContextConnection::fireActivateEvent(ServiceWorkerIdentifier serviceWorkerIdentifier)
{
send(Messages::WebSWContextManagerConnection::FireActivateEvent(serviceWorkerIdentifier));
}
void WebSWServerToContextConnection::firePushEvent(ServiceWorkerIdentifier serviceWorkerIdentifier, const std::optional<Vector<uint8_t>>& data, std::optional<NotificationPayload>&& proposedPayload, CompletionHandler<void(bool, std::optional<NotificationPayload>&&)>&& callback)
{
if (!m_processingFunctionalEventCount++)
sendToParentProcess(Messages::NetworkProcessProxy::StartServiceWorkerBackgroundProcessing { webProcessIdentifier() });
std::optional<std::span<const uint8_t>> ipcData;
if (data)
ipcData = data->span();
sendWithAsyncReply(Messages::WebSWContextManagerConnection::FirePushEvent(serviceWorkerIdentifier, ipcData, WTFMove(proposedPayload)), [weakThis = WeakPtr { *this }, callback = WTFMove(callback)](bool wasProcessed, std::optional<NotificationPayload>&& resultPayload) mutable {
if (RefPtr protectedThis = weakThis.get(); protectedThis && !--protectedThis->m_processingFunctionalEventCount)
protectedThis->sendToParentProcess(Messages::NetworkProcessProxy::EndServiceWorkerBackgroundProcessing { protectedThis->webProcessIdentifier() });
callback(wasProcessed, WTFMove(resultPayload));
});
}
void WebSWServerToContextConnection::fireNotificationEvent(ServiceWorkerIdentifier serviceWorkerIdentifier, const NotificationData& data, NotificationEventType eventType, CompletionHandler<void(bool)>&& callback)
{
if (!m_processingFunctionalEventCount++)
sendToParentProcess(Messages::NetworkProcessProxy::StartServiceWorkerBackgroundProcessing { webProcessIdentifier() });
sendWithAsyncReply(Messages::WebSWContextManagerConnection::FireNotificationEvent { serviceWorkerIdentifier, data, eventType }, [weakThis = WeakPtr { *this }, eventType, callback = WTFMove(callback)](bool wasProcessed) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !protectedThis->m_connection)
return callback(wasProcessed);
if (!--protectedThis->m_processingFunctionalEventCount)
protectedThis->sendToParentProcess(Messages::NetworkProcessProxy::EndServiceWorkerBackgroundProcessing { protectedThis->webProcessIdentifier() });
CheckedPtr session = protectedThis->protectedConnection()->networkSession();
if (auto* resourceLoadStatistics = session ? session->resourceLoadStatistics() : nullptr; resourceLoadStatistics && wasProcessed && eventType == NotificationEventType::Click) {
return resourceLoadStatistics->setMostRecentWebPushInteractionTime(RegistrableDomain(protectedThis->registrableDomain()), [callback = WTFMove(callback), wasProcessed] () mutable {
callback(wasProcessed);
});
}
callback(wasProcessed);
});
}
void WebSWServerToContextConnection::fireBackgroundFetchEvent(ServiceWorkerIdentifier serviceWorkerIdentifier, const BackgroundFetchInformation& info, CompletionHandler<void(bool)>&& callback)
{
if (!m_processingFunctionalEventCount++)
sendToParentProcess(Messages::NetworkProcessProxy::StartServiceWorkerBackgroundProcessing { webProcessIdentifier() });
sendWithAsyncReply(Messages::WebSWContextManagerConnection::FireBackgroundFetchEvent { serviceWorkerIdentifier, info }, [weakThis = WeakPtr { *this }, callback = WTFMove(callback)](bool wasProcessed) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return callback(wasProcessed);
if (!--protectedThis->m_processingFunctionalEventCount)
protectedThis->sendToParentProcess(Messages::NetworkProcessProxy::EndServiceWorkerBackgroundProcessing { protectedThis->webProcessIdentifier() });
callback(wasProcessed);
});
}
void WebSWServerToContextConnection::fireBackgroundFetchClickEvent(ServiceWorkerIdentifier serviceWorkerIdentifier, const BackgroundFetchInformation& info, CompletionHandler<void(bool)>&& callback)
{
if (!m_processingFunctionalEventCount++)
sendToParentProcess(Messages::NetworkProcessProxy::StartServiceWorkerBackgroundProcessing { webProcessIdentifier() });
sendWithAsyncReply(Messages::WebSWContextManagerConnection::FireBackgroundFetchClickEvent { serviceWorkerIdentifier, info }, [weakThis = WeakPtr { *this }, callback = WTFMove(callback)](bool wasProcessed) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis)
return callback(wasProcessed);
if (!--protectedThis->m_processingFunctionalEventCount)
protectedThis->sendToParentProcess(Messages::NetworkProcessProxy::EndServiceWorkerBackgroundProcessing { protectedThis->webProcessIdentifier() });
callback(wasProcessed);
});
}
void WebSWServerToContextConnection::terminateWorker(ServiceWorkerIdentifier serviceWorkerIdentifier)
{
if (!m_processingFunctionalEventCount++)
protectedConnection()->protectedNetworkProcess()->protectedParentProcessConnection()->send(Messages::NetworkProcessProxy::StartServiceWorkerBackgroundProcessing { webProcessIdentifier() }, 0);
send(Messages::WebSWContextManagerConnection::TerminateWorker(serviceWorkerIdentifier));
}
void WebSWServerToContextConnection::workerTerminated(ServiceWorkerIdentifier serviceWorkerIdentifier)
{
SWServerToContextConnection::workerTerminated(serviceWorkerIdentifier);
if (--m_processingFunctionalEventCount)
protectedConnection()->protectedNetworkProcess()->protectedParentProcessConnection()->send(Messages::NetworkProcessProxy::EndServiceWorkerBackgroundProcessing { webProcessIdentifier() }, 0);
}
void WebSWServerToContextConnection::didFinishActivation(WebCore::ServiceWorkerIdentifier serviceWorkerIdentifier)
{
RefPtr worker = SWServerWorker::existingWorkerForIdentifier(serviceWorkerIdentifier);
if (!worker)
return;
auto state = worker->state();
if (state == ServiceWorkerState::Redundant)
return;
MESSAGE_CHECK(state == ServiceWorkerState::Activating);
SWServerToContextConnection::didFinishActivation(serviceWorkerIdentifier);
}
void WebSWServerToContextConnection::didFinishInstall(const std::optional<WebCore::ServiceWorkerJobDataIdentifier>& jobDataIdentifier, WebCore::ServiceWorkerIdentifier serviceWorkerIdentifier, bool wasSuccessful)
{
RefPtr worker = SWServerWorker::existingWorkerForIdentifier(serviceWorkerIdentifier);
if (!worker)
return;
auto state = worker->state();
if (state == ServiceWorkerState::Redundant)
return;
MESSAGE_CHECK(state == ServiceWorkerState::Installing);
SWServerToContextConnection::didFinishInstall(jobDataIdentifier, serviceWorkerIdentifier, wasSuccessful);
}
void WebSWServerToContextConnection::didSaveScriptsToDisk(ServiceWorkerIdentifier serviceWorkerIdentifier, const ScriptBuffer& script, const MemoryCompactRobinHoodHashMap<URL, ScriptBuffer>& importedScripts)
{
#if ENABLE(SHAREABLE_RESOURCE) && PLATFORM(COCOA)
// Send file-mapped ScriptBuffers over to the ServiceWorker process so that it can replace its heap-allocated copies and save on dirty memory.
auto scriptToSend = script.containsSingleFileMappedSegment() ? script : ScriptBuffer();
HashMap<URL, ScriptBuffer> importedScriptsToSend;
for (auto& pair : importedScripts) {
if (pair.value.containsSingleFileMappedSegment())
importedScriptsToSend.add(pair.key, pair.value);
}
if (scriptToSend || !importedScriptsToSend.isEmpty())
send(Messages::WebSWContextManagerConnection::DidSaveScriptsToDisk { serviceWorkerIdentifier, scriptToSend, importedScriptsToSend });
#else
UNUSED_PARAM(script);
UNUSED_PARAM(importedScripts);
#endif
}
void WebSWServerToContextConnection::terminateDueToUnresponsiveness()
{
protectedConnection()->terminateSWContextConnectionDueToUnresponsiveness();
}
void WebSWServerToContextConnection::openWindow(WebCore::ServiceWorkerIdentifier identifier, const URL& url, OpenWindowCallback&& callback)
{
RefPtr server = this->server();
if (!server) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "No SWServer"_s }));
return;
}
RefPtr worker = server->workerByID(identifier);
if (!worker) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "No remaining service worker"_s }));
return;
}
auto innerCallback = [callback = WTFMove(callback), weakServer = WeakPtr { *server }, origin = worker->origin()](std::optional<WebCore::PageIdentifier>&& pageIdentifier) mutable {
if (!pageIdentifier) {
// FIXME: validate whether we should reject or resolve with null, https://github.com/w3c/ServiceWorker/issues/1639
callback({ });
return;
}
RefPtr server = weakServer.get();
if (!server) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "No SWServer"_s }));
return;
}
callback(server->topLevelServiceWorkerClientFromPageIdentifier(origin, *pageIdentifier));
};
sendWithAsyncReplyToParentProcess(Messages::NetworkProcessProxy::OpenWindowFromServiceWorker { m_connection->sessionID(), url.string(), worker->origin().clientOrigin }, WTFMove(innerCallback));
}
void WebSWServerToContextConnection::reportConsoleMessage(WebCore::ServiceWorkerIdentifier serviceWorkerIdentifier, MessageSource source, MessageLevel level, const String& message, unsigned long requestIdentifier)
{
RefPtr server = this->server();
RefPtr worker = server ? server->workerByID(serviceWorkerIdentifier) : nullptr;
if (!worker)
return;
sendToParentProcess(Messages::NetworkProcessProxy::ReportConsoleMessage { m_connection->sessionID(), worker->scriptURL(), worker->origin().clientOrigin, source, level, message, requestIdentifier });
}
void WebSWServerToContextConnection::connectionIsNoLongerNeeded()
{
if (RefPtr connection = m_connection.get())
connection->serviceWorkerServerToContextConnectionNoLongerNeeded();
}
void WebSWServerToContextConnection::setThrottleState(bool isThrottleable)
{
m_isThrottleable = isThrottleable;
send(Messages::WebSWContextManagerConnection::SetThrottleState { isThrottleable });
}
void WebSWServerToContextConnection::startFetch(ServiceWorkerFetchTask& task)
{
task.start(*this);
}
void WebSWServerToContextConnection::didReceiveFetchTaskMessage(IPC::Connection& connection, IPC::Decoder& decoder)
{
MESSAGE_CHECK(ObjectIdentifier<FetchIdentifierType>::isValidIdentifier(decoder.destinationID()));
RefPtr fetch = m_ongoingFetches.get(ObjectIdentifier<FetchIdentifierType>(decoder.destinationID())).get();
if (!fetch)
return;
fetch->didReceiveMessage(connection, decoder);
}
void WebSWServerToContextConnection::registerFetch(ServiceWorkerFetchTask& task)
{
ASSERT(!m_ongoingFetches.contains(task.fetchIdentifier()));
m_ongoingFetches.add(task.fetchIdentifier(), task);
}
void WebSWServerToContextConnection::unregisterFetch(ServiceWorkerFetchTask& task)
{
ASSERT(m_ongoingFetches.contains(task.fetchIdentifier()));
m_ongoingFetches.remove(task.fetchIdentifier());
}
void WebSWServerToContextConnection::registerDownload(ServiceWorkerDownloadTask& task)
{
ASSERT(!m_ongoingDownloads.contains(task.fetchIdentifier()));
m_ongoingDownloads.add(task.fetchIdentifier(), task);
}
void WebSWServerToContextConnection::unregisterDownload(ServiceWorkerDownloadTask& task)
{
m_ongoingDownloads.remove(task.fetchIdentifier());
}
void WebSWServerToContextConnection::focus(ScriptExecutionContextIdentifier clientIdentifier, CompletionHandler<void(std::optional<WebCore::ServiceWorkerClientData>&&)>&& callback)
{
RefPtr server = this->server();
RefPtr connection = server ? server->connection(clientIdentifier.processIdentifier()) : nullptr;
if (!connection) {
callback({ });
return;
}
connection->focusServiceWorkerClient(clientIdentifier, WTFMove(callback));
}
void WebSWServerToContextConnection::navigate(ScriptExecutionContextIdentifier clientIdentifier, ServiceWorkerIdentifier serviceWorkerIdentifier, const URL& url, CompletionHandler<void(Expected<std::optional<ServiceWorkerClientData>, ExceptionData>&&)>&& callback)
{
RefPtr worker = SWServerWorker::existingWorkerForIdentifier(serviceWorkerIdentifier);
if (!worker) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "no service worker"_s }));
return;
}
if (!worker->isClientActiveServiceWorker(clientIdentifier)) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "service worker is not the client active service worker"_s }));
return;
}
auto data = worker->findClientByIdentifier(clientIdentifier);
if (!data || !data->pageIdentifier || !data->frameIdentifier) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "cannot navigate service worker client"_s }));
return;
}
auto frameIdentifier = *data->frameIdentifier;
sendWithAsyncReplyToParentProcess(Messages::NetworkProcessProxy::NavigateServiceWorkerClient { frameIdentifier, clientIdentifier, url }, [weakThis = WeakPtr { *this }, url, clientOrigin = worker->origin(), callback = WTFMove(callback)](auto pageIdentifier, auto frameIdentifier) mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis || !protectedThis->server()) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "service worker is gone"_s }));
return;
}
if (!pageIdentifier || !frameIdentifier) {
callback(makeUnexpected(ExceptionData { ExceptionCode::TypeError, "navigate failed"_s }));
return;
}
std::optional<ServiceWorkerClientData> clientData;
protectedThis->server()->forEachClientForOrigin(clientOrigin, [pageIdentifier, frameIdentifier, url, &clientData](auto& data) {
if (!clientData && data.pageIdentifier && *data.pageIdentifier == *pageIdentifier && data.frameIdentifier && *data.frameIdentifier == *frameIdentifier && equalIgnoringFragmentIdentifier(data.url, url))
clientData = data;
});
callback(WTFMove(clientData));
});
}
void WebSWServerToContextConnection::setInspectable(ServiceWorkerIsInspectable inspectable)
{
if (m_isInspectable == inspectable)
return;
m_isInspectable = inspectable;
send(Messages::WebSWContextManagerConnection::SetInspectable { inspectable });
}
#undef MESSAGE_CHECK
} // namespace WebKit
|