// Copyright (c) 2011-2015 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "SignalHandler.h" #include #include #ifdef _WIN32 #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif #include #else #include #include #endif namespace { std::function m_handler; void handleSignal() { static std::mutex m_mutex; std::unique_lock lock(m_mutex, std::try_to_lock); if (!lock.owns_lock()) { return; } m_handler(); } #if defined(WIN32) BOOL WINAPI winHandler(DWORD type) { if (CTRL_C_EVENT == type || CTRL_BREAK_EVENT == type) { handleSignal(); return TRUE; } else { std::cerr << "Got control signal " << type << ". Exiting without saving..."; return FALSE; } return TRUE; } #else void posixHandler(int /*type*/) { handleSignal(); } #endif } namespace Tools { bool SignalHandler::install(std::function t) { #if defined(WIN32) bool r = TRUE == ::SetConsoleCtrlHandler(&winHandler, TRUE); if (r) { m_handler = t; } return r; #else struct sigaction newMask; std::memset(&newMask, 0, sizeof(struct sigaction)); newMask.sa_handler = posixHandler; if (sigaction(SIGINT, &newMask, nullptr) != 0) { return false; } if (sigaction(SIGTERM, &newMask, nullptr) != 0) { return false; } std::memset(&newMask, 0, sizeof(struct sigaction)); newMask.sa_handler = SIG_IGN; if (sigaction(SIGPIPE, &newMask, nullptr) != 0) { return false; } m_handler = t; return true; #endif } }