Add BIND 9.2.4rc7.
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / isc / error.c
blobb048c0de2dfced8ee2d735a3c979fd10eda098a0
1 /*
2 * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (C) 1998-2001 Internet Software Consortium.
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15 * PERFORMANCE OF THIS SOFTWARE.
18 /* $Id: error.c,v 1.16.2.1 2004/03/09 06:11:45 marka Exp $ */
20 #include <config.h>
22 #include <stdio.h>
23 #include <stdlib.h>
25 #include <isc/error.h>
26 #include <isc/msgs.h>
28 static void
29 default_unexpected_callback(const char *, int, const char *, va_list)
30 ISC_FORMAT_PRINTF(3, 0);
32 static void
33 default_fatal_callback(const char *, int, const char *, va_list)
34 ISC_FORMAT_PRINTF(3, 0);
36 static isc_errorcallback_t unexpected_callback = default_unexpected_callback;
37 static isc_errorcallback_t fatal_callback = default_fatal_callback;
39 void
40 isc_error_setunexpected(isc_errorcallback_t cb) {
41 if (cb == NULL)
42 unexpected_callback = default_unexpected_callback;
43 else
44 unexpected_callback = cb;
47 void
48 isc_error_setfatal(isc_errorcallback_t cb) {
49 if (cb == NULL)
50 fatal_callback = default_fatal_callback;
51 else
52 fatal_callback = cb;
55 void
56 isc_error_unexpected(const char *file, int line, const char *format, ...) {
57 va_list args;
59 va_start(args, format);
60 (unexpected_callback)(file, line, format, args);
61 va_end(args);
64 void
65 isc_error_fatal(const char *file, int line, const char *format, ...) {
66 va_list args;
68 va_start(args, format);
69 (fatal_callback)(file, line, format, args);
70 va_end(args);
71 abort();
74 void
75 isc_error_runtimecheck(const char *file, int line, const char *expression) {
76 isc_error_fatal(file, line, "RUNTIME_CHECK(%s) %s", expression,
77 isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
78 ISC_MSG_FAILED, "failed"));
81 static void
82 default_unexpected_callback(const char *file, int line, const char *format,
83 va_list args)
85 fprintf(stderr, "%s:%d: ", file, line);
86 vfprintf(stderr, format, args);
87 fprintf(stderr, "\n");
88 fflush(stderr);
91 static void
92 default_fatal_callback(const char *file, int line, const char *format,
93 va_list args)
95 fprintf(stderr, "%s:%d: %s: ", file, line,
96 isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
97 ISC_MSG_FATALERROR, "fatal error"));
98 vfprintf(stderr, format, args);
99 fprintf(stderr, "\n");
100 fflush(stderr);