home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Python / errors.c < prev    next >
C/C++ Source or Header  |  1994-04-14  |  5KB  |  166 lines

  1. /***********************************************************
  2. Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
  3. Amsterdam, The Netherlands.
  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.  
  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,
  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
  40.    - errno is a global variable, which makes extensions to a multi-
  41.      threading environment difficult; e.g., in IRIX, multi-threaded
  42.      programs must use the function oserror() instead of looking in errno
  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
  51.   built-in function calls err_set(exception), err_setval(exception,
  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.  
  58. #include "allobjects.h"
  59. #include "modsupport.h"
  60.  
  61. #include <errno.h>
  62.  
  63. extern char *strerror PROTO((int));
  64.  
  65. /* Last exception stored by err_setval() */
  66.  
  67. static object *last_exception;
  68. static object *last_exc_val;
  69.  
  70. void
  71. err_setval(exception, value)
  72.     object *exception;
  73.     object *value;
  74. {
  75.     XDECREF(last_exception);
  76.     XINCREF(exception);
  77.     last_exception = exception;
  78.     
  79.     XDECREF(last_exc_val);
  80.     XINCREF(value);
  81.     last_exc_val = value;
  82. }
  83.  
  84. void
  85. err_set(exception)
  86.     object *exception;
  87. {
  88.     err_setval(exception, (object *)NULL);
  89. }
  90.  
  91. void
  92. err_setstr(exception, string)
  93.     object *exception;
  94.     char *string;
  95. {
  96.     object *value = newstringobject(string);
  97.     err_setval(exception, value);
  98.     XDECREF(value);
  99. }
  100.  
  101.  
  102. object *
  103. err_occurred()
  104. {
  105.     return last_exception;
  106. }
  107.  
  108. void
  109. err_get(p_exc, p_val)
  110.     object **p_exc;
  111.     object **p_val;
  112. {
  113.     *p_exc = last_exception;
  114.     last_exception = NULL;
  115.     *p_val = last_exc_val;
  116.     last_exc_val = NULL;
  117. }
  118.  
  119. void
  120. err_clear()
  121. {
  122.     XDECREF(last_exception);
  123.     last_exception = NULL;
  124.     XDECREF(last_exc_val);
  125.     last_exc_val = NULL;
  126. }
  127.  
  128. /* Convenience functions to set a type error exception and return 0 */
  129.  
  130. int
  131. err_badarg()
  132. {
  133.     err_setstr(TypeError, "illegal argument type for built-in operation");
  134.     return 0;
  135. }
  136.  
  137. object *
  138. err_nomem()
  139. {
  140.     err_set(MemoryError);
  141.     return NULL;
  142. }
  143.  
  144. object *
  145. err_errno(exc)
  146.     object *exc;
  147. {
  148.     object *v;
  149.     if (errno == EINTR && intrcheck()) {
  150.         err_set(KeyboardInterrupt);
  151.         return NULL;
  152.     }
  153.     v = mkvalue("(is)", errno, strerror(errno));
  154.     if (v != NULL) {
  155.         err_setval(exc, v);
  156.         DECREF(v);
  157.     }
  158.     return NULL;
  159. }
  160.  
  161. void
  162. err_badcall()
  163. {
  164.     err_setstr(SystemError, "bad argument to internal function");
  165. }
  166.