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
|
// Copyright 2015 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_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_
#define CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_
#include <stdint.h>
#include "base/memory/raw_ptr.h"
#include "components/services/storage/public/mojom/cache_storage_control.mojom.h"
#include "content/browser/cache_storage/cache_storage_handle.h"
#include "content/browser/cache_storage/cache_storage_manager.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/unique_associated_receiver_set.h"
#include "mojo/public/cpp/bindings/unique_receiver_set.h"
#include "third_party/blink/public/mojom/cache_storage/cache_storage.mojom.h"
namespace network {
struct CrossOriginEmbedderPolicy;
struct DocumentIsolationPolicy;
}
namespace storage {
struct BucketLocator;
}
namespace content {
class CacheStorageContextImpl;
// Handles Cache Storage related messages sent to the browser process from
// child processes. One host instance exists per child process. Each host
// is bound to the cache_storage scheduler sequence and may not be accessed
// from other sequences.
class CacheStorageDispatcherHost {
public:
CacheStorageDispatcherHost(
CacheStorageContextImpl* context,
scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy);
CacheStorageDispatcherHost(const CacheStorageDispatcherHost&) = delete;
CacheStorageDispatcherHost& operator=(const CacheStorageDispatcherHost&) =
delete;
~CacheStorageDispatcherHost();
// Binds the CacheStorage Mojo receiver to this instance.
// NOTE: The same CacheStorageDispatcherHost instance may be bound to
// different clients on different origins. Each context is kept on
// BindingSet's context. This guarantees that the browser process uses the
// origin of the client known at the binding time, instead of relying on the
// client to provide its origin at every method call.
void AddReceiver(
const network::CrossOriginEmbedderPolicy& cross_origin_embedder_policy,
mojo::PendingRemote<network::mojom::CrossOriginEmbedderPolicyReporter>
coep_reporter,
const network::DocumentIsolationPolicy& document_isolation_policy,
mojo::PendingRemote<network::mojom::DocumentIsolationPolicyReporter>
dip_reporter,
const blink::StorageKey& storage_key,
const std::optional<storage::BucketLocator>& bucket,
storage::mojom::CacheStorageOwner owner,
mojo::PendingReceiver<blink::mojom::CacheStorage> receiver);
base::WeakPtr<CacheStorageDispatcherHost> AsWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
bool WasNotifiedOfBucketDataDeletion(
const storage::BucketLocator& bucket_locator);
void NotifyBucketDataDeleted(const storage::BucketLocator& bucket_locator);
private:
class CacheStorageImpl;
class CacheImpl;
friend class CacheImpl;
void AddCacheReceiver(
std::unique_ptr<CacheImpl> cache_impl,
mojo::PendingAssociatedReceiver<blink::mojom::CacheStorageCache>
receiver);
CacheStorageHandle OpenCacheStorage(
const storage::BucketLocator& bucket_locator,
storage::mojom::CacheStorageOwner owner);
void UpdateOrCreateDefaultBucket(
const blink::StorageKey& storage_key,
base::OnceCallback<void(storage::QuotaErrorOr<storage::BucketInfo>)>
callback);
// `this` is owned by `context_`.
const raw_ptr<CacheStorageContextImpl> context_;
scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy_;
mojo::UniqueReceiverSet<blink::mojom::CacheStorage> receivers_;
mojo::UniqueAssociatedReceiverSet<blink::mojom::CacheStorageCache>
cache_receivers_;
std::set<storage::BucketLocator> deleted_buckets_;
SEQUENCE_CHECKER(sequence_checker_);
base::WeakPtrFactory<CacheStorageDispatcherHost> weak_ptr_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_DISPATCHER_HOST_H_
|