Fix: common: uninitialized lttng::ctl:error field
[lttng-tools.git] / src / common / exception.cpp
CommitLineData
53cd1e22
JG
1/*
2 * Copyright (C) 2022 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8#include "exception.hpp"
9#include <sstream>
10#include <common/error.hpp>
11
12namespace {
13std::string format_throw_location(
baac5795 14 const char *file_name, const char *function_name, unsigned int line_number)
53cd1e22
JG
15{
16 std::stringstream location;
17
18 location << "[" << function_name << "()"
19 << " " << file_name << ":" << line_number << "]";
20
21 return location.str();
22}
baac5795 23} /* namespace */
53cd1e22
JG
24
25lttng::ctl::error::error(lttng_error_code error_code,
baac5795
JG
26 const char *file_name,
27 const char *function_name,
28 unsigned int line_number) :
af8c83b6
JG
29 runtime_error(std::string(error_get_str(error_code)), file_name, function_name, line_number),
30 _error_code{error_code}
53cd1e22
JG
31{
32}
33
baac5795
JG
34lttng::posix_error::posix_error(const std::string& msg,
35 int errno_code,
36 const char *file_name,
37 const char *function_name,
38 unsigned int line_number) :
53cd1e22 39 std::system_error(errno_code,
baac5795
JG
40 std::generic_category(),
41 msg + " " + format_throw_location(file_name, function_name, line_number))
53cd1e22
JG
42{
43}
aeeb48c6 44
baac5795
JG
45lttng::runtime_error::runtime_error(const std::string& msg,
46 const char *file_name,
47 const char *function_name,
48 unsigned int line_number) :
aeeb48c6
JG
49 std::runtime_error(msg + " " + format_throw_location(file_name, function_name, line_number))
50{
51}
baac5795
JG
52
53lttng::communication_error::communication_error(const std::string& msg,
54 const char *file_name,
55 const char *function_name,
56 unsigned int line_number) :
57 runtime_error(msg, file_name, function_name, line_number)
58{
59}
60
61lttng::protocol_error::protocol_error(const std::string& msg,
62 const char *file_name,
63 const char *function_name,
64 unsigned int line_number) :
65 communication_error(msg, file_name, function_name, line_number)
66{
67}
68
69lttng::invalid_argument_error::invalid_argument_error(const std::string& msg,
70 const char *file_name,
71 const char *function_name,
72 unsigned int line_number) :
73 runtime_error(msg, file_name, function_name, line_number)
74{
75}
This page took 0.024932 seconds and 4 git commands to generate.