KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ki_exception.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2007-2016 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#ifndef KI_EXCEPTION_H_
22#define KI_EXCEPTION_H_
23
24#include <kicommon.h>
25#include <wx/string.h>
26
27
32
33
35#define THROW_IO_ERROR( msg ) throw IO_ERROR( msg, __FILE__, __FUNCTION__, __LINE__ )
36#define THROW_IO_ERRORF( msg, ... ) throw IO_ERROR( wxString::Format( msg, __VA_ARGS__ ), \
37 __FILE__, __FUNCTION__, __LINE__ )
38
43class KICOMMON_API KI_PARAM_ERROR // similar to std::invalid_argument for instance
44{
45public:
49 KI_PARAM_ERROR( const wxString& aMessage )
50 {
51 m_message = aMessage;
52 }
53
55
56 const wxString What() const
57 {
58 return m_message;
59 }
60
61 virtual ~KI_PARAM_ERROR() throw () {}
62
63private:
64 wxString m_message;
65};
66
67
74class KICOMMON_API IO_ERROR : public std::exception
75{
76public:
86 IO_ERROR( const wxString& aProblem, const char* aThrowersFile,
87 const char* aThrowersFunction, int aThrowersLineNumber )
88 {
89 init( aProblem, aThrowersFile, aThrowersFunction, aThrowersLineNumber );
90 }
91
92 IO_ERROR() = default;
93 ~IO_ERROR() throw() {}
94
95 void init( const wxString& aProblem, const char* aThrowersFile,
96 const char* aThrowersFunction, int aThrowersLineNumber );
97
98 virtual const wxString Problem() const;
99 virtual const wxString Where() const;
100
101 virtual const char* what() const throw() override;
102 virtual const wxString What() const;
103
104protected:
105 wxString problem;
106 wxString where;
107};
108
109
118{
121
126 std::string inputLine;
127
132 PARSE_ERROR( const wxString& aProblem, const char* aThrowersFile,
133 const char* aThrowersFunction, int aThrowersLineNumber,
134 const wxString& aSource, const char* aInputLine,
135 int aLineNumber, int aByteIndex ) :
136 IO_ERROR()
137 {
138 init( aProblem, aThrowersFile, aThrowersFunction, aThrowersLineNumber,
139 aSource, aInputLine, aLineNumber, aByteIndex );
140 }
141
142 void init( const wxString& aProblem, const char* aThrowersFile,
143 const char* aThrowersFunction, int aThrowersLineNumber,
144 const wxString& aSource, const char* aInputLine,
145 int aLineNumber, int aByteIndex );
146
147 ~PARSE_ERROR() throw () {}
148
149 const wxString ParseProblem() { return parseProblem; }
150
151protected:
153 IO_ERROR(),
154 lineNumber( 0 ),
155 byteIndex( 0 )
156 {}
157
158protected:
159 wxString parseProblem;
160};
161
162
163#define THROW_PARSE_ERROR( aProblem, aSource, aInputLine, aLineNumber, aByteIndex ) \
164 throw PARSE_ERROR( aProblem, __FILE__, __FUNCTION__, __LINE__, aSource, aInputLine, \
165 aLineNumber, aByteIndex )
166
167
174{
177
178 FUTURE_FORMAT_ERROR( const wxString& aRequiredVersion,
179 const wxString& aRequiredGenerator = wxEmptyString );
180 FUTURE_FORMAT_ERROR( const PARSE_ERROR& aParseError, const wxString& aRequiredVersion,
181 const wxString& aRequiredGenerator = wxEmptyString );
183
184 void init( const wxString& aRequiredVersion,
185 const wxString& aRequiredGenerator = wxEmptyString );
186};
187
189
190#endif // KI_EXCEPTION_H_
void init(const wxString &aProblem, const char *aThrowersFile, const char *aThrowersFunction, int aThrowersLineNumber)
IO_ERROR(const wxString &aProblem, const char *aThrowersFile, const char *aThrowersFunction, int aThrowersLineNumber)
Use macro THROW_IO_ERROR() to wrap a call to this constructor at the call site.
wxString problem
wxString where
IO_ERROR()=default
KI_PARAM_ERROR(const wxString &aMessage)
Constructor.
const wxString What() const
virtual ~KI_PARAM_ERROR()
wxString m_message
#define KICOMMON_API
Definition kicommon.h:27
wxString requiredGenerator
Version of KiCad required to open file.
FUTURE_FORMAT_ERROR(const wxString &aRequiredVersion, const wxString &aRequiredGenerator=wxEmptyString)
wxString requiredVersion
Date of KiCad file format required to open file.
int lineNumber
at which line number, 1 based index.
const wxString ParseProblem()
wxString parseProblem
std::string inputLine
problem line of input [say, from a LINE_READER].
PARSE_ERROR(const wxString &aProblem, const char *aThrowersFile, const char *aThrowersFunction, int aThrowersLineNumber, const wxString &aSource, const char *aInputLine, int aLineNumber, int aByteIndex)
Normally called via the macro THROW_PARSE_ERROR so that FILE, FUNCTION, and LINE can be captured from...
int byteIndex
at which byte offset within the line, 1 based index
void init(const wxString &aProblem, const char *aThrowersFile, const char *aThrowersFunction, int aThrowersLineNumber, const wxString &aSource, const char *aInputLine, int aLineNumber, int aByteIndex)