home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Python / traceback.c < prev    next >
C/C++ Source or Header  |  1994-01-04  |  6KB  |  267 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. /* Traceback implementation */
  26.  
  27. #include "allobjects.h"
  28.  
  29. #include "sysmodule.h"
  30. #include "compile.h"
  31. #include "frameobject.h"
  32. #include "traceback.h"
  33. #include "structmember.h"
  34. #include "osdefs.h"
  35.  
  36. typedef struct _tracebackobject {
  37.     OB_HEAD
  38.     struct _tracebackobject *tb_next;
  39.     frameobject *tb_frame;
  40.     int tb_lasti;
  41.     int tb_lineno;
  42. } tracebackobject;
  43.  
  44. #define OFF(x) offsetof(tracebackobject, x)
  45.  
  46. static struct memberlist tb_memberlist[] = {
  47.     {"tb_next",    T_OBJECT,    OFF(tb_next)},
  48.     {"tb_frame",    T_OBJECT,    OFF(tb_frame)},
  49.     {"tb_lasti",    T_INT,        OFF(tb_lasti)},
  50.     {"tb_lineno",    T_INT,        OFF(tb_lineno)},
  51.     {NULL}    /* Sentinel */
  52. };
  53.  
  54. static object *
  55. tb_getattr(tb, name)
  56.     tracebackobject *tb;
  57.     char *name;
  58. {
  59.     return getmember((char *)tb, tb_memberlist, name);
  60. }
  61.  
  62. static void
  63. tb_dealloc(tb)
  64.     tracebackobject *tb;
  65. {
  66.     XDECREF(tb->tb_next);
  67.     XDECREF(tb->tb_frame);
  68.     DEL(tb);
  69. }
  70.  
  71. static typeobject Tracebacktype = {
  72.     OB_HEAD_INIT(&Typetype)
  73.     0,
  74.     "traceback",
  75.     sizeof(tracebackobject),
  76.     0,
  77.     (destructor)tb_dealloc, /*tp_dealloc*/
  78.     0,        /*tp_print*/
  79.     (getattrfunc)tb_getattr, /*tp_getattr*/
  80.     0,        /*tp_setattr*/
  81.     0,        /*tp_compare*/
  82.     0,        /*tp_repr*/
  83.     0,        /*tp_as_number*/
  84.     0,        /*tp_as_sequence*/
  85.     0,        /*tp_as_mapping*/
  86. };
  87.  
  88. #define is_tracebackobject(v) ((v)->ob_type == &Tracebacktype)
  89.  
  90. static tracebackobject *
  91. newtracebackobject(next, frame, lasti, lineno)
  92.     tracebackobject *next;
  93.     frameobject *frame;
  94.     int lasti, lineno;
  95. {
  96.     tracebackobject *tb;
  97.     if ((next != NULL && !is_tracebackobject(next)) ||
  98.             frame == NULL || !is_frameobject(frame)) {
  99.         err_badcall();
  100.         return NULL;
  101.     }
  102.     tb = NEWOBJ(tracebackobject, &Tracebacktype);
  103.     if (tb != NULL) {
  104.         XINCREF(next);
  105.         tb->tb_next = next;
  106.         XINCREF(frame);
  107.         tb->tb_frame = frame;
  108.         tb->tb_lasti = lasti;
  109.         tb->tb_lineno = lineno;
  110.     }
  111.     return tb;
  112. }
  113.  
  114. static tracebackobject *tb_current = NULL;
  115.  
  116. int
  117. tb_here(frame)
  118.     frameobject *frame;
  119. {
  120.     tracebackobject *tb;
  121.     tb = newtracebackobject(tb_current, frame, frame->f_lasti, frame->f_lineno);
  122.     if (tb == NULL)
  123.         return -1;
  124.     XDECREF(tb_current);
  125.     tb_current = tb;
  126.     return 0;
  127. }
  128.  
  129. object *
  130. tb_fetch()
  131. {
  132.     object *v;
  133.     v = (object *)tb_current;
  134.     tb_current = NULL;
  135.     return v;
  136. }
  137.  
  138. int
  139. tb_store(v)
  140.     object *v;
  141. {
  142.     if (v != NULL && !is_tracebackobject(v)) {
  143.         err_badcall();
  144.         return -1;
  145.     }
  146.     XDECREF(tb_current);
  147.     XINCREF(v);
  148.     tb_current = (tracebackobject *)v;
  149.     return 0;
  150. }
  151.  
  152. static void
  153. tb_displayline(f, filename, lineno)
  154.     object *f;
  155.     char *filename;
  156.     int lineno;
  157. {
  158.     FILE *xfp;
  159.     char linebuf[1000];
  160.     int i;
  161.     xfp = fopen(filename, "r");
  162.     if (xfp == NULL) {
  163.         /* Search tail of filename in sys.path before giving up */
  164.         object *path;
  165.         char *tail = strrchr(filename, SEP);
  166.         if (tail == NULL)
  167.             tail = filename;
  168.         else
  169.             tail++;
  170.         path = sysget("path");
  171.         if (path != NULL && is_listobject(path)) {
  172.             int npath = getlistsize(path);
  173.             char namebuf[MAXPATHLEN+1];
  174.             for (i = 0; i < npath; i++) {
  175.                 object *v = getlistitem(path, i);
  176.                 if (is_stringobject(v)) {
  177.                     int len;
  178.                     strcpy(namebuf, getstringvalue(v));
  179.                     len = getstringsize(v);
  180.                     if (len > 0 && namebuf[len-1] != SEP)
  181.                         namebuf[len++] = SEP;
  182.                     strcpy(namebuf+len, tail);
  183.                     xfp = fopen(namebuf, "r");
  184.                     if (xfp != NULL) {
  185.                         filename = namebuf;
  186.                         break;
  187.                     }
  188.                 }
  189.             }
  190.         }
  191.     }
  192.     sprintf(linebuf, "  File \"%.900s\"%s line %d\n",
  193.         filename,
  194. #ifdef applec /* MPW */
  195.         /* This is needed by MPW's File and Line commands */
  196.         ";",
  197. #else
  198.         /* This is needed by Emacs' compile command */
  199.         ",",
  200. #endif
  201.         lineno);
  202.     writestring(linebuf, f);
  203.     if (xfp == NULL)
  204.         return;
  205.     for (i = 0; i < lineno; i++) {
  206.         if (fgets(linebuf, sizeof linebuf, xfp) == NULL)
  207.             break;
  208.     }
  209.     if (i == lineno) {
  210.         char *p = linebuf;
  211.         while (*p == ' ' || *p == '\t')
  212.             p++;
  213.         writestring("    ", f);
  214.         writestring(p, f);
  215.         if (strchr(p, '\n') == NULL)
  216.             writestring("\n", f);
  217.     }
  218.     fclose(xfp);
  219. }
  220.  
  221. static void
  222. tb_printinternal(tb, f, limit)
  223.     tracebackobject *tb;
  224.     object *f;
  225.     int limit;
  226. {
  227.     int depth = 0;
  228.     tracebackobject *tb1 = tb;
  229.     while (tb1 != NULL) {
  230.         depth++;
  231.         tb1 = tb1->tb_next;
  232.     }
  233.     while (tb != NULL && !intrcheck()) {
  234.         if (depth <= limit)
  235.             tb_displayline(f,
  236.                 getstringvalue(tb->tb_frame->f_code->co_filename),
  237.                 tb->tb_lineno);
  238.         depth--;
  239.         tb = tb->tb_next;
  240.     }
  241. }
  242.  
  243. int
  244. tb_print(v, f)
  245.     object *v;
  246.     object *f;
  247. {
  248.     object *limitv;
  249.     int limit = 1000;
  250.     if (v == NULL)
  251.         return 0;
  252.     if (!is_tracebackobject(v)) {
  253.         err_badcall();
  254.         return -1;
  255.     }
  256.     sysset("last_traceback", v);
  257.     limitv = sysget("tracebacklimit");
  258.     if (limitv && is_intobject(limitv)) {
  259.         limit = getintvalue(limitv);
  260.         if (limit <= 0)
  261.             return 0;
  262.     }
  263.     writestring("Traceback (innermost last):\n", f);
  264.     tb_printinternal((tracebackobject *)v, f, limit);
  265.     return 0;
  266. }
  267.