Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | /*********************************************************** |
Guido van Rossum | 6d023c9 | 1995-01-04 19:12:13 +0000 | [diff] [blame] | 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 3 | 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 | 6989e54 | 1994-09-29 09:39:39 +0000 | [diff] [blame] | 59 | #include "traceback.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> |
Guido van Rossum | f22120a | 1990-12-20 23:05:40 +0000 | [diff] [blame] | 62 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 63 | #ifndef NT |
Jack Jansen | 8fd2d94 | 1994-12-14 12:54:54 +0000 | [diff] [blame] | 64 | #ifdef macintosh |
| 65 | /* |
| 66 | ** For the mac, there's a function macstrerror in macosmodule.c. We can't |
| 67 | ** call it strerror(), though, since that is already defined (for Think C) |
| 68 | ** in ANSI |
| 69 | */ |
Jack Jansen | 5ef86d5 | 1995-01-19 12:16:44 +0000 | [diff] [blame] | 70 | #undef strerror |
Jack Jansen | 8fd2d94 | 1994-12-14 12:54:54 +0000 | [diff] [blame] | 71 | #define strerror macstrerror |
| 72 | #include "macdefs.h" /* For CW to find EINTR */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 73 | #endif /* !macintosh */ |
Guido van Rossum | f5401bd | 1990-11-02 17:50:28 +0000 | [diff] [blame] | 74 | extern char *strerror PROTO((int)); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 75 | #endif /* !NT */ |
Guido van Rossum | f5401bd | 1990-11-02 17:50:28 +0000 | [diff] [blame] | 76 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 77 | /* Last exception stored by err_setval() */ |
| 78 | |
| 79 | static object *last_exception; |
| 80 | static object *last_exc_val; |
| 81 | |
| 82 | void |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 83 | err_restore(exception, value, traceback) |
| 84 | object *exception; |
| 85 | object *value; |
| 86 | object *traceback; |
| 87 | { |
| 88 | err_clear(); |
| 89 | |
| 90 | last_exception = exception; |
| 91 | last_exc_val = value; |
| 92 | (void) tb_store(traceback); |
| 93 | XDECREF(traceback); |
| 94 | } |
| 95 | |
| 96 | void |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 97 | err_setval(exception, value) |
| 98 | object *exception; |
| 99 | object *value; |
| 100 | { |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 101 | XINCREF(exception); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 102 | XINCREF(value); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 103 | err_restore(exception, value, (object *)NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | void |
| 107 | err_set(exception) |
| 108 | object *exception; |
| 109 | { |
| 110 | err_setval(exception, (object *)NULL); |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | err_setstr(exception, string) |
| 115 | object *exception; |
| 116 | char *string; |
| 117 | { |
| 118 | object *value = newstringobject(string); |
| 119 | err_setval(exception, value); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 120 | XDECREF(value); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 123 | |
| 124 | object * |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 125 | err_occurred() |
| 126 | { |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 127 | return last_exception; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | void |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 131 | err_fetch(p_exc, p_val, p_tb) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 132 | object **p_exc; |
| 133 | object **p_val; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 134 | object **p_tb; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 135 | { |
| 136 | *p_exc = last_exception; |
| 137 | last_exception = NULL; |
| 138 | *p_val = last_exc_val; |
| 139 | last_exc_val = NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 140 | *p_tb = tb_fetch(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | void |
| 144 | err_clear() |
| 145 | { |
Guido van Rossum | 6989e54 | 1994-09-29 09:39:39 +0000 | [diff] [blame] | 146 | object *tb; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 147 | XDECREF(last_exception); |
| 148 | last_exception = NULL; |
| 149 | XDECREF(last_exc_val); |
| 150 | last_exc_val = NULL; |
Guido van Rossum | 6989e54 | 1994-09-29 09:39:39 +0000 | [diff] [blame] | 151 | /* Also clear interpreter stack trace */ |
| 152 | tb = tb_fetch(); |
| 153 | XDECREF(tb); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 154 | } |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 155 | |
| 156 | /* Convenience functions to set a type error exception and return 0 */ |
| 157 | |
| 158 | int |
| 159 | err_badarg() |
| 160 | { |
Guido van Rossum | f1ac403 | 1990-11-09 15:05:53 +0000 | [diff] [blame] | 161 | err_setstr(TypeError, "illegal argument type for built-in operation"); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | object * |
| 166 | err_nomem() |
| 167 | { |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 168 | err_set(MemoryError); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 169 | return NULL; |
| 170 | } |
| 171 | |
| 172 | object * |
| 173 | err_errno(exc) |
| 174 | object *exc; |
| 175 | { |
Guido van Rossum | 5063bab | 1991-10-20 20:14:56 +0000 | [diff] [blame] | 176 | object *v; |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 177 | int i = errno; |
| 178 | if (i == EINTR && sigcheck()) |
Guido van Rossum | 5063bab | 1991-10-20 20:14:56 +0000 | [diff] [blame] | 179 | return NULL; |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 180 | v = mkvalue("(is)", i, strerror(i)); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 181 | if (v != NULL) { |
Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 182 | err_setval(exc, v); |
| 183 | DECREF(v); |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 184 | } |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 185 | return NULL; |
| 186 | } |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 187 | |
| 188 | void |
| 189 | err_badcall() |
| 190 | { |
| 191 | err_setstr(SystemError, "bad argument to internal function"); |
| 192 | } |