1b611a2c1ab8ca08d2865d55b66ac03ce1b3e1c5
[senf.git] / Utils / Exception.cci
1 // $Id$
2 //
3 // Copyright (C) 2006 Stefan Bund <g0dil@senf.berlios.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the
17 // Free Software Foundation, Inc.,
18 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 /** \file
21     \brief Exception inline non-template implementation */
22
23 // Custom includes
24 #include <errno.h>
25 #include <cstring>
26
27 #define prefix_ inline
28 ///////////////////////////////cci.p///////////////////////////////////////
29
30 ///////////////////////////////////////////////////////////////////////////
31 // senf::Exception
32
33 prefix_ senf::Exception::Exception(std::string const & description)
34     : message_(description)
35 {
36 #ifdef SENF_DEBUG
37     addBacktrace();
38 #endif
39 }
40
41 prefix_ std::string const & senf::Exception::message()
42     const
43 {
44     return message_;
45 }
46
47 prefix_ void senf::Exception::append(std::string text)
48 {
49     message_ += text;
50 }
51
52 ///////////////////////////////////////////////////////////////////////////
53 // senf::SystemException
54
55 prefix_ senf::SystemException::SystemException(std::string const & descr _SENF_EXC_DEBUG_ARGS_ND)
56 {
57     init(descr, errno _SENF_EXC_DEBUG_ARGS_P);
58 }
59
60 prefix_ senf::SystemException::SystemException(int code _SENF_EXC_DEBUG_ARGS_ND)
61 {
62     init("", code _SENF_EXC_DEBUG_ARGS_P);
63 }
64
65 prefix_ senf::SystemException::SystemException(std::string const & descr, int code 
66                                                _SENF_EXC_DEBUG_ARGS_ND)
67 {
68     init(descr, code _SENF_EXC_DEBUG_ARGS_P);
69 }
70
71 prefix_ int senf::SystemException::errorNumber()
72     const
73 {
74     return code_;
75 }
76
77 prefix_ char const * senf::SystemException::errorString()
78     const
79 {
80     return std::strerror(code_);
81 }
82
83 prefix_ bool senf::SystemException::anyOf(int c0, int c1, int c2, int c3, int c4, int c5,
84                                           int c6, int c7, int c8, int c9)
85 {
86     return 
87         (c0 && code_ == c0) ||
88         (c1 && code_ == c1) ||
89         (c2 && code_ == c2) ||
90         (c3 && code_ == c3) ||
91         (c4 && code_ == c4) ||
92         (c5 && code_ == c5) ||
93         (c6 && code_ == c6) ||
94         (c7 && code_ == c7) ||
95         (c8 && code_ == c8) ||
96         (c9 && code_ == c9);
97 }
98
99 prefix_  senf::SystemException::~SystemException()
100     throw()
101 {}
102
103 ///////////////////////////////cci.e///////////////////////////////////////
104 #undef prefix_
105
106 \f
107 // Local Variables:
108 // mode: c++
109 // fill-column: 100
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // compile-command: "scons -u test"
114 // comment-column: 40
115 // End: