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
|
// Copyright 2013 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_INDEXED_DB_INSTANCE_CURSOR_H_
#define CONTENT_BROWSER_INDEXED_DB_INSTANCE_CURSOR_H_
#include <stdint.h>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/browser/indexed_db/instance/backing_store.h"
#include "content/browser/indexed_db/instance/database.h"
#include "content/browser/indexed_db/instance/transaction.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_associated_remote.h"
#include "third_party/blink/public/mojom/indexeddb/indexeddb.mojom-forward.h"
namespace storage {
struct BucketLocator;
} // namespace storage
namespace content::indexed_db {
enum class CursorType { kKeyAndValue = 0, kKeyOnly = 1 };
class Cursor : public blink::mojom::IDBCursor {
public:
// Creates a new self-owned instance and binds to `pending_remote`.
static Cursor* CreateAndBind(
std::unique_ptr<BackingStore::Cursor> cursor,
indexed_db::CursorType cursor_type,
blink::mojom::IDBTaskType task_type,
base::WeakPtr<Transaction> transaction,
mojo::PendingAssociatedRemote<blink::mojom::IDBCursor>& pending_remote);
~Cursor() override;
Cursor(const Cursor&) = delete;
Cursor& operator=(const Cursor&) = delete;
// blink::mojom::IDBCursor implementation
void Advance(uint32_t count,
blink::mojom::IDBCursor::AdvanceCallback callback) override;
void Continue(blink::IndexedDBKey key,
blink::IndexedDBKey primary_key,
blink::mojom::IDBCursor::ContinueCallback callback) override;
void Prefetch(int32_t count,
blink::mojom::IDBCursor::PrefetchCallback callback) override;
void PrefetchReset(int32_t used_prefetches) override;
const blink::IndexedDBKey& key() const { return cursor_->GetKey(); }
const blink::IndexedDBKey& primary_key() const {
return cursor_->GetPrimaryKey();
}
IndexedDBValue* Value() const {
return (cursor_type_ == indexed_db::CursorType::kKeyOnly)
? nullptr
: &cursor_->GetValue();
}
void Close();
private:
Cursor(std::unique_ptr<BackingStore::Cursor> cursor,
indexed_db::CursorType cursor_type,
blink::mojom::IDBTaskType task_type,
base::WeakPtr<Transaction> transaction);
Status ContinueOperation(blink::IndexedDBKey key,
blink::IndexedDBKey primary_key,
blink::mojom::IDBCursor::ContinueCallback callback,
Transaction* transaction);
Status AdvanceOperation(uint32_t count,
blink::mojom::IDBCursor::AdvanceCallback callback,
Transaction* transaction);
Status PrefetchIterationOperation(
int number_to_fetch,
blink::mojom::IDBCursor::PrefetchCallback callback,
Transaction* transaction);
const storage::BucketLocator bucket_locator_;
blink::mojom::IDBTaskType task_type_;
indexed_db::CursorType cursor_type_;
// We rely on the transaction calling Close() to clear this.
base::WeakPtr<Transaction> transaction_;
// Must be destroyed before transaction_.
std::unique_ptr<BackingStore::Cursor> cursor_;
// Must be destroyed before transaction_.
std::unique_ptr<BackingStore::Cursor> saved_cursor_;
bool closed_ = false;
mojo::AssociatedReceiver<blink::mojom::IDBCursor> receiver_{this};
base::WeakPtrFactory<Cursor> ptr_factory_{this};
};
} // namespace content::indexed_db
#endif // CONTENT_BROWSER_INDEXED_DB_INSTANCE_CURSOR_H_
|