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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/dom_storage/session_storage_namespace_impl.h"
#include <utility>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "components/services/storage/public/mojom/session_storage_control.mojom.h"
#include "content/browser/dom_storage/dom_storage_context_wrapper.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "third_party/blink/public/common/dom_storage/session_storage_namespace_id.h"
#include "third_party/blink/public/common/features.h"
namespace content {
// static
scoped_refptr<SessionStorageNamespaceImpl> SessionStorageNamespaceImpl::Create(
scoped_refptr<DOMStorageContextWrapper> context) {
return SessionStorageNamespaceImpl::Create(
std::move(context), blink::AllocateSessionStorageNamespaceId());
}
// static
scoped_refptr<SessionStorageNamespaceImpl> SessionStorageNamespaceImpl::Create(
scoped_refptr<DOMStorageContextWrapper> context,
std::string namespace_id) {
scoped_refptr<SessionStorageNamespaceImpl> existing =
context->MaybeGetExistingNamespace(namespace_id);
if (existing)
return existing;
auto result = base::WrapRefCounted(
new SessionStorageNamespaceImpl(context, std::move(namespace_id)));
result->context_wrapper_->GetSessionStorageControl()->CreateNamespace(
result->namespace_id_);
return result;
}
// static
scoped_refptr<SessionStorageNamespaceImpl>
SessionStorageNamespaceImpl::CloneFrom(
scoped_refptr<DOMStorageContextWrapper> context,
std::string namespace_id,
const std::string& namespace_id_to_clone,
bool immediately) {
auto result = base::WrapRefCounted(
new SessionStorageNamespaceImpl(context, std::move(namespace_id)));
result->context_wrapper_->GetSessionStorageControl()->CloneNamespace(
namespace_id_to_clone, result->namespace_id_,
immediately
? storage::mojom::SessionStorageCloneType::kImmediate
: storage::mojom::SessionStorageCloneType::kWaitForCloneOnNamespace);
return result;
}
const std::string& SessionStorageNamespaceImpl::id() {
return namespace_id_;
}
void SessionStorageNamespaceImpl::SetShouldPersist(bool should_persist) {
should_persist_ = should_persist;
}
bool SessionStorageNamespaceImpl::should_persist() {
return should_persist_;
}
scoped_refptr<SessionStorageNamespaceImpl>
SessionStorageNamespaceImpl::Clone() {
return CloneFrom(context_wrapper_, blink::AllocateSessionStorageNamespaceId(),
namespace_id_, true);
}
bool SessionStorageNamespaceImpl::IsFromContext(
DOMStorageContextWrapper* context) {
return context_wrapper_.get() == context;
}
SessionStorageNamespaceImpl::SessionStorageNamespaceImpl(
scoped_refptr<DOMStorageContextWrapper> context,
std::string namespace_id)
: context_wrapper_(std::move(context)),
namespace_id_(std::move(namespace_id)),
should_persist_(false) {
context_wrapper_->AddNamespace(namespace_id_, this);
}
SessionStorageNamespaceImpl::~SessionStorageNamespaceImpl() {
context_wrapper_->RemoveNamespace(namespace_id_);
// We must hop the the UI thread, as the context_wrapper_ can only be
// accessed on that thread.
base::ScopedClosureRunner deleteNamespaceRunner =
base::ScopedClosureRunner(base::BindOnce(
&SessionStorageNamespaceImpl::DeleteSessionNamespaceFromUIThread,
std::move(context_wrapper_), std::move(namespace_id_),
should_persist_));
if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
// If this fails to post then that's fine, as the mojo state should
// already be destructed.
GetUIThreadTaskRunner({})->PostTask(FROM_HERE,
deleteNamespaceRunner.Release());
}
}
// static
void SessionStorageNamespaceImpl::DeleteSessionNamespaceFromUIThread(
scoped_refptr<DOMStorageContextWrapper> context_wrapper,
std::string namespace_id,
bool should_persist) {
storage::mojom::SessionStorageControl* session_storage =
context_wrapper->GetSessionStorageControl();
if (session_storage)
session_storage->DeleteNamespace(namespace_id, should_persist);
}
} // namespace content
|