5b4e6315a3f993fe7f7b9af7adb73077554d3670
[ctsim.git] / libctsupport / syserror.cpp
1 /*****************************************************************************
2 **  This is part of the CTSim program
3 **  Copyright (c) 1983-2001 Kevin Rosenberg
4 **
5 **  $Id: syserror.cpp,v 1.21 2001/02/20 04:48:45 kevin Exp $
6 **
7 **  This program is free software; you can redistribute it and/or modify
8 **  it under the terms of the GNU General Public License (version 2) as
9 **  published by the Free Software Foundation.
10 **
11 **  This program is distributed in the hope that it will be useful,
12 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 **  GNU General Public License for more details.
15 **
16 **  You should have received a copy of the GNU General Public License
17 **  along with this program; if not, write to the Free Software
18 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 ******************************************************************************/
20
21 #include <iostream>
22 #include <exception>
23 #include <stdexcept>
24 #include <stdarg.h>
25 #include <ctype.h>
26 #include <string>
27 #include "ct.h"
28
29 #ifdef HAVE_WXWINDOWS
30 #include "../src/ctsim.h"
31 #endif
32
33 /* NAME
34 *   sys_error                   System error handler
35 *
36 * SYNOPSIS
37 *   sys_error (severity, msg, args . . .)
38 *   int severity                Severity of error
39 *   char *msg                   Error message
40 *   args                        Argument list, direct transfer to printf stack
41 *                               Can take 24 byte transfer
42 */
43
44 static int s_reportErrorLevel = ERR_TRACE;      // Set error reporting level 
45
46
47 void sys_error (int severity, const char *msg, ...)
48 {
49   va_list arg;
50   
51   va_start(arg, msg);
52   
53   std::string strOutput;
54   sys_verror (strOutput, severity, msg, arg);
55  
56 #ifdef HAVE_WXWINDOWS
57   if (g_bRunningWXWindows) {
58     if (theApp)
59       *theApp->getLog() << strOutput.c_str() << "\n";
60     else
61       wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL));
62   }
63   else
64 #endif
65     std::cout << strOutput << "\n";
66
67   va_end(arg);
68 }
69
70 static int s_nErrorCount = 0;
71 const static int MAX_ERROR_COUNT = 20;
72
73
74 void sys_verror (std::string& strOutput, int severity, const char *msg, va_list arg)
75 {
76   if (severity < s_reportErrorLevel)
77     return;     // ignore error if less than reporting level
78   
79   std::ostringstream os;
80
81   if (severity > ERR_TRACE)
82     s_nErrorCount++;
83
84   if (severity != ERR_FATAL) {
85     if (s_nErrorCount > MAX_ERROR_COUNT)
86       return;
87     else if (s_nErrorCount == MAX_ERROR_COUNT) {
88       os << "*****************************************************************\n";
89       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";
90       os << "***                                                           ***\n";
91       os << "***           No further errors will be reported              ***\n";
92       os << "*****************************************************************\n";
93       strOutput = os.str();
94       return;
95     }
96   }
97   
98   switch (severity) {
99   case ERR_FATAL:
100     os << "FATAL ERROR: ";
101     break;
102   case ERR_SEVERE:
103     os << "SEVERE ERROR: ";
104     break;
105   case ERR_WARNING:
106     os << "WARNING ERROR: ";
107     break;
108   case ERR_TRACE:
109     os << "Trace: ";
110     break;
111   default:
112     os << "Illegal error severity #" << severity << ": ";
113   }
114   
115   char errStr[2000];
116   
117 #if HAVE_VSNPRINTF
118   vsnprintf (errStr, sizeof(errStr), msg, arg);
119 #elif HAVE_VSPRINTF
120   vsprintf (errStr, msg, arg);
121 #else
122   strncpy (errStr, sizeof(errStr), "Error message not available on this platform.");
123 #endif
124   
125   os << errStr;
126   strOutput = os.str();
127   
128   if (severity == ERR_FATAL) {
129     std::cerr << strOutput << "\n";
130     throw std::runtime_error (strOutput); 
131   }
132   
133 #if INTERACTIVE_ERROR_DISPLAY
134   std::cout << "A - Abort  C - Continue  W - Turn off warnings? ";
135   //  fflush(stderr);
136   do 
137   {
138     int c = cio_kb_waitc("AaBbCcWw", TRUE);       /* get code from keyboard */
139     c = tolower (c);
140     fputc (c, stderr);
141     fputc (NEWLINE, stderr);
142     
143     if (c == 'a')
144       exit (1);
145     else if (c == 'c')
146       return;
147     else if (c == 'w') 
148     {
149       sys_error_level (ERR_SEVERE);     /* report severe & fatal errors */
150       break;
151     }
152   } while (TRUE);
153 #endif
154 }
155
156
157 /* NAME
158 *   sys_error_level                     Set error reporting level
159 *
160 * SYNOPSIS
161 *   sys_error_level (severity)
162 *   int severity                Report all error as serious as severity and beyond
163 *
164 * DESCRIPTION
165 *   Causes the system to ignore all error below the level of severity
166 *   For example, if severity == ERR_SEVERE, then report severe & fatal
167 *   error and ignore warnings
168 */
169
170 void 
171 sys_error_level (int severity)
172 {
173   if (severity == ERR_FATAL ||
174     severity == ERR_SEVERE ||
175     severity == ERR_WARNING ||
176     severity == ERR_TRACE)
177     s_reportErrorLevel = severity;
178   else
179     s_reportErrorLevel = ERR_WARNING;
180 }
181