Bitcoin ABC 0.30.5
P2P Digital Currency
sqlite.h
Go to the documentation of this file.
1// Copyright (c) 2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_WALLET_SQLITE_H
6#define BITCOIN_WALLET_SQLITE_H
7
8#include <wallet/db.h>
9
10#include <sqlite3.h>
11
12struct bilingual_str;
13class SQLiteDatabase;
14
16class SQLiteBatch : public DatabaseBatch {
17private:
19
20 bool m_cursor_init = false;
21
22 sqlite3_stmt *m_read_stmt{nullptr};
23 sqlite3_stmt *m_insert_stmt{nullptr};
24 sqlite3_stmt *m_overwrite_stmt{nullptr};
25 sqlite3_stmt *m_delete_stmt{nullptr};
26 sqlite3_stmt *m_cursor_stmt{nullptr};
27
28 void SetupSQLStatements();
29
30 bool ReadKey(CDataStream &&key, CDataStream &value) override;
31 bool WriteKey(CDataStream &&key, CDataStream &&value,
32 bool overwrite = true) override;
33 bool EraseKey(CDataStream &&key) override;
34 bool HasKey(CDataStream &&key) override;
35
36public:
37 explicit SQLiteBatch(SQLiteDatabase &database);
38 ~SQLiteBatch() override { Close(); }
39
41 void Flush() override {}
42
43 void Close() override;
44
45 bool StartCursor() override;
46 bool ReadAtCursor(CDataStream &key, CDataStream &value,
47 bool &complete) override;
48 void CloseCursor() override;
49 bool TxnBegin() override;
50 bool TxnCommit() override;
51 bool TxnAbort() override;
52};
53
56private:
57 const bool m_mock{false};
58
59 const std::string m_dir_path;
60
61 const std::string m_file_path;
62
63 void Cleanup() noexcept;
64
65public:
66 SQLiteDatabase() = delete;
67
69 SQLiteDatabase(const fs::path &dir_path, const fs::path &file_path,
70 bool mock = false);
71
73
75
77 void Open() override;
78
80 void Close() override;
81
82 /* These functions are unused */
83 void AddRef() override { assert(false); }
84 void RemoveRef() override { assert(false); }
85
87 bool Rewrite(const char *skip = nullptr) override;
88
90 bool Backup(const std::string &dest) const override;
91
102 void Flush() override {}
103 bool PeriodicFlush() override { return false; }
104 void ReloadDbEnv() override {}
105
107
108 std::string Filename() override { return m_file_path; }
109
111 std::unique_ptr<DatabaseBatch>
112 MakeBatch(bool flush_on_close = true) override;
113
114 sqlite3 *m_db{nullptr};
115};
116
117bool ExistsSQLiteDatabase(const fs::path &path);
118std::unique_ptr<SQLiteDatabase>
119MakeSQLiteDatabase(const fs::path &path, const DatabaseOptions &options,
121
122std::string SQLiteDatabaseVersion();
123
124#endif // BITCOIN_WALLET_SQLITE_H
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:177
RAII class that provides access to a WalletDatabase.
Definition: db.h:24
RAII class that provides access to a WalletDatabase.
Definition: sqlite.h:16
bool WriteKey(CDataStream &&key, CDataStream &&value, bool overwrite=true) override
Definition: sqlite.cpp:428
sqlite3_stmt * m_read_stmt
Definition: sqlite.h:22
bool TxnAbort() override
Definition: sqlite.cpp:590
bool m_cursor_init
Definition: sqlite.h:20
sqlite3_stmt * m_cursor_stmt
Definition: sqlite.h:26
void SetupSQLStatements()
Definition: sqlite.cpp:69
bool HasKey(CDataStream &&key) override
Definition: sqlite.cpp:500
sqlite3_stmt * m_insert_stmt
Definition: sqlite.h:23
sqlite3_stmt * m_overwrite_stmt
Definition: sqlite.h:24
bool StartCursor() override
Definition: sqlite.cpp:522
bool EraseKey(CDataStream &&key) override
Definition: sqlite.cpp:472
bool ReadAtCursor(CDataStream &key, CDataStream &value, bool &complete) override
Definition: sqlite.cpp:531
bool TxnBegin() override
Definition: sqlite.cpp:566
~SQLiteBatch() override
Definition: sqlite.h:38
void Close() override
Definition: sqlite.cpp:340
sqlite3_stmt * m_delete_stmt
Definition: sqlite.h:25
bool ReadKey(CDataStream &&key, CDataStream &value) override
Definition: sqlite.cpp:391
bool TxnCommit() override
Definition: sqlite.cpp:578
void Flush() override
No-op.
Definition: sqlite.h:41
SQLiteDatabase & m_database
Definition: sqlite.h:18
void CloseCursor() override
Definition: sqlite.cpp:561
SQLiteBatch(SQLiteDatabase &database)
Definition: sqlite.cpp:333
An instance of this class represents one SQLite3 database.
Definition: sqlite.h:55
void Close() override
Close the database.
Definition: sqlite.cpp:318
std::string Filename() override
Return path to main database file for logs and error messages.
Definition: sqlite.h:108
void Open() override
Open the database if it is not already opened.
Definition: sqlite.cpp:179
void ReloadDbEnv() override
Definition: sqlite.h:104
sqlite3 * m_db
Definition: sqlite.h:114
void IncrementUpdateCounter() override
Definition: sqlite.h:106
void RemoveRef() override
Indicate that database user has stopped using the database and that it could be flushed or closed.
Definition: sqlite.h:84
std::unique_ptr< DatabaseBatch > MakeBatch(bool flush_on_close=true) override
Make a SQLiteBatch connected to this database.
Definition: sqlite.cpp:328
const std::string m_dir_path
Definition: sqlite.h:59
void Cleanup() noexcept
Definition: sqlite.cpp:122
bool Verify(bilingual_str &error)
Definition: sqlite.cpp:135
void AddRef() override
Indicate the a new database user has began using the database.
Definition: sqlite.h:83
void Flush() override
No-ops.
Definition: sqlite.h:102
const bool m_mock
Definition: sqlite.h:57
bool PeriodicFlush() override
Definition: sqlite.h:103
const std::string m_file_path
Definition: sqlite.h:61
bool Backup(const std::string &dest) const override
Back up the entire database to a file.
Definition: sqlite.cpp:291
bool Rewrite(const char *skip=nullptr) override
Rewrite the entire database on disk.
Definition: sqlite.cpp:284
An instance of this class represents one database.
Definition: db.h:100
std::atomic< unsigned int > nUpdateCounter
Definition: db.h:156
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:30
bool error(const char *fmt, const Args &...args)
Definition: logging.h:226
Filesystem operations and types.
Definition: fs.h:20
std::string SQLiteDatabaseVersion()
Definition: sqlite.cpp:624
std::unique_ptr< SQLiteDatabase > MakeSQLiteDatabase(const fs::path &path, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error)
Definition: sqlite.cpp:607
bool ExistsSQLiteDatabase(const fs::path &path)
Definition: sqlite.cpp:602
Bilingual messages:
Definition: translation.h:17
assert(!tx.IsCoinBase())
DatabaseStatus
Definition: db.h:229