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
23 #include <libtest/common.h>
28 fatal::fatal(const char *file
, int line
, const char *func
, const char *format
, ...) :
29 std::runtime_error(func
)
32 va_start(args
, format
);
33 char last_error
[BUFSIZ
];
34 (void)vsnprintf(last_error
, sizeof(last_error
), format
, args
);
37 snprintf(_error_message
, sizeof(_error_message
), "%s:%d FATAL:%s (%s)", file
, int(line
), last_error
, func
);
40 static bool _disabled
= false;
41 static uint32_t _counter
= 0;
43 bool fatal::is_disabled()
58 uint32_t fatal::disabled_counter()
63 void fatal::increment_disabled_counter()
68 disconnected::disconnected(const char *file
, int line
, const char *func
, const char *instance
, const in_port_t port
, const char *format
, ...) :
70 std::runtime_error(func
)
72 strncpy(_instance
, instance
, sizeof(_instance
));
74 va_start(args
, format
);
75 char last_error
[BUFSIZ
];
76 (void)vsnprintf(last_error
, sizeof(last_error
), format
, args
);
79 snprintf(_error_message
, sizeof(_error_message
), "%s:%d FATAL:%s (%s)", file
, int(line
), last_error
, func
);
82 } // namespace libtest