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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
|
/* handle error/warning reporting */
/* stdout will be flushed before any write to stderr
* stderr will be flushed after any write to it
*/
#include "includes.h"
bool
displayErrors, /* used to determine if errors should be displayed */
displayWarnings, /* used to determine if warnings should be displayed */
displayMessages, /* used to determine if messages should be displayed */
displayDiagnostics; /* used to determine if diagnostics should be displayed */
ULONG
numErrors, /* keep track of the number of calls to each of these */
numWarnings,
numMessages,
numDiagnostics;
ULONG
numDisplayedErrors, /* keep track of the number of calls to each of these that printed */
numDisplayedWarnings,
numDisplayedMessages,
numDisplayedDiagnostics;
char
errorFileName[MAXERRORFILENAME+1]; /* name of file that error occured in (if NULL, then no file) */
ULONG
errorLineNum; /* line number that error occured on (if no file name, this is meaningless) */
void SetErrorFile(char *theString)
/* set the name of the file, so that if ReportError, or ReportWarning, the
* file name can be displayed
* if theString is of length 0, then no file, or line number will be reported
*/
{
strncpy(&(errorFileName[0]),theString,MAXERRORFILENAME); /* copy the passed file name */
errorFileName[MAXERRORFILENAME]='\0'; /* terminate the name */
}
void GetErrorFile(char *theString,int theStringSize)
/* copy the current error file string into theString
*/
{
if(theStringSize)
{
strncpy(theString,&(errorFileName[0]),theStringSize-1); /* leave room for null terminator */
theString[theStringSize-1]='\0'; /* terminate if strncpy could not */
}
}
void SetErrorLine(ULONG theLine)
/* set the line number so that if ReportError, or ReportWarning are called, the
* line number will be correct
*/
{
errorLineNum=theLine;
}
ULONG GetErrorLine()
/* return the line number that will be reported if an error occurs
*/
{
return(errorLineNum);
}
void SetNumErrors(ULONG theNumber)
/* set the count of the number of errors
*/
{
numErrors=theNumber;
}
ULONG GetNumErrors()
/* get the count of the number of errors
*/
{
return(numErrors);
}
void SetNumWarnings(ULONG theNumber)
/* set the count of the number of warnings
*/
{
numWarnings=theNumber;
}
ULONG GetNumWarnings()
/* get the count of the number of warnings
*/
{
return(numWarnings);
}
void SetNumMessages(ULONG theNumber)
/* set the count of the number of messages
*/
{
numMessages=theNumber;
}
ULONG GetNumMessages()
/* get the count of the number of messages
*/
{
return(numMessages);
}
void SetNumDiagnostics(ULONG theNumber)
/* set the count of the number of diagnostics
*/
{
numDiagnostics=theNumber;
}
ULONG GetNumDiagnostics()
/* get the count of the number of diagnostics
*/
{
return(numDiagnostics);
}
void SetNumDisplayedErrors(ULONG theNumber)
/* set the count of the number of displayed errors
*/
{
numDisplayedErrors=theNumber;
}
ULONG GetNumDisplayedErrors()
/* get the count of the number of displayed errors
*/
{
return(numDisplayedErrors);
}
void SetNumDisplayedWarnings(ULONG theNumber)
/* set the count of the number of displayed warnings
*/
{
numDisplayedWarnings=theNumber;
}
ULONG GetNumDisplayedWarnings()
/* get the count of the number of displayed warnings
*/
{
return(numDisplayedWarnings);
}
void SetNumDisplayedMessages(ULONG theNumber)
/* set the count of the number of displayed messages
*/
{
numDisplayedMessages=theNumber;
}
ULONG GetNumDisplayedMessages()
/* get the count of the number of displayed messages
*/
{
return(numDisplayedMessages);
}
void SetNumDisplayedDiagnostics(ULONG theNumber)
/* set the count of the number of displayed diagnostics
*/
{
numDisplayedDiagnostics=theNumber;
}
ULONG GetNumDisplayedDiagnostics()
/* get the count of the number of displayed diagnostics
*/
{
return(numDisplayedDiagnostics);
}
void SetErrorDisplay(bool doDisplay)
/* set the status of error display
*/
{
displayErrors=doDisplay;
}
bool GetErrorDisplay()
/* get the status of error display
*/
{
return(displayErrors);
}
void SetWarningDisplay(bool doDisplay)
/* set the status of warning display
*/
{
displayWarnings=doDisplay;
}
bool GetWarningDisplay()
/* get the status of warning display
*/
{
return(displayWarnings);
}
void SetMessageDisplay(bool doDisplay)
/* set the status of message display
*/
{
displayMessages=doDisplay;
}
bool GetMessageDisplay()
/* get the status of message display
*/
{
return(displayMessages);
}
void SetDiagnosticDisplay(bool doDisplay)
/* set the status of diagnostic display
*/
{
displayDiagnostics=doDisplay;
}
bool GetDiagnosticDisplay()
/* get the status of diagnostic display
*/
{
return(displayDiagnostics);
}
void vReportError(char *format,va_list args)
/* if an error occurs, report it with this function
*/
{
if(displayErrors)
{
fflush(stdout); /* accomodate machines that may be buffering */
fprintf(stderr,"\nerror: ");
vfprintf(stderr,format,args); /* call dump the string */
if(strlen(&(errorFileName[0])))
{
fprintf(stderr,"File '%s'; Line %d\n",&(errorFileName[0]),errorLineNum);
}
fflush(stderr); /* accomodate machines that may be buffering */
numDisplayedErrors++;
}
numErrors++;
}
void vReportWarning(char *format,va_list args)
/* if a warning occurs, report it with this function
*/
{
if(displayWarnings)
{
fflush(stdout); /* accomodate machines that may be buffering */
fprintf(stderr,"\nWarning --------\n");
vfprintf(stderr,format,args); /* call dump the string */
if(strlen(&(errorFileName[0])))
{
fprintf(stderr,"File '%s'; Line %d\n",&(errorFileName[0]),errorLineNum);
}
fflush(stderr); /* accomodate machines that may be buffering */
numDisplayedWarnings++;
}
numWarnings++;
}
void vReportMessage(char *format,va_list args)
/* report a message to the user
*/
{
if(displayMessages)
{
vfprintf(stdout,format,args); /* call dump the string */
numDisplayedMessages++;
}
numMessages++;
}
void vReportDiagnostic(char *format,va_list args)
/* report current diagnostic conditions with this
*/
{
if(displayDiagnostics)
{
fflush(stdout); /* accomodate machines that may be buffering */
vfprintf(stderr,format,args); /* call dump the string */
fflush(stderr); /* accomodate machines that may be buffering */
numDisplayedDiagnostics++;
}
numDiagnostics++;
}
void ReportError(char *format,...)
/* if an error occurs, report it with this function
*/
{
va_list
args;
va_start(args,format);
vReportError(format,args); /* do actual reporting */
va_end(args);
}
void ReportWarning(char *format,...)
/* if an warning occurs, report it with this function
*/
{
va_list
args;
va_start(args,format);
vReportWarning(format,args); /* do actual reporting */
va_end(args);
}
void ReportMessage(char *format,...)
/* report a message to the user
*/
{
va_list
args;
va_start(args,format);
vReportMessage(format,args); /* do actual reporting */
va_end(args);
}
void ReportDiagnostic(char *format,...)
/* report current diagnostic conditions with this
*/
{
va_list
args;
va_start(args,format);
vReportDiagnostic(format,args); /* do actual reporting */
va_end(args);
}
bool InitReportErrors()
/* initialize error handling structures
* if there is a problem, return false
*/
{
SetErrorFile("");
SetErrorLine((ULONG)0);
SetNumErrors((ULONG)0);
SetNumWarnings((ULONG)0);
SetNumMessages((ULONG)0);
SetNumDiagnostics((ULONG)0);
SetNumDisplayedErrors((ULONG)0);
SetNumDisplayedWarnings((ULONG)0);
SetNumDisplayedMessages((ULONG)0);
SetNumDisplayedDiagnostics((ULONG)0);
SetErrorDisplay(true);
SetWarningDisplay(true);
SetMessageDisplay(true);
SetDiagnosticDisplay(false);
return(true);
}
void UnInitReportErrors()
/* uninitialize error handling structures
*/
{
}
|