2016-07-26 04:06:31 +02:00
|
|
|
/*
|
|
|
|
* charybdis: 21st Century IRCd
|
|
|
|
* exception.cc: Exception root
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-01-11 06:32:32 +01:00
|
|
|
[[noreturn]] static void
|
|
|
|
ircd_terminate_handler()
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
std::abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::aborting()
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
std::set_terminate(&ircd_terminate_handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::throw_system_error(const int &code)
|
|
|
|
{
|
|
|
|
throw std::system_error(code, std::system_category());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::exception_ptr
|
|
|
|
ircd::make_system_error(const int &code)
|
|
|
|
{
|
|
|
|
return std::make_exception_ptr(std::system_error(code, std::system_category()));
|
|
|
|
}
|
|
|
|
|
2016-08-15 04:03:25 +02:00
|
|
|
ssize_t
|
2017-03-18 01:37:40 +01:00
|
|
|
ircd::exception::generate(const char *const &fmt,
|
|
|
|
const va_rtti &ap)
|
2016-07-26 04:06:31 +02:00
|
|
|
noexcept
|
|
|
|
{
|
2017-03-18 01:37:40 +01:00
|
|
|
return fmt::vsnprintf(buf, sizeof(buf), fmt, ap);
|
2016-08-15 04:03:25 +02:00
|
|
|
}
|
2016-07-26 04:06:31 +02:00
|
|
|
|
2016-08-15 04:03:25 +02:00
|
|
|
ssize_t
|
2017-03-18 01:37:40 +01:00
|
|
|
ircd::exception::generate(const char *const &name,
|
|
|
|
const char *const &fmt,
|
|
|
|
const va_rtti &ap)
|
2016-08-15 04:03:25 +02:00
|
|
|
noexcept
|
|
|
|
{
|
2016-07-26 04:06:31 +02:00
|
|
|
size_t size(0);
|
|
|
|
const bool empty(!fmt || !fmt[0] || fmt[0] == ' ');
|
2016-11-29 16:23:38 +01:00
|
|
|
size = strlcat(buf, name, sizeof(buf));
|
|
|
|
size = strlcat(buf, empty? "." : ": ", sizeof(buf));
|
2016-07-26 04:06:31 +02:00
|
|
|
if(size < sizeof(buf))
|
2017-03-18 01:37:40 +01:00
|
|
|
size += fmt::vsnprintf(buf + size, sizeof(buf) - size, fmt, ap);
|
2016-07-26 04:06:31 +02:00
|
|
|
|
2016-08-15 04:03:25 +02:00
|
|
|
return size;
|
2016-07-26 04:06:31 +02:00
|
|
|
}
|
2017-11-26 01:20:42 +01:00
|
|
|
|
2018-01-08 22:26:29 +01:00
|
|
|
void
|
|
|
|
ircd::assertion()
|
|
|
|
noexcept(RB_DEBUG)
|
|
|
|
{
|
|
|
|
if(std::uncaught_exceptions())
|
|
|
|
{
|
|
|
|
assertion(std::current_exception());
|
|
|
|
} else {
|
|
|
|
log::critical("IRCd Assertion without active exception.");
|
|
|
|
assert(0);
|
|
|
|
throw assertive{};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::assertion(std::exception_ptr eptr)
|
|
|
|
noexcept(RB_DEBUG) try
|
|
|
|
{
|
|
|
|
std::rethrow_exception(eptr);
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
assertion(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::assertion(const std::exception &e)
|
|
|
|
noexcept(RB_DEBUG)
|
|
|
|
{
|
|
|
|
log::critical("IRCd Assertion %s", e.what());
|
|
|
|
|
|
|
|
#ifdef RB_DEBUG
|
|
|
|
terminate(e);
|
|
|
|
#else
|
|
|
|
throw e;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-11-26 01:20:42 +01:00
|
|
|
void
|
|
|
|
ircd::terminate()
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
terminate(std::current_exception());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::terminate(std::exception_ptr eptr)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
if(eptr) try
|
|
|
|
{
|
|
|
|
std::rethrow_exception(eptr);
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
terminate(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
log::critical("IRCd Terminate without exception");
|
|
|
|
std::terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::terminate(const std::exception &e)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
log::critical("IRCd Terminated: %s", e.what());
|
2018-01-08 22:26:29 +01:00
|
|
|
throw e;
|
2017-11-26 01:20:42 +01:00
|
|
|
}
|