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
|
/*****************************************************************************
** This is part of the CTSim program
** Copyright (c) 1983-2009 Kevin Rosenberg
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License (version 2) as
** published by the Free Software Foundation.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
******************************************************************************/
#include <iostream>
#include <exception>
#include <stdexcept>
#include <stdarg.h>
#include <ctype.h>
#include <string>
#include "ct.h"
#ifdef HAVE_WXWINDOWS
#include "../src/ctsim.h"
#include <wx/log.h>
#endif
/* NAME
* sys_error System error handler
*
* SYNOPSIS
* sys_error (severity, msg, args . . .)
* int severity Severity of error
* char *msg Error message
* args Argument list, direct transfer to printf stack
*/
static int s_reportErrorLevel = ERR_TRACE; // Set error reporting level
void sys_error (int severity, const char *msg, ...)
{
va_list arg;
va_start(arg, msg);
std::string strOutput;
sys_verror (strOutput, severity, msg, arg);
#ifdef HAVE_WXWINDOWS
if (g_bRunningWXWindows) {
if (theApp) {
wxCommandEvent eventLog (wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
wxString msg (wxConvCurrent->cMB2WX(strOutput.c_str()));
if (msg.length() > 0) {
msg += wxChar('\n');
eventLog.SetString( msg );
wxPostEvent( theApp->getMainFrame(), eventLog ); // send log event, thread safe
}
} else {
wxMutexGuiEnter();
wxLog::OnLog (wxLOG_Message, wxConvCurrent->cMB2WX(strOutput.c_str()), time(NULL));
wxMutexGuiLeave();
}
}
else
std::cout << strOutput << "\n";
#else
std::cout << strOutput << "\n";
#endif
va_end(arg);
}
static unsigned long s_nErrorCount = 0;
unsigned long int g_lSysErrorMaxCount = 2000;
void sys_verror (std::string& strOutput, int severity, const char *msg, va_list arg)
{
if (severity < s_reportErrorLevel)
return; // ignore error if less than reporting level
std::ostringstream os;
if (severity > ERR_TRACE)
s_nErrorCount++;
if (severity != ERR_FATAL) {
if (s_nErrorCount > g_lSysErrorMaxCount)
return;
else if (s_nErrorCount == g_lSysErrorMaxCount) {
os << "*****************************************************************\n";
os << "*** M A X I M U M E R R O R C O U N T R E A C H E D ***\n";
os << "*** ***\n";
os << "*** No further errors will be reported ***\n";
os << "*****************************************************************\n";
strOutput = os.str();
return;
}
}
switch (severity) {
case ERR_FATAL:
os << "FATAL ERROR: ";
break;
case ERR_SEVERE:
os << "SEVERE ERROR: ";
break;
case ERR_WARNING:
os << "WARNING ERROR: ";
break;
case ERR_TRACE:
os << "Trace: ";
break;
default:
os << "Illegal error severity #" << severity << ": ";
}
char errStr[2000];
#if HAVE_VSNPRINTF
vsnprintf (errStr, sizeof(errStr), msg, arg);
#elif HAVE_VSPRINTF
vsprintf (errStr, msg, arg);
#else
strncpy (errStr, sizeof(errStr), "Error message not available on this platform.");
#endif
os << errStr;
strOutput = os.str();
if (severity == ERR_FATAL) {
std::cerr << strOutput << "\n";
throw std::runtime_error (strOutput);
}
#if INTERACTIVE_ERROR_DISPLAY
std::cout << "A - Abort C - Continue W - Turn off warnings? ";
// fflush(stderr);
do
{
int c = cio_kb_waitc("AaBbCcWw", TRUE); /* get code from keyboard */
c = tolower (c);
fputc (c, stderr);
fputc (NEWLINE, stderr);
if (c == 'a')
exit (1);
else if (c == 'c')
return;
else if (c == 'w')
{
sys_error_level (ERR_SEVERE); /* report severe & fatal errors */
break;
}
} while (TRUE);
#endif
}
/* NAME
* sys_error_level Set error reporting level
*
* SYNOPSIS
* sys_error_level (severity)
* int severity Report all error as serious as severity and beyond
*
* DESCRIPTION
* Causes the system to ignore all error below the level of severity
* For example, if severity == ERR_SEVERE, then report severe & fatal
* error and ignore warnings
*/
void
sys_error_level (int severity)
{
if (severity == ERR_FATAL ||
severity == ERR_SEVERE ||
severity == ERR_WARNING ||
severity == ERR_TRACE)
s_reportErrorLevel = severity;
else
s_reportErrorLevel = ERR_WARNING;
}
|