28ccba42036ba329b4626c54fe1e8fa76112f907
[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.3 2000/06/19 19:04:05 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     sys_error (ERR_FATAL, "illegal error code #%d  [sys_error]", severity);
89   }
90   
91   char errStr[512];
92   vsnprintf (errStr, sizeof(errStr), msg, arg);
93   cout << errStr << endl;
94   
95   if (severity == ERR_FATAL)
96     throw runtime_error (errStr);
97   
98 #if INTERACTIVE_ERROR_DISPLAY
99   cout << "A - Abort  C - Continue  W - Turn off warnings? ";
100   //  fflush(stderr);
101   do 
102    {
103       int c = cio_kb_waitc("AaBbCcWw", TRUE);     /* get code from keyboard */
104       c = tolower (c);
105       fputc (c, stderr);
106       fputc (NEWLINE, stderr);
107       
108       if (c == 'a')
109         exit (1);
110       else if (c == 'c')
111         return;
112       else if (c == 'w') 
113         {
114           sys_error_level (ERR_SEVERE); /* report severe & fatal errors */
115           break;
116         }
117     } while (TRUE);
118 #endif
119 }
120
121
122 /* NAME
123  *   sys_error_level                    Set error reporting level
124  *
125  * SYNOPSIS
126  *   sys_error_level (severity)
127  *   int severity               Report all error as serious as severity and beyond
128  *
129  * DESCRIPTION
130  *   Causes the system to ignore all error below the level of severity
131  *   For example, if severity == ERR_SEVERE, then report severe & fatal
132  *   error and ignore warnings
133  */
134
135 void 
136 sys_error_level (int severity)
137 {
138   if (severity == ERR_FATAL ||
139       severity == ERR_SEVERE ||
140       severity == ERR_WARNING)
141     errorlevel = severity;
142   else
143     errorlevel = ERR_WARNING;
144 }
145