PPI: Add simple connector type compatibility check
[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
37 prefix_ std::string const & senf::Exception::message()
38     const
39 {
40     return message_;
41 }
42
43 prefix_ void senf::Exception::append(std::string text)
44 {
45     message_ += text;
46 }
47
48 ///////////////////////////////////////////////////////////////////////////
49 // senf::SystemException
50
51 prefix_ senf::SystemException::SystemException(std::string const & descr _SENF_EXC_DEBUG_ARGS_ND)
52 {
53     init(descr, errno _SENF_EXC_DEBUG_ARGS_P);
54 }
55
56 prefix_ senf::SystemException::SystemException(int code _SENF_EXC_DEBUG_ARGS_ND)
57 {
58     init("", code _SENF_EXC_DEBUG_ARGS_P);
59 }
60
61 prefix_ senf::SystemException::SystemException(std::string const & descr, int code 
62                                                _SENF_EXC_DEBUG_ARGS_ND)
63 {
64     init(descr, code _SENF_EXC_DEBUG_ARGS_P);
65 }
66
67 prefix_ int senf::SystemException::errorNumber()
68     const
69 {
70     return code_;
71 }
72
73 prefix_ char const * senf::SystemException::errorString()
74     const
75 {
76     return std::strerror(code_);
77 }
78
79 prefix_ bool senf::SystemException::anyOf(int c0, int c1, int c2, int c3, int c4, int c5,
80                                           int c6, int c7, int c8, int c9)
81 {
82     return 
83         (c0 && code_ == c0) ||
84         (c1 && code_ == c1) ||
85         (c2 && code_ == c2) ||
86         (c3 && code_ == c3) ||
87         (c4 && code_ == c4) ||
88         (c5 && code_ == c5) ||
89         (c6 && code_ == c6) ||
90         (c7 && code_ == c7) ||
91         (c8 && code_ == c8) ||
92         (c9 && code_ == c9);
93 }
94
95 prefix_  senf::SystemException::~SystemException()
96     throw()
97 {}
98
99 ///////////////////////////////cci.e///////////////////////////////////////
100 #undef prefix_
101
102 \f
103 // Local Variables:
104 // mode: c++
105 // fill-column: 100
106 // c-file-style: "senf"
107 // indent-tabs-mode: nil
108 // ispell-local-dictionary: "american"
109 // compile-command: "scons -u test"
110 // comment-column: 40
111 // End: