mirror of
https://github.com/obsproject/obs-studio.git
synced 2025-12-24 06:58:03 -05:00
The CrashHandler class encapsulates all functionality around unsafe shutdown detection as well as crash log discovery and log upload. Each (functional) CrashHandler should be initialized with an app launch UUID, which enables the handler to disambiguate a sentinel file for the current app launch from those of prior app launches.
41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
/******************************************************************************
|
|
Copyright (C) 2025 by Patrick Heyer <PatTheMav@users.noreply.github.com>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
#include "CrashHandler.hpp"
|
|
|
|
namespace OBS {
|
|
|
|
PlatformType CrashHandler::getPlatformType() const
|
|
{
|
|
return PlatformType::Linux;
|
|
}
|
|
|
|
std::filesystem::path CrashHandler::findLastCrashLog() const
|
|
{
|
|
std::filesystem::path lastCrashLogFile;
|
|
|
|
return lastCrashLogFile;
|
|
}
|
|
|
|
std::filesystem::path CrashHandler::getCrashLogDirectory() const
|
|
{
|
|
std::filesystem::path crashLogDirectoryPath;
|
|
|
|
return crashLogDirectoryPath;
|
|
}
|
|
} // namespace OBS
|