Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | /*********************************************************** |
Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 2 | Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, |
| 3 | Amsterdam, The Netherlands. |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 4 | |
| 5 | All Rights Reserved |
| 6 | |
| 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
| 9 | provided that the above copyright notice appear in all copies and that |
| 10 | both that copyright notice and this permission notice appear in |
| 11 | supporting documentation, and that the names of Stichting Mathematisch |
| 12 | Centrum or CWI not be used in advertising or publicity pertaining to |
| 13 | distribution of the software without specific, written prior permission. |
| 14 | |
| 15 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 16 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE |
| 18 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 20 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 21 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 22 | |
| 23 | ******************************************************************/ |
| 24 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 25 | /* Error handling -- see also run.c */ |
| 26 | |
| 27 | /* New error handling interface. |
| 28 | |
| 29 | The following problem exists (existed): methods of built-in modules |
| 30 | are called with 'self' and 'args' arguments, but without a context |
| 31 | argument, so they have no way to raise a specific exception. |
| 32 | The same is true for the object implementations: no context argument. |
| 33 | The old convention was to set 'errno' and to return NULL. |
| 34 | The caller (usually call_function() in eval.c) detects the NULL |
| 35 | return value and then calls puterrno(ctx) to turn the errno value |
| 36 | into a true exception. Problems with this approach are: |
| 37 | - it used standard errno values to indicate Python-specific errors, |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 38 | but this means that when such an error code is reported by a system |
| 39 | call (e.g., in module posix), the user gets a confusing message |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 40 | - errno is a global variable, which makes extensions to a multi- |
| 41 | threading environment difficult; e.g., in IRIX, multi-threaded |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 42 | programs must use the function oserror() instead of looking in errno |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 43 | - there is no portable way to add new error numbers for specic |
| 44 | situations -- the value space for errno is reserved to the OS, yet |
| 45 | the way to turn module-specific errors into a module-specific |
| 46 | exception requires module-specific values for errno |
| 47 | - there is no way to add a more situation-specific message to an |
| 48 | error. |
| 49 | |
| 50 | The new interface solves all these problems. To return an error, a |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 51 | built-in function calls err_set(exception), err_setval(exception, |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 52 | value) or err_setstr(exception, string), and returns NULL. These |
| 53 | functions save the value for later use by puterrno(). To adapt this |
| 54 | scheme to a multi-threaded environment, only the implementation of |
| 55 | err_setval() has to be changed. |
| 56 | */ |
| 57 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 58 | #include "allobjects.h" |
Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 59 | #include "modsupport.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 60 | |
Guido van Rossum | f22120a | 1990-12-20 23:05:40 +0000 | [diff] [blame] | 61 | #include <errno.h> |
| 62 | #ifndef errno |
| 63 | extern int errno; |
| 64 | #endif |
| 65 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 66 | #include "errcode.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 67 | |
Guido van Rossum | f5401bd | 1990-11-02 17:50:28 +0000 | [diff] [blame] | 68 | extern char *strerror PROTO((int)); |
| 69 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 70 | /* Last exception stored by err_setval() */ |
| 71 | |
| 72 | static object *last_exception; |
| 73 | static object *last_exc_val; |
| 74 | |
| 75 | void |
| 76 | err_setval(exception, value) |
| 77 | object *exception; |
| 78 | object *value; |
| 79 | { |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 80 | XDECREF(last_exception); |
| 81 | XINCREF(exception); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 82 | last_exception = exception; |
| 83 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 84 | XDECREF(last_exc_val); |
| 85 | XINCREF(value); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 86 | last_exc_val = value; |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | err_set(exception) |
| 91 | object *exception; |
| 92 | { |
| 93 | err_setval(exception, (object *)NULL); |
| 94 | } |
| 95 | |
| 96 | void |
| 97 | err_setstr(exception, string) |
| 98 | object *exception; |
| 99 | char *string; |
| 100 | { |
| 101 | object *value = newstringobject(string); |
| 102 | err_setval(exception, value); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 103 | XDECREF(value); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | int |
| 107 | err_occurred() |
| 108 | { |
| 109 | return last_exception != NULL; |
| 110 | } |
| 111 | |
| 112 | void |
| 113 | err_get(p_exc, p_val) |
| 114 | object **p_exc; |
| 115 | object **p_val; |
| 116 | { |
| 117 | *p_exc = last_exception; |
| 118 | last_exception = NULL; |
| 119 | *p_val = last_exc_val; |
| 120 | last_exc_val = NULL; |
| 121 | } |
| 122 | |
| 123 | void |
| 124 | err_clear() |
| 125 | { |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 126 | XDECREF(last_exception); |
| 127 | last_exception = NULL; |
| 128 | XDECREF(last_exc_val); |
| 129 | last_exc_val = NULL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 130 | } |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 131 | |
| 132 | /* Convenience functions to set a type error exception and return 0 */ |
| 133 | |
| 134 | int |
| 135 | err_badarg() |
| 136 | { |
Guido van Rossum | f1ac403 | 1990-11-09 15:05:53 +0000 | [diff] [blame] | 137 | err_setstr(TypeError, "illegal argument type for built-in operation"); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 138 | return 0; |
| 139 | } |
| 140 | |
| 141 | object * |
| 142 | err_nomem() |
| 143 | { |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 144 | err_set(MemoryError); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 145 | return NULL; |
| 146 | } |
| 147 | |
| 148 | object * |
| 149 | err_errno(exc) |
| 150 | object *exc; |
| 151 | { |
Guido van Rossum | 5063bab | 1991-10-20 20:14:56 +0000 | [diff] [blame] | 152 | object *v; |
| 153 | if (errno == EINTR && intrcheck()) { |
| 154 | err_set(KeyboardInterrupt); |
| 155 | return NULL; |
| 156 | } |
Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 157 | v = mkvalue("(is)", errno, strerror(errno)); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 158 | if (v != NULL) { |
Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 159 | err_setval(exc, v); |
| 160 | DECREF(v); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 161 | } |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 162 | return NULL; |
| 163 | } |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 164 | |
| 165 | void |
| 166 | err_badcall() |
| 167 | { |
| 168 | err_setstr(SystemError, "bad argument to internal function"); |
| 169 | } |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 170 | |
| 171 | /* Set the error appropriate to the given input error code (see errcode.h) */ |
| 172 | |
| 173 | void |
| 174 | err_input(err) |
| 175 | int err; |
| 176 | { |
| 177 | switch (err) { |
| 178 | case E_DONE: |
| 179 | case E_OK: |
| 180 | break; |
| 181 | case E_SYNTAX: |
Guido van Rossum | b954c2c | 1991-12-16 13:05:50 +0000 | [diff] [blame] | 182 | err_setstr(SyntaxError, "invalid syntax"); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 183 | break; |
| 184 | case E_TOKEN: |
Guido van Rossum | b954c2c | 1991-12-16 13:05:50 +0000 | [diff] [blame] | 185 | err_setstr(SyntaxError, "invalid token"); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 186 | break; |
| 187 | case E_INTR: |
| 188 | err_set(KeyboardInterrupt); |
| 189 | break; |
| 190 | case E_NOMEM: |
| 191 | err_nomem(); |
| 192 | break; |
| 193 | case E_EOF: |
Guido van Rossum | c488400 | 1992-02-05 11:16:47 +0000 | [diff] [blame] | 194 | err_setstr(SyntaxError, "unexpected EOF while parsing"); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 195 | break; |
| 196 | default: |
Guido van Rossum | b954c2c | 1991-12-16 13:05:50 +0000 | [diff] [blame] | 197 | err_setstr(SystemError, "unknown parsing error"); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 198 | break; |
| 199 | } |
| 200 | } |