2 * Copyright (C) 2022 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_EXCEPTION_H_
9 #define LTTNG_EXCEPTION_H_
13 #include <system_error>
15 #include <lttng/lttng-error.h>
17 #define LTTNG_THROW_CTL(error_code) \
18 throw lttng::ctl::error(msg, error_code, __FILE__, __func__, __LINE__)
19 #define LTTNG_THROW_POSIX(msg, errno_code) \
20 throw lttng::posix_error(msg, errno_code, __FILE__, __func__, __LINE__)
21 #define LTTNG_THROW_ERROR(msg) \
22 throw lttng::runtime_error(msg, __FILE__, __func__, __LINE__)
23 #define LTTNG_THROW_COMMUNICATION_ERROR(msg) \
24 throw lttng::communication_error(msg, __FILE__, __func__, __LINE__)
25 #define LTTNG_THROW_PROTOCOL_ERROR(msg) \
26 throw lttng::protocol_error(msg, __FILE__, __func__, __LINE__)
27 #define LTTNG_THROW_INVALID_ARGUMENT_ERROR(msg) \
28 throw lttng::invalid_argument_error(msg, __FILE__, __func__, __LINE__)
31 class runtime_error : public std::runtime_error {
33 explicit runtime_error(const std::string& msg,
34 const char *file_name,
35 const char *function_name,
36 unsigned int line_number);
40 /* Wrap lttng_error_code errors which may be reported through liblttng-ctl's interface. */
41 class error : public runtime_error {
43 explicit error(lttng_error_code error_code,
44 const char *file_name,
45 const char *function_name,
46 unsigned int line_number);
47 lttng_error_code get_code() const;
50 lttng_error_code _error_code;
54 class posix_error : public std::system_error {
56 explicit posix_error(const std::string& msg,
58 const char *file_name,
59 const char *function_name,
60 unsigned int line_number);
63 class communication_error : public runtime_error {
65 explicit communication_error(const std::string& msg,
66 const char *file_name,
67 const char *function_name,
68 unsigned int line_number);
71 class protocol_error : public communication_error {
73 explicit protocol_error(const std::string& msg,
74 const char *file_name,
75 const char *function_name,
76 unsigned int line_number);
79 class invalid_argument_error : public runtime_error {
81 explicit invalid_argument_error(const std::string& msg,
82 const char *file_name,
83 const char *function_name,
84 unsigned int line_number);
87 }; /* namespace lttng */
89 #endif /* LTTNG_EXCEPTION_H_ */