Program Listing for File fatal.h¶
↰ Return to documentation for file (include/core/mir/fatal.h
)
/*
* Copyright © Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 2 or 3 as
* published by the Free Software Foundation.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* ---
* Fatal error handling - Fatal errors are situations we don't expect to ever
* happen and don't have logic to gracefully recover from. The most useful
* thing you can do in that situation is abort to get a clean core file and
* stack trace to maximize the chances of it being readable.
*/
#ifndef MIR_FATAL_H_
#define MIR_FATAL_H_
namespace mir
{
extern void (*fatal_error)(char const* reason, ...);
void fatal_error_except(char const* reason, ...);
[[noreturn]]
void fatal_error_abort(char const* reason, ...);
// Utility class to override & restore existing error handler
class FatalErrorStrategy
{
public:
explicit FatalErrorStrategy(void (*fatal_error_handler)(char const* reason, ...)) :
old_fatal_error_handler(fatal_error)
{
fatal_error = fatal_error_handler;
}
~FatalErrorStrategy()
{
fatal_error = old_fatal_error_handler;
}
private:
void (*old_fatal_error_handler)(char const* reason, ...);
FatalErrorStrategy(FatalErrorStrategy const&) = delete;
FatalErrorStrategy& operator=(FatalErrorStrategy const&) = delete;
};
} // namespace mir
#endif // MIR_FATAL_H_