Merge pull request #3991 from leoetlino/signal
DolphinWX: Shut down cleanly on shutdown signal
This commit is contained in:
commit
59f4d445bb
|
@ -6,11 +6,18 @@
|
||||||
#include <Cocoa/Cocoa.h>
|
#include <Cocoa/Cocoa.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#if defined(__unix__) || defined(__unix) || defined(__APPLE__)
|
||||||
|
#include <signal.h>
|
||||||
|
#endif
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <windows.h>
|
||||||
|
#endif
|
||||||
#include <wx/aui/auibook.h>
|
#include <wx/aui/auibook.h>
|
||||||
#include <wx/aui/framemanager.h>
|
#include <wx/aui/framemanager.h>
|
||||||
#include <wx/filename.h>
|
#include <wx/filename.h>
|
||||||
|
@ -29,6 +36,7 @@
|
||||||
|
|
||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
#include "Common/FileUtil.h"
|
#include "Common/FileUtil.h"
|
||||||
|
#include "Common/Flag.h"
|
||||||
#include "Common/Logging/ConsoleListener.h"
|
#include "Common/Logging/ConsoleListener.h"
|
||||||
#include "Common/Thread.h"
|
#include "Common/Thread.h"
|
||||||
|
|
||||||
|
@ -353,6 +361,27 @@ bool CFrame::InitControllers()
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Common::Flag s_shutdown_signal_received;
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
static BOOL WINAPI s_ctrl_handler(DWORD fdwCtrlType)
|
||||||
|
{
|
||||||
|
switch (fdwCtrlType)
|
||||||
|
{
|
||||||
|
case CTRL_C_EVENT:
|
||||||
|
case CTRL_BREAK_EVENT:
|
||||||
|
case CTRL_CLOSE_EVENT:
|
||||||
|
case CTRL_LOGOFF_EVENT:
|
||||||
|
case CTRL_SHUTDOWN_EVENT:
|
||||||
|
SetConsoleCtrlHandler(s_ctrl_handler, FALSE);
|
||||||
|
s_shutdown_signal_received.Set();
|
||||||
|
return TRUE;
|
||||||
|
default:
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
CFrame::CFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
|
CFrame::CFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
|
||||||
const wxSize& size, bool _UseDebugger, bool _BatchMode, bool ShowLogWindow,
|
const wxSize& size, bool _UseDebugger, bool _BatchMode, bool ShowLogWindow,
|
||||||
long style)
|
long style)
|
||||||
|
@ -498,8 +527,25 @@ CFrame::CFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPo
|
||||||
InitControllers();
|
InitControllers();
|
||||||
|
|
||||||
m_poll_hotkey_timer.SetOwner(this);
|
m_poll_hotkey_timer.SetOwner(this);
|
||||||
Bind(wxEVT_TIMER, &CFrame::PollHotkeys, this);
|
Bind(wxEVT_TIMER, &CFrame::PollHotkeys, this, m_poll_hotkey_timer.GetId());
|
||||||
m_poll_hotkey_timer.Start(1000 / 60, wxTIMER_CONTINUOUS);
|
m_poll_hotkey_timer.Start(1000 / 60, wxTIMER_CONTINUOUS);
|
||||||
|
|
||||||
|
// Shut down cleanly on SIGINT, SIGTERM (Unix) and on various signals on Windows
|
||||||
|
m_handle_signal_timer.SetOwner(this);
|
||||||
|
Bind(wxEVT_TIMER, &CFrame::HandleSignal, this, m_handle_signal_timer.GetId());
|
||||||
|
m_handle_signal_timer.Start(100, wxTIMER_CONTINUOUS);
|
||||||
|
|
||||||
|
#if defined(__unix__) || defined(__unix) || defined(__APPLE__)
|
||||||
|
struct sigaction sa;
|
||||||
|
sa.sa_handler = [](int unused) { s_shutdown_signal_received.Set(); };
|
||||||
|
sigemptyset(&sa.sa_mask);
|
||||||
|
sa.sa_flags = SA_RESETHAND;
|
||||||
|
sigaction(SIGINT, &sa, nullptr);
|
||||||
|
sigaction(SIGTERM, &sa, nullptr);
|
||||||
|
#endif
|
||||||
|
#ifdef _WIN32
|
||||||
|
SetConsoleCtrlHandler(s_ctrl_handler, TRUE);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
// Destructor
|
// Destructor
|
||||||
CFrame::~CFrame()
|
CFrame::~CFrame()
|
||||||
|
@ -1679,3 +1725,10 @@ void CFrame::HandleFrameSkipHotkeys()
|
||||||
holdFrameStepDelayCount = 0;
|
holdFrameStepDelayCount = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CFrame::HandleSignal(wxTimerEvent& event)
|
||||||
|
{
|
||||||
|
if (!s_shutdown_signal_received.TestAndClear())
|
||||||
|
return;
|
||||||
|
Close();
|
||||||
|
}
|
||||||
|
|
|
@ -186,6 +186,7 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
wxTimer m_poll_hotkey_timer;
|
wxTimer m_poll_hotkey_timer;
|
||||||
|
wxTimer m_handle_signal_timer;
|
||||||
|
|
||||||
wxBitmap m_Bitmaps[EToolbar_Max];
|
wxBitmap m_Bitmaps[EToolbar_Max];
|
||||||
|
|
||||||
|
@ -328,6 +329,7 @@ private:
|
||||||
|
|
||||||
void PollHotkeys(wxTimerEvent&);
|
void PollHotkeys(wxTimerEvent&);
|
||||||
void ParseHotkeys();
|
void ParseHotkeys();
|
||||||
|
void HandleSignal(wxTimerEvent&);
|
||||||
|
|
||||||
bool InitControllers();
|
bool InitControllers();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue