Bitcoin Core 31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
context.h
Go to the documentation of this file.
1// Copyright (c) 2020-present 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_CONTEXT_H
6#define BITCOIN_WALLET_CONTEXT_H
7
8#include <sync.h>
9
10#include <functional>
11#include <list>
12#include <memory>
13#include <vector>
14
15class ArgsManager;
16class CScheduler;
17namespace interfaces {
18class Chain;
19class Wallet;
20} // namespace interfaces
21
22namespace wallet {
23class CWallet;
24using LoadWalletFn = std::function<void(std::unique_ptr<interfaces::Wallet> wallet)>;
25
39 ArgsManager* args{nullptr}; // Currently a raw pointer because the memory is not managed by this struct
40 // It is unsafe to lock this after locking a CWallet::cs_wallet mutex because
41 // this could introduce inconsistent lock ordering and cause deadlocks.
43 std::vector<std::shared_ptr<CWallet>> wallets GUARDED_BY(wallets_mutex);
44 std::list<LoadWalletFn> wallet_load_fns GUARDED_BY(wallets_mutex);
45
51};
52} // namespace wallet
53
54#endif // BITCOIN_WALLET_CONTEXT_H
Simple class for background tasks that should be run periodically or once "after a while".
Definition scheduler.h:40
Interface for accessing a wallet.
Definition wallet.h:66
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition wallet.h:310
std::function< void(std::unique_ptr< interfaces::Wallet > wallet)> LoadWalletFn
Definition context.h:24
interfaces::Chain * chain
Definition context.h:37
std::vector< std::shared_ptr< CWallet > > wallets GUARDED_BY(wallets_mutex)
CScheduler * scheduler
Definition context.h:38
ArgsManager * args
Definition context.h:39
std::list< LoadWalletFn > wallet_load_fns GUARDED_BY(wallets_mutex)
AnnotatedMixin< std::mutex > Mutex
Wrapped mutex: supports waiting but not recursive locking.
Definition sync.h:123