1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112 | // Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef MESSAGE_EXCEPTION_H
#define MESSAGE_EXCEPTION_H
#include <exceptions/exceptions.h>
#include <log/message_types.h>
#include <stdexcept><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <string><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <vector><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <boost/lexical_cast.hpp><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
namespace isc {
namespace log {
/// \brief Message Exception
///
/// Used in the message reader, this simple exception class allows a message
/// code and its arguments to be encapsulated in an exception and thrown
/// up the stack.
class MessageException : public isc::Exception {
public:
/// \brief Constructor
///
/// \param file Filename where the exception occurred.
/// \param line Line where exception occurred.
/// \param what Text description of the problem.
/// \param id Message identification.
/// \param lineno Line number on which error occurred (if > 0).
MessageException(const char* file, size_t line, const char* what,
MessageID id, int lineno)
: isc::Exception(file, line, what), id_(id), lineno_(lineno)
{
if (lineno_ > 0) {
args_.push_back(boost::lexical_cast<std::string>(lineno));
}
}
/// \brief Constructor
///
/// \param file Filename where the exception occurred.
/// \param line Line where exception occurred.
/// \param what Text description of the problem.
/// \param id Message identification.
/// \param arg1 First message argument.
/// \param lineno Line number on which error occurred (if > 0).
MessageException(const char* file, size_t line, const char* what,
MessageID id, const std::string& arg1, int lineno)
: isc::Exception(file, line, what), id_(id), lineno_(lineno)
{
if (lineno > 0) {
args_.push_back(boost::lexical_cast<std::string>(lineno));
}
args_.push_back(arg1);
}
/// \brief Constructor
///
/// \param file Filename where the exception occurred.
/// \param line Line where exception occurred.
/// \param what Text description of the problem.
/// \param id Message identification.
/// \param arg1 First message argument.
/// \param arg2 Second message argument.
/// \param lineno Line number on which error occurred (if > 0).
MessageException(const char* file, size_t line, const char *what,
MessageID id, const std::string& arg1,
const std::string& arg2, int lineno)
: isc::Exception(file, line, what), id_(id), lineno_(lineno)
{
if (lineno > 0) {
args_.push_back(boost::lexical_cast<std::string>(lineno));
}
args_.push_back(arg1);
args_.push_back(arg2);
}
/// \brief Destructor
~MessageException() {}<--- Destructor in derived class
/// \brief Return Message ID
///
/// \return Message identification
MessageID id() const {
return id_;
}
/// \brief Return Arguments
///
/// \return Exception Arguments
std::vector<std::string> arguments() const {<--- Function 'arguments()' should return member 'args_' by const reference.
return (args_);
}
private:
MessageID id_; // Exception ID
std::vector<std::string> args_; // Exception arguments
int lineno_;
};
} // namespace log
} // namespace isc
#endif // MESSAGE_EXCEPTION_H
|