mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
e7948819f9
Before it was silently try-catched for messages with additional {}, and it is very easy to trigger, i.e.: SELECT toDateTime(format('{}-{}-01 00:00:00', '2021', '1')) Will print: Code: 41. DB::Exception: Received from localhost:9000. DB::Exception: Cannot parse datetime 2021-1-01 00:00:00{}: Cannot parse DateTime from String: while executing 'FUNCTION toDateTime(format('{}-{}-01 00:00:00', '2021', '1') :: 3) -> toDateTime(format('{}-{}-01 00:00:00', '2021', '1')) DateTime : 2'.
217 lines
6.7 KiB
C++
217 lines
6.7 KiB
C++
#pragma once
|
|
|
|
#include <cerrno>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
#include <Poco/Version.h>
|
|
#include <Poco/Exception.h>
|
|
|
|
#include <Common/StackTrace.h>
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#if !defined(NDEBUG) || defined(ADDRESS_SANITIZER) || defined(THREAD_SANITIZER) || defined(MEMORY_SANITIZER) || defined(UNDEFINED_BEHAVIOR_SANITIZER)
|
|
#define ABORT_ON_LOGICAL_ERROR
|
|
#endif
|
|
|
|
namespace Poco { class Logger; }
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Exception : public Poco::Exception
|
|
{
|
|
public:
|
|
Exception() = default;
|
|
Exception(const std::string & msg, int code, bool remote_ = false);
|
|
Exception(const std::string & msg, const Exception & nested, int code);
|
|
|
|
Exception(int code, const std::string & message)
|
|
: Exception(message, code)
|
|
{}
|
|
|
|
// Format message with fmt::format, like the logging functions.
|
|
template <typename ...Args>
|
|
Exception(int code, const std::string & fmt, Args&&... args)
|
|
: Exception(fmt::format(fmt, std::forward<Args>(args)...), code)
|
|
{}
|
|
|
|
struct CreateFromPocoTag {};
|
|
struct CreateFromSTDTag {};
|
|
|
|
Exception(CreateFromPocoTag, const Poco::Exception & exc);
|
|
Exception(CreateFromSTDTag, const std::exception & exc);
|
|
|
|
Exception * clone() const override { return new Exception(*this); }
|
|
void rethrow() const override { throw *this; }
|
|
const char * name() const throw() override { return "DB::Exception"; }
|
|
const char * what() const throw() override { return message().data(); }
|
|
|
|
/// Add something to the existing message.
|
|
template <typename ...Args>
|
|
void addMessage(const std::string& format, Args&&... args)
|
|
{
|
|
extendedMessage(fmt::format(format, std::forward<Args>(args)...));
|
|
}
|
|
|
|
void addMessage(const std::string& message)
|
|
{
|
|
extendedMessage(message);
|
|
}
|
|
|
|
/// Used to distinguish local exceptions from the one that was received from remote node.
|
|
void setRemoteException(bool remote_ = true) { remote = remote_; }
|
|
bool isRemoteException() const { return remote; }
|
|
|
|
std::string getStackTraceString() const;
|
|
|
|
private:
|
|
#ifndef STD_EXCEPTION_HAS_STACK_TRACE
|
|
StackTrace trace;
|
|
#endif
|
|
bool remote = false;
|
|
|
|
const char * className() const throw() override { return "DB::Exception"; }
|
|
};
|
|
|
|
|
|
std::string getExceptionStackTraceString(const std::exception & e);
|
|
|
|
|
|
/// Contains an additional member `saved_errno`. See the throwFromErrno function.
|
|
class ErrnoException : public Exception
|
|
{
|
|
public:
|
|
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_) {}
|
|
|
|
ErrnoException * clone() const override { return new ErrnoException(*this); }
|
|
void rethrow() const override { throw *this; }
|
|
|
|
int getErrno() const { return saved_errno; }
|
|
const std::optional<std::string> getPath() const { return path; }
|
|
|
|
private:
|
|
int saved_errno;
|
|
std::optional<std::string> path;
|
|
|
|
const char * name() const throw() override { return "DB::ErrnoException"; }
|
|
const char * className() const throw() override { return "DB::ErrnoException"; }
|
|
};
|
|
|
|
|
|
/// Special class of exceptions, used mostly in ParallelParsingInputFormat for
|
|
/// more convenient calculation of problem line number.
|
|
class ParsingException : public Exception
|
|
{
|
|
public:
|
|
ParsingException();
|
|
ParsingException(const std::string & msg, int code);
|
|
ParsingException(int code, const std::string & message);
|
|
|
|
// Format message with fmt::format, like the logging functions.
|
|
template <typename ...Args>
|
|
ParsingException(int code, const std::string & fmt, Args&&... args)
|
|
: Exception(fmt::format(fmt, std::forward<Args>(args)...), code)
|
|
{}
|
|
|
|
|
|
std::string displayText() const
|
|
#if defined(POCO_CLICKHOUSE_PATCH)
|
|
override
|
|
#endif
|
|
;
|
|
|
|
int getLineNumber() { return line_number_; }
|
|
void setLineNumber(int line_number) { line_number_ = line_number;}
|
|
|
|
private:
|
|
ssize_t line_number_{-1};
|
|
mutable std::string formatted_message_;
|
|
|
|
const char * name() const throw() override { return "DB::ParsingException"; }
|
|
const char * className() const throw() override { return "DB::ParsingException"; }
|
|
};
|
|
|
|
|
|
using Exceptions = std::vector<std::exception_ptr>;
|
|
|
|
|
|
[[noreturn]] void throwFromErrno(const std::string & s, int code, int the_errno = errno);
|
|
/// Useful to produce some extra information about available space and inodes on device
|
|
[[noreturn]] void throwFromErrnoWithPath(const std::string & s, const std::string & path, int code,
|
|
int the_errno = errno);
|
|
|
|
|
|
/** Try to write an exception to the log (and forget about it).
|
|
* Can be used in destructors in the catch-all block.
|
|
*/
|
|
void tryLogCurrentException(const char * log_name, const std::string & start_of_message = "");
|
|
void tryLogCurrentException(Poco::Logger * logger, const std::string & start_of_message = "");
|
|
|
|
|
|
/** 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.
|
|
* with_extra_info - add information about the filesystem in case of "No space left on device" and similar.
|
|
*/
|
|
std::string getCurrentExceptionMessage(bool with_stacktrace, bool check_embedded_stacktrace = false,
|
|
bool with_extra_info = true);
|
|
|
|
/// Returns error code from ErrorCodes
|
|
int getCurrentExceptionCode();
|
|
|
|
|
|
/// 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);
|
|
|
|
bool tryDeserializeText(const std::string & data);
|
|
};
|
|
|
|
|
|
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);
|
|
std::string getExceptionMessage(std::exception_ptr e, bool with_stacktrace);
|
|
|
|
|
|
void rethrowFirstException(const Exceptions & exceptions);
|
|
|
|
|
|
template <typename T>
|
|
std::enable_if_t<std::is_pointer_v<T>, T> exception_cast(std::exception_ptr e)
|
|
{
|
|
try
|
|
{
|
|
std::rethrow_exception(std::move(e));
|
|
}
|
|
catch (std::remove_pointer_t<T> & concrete)
|
|
{
|
|
return &concrete;
|
|
}
|
|
catch (...)
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
}
|