2007-03-08 04:03:40 +08:00
|
|
|
/**********************************************************************
|
|
|
|
* File: errcode.c (Formerly error.c)
|
|
|
|
* Description: Generic error handler function
|
|
|
|
* Author: Ray Smith
|
|
|
|
* Created: Tue May 1 16:28:39 BST 1990
|
|
|
|
*
|
|
|
|
* (C) Copyright 1989, Hewlett-Packard Ltd.
|
|
|
|
** 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.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#ifdef __UNIX__
|
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
|
|
|
#include "tprintf.h"
|
|
|
|
#include "errcode.h"
|
|
|
|
|
|
|
|
const ERRCODE BADERRACTION = "Illegal error action";
|
|
|
|
#define MAX_MSG 1024
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* error
|
|
|
|
*
|
|
|
|
* Print an error message and continue, exit or abort according to action.
|
|
|
|
* Makes use of error messages and numbers in a common place.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
2012-02-02 11:14:43 +08:00
|
|
|
void ERRCODE::error( // handle error
|
|
|
|
const char *caller, // name of caller
|
|
|
|
TessErrorLogCode action, // action to take
|
|
|
|
const char *format, ... // special message
|
|
|
|
) const {
|
|
|
|
va_list args; // variable args
|
2007-03-08 04:03:40 +08:00
|
|
|
char msg[MAX_MSG];
|
|
|
|
char *msgptr = msg;
|
|
|
|
|
|
|
|
if (caller != NULL)
|
|
|
|
//name of caller
|
|
|
|
msgptr += sprintf (msgptr, "%s:", caller);
|
|
|
|
//actual message
|
|
|
|
msgptr += sprintf (msgptr, "Error:%s", message);
|
|
|
|
if (format != NULL) {
|
|
|
|
msgptr += sprintf (msgptr, ":");
|
|
|
|
va_start(args, format); //variable list
|
2012-02-20 05:48:45 +08:00
|
|
|
#ifdef _WIN32
|
2007-03-08 04:03:40 +08:00
|
|
|
//print remainder
|
|
|
|
msgptr += _vsnprintf (msgptr, MAX_MSG - 2 - (msgptr - msg), format, args);
|
|
|
|
msg[MAX_MSG - 2] = '\0'; //ensure termination
|
|
|
|
strcat (msg, "\n");
|
|
|
|
#else
|
|
|
|
//print remainder
|
|
|
|
msgptr += vsprintf (msgptr, format, args);
|
|
|
|
//no specific
|
|
|
|
msgptr += sprintf (msgptr, "\n");
|
|
|
|
#endif
|
2007-05-16 09:33:38 +08:00
|
|
|
va_end(args);
|
2007-03-08 04:03:40 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
//no specific
|
|
|
|
msgptr += sprintf (msgptr, "\n");
|
|
|
|
|
2012-09-21 23:28:45 +08:00
|
|
|
// %s is needed here so msg is printed correctly!
|
|
|
|
fprintf(stderr, "%s", msg);
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2008-12-31 02:20:15 +08:00
|
|
|
int* p = NULL;
|
2007-03-08 04:03:40 +08:00
|
|
|
switch (action) {
|
|
|
|
case DBG:
|
2007-05-16 09:33:38 +08:00
|
|
|
case TESSLOG:
|
2007-03-08 04:03:40 +08:00
|
|
|
return; //report only
|
2010-11-24 02:34:14 +08:00
|
|
|
case TESSEXIT:
|
2008-12-31 02:20:15 +08:00
|
|
|
//err_exit();
|
2007-03-08 04:03:40 +08:00
|
|
|
case ABORT:
|
2008-12-31 02:20:15 +08:00
|
|
|
// Create a deliberate segv as the stack trace is more useful that way.
|
|
|
|
if (!*p)
|
|
|
|
abort();
|
2007-03-08 04:03:40 +08:00
|
|
|
default:
|
|
|
|
BADERRACTION.error ("error", ABORT, NULL);
|
|
|
|
}
|
|
|
|
}
|