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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
/* ----------------------------------------------------------------------------
@COPYRIGHT :
Copyright 1993,1994,1995 David MacDonald,
McConnell Brain Imaging Centre,
Montreal Neurological Institute, McGill University.
Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies. The author and McGill University
make no representations about the suitability of this
software for any purpose. It is provided "as is" without
express or implied warranty.
---------------------------------------------------------------------------- */
#include <internal_volume_io.h>
#include <stdarg.h>
#define MAX_PRINT_STACK 100
typedef void (*print_function_type) ( STRING );
static print_function_type print_function[MAX_PRINT_STACK] = { NULL };
static int top_of_stack = 0;
static print_function_type print_error_function[MAX_PRINT_STACK] = { NULL };
static int top_of_error_stack = 0;
/* ----------------------------- MNI Header -----------------------------------
@NAME : set_print_function
@INPUT : function
@OUTPUT :
@RETURNS :
@DESCRIPTION: Sets the output function. If you use the function print()
everywhere, in place of printf, then by default it uses
printf to send output to stdout. However, you can call
the set_print_function() to tell it to use a different output
function, e.g. output to a GL or X window.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void set_print_function( void (*function) ( STRING ) )
{
print_function[top_of_stack] = function;
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : push_print_function
@INPUT :
@OUTPUT :
@RETURNS :
@DESCRIPTION: Save the current print function, so, for instance, you can
print to stdout temporarily.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void push_print_function( void )
{
if( top_of_stack < MAX_PRINT_STACK - 1 )
{
++top_of_stack;
print_function[top_of_stack] = NULL;
}
else
handle_internal_error( "Stack overflow in push_print_function" );
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : pop_print_function
@INPUT :
@OUTPUT :
@RETURNS :
@DESCRIPTION: Restore the print function.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void pop_print_function( void )
{
if( top_of_stack > 0 )
--top_of_stack;
else
handle_internal_error( "Stack underflow in pop_print_function" );
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : print
@INPUT : exactly same arguments as printf
@OUTPUT :
@RETURNS :
@DESCRIPTION: prints the arguments to a temporary string buffer, then either
printf's the or calls the user installed function to output
the string.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
/* VARARGS */
VIOAPI void print( STRING format, ... )
{
va_list ap;
char print_buffer[EXTREMELY_LARGE_STRING_SIZE];
va_start( ap, format );
(void) vsprintf( print_buffer, format, ap );
va_end( ap );
if( print_function[top_of_stack] == NULL )
(void) printf( "%s", print_buffer );
else
(*(print_function[top_of_stack])) ( print_buffer );
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : set_print_error_function
@INPUT : function
@OUTPUT :
@RETURNS :
@DESCRIPTION: Sets the output function. If you use the function print_error()
everywhere, in place of printf, then by default it uses
printf to send output to stderr. However, you can call
the set_print_error_function() to tell it to use a different
output function, e.g. output to a GL or X window.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void set_print_error_function( void (*function) ( char [] ) )
{
print_error_function[top_of_error_stack] = function;
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : push_print_error_function
@INPUT :
@OUTPUT :
@RETURNS :
@DESCRIPTION: Save the current print error function, so, for instance, you can
print to stdout temporarily.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void push_print_error_function( void )
{
if( top_of_error_stack < MAX_PRINT_STACK - 1 )
{
++top_of_error_stack;
print_error_function[top_of_error_stack] = NULL;
}
else
handle_internal_error( "Stack overflow in push_print_error_function" );
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : pop_print_error_function
@INPUT :
@OUTPUT :
@RETURNS :
@DESCRIPTION: Restore the print_error function.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void pop_print_error_function( void )
{
if( top_of_error_stack > 0 )
--top_of_error_stack;
else
handle_internal_error( "Stack underflow in pop_print_error_function" );
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : print_error
@INPUT : exactly same arguments as printf
@OUTPUT :
@RETURNS :
@DESCRIPTION: prints the arguments to a temporary string buffer, then either
fprintf's to stderr or calls the user installed function to
output the string.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
/* VARARGS */
VIOAPI void print_error( char format[], ... )
{
va_list ap;
char print_buffer[EXTREMELY_LARGE_STRING_SIZE];
va_start( ap, format );
(void) vsprintf( print_buffer, format, ap );
va_end( ap );
if( print_error_function[top_of_error_stack] == NULL )
(void) fprintf( stderr, "%s", print_buffer );
else
(*(print_error_function[top_of_error_stack])) ( print_buffer );
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : handle_internal_error
@INPUT : str
@OUTPUT :
@RETURNS :
@DESCRIPTION: Prints the error string and tries to get users permission to
abort.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 1993 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void handle_internal_error( char str[] )
{
print_error( "Internal error: %s\n", str );
abort_if_allowed();
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : abort_if_allowed
@INPUT :
@OUTPUT :
@RETURNS :
@DESCRIPTION: Checks if the user wants to abort.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
VIOAPI void abort_if_allowed( void )
{
char ch;
if( ENV_EXISTS( "ABORT_FLAG" ) )
{
print_error( "Do you wish to abort (y/n): " );
do
{
ch = (char) getchar();
}
while( ch != 'y' && ch != 'n' );
while( getchar() != '\n' )
{
}
if( ch == 'y' )
{
abort();
}
}
}
|