ClickHouse/dbms/Common/Exception.h

155 lines
4.6 KiB
C++
Raw Normal View History

2015-10-05 01:26:43 +00:00
#pragma once
#include <cerrno>
#include <vector>
#include <memory>
2015-10-05 01:26:43 +00:00
#include <Poco/Exception.h>
2019-07-29 22:26:44 +00:00
#include <Common/StackTrace.h>
2015-10-05 01:26:43 +00:00
2015-10-05 01:31:57 +00:00
namespace Poco { class Logger; }
2015-10-05 01:26:43 +00:00
namespace DB
{
2018-11-22 18:09:17 +00:00
namespace ErrorCodes
{
}
2015-10-05 01:26:43 +00:00
class Exception : public Poco::Exception
{
public:
2020-03-08 21:04:10 +00:00
Exception() = default;
Exception(const std::string & msg, int code);
enum CreateFromPocoTag { CreateFromPoco };
enum CreateFromSTDTag { CreateFromSTD };
Exception(CreateFromPocoTag, const Poco::Exception & exc);
Exception(CreateFromSTDTag, const std::exception & exc);
2018-11-22 18:09:17 +00:00
Exception * clone() const override { return new Exception(*this); }
void rethrow() const override { throw *this; }
2018-11-22 18:09:17 +00:00
const char * name() const throw() override { return "DB::Exception"; }
2019-02-04 14:28:38 +00:00
const char * what() const throw() override { return message().data(); }
2017-05-07 20:25:26 +00:00
/// Add something to the existing message.
void addMessage(const std::string & arg) { extendedMessage(arg); }
std::string getStackTraceString() const;
2015-10-05 01:26:43 +00:00
private:
#ifndef STD_EXCEPTION_HAS_STACK_TRACE
2019-07-01 22:11:11 +00:00
StackTrace trace;
#endif
2018-11-22 18:09:17 +00:00
const char * className() const throw() override { return "DB::Exception"; }
2015-10-05 01:26:43 +00:00
};
std::string getExceptionStackTraceString(const std::exception & e);
2017-05-07 20:25:26 +00:00
/// Contains an additional member `saved_errno`. See the throwFromErrno function.
2015-10-05 01:26:43 +00:00
class ErrnoException : public Exception
{
public:
2019-08-06 18:54:06 +00:00
ErrnoException(const std::string & msg, int code, int saved_errno_, const std::optional<std::string> & path_ = {})
: Exception(msg, code), saved_errno(saved_errno_), path(path_) {}
2018-11-22 18:09:17 +00:00
ErrnoException * clone() const override { return new ErrnoException(*this); }
void rethrow() const override { throw *this; }
int getErrno() const { return saved_errno; }
2019-08-06 18:54:06 +00:00
const std::optional<std::string> getPath() const { return path; }
2015-10-05 01:26:43 +00:00
private:
int saved_errno;
2019-08-06 18:54:06 +00:00
std::optional<std::string> path;
2018-11-22 18:09:17 +00:00
const char * name() const throw() override { return "DB::ErrnoException"; }
const char * className() const throw() override { return "DB::ErrnoException"; }
2015-10-05 01:26:43 +00:00
};
2015-10-05 01:31:57 +00:00
using Exceptions = std::vector<std::exception_ptr>;
2015-10-05 01:31:57 +00:00
std::string errnoToString(int code, int the_errno = errno);
[[noreturn]] void throwFromErrno(const std::string & s, int code, int the_errno = errno);
2019-08-07 12:52:47 +00:00
[[noreturn]] void throwFromErrnoWithPath(const std::string & s, const std::string & path, int code,
int the_errno = errno);
2015-10-05 01:31:57 +00:00
2017-05-07 20:25:26 +00:00
/** Try to write an exception to the log (and forget about it).
* Can be used in destructors in the catch-all block.
2015-10-05 01:31:57 +00:00
*/
void tryLogCurrentException(const char * log_name, const std::string & start_of_message = "");
void tryLogCurrentException(Poco::Logger * logger, const std::string & start_of_message = "");
2017-02-07 16:36:12 +00:00
/** Prints current exception in canonical format.
* with_stacktrace - prints stack trace for DB::Exception.
* check_embedded_stacktrace - if DB::Exception has embedded stacktrace then
* only this stack trace will be printed.
2020-02-15 00:11:09 +00:00
* with_extra_info - add information about the filesystem in case of "No space left on device" and similar.
2017-02-07 16:36:12 +00:00
*/
2019-08-05 19:41:20 +00:00
std::string getCurrentExceptionMessage(bool with_stacktrace, bool check_embedded_stacktrace = false,
2019-08-06 12:51:10 +00:00
bool with_extra_info = true);
2017-02-07 16:36:12 +00:00
/// Returns error code from ErrorCodes
int getCurrentExceptionCode();
2015-10-05 01:31:57 +00:00
2017-05-31 14:01:08 +00:00
/// An execution status of any piece of code, contains return code and optional error
struct ExecutionStatus
{
int code = 0;
std::string message;
ExecutionStatus() = default;
explicit ExecutionStatus(int return_code, const std::string & exception_message = "")
: code(return_code), message(exception_message) {}
static ExecutionStatus fromCurrentException(const std::string & start_of_message = "");
std::string serializeText() const;
void deserializeText(const std::string & data);
2017-07-27 13:11:16 +00:00
bool tryDeserializeText(const std::string & data);
};
2015-10-05 05:40:27 +00:00
void tryLogException(std::exception_ptr e, const char * log_name, const std::string & start_of_message = "");
void tryLogException(std::exception_ptr e, Poco::Logger * logger, const std::string & start_of_message = "");
std::string getExceptionMessage(const Exception & e, bool with_stacktrace, bool check_embedded_stacktrace = false);
2015-10-05 05:40:27 +00:00
std::string getExceptionMessage(std::exception_ptr e, bool with_stacktrace);
2016-06-08 14:39:30 +00:00
void rethrowFirstException(const Exceptions & exceptions);
2015-10-05 01:31:57 +00:00
2015-10-05 05:40:27 +00:00
template <typename T>
2017-12-25 04:01:46 +00:00
std::enable_if_t<std::is_pointer_v<T>, T> exception_cast(std::exception_ptr e)
2015-10-05 05:40:27 +00:00
{
try
{
std::rethrow_exception(std::move(e));
}
2017-12-25 04:01:46 +00:00
catch (std::remove_pointer_t<T> & concrete)
{
return &concrete;
}
catch (...)
{
return nullptr;
}
2015-10-05 05:40:27 +00:00
}
2015-10-05 01:26:43 +00:00
}