Bitcoin ABC 0.33.10
P2P Digital Currency
kernel_notifications.h
Go to the documentation of this file.
1// Copyright (c) 2023 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_NODE_KERNEL_NOTIFICATIONS_H
6#define BITCOIN_NODE_KERNEL_NOTIFICATIONS_H
7
9
10#include <atomic>
11#include <cstdint>
12
13class ArgsManager;
14class CBlockIndex;
15enum class SynchronizationState;
16struct bilingual_str;
17
18namespace node {
19
20static constexpr int DEFAULT_STOPATHEIGHT{0};
21
23public:
24 KernelNotifications(std::atomic<int> &exit_status)
25 : m_exit_status{exit_status} {}
26
28 CBlockIndex &index) override;
29
30 void headerTip(SynchronizationState state, int64_t height,
31 int64_t timestamp, bool presync) override;
32
33 void progress(const bilingual_str &title, int progress_percent,
34 bool resume_possible) override;
35
36 void warning(const std::string &warning) override;
37
38 void flushError(const std::string &debug_message) override;
39
40 void fatalError(const std::string &debug_message,
41 const bilingual_str &user_message = {}) override;
42
48
49private:
50 std::atomic<int> &m_exit_status;
51};
52
53void ReadNotificationArgs(const ArgsManager &args,
54 KernelNotifications &notifications);
55
56} // namespace node
57
58#endif // BITCOIN_NODE_KERNEL_NOTIFICATIONS_H
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: blockindex.h:25
A base class defining functions for notifying about certain kernel events.
int m_stop_at_height
Block height after which blockTip notification will return Interrupted{}, if >0.
void headerTip(SynchronizationState state, int64_t height, int64_t timestamp, bool presync) override
std::atomic< int > & m_exit_status
void progress(const bilingual_str &title, int progress_percent, bool resume_possible) override
void flushError(const std::string &debug_message) override
The flush error notification is sent to notify the user that an error occurred while flushing block d...
void warning(const std::string &warning) override
void fatalError(const std::string &debug_message, const bilingual_str &user_message={}) override
The fatal error notification is sent to notify the user when an error occurs in kernel code that can'...
kernel::InterruptResult blockTip(SynchronizationState state, CBlockIndex &index) override
KernelNotifications(std::atomic< int > &exit_status)
bool m_shutdown_on_fatal_error
Useful for tests, can be set to false to avoid shutdown on fatal error.
std::variant< std::monostate, Interrupted > InterruptResult
Simple result type for functions that need to propagate an interrupt status and don't have other retu...
Definition: messages.h:12
void ReadNotificationArgs(const ArgsManager &args, KernelNotifications &notifications)
static constexpr int DEFAULT_STOPATHEIGHT
Bilingual messages:
Definition: translation.h:17
SynchronizationState
Current sync state passed to tip changed callbacks.
Definition: validation.h:110