author | Michael Krelin <hacker@klever.net> | 2007-09-22 20:56:57 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-09-22 20:56:57 (UTC) |
commit | 5cb71518360f865cd4448a083b5d481e6f356a3e (patch) (unidiff) | |
tree | 4faeab2b1a1a14c589745be714be18471879e781 /include/opkele/exception.h | |
parent | 5cfe3f2743c2b2eb2689090516a4e667fd8ca29a (diff) | |
download | libopkele-5cb71518360f865cd4448a083b5d481e6f356a3e.zip libopkele-5cb71518360f865cd4448a083b5d481e6f356a3e.tar.gz libopkele-5cb71518360f865cd4448a083b5d481e6f356a3e.tar.bz2 |
got rid of all pcre wrappers altogether
although all claims against pcre++ make absolutely no sense. But for now I'll
live with no wrappers at all. I may reconsider it when implementing more
sophisticated discovery mechanisms for upcoming extensions.
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/exception.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/opkele/exception.h b/include/opkele/exception.h index 0150e6b..753a818 100644 --- a/include/opkele/exception.h +++ b/include/opkele/exception.h | |||
@@ -23,195 +23,204 @@ | |||
23 | * the exception codepoint specification | 23 | * the exception codepoint specification |
24 | */ | 24 | */ |
25 | # define OPKELE_CP_ CODEPOINT, | 25 | # define OPKELE_CP_ CODEPOINT, |
26 | /** | 26 | /** |
27 | * the simple rethrow of konforka-based exception | 27 | * the simple rethrow of konforka-based exception |
28 | */ | 28 | */ |
29 | # define OPKELE_RETHROW catch(konforka::exception& e) { e.see(CODEPOINT); throw } | 29 | # define OPKELE_RETHROW catch(konforka::exception& e) { e.see(CODEPOINT); throw } |
30 | #else /* OPKELE_HAVE_KONFORKA */ | 30 | #else /* OPKELE_HAVE_KONFORKA */ |
31 | # include <exception> | 31 | # include <exception> |
32 | # include <string> | 32 | # include <string> |
33 | /** | 33 | /** |
34 | * the exception parameter declaration | 34 | * the exception parameter declaration |
35 | */ | 35 | */ |
36 | # define OPKELE_E_PARS const string& w | 36 | # define OPKELE_E_PARS const string& w |
37 | /** | 37 | /** |
38 | * the dummy prefix for exception parameters list to prepend in the absence of | 38 | * the dummy prefix for exception parameters list to prepend in the absence of |
39 | * konforka library | 39 | * konforka library |
40 | */ | 40 | */ |
41 | # define OPKELE_E_CONS_ | 41 | # define OPKELE_E_CONS_ |
42 | /** | 42 | /** |
43 | * the dummy placeholder for konforka exception codepoint specification | 43 | * the dummy placeholder for konforka exception codepoint specification |
44 | */ | 44 | */ |
45 | # define OPKELE_CP_ | 45 | # define OPKELE_CP_ |
46 | /** | 46 | /** |
47 | * the dummy define for the konforka-based rethrow of exception | 47 | * the dummy define for the konforka-based rethrow of exception |
48 | */ | 48 | */ |
49 | # define OPKELE_RETHROW | 49 | # define OPKELE_RETHROW |
50 | #endif /* OPKELE_HAVE_KONFORKA */ | 50 | #endif /* OPKELE_HAVE_KONFORKA */ |
51 | /** | 51 | /** |
52 | * the exception parameters list to pass to constructor | 52 | * the exception parameters list to pass to constructor |
53 | */ | 53 | */ |
54 | # define OPKELE_E_CONS OPKELE_E_CONS_ w | 54 | # define OPKELE_E_CONS OPKELE_E_CONS_ w |
55 | 55 | ||
56 | namespace opkele { | 56 | namespace opkele { |
57 | using std::string; | 57 | using std::string; |
58 | 58 | ||
59 | /** | 59 | /** |
60 | * the base opkele exception class | 60 | * the base opkele exception class |
61 | */ | 61 | */ |
62 | class exception : public | 62 | class exception : public |
63 | # ifdef OPKELE_HAVE_KONFORKA | 63 | # ifdef OPKELE_HAVE_KONFORKA |
64 | konforka::exception | 64 | konforka::exception |
65 | # else | 65 | # else |
66 | std::exception | 66 | std::exception |
67 | # endif | 67 | # endif |
68 | { | 68 | { |
69 | public: | 69 | public: |
70 | # ifdef OPKELE_HAVE_KONFORKA | 70 | # ifdef OPKELE_HAVE_KONFORKA |
71 | explicit | 71 | explicit |
72 | exception(const string& fi,const string& fu,int l,const string& w) | 72 | exception(const string& fi,const string& fu,int l,const string& w) |
73 | : konforka::exception(fi,fu,l,w) { } | 73 | : konforka::exception(fi,fu,l,w) { } |
74 | # else /* OPKELE_HAVE_KONFORKA */ | 74 | # else /* OPKELE_HAVE_KONFORKA */ |
75 | string _what; | 75 | string _what; |
76 | explicit | 76 | explicit |
77 | exception(const string& w) | 77 | exception(const string& w) |
78 | : _what(w) { } | 78 | : _what(w) { } |
79 | virtual ~exception() throw(); | 79 | virtual ~exception() throw(); |
80 | virtual const char * what() const throw(); | 80 | virtual const char * what() const throw(); |
81 | # endif /* OPKELE_HAVE_KONFORKA */ | 81 | # endif /* OPKELE_HAVE_KONFORKA */ |
82 | }; | 82 | }; |
83 | 83 | ||
84 | /** | 84 | /** |
85 | * thrown in case of failed conversion | 85 | * thrown in case of failed conversion |
86 | */ | 86 | */ |
87 | class failed_conversion : public exception { | 87 | class failed_conversion : public exception { |
88 | public: | 88 | public: |
89 | failed_conversion(OPKELE_E_PARS) | 89 | failed_conversion(OPKELE_E_PARS) |
90 | : exception(OPKELE_E_CONS) { } | 90 | : exception(OPKELE_E_CONS) { } |
91 | }; | 91 | }; |
92 | /** | 92 | /** |
93 | * thrown in case of failed lookup (either parameter or persistent store) | 93 | * thrown in case of failed lookup (either parameter or persistent store) |
94 | */ | 94 | */ |
95 | class failed_lookup : public exception { | 95 | class failed_lookup : public exception { |
96 | public: | 96 | public: |
97 | failed_lookup(OPKELE_E_PARS) | 97 | failed_lookup(OPKELE_E_PARS) |
98 | : exception(OPKELE_E_CONS) { } | 98 | : exception(OPKELE_E_CONS) { } |
99 | }; | 99 | }; |
100 | /** | 100 | /** |
101 | * thrown in case of bad input (either local or network) | 101 | * thrown in case of bad input (either local or network) |
102 | */ | 102 | */ |
103 | class bad_input : public exception { | 103 | class bad_input : public exception { |
104 | public: | 104 | public: |
105 | bad_input(OPKELE_E_PARS) | 105 | bad_input(OPKELE_E_PARS) |
106 | : exception(OPKELE_E_CONS) { } | 106 | : exception(OPKELE_E_CONS) { } |
107 | }; | 107 | }; |
108 | 108 | ||
109 | /** | 109 | /** |
110 | * thrown on failed assertion | 110 | * thrown on failed assertion |
111 | */ | 111 | */ |
112 | class failed_assertion : public exception { | 112 | class failed_assertion : public exception { |
113 | public: | 113 | public: |
114 | failed_assertion(OPKELE_E_PARS) | 114 | failed_assertion(OPKELE_E_PARS) |
115 | : exception(OPKELE_E_CONS) { } | 115 | : exception(OPKELE_E_CONS) { } |
116 | }; | 116 | }; |
117 | 117 | ||
118 | /** | 118 | /** |
119 | * thrown if the handle being retrieved is invalid | 119 | * thrown if the handle being retrieved is invalid |
120 | */ | 120 | */ |
121 | class invalid_handle : public exception { | 121 | class invalid_handle : public exception { |
122 | public: | 122 | public: |
123 | invalid_handle(OPKELE_E_PARS) | 123 | invalid_handle(OPKELE_E_PARS) |
124 | : exception(OPKELE_E_CONS) { } | 124 | : exception(OPKELE_E_CONS) { } |
125 | }; | 125 | }; |
126 | /** | 126 | /** |
127 | * thrown if the handle passed to check_authentication request is not | 127 | * thrown if the handle passed to check_authentication request is not |
128 | * stateless | 128 | * stateless |
129 | */ | 129 | */ |
130 | class stateful_handle : public exception { | 130 | class stateful_handle : public exception { |
131 | public: | 131 | public: |
132 | stateful_handle(OPKELE_E_PARS) | 132 | stateful_handle(OPKELE_E_PARS) |
133 | : exception(OPKELE_E_CONS) { } | 133 | : exception(OPKELE_E_CONS) { } |
134 | }; | 134 | }; |
135 | 135 | ||
136 | /** | 136 | /** |
137 | * thrown if check_authentication request fails | 137 | * thrown if check_authentication request fails |
138 | */ | 138 | */ |
139 | class failed_check_authentication : public exception { | 139 | class failed_check_authentication : public exception { |
140 | public: | 140 | public: |
141 | failed_check_authentication(OPKELE_E_PARS) | 141 | failed_check_authentication(OPKELE_E_PARS) |
142 | : exception(OPKELE_E_CONS) { } | 142 | : exception(OPKELE_E_CONS) { } |
143 | }; | 143 | }; |
144 | 144 | ||
145 | /** | 145 | /** |
146 | * thrown if the id_res request result is negative | 146 | * thrown if the id_res request result is negative |
147 | */ | 147 | */ |
148 | class id_res_failed : public exception { | 148 | class id_res_failed : public exception { |
149 | public: | 149 | public: |
150 | id_res_failed(OPKELE_E_PARS) | 150 | id_res_failed(OPKELE_E_PARS) |
151 | : exception(OPKELE_E_CONS) { } | 151 | : exception(OPKELE_E_CONS) { } |
152 | }; | 152 | }; |
153 | /** | 153 | /** |
154 | * thrown if the user_setup_url is provided with negative response | 154 | * thrown if the user_setup_url is provided with negative response |
155 | */ | 155 | */ |
156 | class id_res_setup : public id_res_failed { | 156 | class id_res_setup : public id_res_failed { |
157 | public: | 157 | public: |
158 | string setup_url; | 158 | string setup_url; |
159 | id_res_setup(OPKELE_E_PARS,const string& su) | 159 | id_res_setup(OPKELE_E_PARS,const string& su) |
160 | : id_res_failed(OPKELE_E_CONS), setup_url(su) { } | 160 | : id_res_failed(OPKELE_E_CONS), setup_url(su) { } |
161 | ~id_res_setup() throw() { } | 161 | ~id_res_setup() throw() { } |
162 | }; | 162 | }; |
163 | /** | 163 | /** |
164 | * thrown in case of signature mismatch | 164 | * thrown in case of signature mismatch |
165 | */ | 165 | */ |
166 | class id_res_mismatch : public id_res_failed { | 166 | class id_res_mismatch : public id_res_failed { |
167 | public: | 167 | public: |
168 | id_res_mismatch(OPKELE_E_PARS) | 168 | id_res_mismatch(OPKELE_E_PARS) |
169 | : id_res_failed(OPKELE_E_CONS) { } | 169 | : id_res_failed(OPKELE_E_CONS) { } |
170 | }; | 170 | }; |
171 | 171 | ||
172 | /** | 172 | /** |
173 | * openssl malfunction occured | 173 | * openssl malfunction occured |
174 | */ | 174 | */ |
175 | class exception_openssl : public exception { | 175 | class exception_openssl : public exception { |
176 | public: | 176 | public: |
177 | unsigned long _error; | 177 | unsigned long _error; |
178 | string _ssl_string; | 178 | string _ssl_string; |
179 | exception_openssl(OPKELE_E_PARS); | 179 | exception_openssl(OPKELE_E_PARS); |
180 | ~exception_openssl() throw() { } | 180 | ~exception_openssl() throw() { } |
181 | }; | 181 | }; |
182 | 182 | ||
183 | /** | 183 | /** |
184 | * network operation related error occured | 184 | * network operation related error occured |
185 | */ | 185 | */ |
186 | class exception_network : public exception { | 186 | class exception_network : public exception { |
187 | public: | 187 | public: |
188 | exception_network(OPKELE_E_PARS) | 188 | exception_network(OPKELE_E_PARS) |
189 | : exception(OPKELE_E_CONS) { } | 189 | : exception(OPKELE_E_CONS) { } |
190 | }; | 190 | }; |
191 | 191 | ||
192 | /** | 192 | /** |
193 | * network operation related error occured, specifically, related to | 193 | * network operation related error occured, specifically, related to |
194 | * libcurl | 194 | * libcurl |
195 | */ | 195 | */ |
196 | class exception_curl : public exception_network { | 196 | class exception_curl : public exception_network { |
197 | public: | 197 | public: |
198 | CURLcode _error; | 198 | CURLcode _error; |
199 | string _curl_string; | 199 | string _curl_string; |
200 | exception_curl(OPKELE_E_PARS); | 200 | exception_curl(OPKELE_E_PARS); |
201 | exception_curl(OPKELE_E_PARS,CURLcode e); | 201 | exception_curl(OPKELE_E_PARS,CURLcode e); |
202 | ~exception_curl() throw() { } | 202 | ~exception_curl() throw() { } |
203 | }; | 203 | }; |
204 | 204 | ||
205 | /** | 205 | /** |
206 | * not implemented (think pure virtual) member function executed, signfies | 206 | * not implemented (think pure virtual) member function executed, signfies |
207 | * programmer error | 207 | * programmer error |
208 | */ | 208 | */ |
209 | class not_implemented : public exception { | 209 | class not_implemented : public exception { |
210 | public: | 210 | public: |
211 | not_implemented(OPKELE_E_PARS) | 211 | not_implemented(OPKELE_E_PARS) |
212 | : exception(OPKELE_E_CONS) { } | 212 | : exception(OPKELE_E_CONS) { } |
213 | }; | 213 | }; |
214 | 214 | ||
215 | /** | ||
216 | * internal error, indicates internal libopkele problem | ||
217 | */ | ||
218 | class internal_error : public exception { | ||
219 | public: | ||
220 | internal_error(OPKELE_E_PARS) | ||
221 | : exception(OPKELE_E_CONS) { } | ||
222 | }; | ||
223 | |||
215 | } | 224 | } |
216 | 225 | ||
217 | #endif /* __OPKELE_EXCEPTION_H */ | 226 | #endif /* __OPKELE_EXCEPTION_H */ |