6d0900dcda89511de3eb3c7c3286246bb7ce78b1
[ctsim.git] / libctsupport / syserror.cpp
1 /*****************************************************************************
2 **  This is part of the CTSim program
3 **  Copyright (C) 1983-2000 Kevin Rosenberg
4 **
5 **  $Id: syserror.cpp,v 1.6 2000/09/07 04:31:41 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 "ctsupport.h"
27
28
29 /* NAME
30  *   sys_error                  System error handler
31  *
32  * SYNOPSIS
33  *   sys_error (severity, msg, args . . .)
34  *   int severity               Severity of error
35  *   char *msg                  Error message
36  *   args                       Argument list, direct transfer to printf stack
37  *                              Can take 24 byte transfer
38  */
39
40 static int errorlevel = ERR_WARNING;    /* Set error reporting level */
41
42
43 void sys_error (int severity, const char *msg, ...)
44 {
45   va_list arg;
46
47   va_start(arg, msg);
48
49   sys_verror (severity, msg, arg);
50
51   va_end(arg);
52 }
53
54 static int nErrorCount = 0;
55 const static int MAX_ERROR_COUNT = 20;
56
57
58 void sys_verror (int severity, const char *msg, va_list arg)
59 {
60   if (severity < errorlevel)
61     return;     // ignore error if less than max level
62
63   nErrorCount++;
64   if (severity != ERR_FATAL) {
65     if (nErrorCount > MAX_ERROR_COUNT)
66       return;
67     else if (nErrorCount == MAX_ERROR_COUNT) {
68       cout << "*****************************************************************" << endl;
69       cout << "***   M A X I M U M   E R R O R   C O U N T   R E A C H E D   ***" << endl;
70       cout << "***                                                           ***" << endl;
71       cout << "***           No further errors will be reported              ***" << endl;
72       cout << "*****************************************************************" << endl;
73       return;
74     }
75   }
76     
77   switch (severity) {
78   case ERR_FATAL:
79     cout << "FATAL ERROR: ";
80     break;
81   case ERR_SEVERE:
82     cout << "SEVERE ERROR: ";
83     break;
84   case ERR_WARNING:
85     cout << "WARNING ERROR: ";
86     break;
87   default:
88     cout << "Illegal error code #" << severity << ": ";
89   }
90   
91   char errStr[512];
92 #if HAVE_VSNPRINTF
93   vsnprintf (errStr, sizeof(errStr), msg, arg);
94 #elif HAVE_VSPRINTF
95   vsprintf (errStr, msg, arg);
96 #endif
97
98   cout << errStr << endl;
99   
100   if (severity == ERR_FATAL)
101     throw runtime_error (errStr);
102   
103 #if INTERACTIVE_ERROR_DISPLAY
104   cout << "A - Abort  C - Continue  W - Turn off warnings? ";
105   //  fflush(stderr);
106   do 
107    {
108       int c = cio_kb_waitc("AaBbCcWw", TRUE);     /* get code from keyboard */
109       c = tolower (c);
110       fputc (c, stderr);
111       fputc (NEWLINE, stderr);
112       
113       if (c == 'a')
114         exit (1);
115       else if (c == 'c')
116         return;
117       else if (c == 'w') 
118         {
119           sys_error_level (ERR_SEVERE); /* report severe & fatal errors */
120           break;
121         }
122     } while (TRUE);
123 #endif
124 }
125
126
127 /* NAME
128  *   sys_error_level                    Set error reporting level
129  *
130  * SYNOPSIS
131  *   sys_error_level (severity)
132  *   int severity               Report all error as serious as severity and beyond
133  *
134  * DESCRIPTION
135  *   Causes the system to ignore all error below the level of severity
136  *   For example, if severity == ERR_SEVERE, then report severe & fatal
137  *   error and ignore warnings
138  */
139
140 void 
141 sys_error_level (int severity)
142 {
143   if (severity == ERR_FATAL ||
144       severity == ERR_SEVERE ||
145       severity == ERR_WARNING)
146     errorlevel = severity;
147   else
148     errorlevel = ERR_WARNING;
149 }
150