1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
12 * This library 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 GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #ifndef __PRETTY_FUNCTION__
27 #define __PRETTY_FUNCTION__ __func__
30 #define LIBYATL_DEFAULT_PARAM __FILE__, __LINE__, __PRETTY_FUNCTION__
34 class fatal : std::runtime_error
37 fatal(const char *file, int line, const char *func, const char *format, ...);
39 const char* what() const throw()
41 return _error_message;
44 // The following are just for unittesting the exception class
45 static bool is_disabled();
46 static void disable();
48 static uint32_t disabled_counter();
49 static void increment_disabled_counter();
52 char _error_message[BUFSIZ];
55 class disconnected : std::runtime_error
58 disconnected(const char *file, int line, const char *func, const char *instance, const in_port_t port, const char *format, ...);
60 const char* what() const throw()
62 return _error_message;
65 // The following are just for unittesting the exception class
66 static bool is_disabled();
67 static void disable();
69 static uint32_t disabled_counter();
70 static void increment_disabled_counter();
73 char _error_message[BUFSIZ];
79 } // namespace libtest
81 #define fatal_message(__mesg) throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "%s", __mesg)
82 #define fatal_assert(__assert) if((__assert)) {} else { throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "%s", #__assert); }