1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/*
* Copyright 1999-2006 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright (c) 1991-1994 by the University of Southern California
* Part of GOST library
*/
#ifndef OLDGAA_GL_INTERNAL_ERR_H
/* OUT OF MEMORY */
extern int gl__is_out_of_memory; /* used internally by gl__fout_of_memory() */
void oldgaa_gl__fout_of_memory(const char file[], int lineno);
/* #define out_of_memory() \
gl__fout_of_memory(__FILE__, __LINE__); */
extern void (*gl_out_of_memory_handler)(const char file[], int line);
/* BUFFER FULL */
#define interr_buffer_full() \
gl__function_internal_error_helper(__FILE__, __LINE__, "A buffer filled up");
/*********************/
/* ASSERT */
#ifdef assert /* in case ASSERT.H was already included. We
want to over-ride it. */
#undef assert
#endif /* assert */
#ifndef NDEBUG
#define assert(expr) do { \
if (!(expr)) \
gl__function_internal_error_helper(__FILE__, __LINE__, "assertion violated: " #expr); \
} while(0)
#else /* NDEBUG */
#define assert(expr) do {;} while(0)
#endif /* NDEBUG */
/*****************************************/
/* INTERNAL_ERROR */
/* This is the main macro we call when an 'internal error' has occurred.
This is usually a "can't happen" condition. */
#define internal_error(msg) \
gl__function_internal_error_helper(__FILE__, __LINE__, msg)
/* There are two helpers you can set this to. */
/* The macro version might be useful in instances where we might have blown the
stack. The function version is used instead of the macro version in order
to save a bit of code space (one function call instead of that inline code).
Each has a description below. */
/* The macro version currently (8/9/96) displays errors of the form:
Internal error in file foo.c (line __LINE__): strange error */
/* We are trying to figure out how to handle this one. --steve 8/9/96 */
/* 8/9/96: I don't know under what circumstances we would have LINE be zero.
Must've happened oor I wouldn't have written it. --swa */
/* 8/9/96: using gl__function_internal_error_helper() always now; this
is (a) a way around the __LINE__ problem and (b) if the stack is
really trashed (the rationale for making the internal error handler
into inline code), then we won't be able to call write() or
abort() either, so the macro wouldn't buy us anything useful. */
/* I wish there were a way of getting rid of the strlen() and the
write() in the macro version; don't think we can do this in a
machine-independent way, though. If you ever encounter a problem and need
to enable this macro again to debug it, then I recommend using inline
assembly code with the C ASM construct. */
/* I know I could find a way around the macro's problem in printing the
__LINE__ appropriately, but I am not doing so, since this code is not in
use; we use the function version exclusively */
#define gl__macro_internal_error_helper(file,line,msg) \
do { \
/* If LINE is ZERO, then print no prefatory message. */ \
if (line) { \
write(2, "Internal error in file " file " (line " #line "): ",\
sizeof "Internal error in file " file " (line " #line "): " -1);\
} \
write(2, msg, strlen(msg)); \
/* If LINE is ZERO, then print no terminal \n. */ \
if (line) \
write(2, "\n", 1); \
if (internal_error_handler) \
(*internal_error_handler)(file, line, msg); \
/* If the internal_error_handler() ever returns, we should not continue.
*/ \
abort(); \
} while(0)
/* Function form of internal_error. Shrinks code size. It is not clear that
both this and the MACRO version are needed; they have the same
interface. */
void gl__function_internal_error_helper(const char file[], int linenumber, const char mesg[]);
/* This function may be set to handle internal errors. Dirsrv handles them in
this way, by logging to plog. It is int instead of void for historical
reasons: older versions of the PCC (Portable C Compiler) cannot handle
pointers to void functions. */
extern int (*internal_error_handler)(const char file[], int linenumber, const char mesg[]);
void gl_function_arguments_error(const char *format, ...);
#endif /* OLDGAA_GL_INTERNAL_ERR_H */
|