Bitcoin Core 28.99.0
P2P Digital Currency
sqlite.h
Go to the documentation of this file.
1// Copyright (c) 2020-2021 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 <sync.h>
9#include <wallet/db.h>
10
11struct bilingual_str;
12
13struct sqlite3_stmt;
14struct sqlite3;
15
16namespace wallet {
17class SQLiteDatabase;
18
21{
22public:
23 sqlite3_stmt* m_cursor_stmt{nullptr};
24 // Copies of the prefix things for the prefix cursor.
25 // Prevents SQLite from accessing temp variables for the prefix things.
26 std::vector<std::byte> m_prefix_range_start;
27 std::vector<std::byte> m_prefix_range_end;
28
29 explicit SQLiteCursor() = default;
30 explicit SQLiteCursor(std::vector<std::byte> start_range, std::vector<std::byte> end_range)
31 : m_prefix_range_start(std::move(start_range)),
32 m_prefix_range_end(std::move(end_range))
33 {}
34 ~SQLiteCursor() override;
35
36 Status Next(DataStream& key, DataStream& value) override;
37};
38
42{
43public:
44 virtual ~SQliteExecHandler() = default;
45 virtual int Exec(SQLiteDatabase& database, const std::string& statement);
46};
47
50{
51private:
53 std::unique_ptr<SQliteExecHandler> m_exec_handler{std::make_unique<SQliteExecHandler>()};
54
55 sqlite3_stmt* m_read_stmt{nullptr};
56 sqlite3_stmt* m_insert_stmt{nullptr};
57 sqlite3_stmt* m_overwrite_stmt{nullptr};
58 sqlite3_stmt* m_delete_stmt{nullptr};
59 sqlite3_stmt* m_delete_prefix_stmt{nullptr};
60
71 bool m_txn{false};
72
73 void SetupSQLStatements();
74 bool ExecStatement(sqlite3_stmt* stmt, Span<const std::byte> blob);
75
76 bool ReadKey(DataStream&& key, DataStream& value) override;
77 bool WriteKey(DataStream&& key, DataStream&& value, bool overwrite = true) override;
78 bool EraseKey(DataStream&& key) override;
79 bool HasKey(DataStream&& key) override;
81
82public:
83 explicit SQLiteBatch(SQLiteDatabase& database);
84 ~SQLiteBatch() override { Close(); }
85
86 void SetExecHandler(std::unique_ptr<SQliteExecHandler>&& handler) { m_exec_handler = std::move(handler); }
87
88 /* No-op. See comment on SQLiteDatabase::Flush */
89 void Flush() override {}
90
91 void Close() override;
92
93 std::unique_ptr<DatabaseCursor> GetNewCursor() override;
94 std::unique_ptr<DatabaseCursor> GetNewPrefixCursor(Span<const std::byte> prefix) override;
95 bool TxnBegin() override;
96 bool TxnCommit() override;
97 bool TxnAbort() override;
98 bool HasActiveTxn() override { return m_txn; }
99};
100
104{
105private:
106 const bool m_mock{false};
107
108 const std::string m_dir_path;
109
110 const std::string m_file_path;
111
119 static int g_sqlite_count GUARDED_BY(g_sqlite_mutex);
120
122
123public:
124 SQLiteDatabase() = delete;
125
127 SQLiteDatabase(const fs::path& dir_path, const fs::path& file_path, const DatabaseOptions& options, bool mock = false);
128
130
131 // Batches must acquire this semaphore on writing, and release when done writing.
132 // This ensures that only one batch is modifying the database at a time.
134
135 bool Verify(bilingual_str& error);
136
138 void Open() override;
139
141 void Close() override;
142
143 /* These functions are unused */
144 void AddRef() override { assert(false); }
145 void RemoveRef() override { assert(false); }
146
148 bool Rewrite(const char* skip = nullptr) override;
149
152 bool Backup(const std::string& dest) const override;
153
162 void Flush() override {}
163 bool PeriodicFlush() override { return false; }
164 void ReloadDbEnv() override {}
165
167
168 std::string Filename() override { return m_file_path; }
169 std::string Format() override { return "sqlite"; }
170
172 std::unique_ptr<DatabaseBatch> MakeBatch(bool flush_on_close = true) override;
173
175 bool HasActiveTxn();
176
177 sqlite3* m_db{nullptr};
179};
180
181std::unique_ptr<SQLiteDatabase> MakeSQLiteDatabase(const fs::path& path, const DatabaseOptions& options, DatabaseStatus& status, bilingual_str& error);
182
183std::string SQLiteDatabaseVersion();
184} // namespace wallet
185
186#endif // BITCOIN_WALLET_SQLITE_H
An implementation of a semaphore.
Definition: sync.h:308
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:147
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:33
RAII class that provides access to a WalletDatabase.
Definition: db.h:51
RAII class that provides access to a WalletDatabase.
Definition: sqlite.h:50
bool ReadKey(DataStream &&key, DataStream &value) override
Definition: sqlite.cpp:457
bool TxnCommit() override
Definition: sqlite.cpp:666
SQLiteBatch(SQLiteDatabase &database)
Definition: sqlite.cpp:399
std::unique_ptr< SQliteExecHandler > m_exec_handler
Definition: sqlite.h:53
bool HasKey(DataStream &&key) override
Definition: sqlite.cpp:550
bool m_txn
Whether this batch has started a database transaction and whether it owns SQLiteDatabase::m_write_sem...
Definition: sqlite.h:71
std::unique_ptr< DatabaseCursor > GetNewCursor() override
Definition: sqlite.cpp:594
bool ErasePrefix(Span< const std::byte > prefix) override
Definition: sqlite.cpp:545
bool EraseKey(DataStream &&key) override
Definition: sqlite.cpp:540
sqlite3_stmt * m_delete_stmt
Definition: sqlite.h:58
bool TxnBegin() override
Definition: sqlite.cpp:651
~SQLiteBatch() override
Definition: sqlite.h:84
sqlite3_stmt * m_read_stmt
Definition: sqlite.h:55
void Close() override
Definition: sqlite.cpp:408
sqlite3_stmt * m_overwrite_stmt
Definition: sqlite.h:57
bool ExecStatement(sqlite3_stmt *stmt, Span< const std::byte > blob)
Definition: sqlite.cpp:516
std::unique_ptr< DatabaseCursor > GetNewPrefixCursor(Span< const std::byte > prefix) override
Definition: sqlite.cpp:609
void Flush() override
Definition: sqlite.h:89
void SetExecHandler(std::unique_ptr< SQliteExecHandler > &&handler)
Definition: sqlite.h:86
sqlite3_stmt * m_delete_prefix_stmt
Definition: sqlite.h:59
void SetupSQLStatements()
Definition: sqlite.cpp:149
sqlite3_stmt * m_insert_stmt
Definition: sqlite.h:56
bool HasActiveTxn() override
Definition: sqlite.h:98
SQLiteDatabase & m_database
Definition: sqlite.h:52
bool TxnAbort() override
Definition: sqlite.cpp:680
bool WriteKey(DataStream &&key, DataStream &&value, bool overwrite=true) override
Definition: sqlite.cpp:483
RAII class that provides a database cursor.
Definition: sqlite.h:21
std::vector< std::byte > m_prefix_range_start
Definition: sqlite.h:26
~SQLiteCursor() override
Definition: sqlite.cpp:583
Status Next(DataStream &key, DataStream &value) override
Definition: sqlite.cpp:563
sqlite3_stmt * m_cursor_stmt
Definition: sqlite.h:23
SQLiteCursor(std::vector< std::byte > start_range, std::vector< std::byte > end_range)
Definition: sqlite.h:30
std::vector< std::byte > m_prefix_range_end
Definition: sqlite.h:27
An instance of this class represents one SQLite3 database.
Definition: sqlite.h:104
static Mutex g_sqlite_mutex
This mutex protects SQLite initialization and shutdown.
Definition: sqlite.h:118
void Flush() override
No-ops.
Definition: sqlite.h:162
std::string Format() override
Definition: sqlite.h:169
CSemaphore m_write_semaphore
Definition: sqlite.h:133
static int g_sqlite_count GUARDED_BY(g_sqlite_mutex)
bool PeriodicFlush() override
Definition: sqlite.h:163
void IncrementUpdateCounter() override
Definition: sqlite.h:166
void Open() override
Open the database if it is not already opened.
Definition: sqlite.cpp:247
std::string Filename() override
Return path to main database file for logs and error messages.
Definition: sqlite.h:168
bool Rewrite(const char *skip=nullptr) override
Rewrite the entire database on disk.
Definition: sqlite.cpp:339
void Cleanup() noexcept EXCLUSIVE_LOCKS_REQUIRED(!g_sqlite_mutex)
Definition: sqlite.cpp:175
const bool m_mock
Definition: sqlite.h:106
void Close() override
Close the database.
Definition: sqlite.cpp:373
void ReloadDbEnv() override
Definition: sqlite.h:164
bool Backup(const std::string &dest) const override
Back up the entire database to a file.
Definition: sqlite.cpp:346
const std::string m_dir_path
Definition: sqlite.h:108
void AddRef() override
Indicate the a new database user has began using the database.
Definition: sqlite.h:144
const std::string m_file_path
Definition: sqlite.h:110
std::unique_ptr< DatabaseBatch > MakeBatch(bool flush_on_close=true) override
Make a SQLiteBatch connected to this database.
Definition: sqlite.cpp:393
bool Verify(bilingual_str &error)
Definition: sqlite.cpp:190
void RemoveRef() override
Indicate that database user has stopped using the database and that it could be flushed or closed.
Definition: sqlite.h:145
bool HasActiveTxn()
Return true if there is an on-going txn in this connection.
Definition: sqlite.cpp:382
Class responsible for executing SQL statements in SQLite databases.
Definition: sqlite.h:42
virtual int Exec(SQLiteDatabase &database, const std::string &statement)
Definition: sqlite.cpp:388
virtual ~SQliteExecHandler()=default
An instance of this class represents one database.
Definition: db.h:131
std::atomic< unsigned int > nUpdateCounter
Definition: db.h:175
Filesystem operations and types.
std::unique_ptr< SQLiteDatabase > MakeSQLiteDatabase(const fs::path &path, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error)
Definition: sqlite.cpp:694
std::string SQLiteDatabaseVersion()
Definition: sqlite.cpp:712
DatabaseStatus
Definition: db.h:205
const char * prefix
Definition: rest.cpp:1009
bool(* handler)(const std::any &context, HTTPRequest *req, const std::string &strReq)
Definition: rest.cpp:1010
Bilingual messages:
Definition: translation.h:21
#define EXCLUSIVE_LOCKS_REQUIRED(...)
Definition: threadsafety.h:49
assert(!tx.IsCoinBase())