f60628840d675189d59d6ccf37ee9ef22d29580c
[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.8 2000/12/17 23:30:48 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                 std::cout << "*****************************************************************\n";
69                 std::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   ***\n";
70                 std::cout << "***                                                           ***\n";
71                 std::cout << "***           No further errors will be reported              ***\n";
72                 std::cout << "*****************************************************************\n";
73       return;
74     }
75   }
76     
77   switch (severity) {
78   case ERR_FATAL:
79           std::cout << "FATAL ERROR: ";
80     break;
81   case ERR_SEVERE:
82           std::cout << "SEVERE ERROR: ";
83     break;
84   case ERR_WARNING:
85           std::cout << "WARNING ERROR: ";
86     break;
87   default:
88           std::cout << "Illegal error code #" << severity << ": ";
89   }
90   
91   char errStr[512];\r
92   
93 #if HAVE_VSNPRINTF
94   vsnprintf (errStr, sizeof(errStr), msg, arg);
95 #elif HAVE_VSPRINTF
96   vsprintf (errStr, msg, arg);\r
97 #else\r
98   strncpy (errStr, sizeof(errStr), "Error message not available on this platform.");
99 #endif
100
101   std::cout << errStr << std::endl;
102   
103   if (severity == ERR_FATAL)
104           throw std::runtime_error (errStr);
105   
106 #if INTERACTIVE_ERROR_DISPLAY
107   std::cout << "A - Abort  C - Continue  W - Turn off warnings? ";
108   //  fflush(stderr);
109   do 
110    {
111       int c = cio_kb_waitc("AaBbCcWw", TRUE);     /* get code from keyboard */
112       c = tolower (c);
113       fputc (c, stderr);
114       fputc (NEWLINE, stderr);
115       
116       if (c == 'a')
117         exit (1);
118       else if (c == 'c')
119         return;
120       else if (c == 'w') 
121         {
122           sys_error_level (ERR_SEVERE); /* report severe & fatal errors */
123           break;
124         }
125     } while (TRUE);
126 #endif
127 }
128
129
130 /* NAME
131  *   sys_error_level                    Set error reporting level
132  *
133  * SYNOPSIS
134  *   sys_error_level (severity)
135  *   int severity               Report all error as serious as severity and beyond
136  *
137  * DESCRIPTION
138  *   Causes the system to ignore all error below the level of severity
139  *   For example, if severity == ERR_SEVERE, then report severe & fatal
140  *   error and ignore warnings
141  */
142
143 void 
144 sys_error_level (int severity)
145 {
146   if (severity == ERR_FATAL ||
147       severity == ERR_SEVERE ||
148       severity == ERR_WARNING)
149     errorlevel = severity;
150   else
151     errorlevel = ERR_WARNING;
152 }
153