aboutsummaryrefslogtreecommitdiff
path: root/src/bench
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-04-10 15:06:31 -0400
committerMarcoFalke <falke.marco@gmail.com>2019-04-15 16:49:34 -0400
commitfa46ac3127142358116c8473741708b3bb70ca15 (patch)
tree2a3a0a2f91df5ba0fcc0a6868a43290c458d36ea /src/bench
parent78295e97b8d38ecf6628b5d8ce1efd3900a5c345 (diff)
downloadbitcoin-fa46ac3127142358116c8473741708b3bb70ca15.tar.xz
bench: Add wallet_balance benchmarks
Diffstat (limited to 'src/bench')
-rw-r--r--src/bench/wallet_balance.cpp68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/bench/wallet_balance.cpp b/src/bench/wallet_balance.cpp
new file mode 100644
index 0000000000..7fd2794164
--- /dev/null
+++ b/src/bench/wallet_balance.cpp
@@ -0,0 +1,68 @@
+// Copyright (c) 2012-2019 The Bitcoin Core developers
+// Distributed under the MIT software license, see the accompanying
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+#include <bench/bench.h>
+#include <interfaces/chain.h>
+#include <key_io.h>
+#include <optional.h>
+#include <test/util.h>
+#include <validationinterface.h>
+#include <wallet/wallet.h>
+
+struct WalletTestingSetup {
+ std::unique_ptr<interfaces::Chain> m_chain = interfaces::MakeChain();
+ CWallet m_wallet;
+
+ WalletTestingSetup()
+ : m_wallet{m_chain.get(), WalletLocation(), WalletDatabase::CreateMock()}
+ {
+ }
+
+ void handleNotifications()
+ {
+ m_wallet.m_chain_notifications_handler = m_chain->handleNotifications(m_wallet);
+ }
+};
+
+static void WalletBalance(benchmark::State& state, const bool set_dirty, const bool add_watchonly, const bool add_mine)
+{
+ const auto& ADDRESS_WATCHONLY = ADDRESS_BCRT1_UNSPENDABLE;
+
+ WalletTestingSetup wallet_t{};
+ auto& wallet = wallet_t.m_wallet;
+ {
+ bool first_run;
+ if (wallet.LoadWallet(first_run) != DBErrors::LOAD_OK) assert(false);
+ wallet_t.handleNotifications();
+ }
+
+
+ const Optional<std::string> address_mine{add_mine ? Optional<std::string>{getnewaddress(wallet)} : nullopt};
+ if (add_watchonly) importaddress(wallet, ADDRESS_WATCHONLY);
+
+ for (int i = 0; i < 100; ++i) {
+ generatetoaddress(address_mine.get_value_or(ADDRESS_WATCHONLY));
+ generatetoaddress(ADDRESS_WATCHONLY);
+ }
+ SyncWithValidationInterfaceQueue();
+
+ auto bal = wallet.GetBalance(); // Cache
+
+ while (state.KeepRunning()) {
+ if (set_dirty) wallet.MarkDirty();
+ bal = wallet.GetBalance();
+ if (add_mine) assert(bal.m_mine_trusted > 0);
+ if (add_watchonly) assert(bal.m_watchonly_trusted > 0);
+ }
+}
+
+static void WalletBalanceDirty(benchmark::State& state) { WalletBalance(state, /* set_dirty */ true, /* add_watchonly */ true, /* add_mine */ true); }
+static void WalletBalanceClean(benchmark::State& state) { WalletBalance(state, /* set_dirty */ false, /* add_watchonly */ true, /* add_mine */ true); }
+static void WalletBalanceMine(benchmark::State& state) { WalletBalance(state, /* set_dirty */ false, /* add_watchonly */ false, /* add_mine */ true); }
+static void WalletBalanceWatch(benchmark::State& state) { WalletBalance(state, /* set_dirty */ false, /* add_watchonly */ true, /* add_mine */ false); }
+
+BENCHMARK(WalletBalanceDirty, 2500);
+BENCHMARK(WalletBalanceClean, 8000);
+BENCHMARK(WalletBalanceMine, 16000);
+BENCHMARK(WalletBalanceWatch, 8000);