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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_SERVICE_WORKER_CONTROLLER_SERVICE_WORKER_CONNECTOR_H_
#define CONTENT_RENDERER_SERVICE_WORKER_CONTROLLER_SERVICE_WORKER_CONNECTOR_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "base/observer_list.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/common/service_worker/embedded_worker_status.h"
#include "third_party/blink/public/mojom/cache_storage/cache_storage.mojom.h"
#include "third_party/blink/public/mojom/service_worker/controller_service_worker.mojom.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_container.mojom.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_fetch_handler_bypass_option.mojom-shared.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_running_status_callback.mojom.h"
namespace blink {
namespace mojom {
class ServiceWorkerContainerHost;
} // namespace mojom
} // namespace blink
namespace content {
class ServiceWorkerRouterEvaluator;
// Vends a connection to the controller service worker for a given
// ServiceWorkerContainerHost. This is co-owned by
// ServiceWorkerProviderContext::ControlleeState and
// ServiceWorkerSubresourceLoader{,Factory}.
class CONTENT_EXPORT ControllerServiceWorkerConnector
: public blink::mojom::ControllerServiceWorkerConnector,
public blink::mojom::ServiceWorkerRunningStatusCallback,
public base::RefCounted<ControllerServiceWorkerConnector> {
public:
// Observes the connection to the controller.
class Observer {
public:
virtual void OnConnectionClosed() = 0;
};
enum class State {
// The controller connection is dropped. Calling
// GetControllerServiceWorker() in this state will result in trying to
// get the new controller pointer from the browser.
kDisconnected,
// The controller connection is established.
kConnected,
// It is notified that the client lost the controller. This could only
// happen due to an exceptional condition like the service worker could
// no longer be read from the script cache. Calling
// GetControllerServiceWorker() in this state will always return nullptr.
kNoController,
// The container host is shutting down. Calling
// GetControllerServiceWorker() in this state will always return nullptr.
kNoContainerHost,
};
// This class should only be created if a controller exists for the client.
// |remote_controller| may be nullptr if the caller does not yet have a Mojo
// connection to the controller. |state_| is set to kDisconnected in that
// case.
// Creates and holds the ownership of |container_host_| (as |this|
// will be created on a different thread from the thread that has the
// original |remote_container_host|).
ControllerServiceWorkerConnector(
mojo::PendingRemote<blink::mojom::ServiceWorkerContainerHost>
remote_container_host,
mojo::PendingRemote<blink::mojom::ControllerServiceWorker>
remote_controller,
mojo::PendingRemote<blink::mojom::CacheStorage> remote_cache_storage,
const std::string& client_id,
blink::mojom::ServiceWorkerFetchHandlerBypassOption
fetch_handler_bypass_option,
std::optional<blink::ServiceWorkerRouterRules> router_rules,
std::optional<blink::EmbeddedWorkerStatus> initial_running_status,
mojo::PendingReceiver<blink::mojom::ServiceWorkerRunningStatusCallback>
running_status_receiver);
ControllerServiceWorkerConnector(const ControllerServiceWorkerConnector&) =
delete;
ControllerServiceWorkerConnector& operator=(
const ControllerServiceWorkerConnector&) = delete;
// This may return nullptr if the connection to the ContainerHost (in the
// browser process) is already terminated.
blink::mojom::ControllerServiceWorker* GetControllerServiceWorker(
blink::mojom::ControllerServiceWorkerPurpose purpose);
void AddObserver(Observer* observer);
void RemoveObserver(Observer* observer);
void OnContainerHostConnectionClosed();
void OnControllerConnectionClosed();
void EnsureFileAccess(const std::vector<base::FilePath>& file_paths,
base::OnceClosure callback);
void AddBinding(
mojo::PendingReceiver<blink::mojom::ControllerServiceWorkerConnector>
receiver);
// blink::mojom::ControllerServiceWorkerConnector:
void UpdateController(
mojo::PendingRemote<blink::mojom::ControllerServiceWorker> controller)
override;
// blink::mojom::ServiceWorkerRunningStatusCallback:
void OnStatusChanged(blink::EmbeddedWorkerStatus status) override;
State state() const { return state_; }
const std::string& client_id() const { return client_id_; }
blink::mojom::ServiceWorkerFetchHandlerBypassOption
fetch_handler_bypass_option() const {
return fetch_handler_bypass_option_;
}
const ServiceWorkerRouterEvaluator* router_evaluator() const {
return router_evaluator_.get();
}
// Returns recent ServiceWorker's running status.
//
// The ServiceWorkerVersion status change callback will send an IPC to update
// the recent running status here.
blink::EmbeddedWorkerStatus GetRecentRunningStatus();
// Calls the Cache Storage API match if the cache storage is accessible.
// `callback` will be called with `CacheStorageError::kErrorStorage` if the
// cache storage cannot be accessed.
void CallCacheStorageMatch(
std::optional<std::string> cache_name,
blink::mojom::FetchAPIRequestPtr request,
blink::mojom::CacheStorage::MatchCallback callback);
private:
void SetControllerServiceWorker(
mojo::PendingRemote<blink::mojom::ControllerServiceWorker> controller);
State state_ = State::kDisconnected;
friend class base::RefCounted<ControllerServiceWorkerConnector>;
~ControllerServiceWorkerConnector() override;
mojo::ReceiverSet<blink::mojom::ControllerServiceWorkerConnector> receivers_;
// Connection to the container host in the browser process.
mojo::Remote<blink::mojom::ServiceWorkerContainerHost> container_host_;
// Connection to the controller service worker, which lives in a renderer
// process that's not necessarily the same as this connector.
mojo::Remote<blink::mojom::ControllerServiceWorker>
controller_service_worker_;
// Connection to the cache storage.
mojo::Remote<blink::mojom::CacheStorage> cache_storage_;
base::ObserverList<Observer>::Unchecked observer_list_;
// The web-exposed client id, used for FetchEvent#clientId (i.e.,
// ServiceWorkerContainerHost::client_uuid).
std::string client_id_;
blink::mojom::ServiceWorkerFetchHandlerBypassOption
fetch_handler_bypass_option_ =
blink::mojom::ServiceWorkerFetchHandlerBypassOption::kDefault;
std::unique_ptr<ServiceWorkerRouterEvaluator> router_evaluator_;
std::optional<blink::EmbeddedWorkerStatus> running_status_;
mojo::Receiver<blink::mojom::ServiceWorkerRunningStatusCallback>
running_status_receiver_;
};
} // namespace content
#endif // CONTENT_RENDERER_SERVICE_WORKER_CONTROLLER_SERVICE_WORKER_CONNECTOR_H_
|