mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
6269c6f1db
88044a14d9b2c6c70a3330ee1545a9eb39d14d89 Guard `#include <config/bitcoin-config.h>` (Hennadii Stepanov)
Pull request description:
A fix for builds when the `HAVE_CONFIG_H` macro is not defined.
ACKs for top commit:
Empact:
Code Review ACK 88044a14d9
Tree-SHA512: f2bf1693c7671d7113dccaf66ae34a84719d86cb3271fa18b36611deab93a48d787b3ccfbd735d3b763017d709971cb1151d8d7f30390720009e6e2a6275b5b0
120 lines
2.9 KiB
C++
120 lines
2.9 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2020 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 <shutdown.h>
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
#include <config/bitcoin-config.h>
|
|
#endif
|
|
|
|
#include <logging.h>
|
|
#include <util/tokenpipe.h>
|
|
|
|
#include <node/ui_interface.h>
|
|
#include <warnings.h>
|
|
|
|
#include <assert.h>
|
|
#include <atomic>
|
|
#ifdef WIN32
|
|
#include <condition_variable>
|
|
#endif
|
|
|
|
bool AbortNode(const std::string& strMessage, bilingual_str user_message)
|
|
{
|
|
SetMiscWarning(Untranslated(strMessage));
|
|
LogPrintf("*** %s\n", strMessage);
|
|
if (user_message.empty()) {
|
|
user_message = _("A fatal internal error occurred, see debug.log for details");
|
|
}
|
|
AbortError(user_message);
|
|
StartShutdown();
|
|
return false;
|
|
}
|
|
|
|
static std::atomic<bool> fRequestShutdown(false);
|
|
static std::atomic<bool> fRequestRestart(false);
|
|
|
|
#ifdef WIN32
|
|
/** On windows it is possible to simply use a condition variable. */
|
|
std::mutex g_shutdown_mutex;
|
|
std::condition_variable g_shutdown_cv;
|
|
#else
|
|
/** On UNIX-like operating systems use the self-pipe trick.
|
|
*/
|
|
static TokenPipeEnd g_shutdown_r;
|
|
static TokenPipeEnd g_shutdown_w;
|
|
#endif
|
|
|
|
bool InitShutdownState()
|
|
{
|
|
#ifndef WIN32
|
|
std::optional<TokenPipe> pipe = TokenPipe::Make();
|
|
if (!pipe) return false;
|
|
g_shutdown_r = pipe->TakeReadEnd();
|
|
g_shutdown_w = pipe->TakeWriteEnd();
|
|
#endif
|
|
return true;
|
|
}
|
|
|
|
void StartShutdown()
|
|
{
|
|
#ifdef WIN32
|
|
std::unique_lock<std::mutex> lk(g_shutdown_mutex);
|
|
fRequestShutdown = true;
|
|
g_shutdown_cv.notify_one();
|
|
#else
|
|
// This must be reentrant and safe for calling in a signal handler, so using a condition variable is not safe.
|
|
// Make sure that the token is only written once even if multiple threads call this concurrently or in
|
|
// case of a reentrant signal.
|
|
if (!fRequestShutdown.exchange(true)) {
|
|
// Write an arbitrary byte to the write end of the shutdown pipe.
|
|
int res = g_shutdown_w.TokenWrite('x');
|
|
if (res != 0) {
|
|
LogPrintf("Sending shutdown token failed\n");
|
|
assert(0);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
void StartRestart()
|
|
{
|
|
fRequestRestart = true;
|
|
StartShutdown();
|
|
}
|
|
|
|
void AbortShutdown()
|
|
{
|
|
if (fRequestShutdown) {
|
|
// Cancel existing shutdown by waiting for it, this will reset condition flags and remove
|
|
// the shutdown token from the pipe.
|
|
WaitForShutdown();
|
|
}
|
|
fRequestShutdown = false;
|
|
}
|
|
|
|
bool ShutdownRequested()
|
|
{
|
|
return fRequestShutdown;
|
|
}
|
|
|
|
bool RestartRequested()
|
|
{
|
|
return fRequestRestart;
|
|
}
|
|
|
|
void WaitForShutdown()
|
|
{
|
|
#ifdef WIN32
|
|
std::unique_lock<std::mutex> lk(g_shutdown_mutex);
|
|
g_shutdown_cv.wait(lk, [] { return fRequestShutdown.load(); });
|
|
#else
|
|
int res = g_shutdown_r.TokenRead();
|
|
if (res != 'x') {
|
|
LogPrintf("Reading shutdown token failed\n");
|
|
assert(0);
|
|
}
|
|
#endif
|
|
}
|