blob: fa40286e6f39e31290c1951f1bd6e1751471a9c9 [file] [log] [blame]
// Copyright 2016 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_CURSOR_IMPL_H_
#define CONTENT_BROWSER_INDEXED_DB_CURSOR_IMPL_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/sequence_checker.h"
#include "components/services/storage/public/cpp/buckets/bucket_locator.h"
#include "third_party/blink/public/common/indexeddb/indexeddb_key.h"
#include "third_party/blink/public/mojom/indexeddb/indexeddb.mojom.h"
namespace base {
class SequencedTaskRunner;
}
namespace content {
class IndexedDBCursor;
class IndexedDBDispatcherHost;
class CursorImpl : public blink::mojom::IDBCursor {
public:
CursorImpl(std::unique_ptr<IndexedDBCursor> cursor,
const storage::BucketLocator& bucket_locator,
IndexedDBDispatcherHost* dispatcher_host,
scoped_refptr<base::SequencedTaskRunner> idb_runner);
CursorImpl(const CursorImpl&) = delete;
CursorImpl& operator=(const CursorImpl&) = delete;
~CursorImpl() override;
// blink::mojom::IDBCursor implementation
void Advance(uint32_t count,
blink::mojom::IDBCursor::AdvanceCallback callback) override;
void CursorContinue(
const blink::IndexedDBKey& key,
const blink::IndexedDBKey& primary_key,
blink::mojom::IDBCursor::CursorContinueCallback callback) override;
void Prefetch(int32_t count,
blink::mojom::IDBCursor::PrefetchCallback callback) override;
void PrefetchReset(int32_t used_prefetches,
int32_t unused_prefetches) override;
void OnRemoveBinding(base::OnceClosure remove_binding_cb);
private:
// This raw pointer is safe because all CursorImpl instances are owned by an
// IndexedDBDispatcherHost.
raw_ptr<IndexedDBDispatcherHost> dispatcher_host_;
const storage::BucketLocator bucket_locator_;
scoped_refptr<base::SequencedTaskRunner> idb_runner_;
std::unique_ptr<IndexedDBCursor> cursor_;
SEQUENCE_CHECKER(sequence_checker_);
};
} // namespace content
#endif // CONTENT_BROWSER_INDEXED_DB_CURSOR_IMPL_H_