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
|
/*
* Copyright (C) 2010 Google 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 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 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.
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_INDEXEDDB_IDB_DATABASE_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_INDEXEDDB_IDB_DATABASE_H_
#include <memory>
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/public/mojom/indexeddb/indexeddb.mojom-blink.h"
#include "third_party/blink/renderer/bindings/core/v8/active_script_wrappable.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_idb_object_store_parameters.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_idb_transaction_options.h"
#include "third_party/blink/renderer/core/dom/dom_string_list.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_state_observer.h"
#include "third_party/blink/renderer/modules/event_modules.h"
#include "third_party/blink/renderer/modules/event_target_modules.h"
#include "third_party/blink/renderer/modules/indexeddb/idb_metadata.h"
#include "third_party/blink/renderer/modules/indexeddb/idb_object_store.h"
#include "third_party/blink/renderer/modules/indexeddb/idb_transaction.h"
#include "third_party/blink/renderer/modules/indexeddb/indexed_db.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_map.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/mojo/heap_mojo_associated_receiver.h"
#include "third_party/blink/renderer/platform/scheduler/public/frame_or_worker_scheduler.h"
namespace blink {
class ExceptionState;
class ExecutionContext;
class ScriptState;
class V8UnionStringOrStringSequence;
class MODULES_EXPORT IDBDatabase final
: public EventTarget,
public ActiveScriptWrappable<IDBDatabase>,
public ExecutionContextLifecycleStateObserver,
public mojom::blink::IDBDatabaseCallbacks {
DEFINE_WRAPPERTYPEINFO();
public:
IDBDatabase(
ExecutionContext*,
mojo::PendingAssociatedReceiver<mojom::blink::IDBDatabaseCallbacks>
callbacks_receiver,
mojo::PendingAssociatedRemote<mojom::blink::IDBDatabase> pending_database,
int scheduling_priority);
void Trace(Visitor*) const override;
// Overwrites the database metadata, including object store and index
// metadata. Used to pass metadata to the database when it is opened.
void SetMetadata(const IDBDatabaseMetadata&);
// Overwrites the database's own metadata, but does not change object store
// and index metadata. Used to revert the database's metadata when a
// versionchage transaction is aborted.
void SetDatabaseMetadata(const IDBDatabaseMetadata&);
void TransactionCreated(IDBTransaction*);
// If `transaction` is an upgrade transaction, verifies that it is the same as
// `version_change_transaction_` and clears that member. Called in both abort
// and commit paths.
void TransactionWillFinish(const IDBTransaction* transaction);
// This will be called after the transaction's final event dispatch.
void TransactionFinished(const IDBTransaction*);
// Implement the IDL
const String& name() const { return metadata_.name; }
uint64_t version() const { return metadata_.version; }
DOMStringList* objectStoreNames() const;
IDBObjectStore* createObjectStore(const String& name,
const IDBObjectStoreParameters* options,
ExceptionState& exception_state) {
return createObjectStore(name, IDBKeyPath(options->keyPath()),
options->autoIncrement(), exception_state);
}
IDBTransaction* transaction(ScriptState* script_state,
const V8UnionStringOrStringSequence* store_names,
const V8IDBTransactionMode& mode,
const IDBTransactionOptions* options,
ExceptionState& exception_state);
void deleteObjectStore(const String& name, ExceptionState&);
void close();
DEFINE_ATTRIBUTE_EVENT_LISTENER(abort, kAbort)
DEFINE_ATTRIBUTE_EVENT_LISTENER(close, kClose)
DEFINE_ATTRIBUTE_EVENT_LISTENER(error, kError)
DEFINE_ATTRIBUTE_EVENT_LISTENER(versionchange, kVersionchange)
// mojom::blink::IDBDatabaseCallbacks:
void ForcedClose() override;
void VersionChange(int64_t old_version, int64_t new_version) override;
void Abort(int64_t transaction_id,
mojom::blink::IDBException code,
const WTF::String& message) override;
void Complete(int64_t transaction_id) override;
// ScriptWrappable
bool HasPendingActivity() const final;
// ExecutionContextLifecycleStateObserver
void ContextDestroyed() override;
void ContextEnteredBackForwardCache() override;
void ContextLifecycleStateChanged(
mojom::blink::FrameLifecycleState state) override;
// EventTarget
const AtomicString& InterfaceName() const override;
ExecutionContext* GetExecutionContext() const override;
bool IsClosePending() const { return close_pending_; }
const IDBDatabaseMetadata& Metadata() const { return metadata_; }
int64_t FindObjectStoreId(const String& name) const;
bool ContainsObjectStore(const String& name) const {
return FindObjectStoreId(name) != IDBObjectStoreMetadata::kInvalidId;
}
void RenameObjectStore(int64_t store_id, const String& new_name);
void RevertObjectStoreCreation(int64_t object_store_id);
void RevertObjectStoreMetadata(
scoped_refptr<IDBObjectStoreMetadata> old_metadata);
static int64_t NextTransactionId();
static const char kIndexDeletedErrorMessage[];
static const char kIndexNameTakenErrorMessage[];
static const char kIsKeyCursorErrorMessage[];
static const char kNoKeyOrKeyRangeErrorMessage[];
static const char kNoSuchIndexErrorMessage[];
static const char kNoSuchObjectStoreErrorMessage[];
static const char kNoValueErrorMessage[];
static const char kNotValidKeyErrorMessage[];
static const char kNotVersionChangeTransactionErrorMessage[];
static const char kObjectStoreDeletedErrorMessage[];
static const char kObjectStoreNameTakenErrorMessage[];
static const char kRequestNotFinishedErrorMessage[];
static const char kSourceDeletedErrorMessage[];
static const char kTransactionFinishedErrorMessage[];
static const char kTransactionInactiveErrorMessage[];
static const char kTransactionReadOnlyErrorMessage[];
static const char kDatabaseClosedErrorMessage[];
static const int64_t kMinimumIndexId = 30;
void RenameObjectStore(int64_t transaction_id,
int64_t object_store_id,
const String& new_name) {
database_remote_->RenameObjectStore(transaction_id, object_store_id,
new_name);
}
void CreateTransaction(mojo::PendingAssociatedReceiver<
mojom::blink::IDBTransaction> transaction_receiver,
int64_t transaction_id,
const Vector<int64_t>& object_store_ids,
mojom::blink::IDBTransactionMode mode,
mojom::blink::IDBTransactionDurability durability) {
database_remote_->CreateTransaction(std::move(transaction_receiver),
transaction_id, object_store_ids, mode,
durability);
}
void VersionChangeIgnored() { database_remote_->VersionChangeIgnored(); }
void Get(
int64_t transaction_id,
int64_t object_store_id,
int64_t index_id,
const IDBKeyRange*,
bool key_only,
base::OnceCallback<void(mojom::blink::IDBDatabaseGetResultPtr)> result);
void GetAll(int64_t transaction_id,
int64_t object_store_id,
int64_t index_id,
const IDBKeyRange*,
mojom::blink::IDBGetAllResultType result_type,
int64_t max_count,
mojom::blink::IDBCursorDirection direction,
IDBRequest*);
void SetIndexKeys(int64_t transaction_id,
int64_t object_store_id,
std::unique_ptr<IDBKey> primary_key,
Vector<IDBIndexKeys>);
void SetIndexesReady(int64_t transaction_id,
int64_t object_store_id,
const Vector<int64_t>& index_ids);
void OpenCursor(int64_t object_store_id,
int64_t index_id,
const IDBKeyRange*,
mojom::blink::IDBCursorDirection direction,
bool key_only,
mojom::blink::IDBTaskType,
IDBRequest*);
void Count(int64_t transaction_id,
int64_t object_store_id,
int64_t index_id,
const IDBKeyRange*,
mojom::blink::IDBDatabase::CountCallback callback);
void Delete(int64_t transaction_id,
int64_t object_store_id,
const IDBKey* primary_key,
mojom::blink::IDBDatabase::DeleteRangeCallback callback);
void DeleteRange(int64_t transaction_id,
int64_t object_store_id,
const IDBKeyRange*,
mojom::blink::IDBDatabase::DeleteRangeCallback callback);
void GetKeyGeneratorCurrentNumber(
int64_t transaction_id,
int64_t object_store_id,
mojom::blink::IDBDatabase::GetKeyGeneratorCurrentNumberCallback callback);
void Clear(int64_t transaction_id,
int64_t object_store_id,
mojom::blink::IDBDatabase::ClearCallback callback);
void CreateIndex(int64_t transaction_id,
int64_t object_store_id,
int64_t index_id,
const String& name,
const IDBKeyPath&,
bool unique,
bool multi_entry);
void DeleteIndex(int64_t transaction_id,
int64_t object_store_id,
int64_t index_id);
void RenameIndex(int64_t transaction_id,
int64_t object_store_id,
int64_t index_id,
const String& new_name);
void Abort(int64_t transaction_id);
void DidBecomeInactive() { database_remote_->DidBecomeInactive(); }
bool IsConnectionOpen() const;
int scheduling_priority() const { return scheduling_priority_; }
// Converts a lifecycle state to a priority integer. Lower values represent
// higher priority.
//
// A note on the input type: the scheduling lifecycle state is used as an
// imperfect proxy for the general priority of the frame. Its primary
// advantage is that it is synchronously accessible during the flow of
// creating a transaction. In contrast, the concept of priority in the
// browser's `PerformanceManager` would require asynchronous lookup from IDB
// backend code (which runs on a threadpool), which would add latency to
// transaction processing. The scheduler's lifecycle state may be slightly out
// of date if there are in-flight IPC from the browser, but:
//
// * prioritization is somewhat heuristic anyway
// * nothing should break if the priority is occasionally misjudged.
// * `scheduler_observer_` should eventually pick up and forward updates.
static int GetSchedulingPriority(
scheduler::SchedulingLifecycleState lifecycle_state);
protected:
// EventTarget
DispatchEventResult DispatchEventInternal(Event&) override;
private:
IDBObjectStore* createObjectStore(const String& name,
const IDBKeyPath&,
bool auto_increment,
ExceptionState&);
void CloseConnection();
void OnSchedulerLifecycleStateChanged(
scheduler::SchedulingLifecycleState lifecycle_state);
IDBDatabaseMetadata metadata_;
HeapMojoAssociatedRemote<mojom::blink::IDBDatabase> database_remote_;
Member<IDBTransaction> version_change_transaction_;
HeapHashMap<int64_t, Member<IDBTransaction>> transactions_;
bool close_pending_ = false;
// See notes above `GetSchedulingPriority`.
int scheduling_priority_;
std::unique_ptr<FrameOrWorkerScheduler::LifecycleObserverHandle>
scheduler_observer_;
HeapMojoAssociatedReceiver<mojom::blink::IDBDatabaseCallbacks, IDBDatabase>
callbacks_receiver_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_INDEXEDDB_IDB_DATABASE_H_
|