cgitb.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. """More comprehensive traceback formatting for Python scripts.
  2. To enable this module, do:
  3. import cgitb; cgitb.enable()
  4. at the top of your script. The optional arguments to enable() are:
  5. display - if true, tracebacks are displayed in the web browser
  6. logdir - if set, tracebacks are written to files in this directory
  7. context - number of lines of source code to show for each stack frame
  8. format - 'text' or 'html' controls the output format
  9. By default, tracebacks are displayed but not saved, the context is 5 lines
  10. and the output format is 'html' (for backwards compatibility with the
  11. original use of this module)
  12. Alternatively, if you have caught an exception and want cgitb to display it
  13. for you, call cgitb.handler(). The optional argument to handler() is a
  14. 3-item tuple (etype, evalue, etb) just like the value of sys.exc_info().
  15. The default handler displays output as HTML.
  16. """
  17. import inspect
  18. import keyword
  19. import linecache
  20. import os
  21. import pydoc
  22. import sys
  23. import tempfile
  24. import time
  25. import tokenize
  26. import traceback
  27. def reset():
  28. """Return a string that resets the CGI and browser to a known state."""
  29. return '''<!--: spam
  30. Content-Type: text/html
  31. <body bgcolor="#f0f0f8"><font color="#f0f0f8" size="-5"> -->
  32. <body bgcolor="#f0f0f8"><font color="#f0f0f8" size="-5"> --> -->
  33. </font> </font> </font> </script> </object> </blockquote> </pre>
  34. </table> </table> </table> </table> </table> </font> </font> </font>'''
  35. __UNDEF__ = [] # a special sentinel object
  36. def small(text):
  37. if text:
  38. return '<small>' + text + '</small>'
  39. else:
  40. return ''
  41. def strong(text):
  42. if text:
  43. return '<strong>' + text + '</strong>'
  44. else:
  45. return ''
  46. def grey(text):
  47. if text:
  48. return '<font color="#909090">' + text + '</font>'
  49. else:
  50. return ''
  51. def lookup(name, frame, locals):
  52. """Find the value for a given name in the given environment."""
  53. if name in locals:
  54. return 'local', locals[name]
  55. if name in frame.f_globals:
  56. return 'global', frame.f_globals[name]
  57. if '__builtins__' in frame.f_globals:
  58. builtins = frame.f_globals['__builtins__']
  59. if type(builtins) is type({}):
  60. if name in builtins:
  61. return 'builtin', builtins[name]
  62. else:
  63. if hasattr(builtins, name):
  64. return 'builtin', getattr(builtins, name)
  65. return None, __UNDEF__
  66. def scanvars(reader, frame, locals):
  67. """Scan one logical line of Python and look up values of variables used."""
  68. vars, lasttoken, parent, prefix, value = [], None, None, '', __UNDEF__
  69. for ttype, token, start, end, line in tokenize.generate_tokens(reader):
  70. if ttype == tokenize.NEWLINE: break
  71. if ttype == tokenize.NAME and token not in keyword.kwlist:
  72. if lasttoken == '.':
  73. if parent is not __UNDEF__:
  74. value = getattr(parent, token, __UNDEF__)
  75. vars.append((prefix + token, prefix, value))
  76. else:
  77. where, value = lookup(token, frame, locals)
  78. vars.append((token, where, value))
  79. elif token == '.':
  80. prefix += lasttoken + '.'
  81. parent = value
  82. else:
  83. parent, prefix = None, ''
  84. lasttoken = token
  85. return vars
  86. def html(einfo, context=5):
  87. """Return a nice HTML document describing a given traceback."""
  88. etype, evalue, etb = einfo
  89. if isinstance(etype, type):
  90. etype = etype.__name__
  91. pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable
  92. date = time.ctime(time.time())
  93. head = '<body bgcolor="#f0f0f8">' + pydoc.html.heading(
  94. '<big><big>%s</big></big>' %
  95. strong(pydoc.html.escape(str(etype))),
  96. '#ffffff', '#6622aa', pyver + '<br>' + date) + '''
  97. <p>A problem occurred in a Python script. Here is the sequence of
  98. function calls leading up to the error, in the order they occurred.</p>'''
  99. indent = '<tt>' + small('&nbsp;' * 5) + '&nbsp;</tt>'
  100. frames = []
  101. records = inspect.getinnerframes(etb, context)
  102. for frame, file, lnum, func, lines, index in records:
  103. if file:
  104. file = os.path.abspath(file)
  105. link = '<a href="file://%s">%s</a>' % (file, pydoc.html.escape(file))
  106. else:
  107. file = link = '?'
  108. args, varargs, varkw, locals = inspect.getargvalues(frame)
  109. call = ''
  110. if func != '?':
  111. call = 'in ' + strong(func) + \
  112. inspect.formatargvalues(args, varargs, varkw, locals,
  113. formatvalue=lambda value: '=' + pydoc.html.repr(value))
  114. highlight = {}
  115. def reader(lnum=[lnum]):
  116. highlight[lnum[0]] = 1
  117. try: return linecache.getline(file, lnum[0])
  118. finally: lnum[0] += 1
  119. vars = scanvars(reader, frame, locals)
  120. rows = ['<tr><td bgcolor="#d8bbff">%s%s %s</td></tr>' %
  121. ('<big>&nbsp;</big>', link, call)]
  122. if index is not None:
  123. i = lnum - index
  124. for line in lines:
  125. num = small('&nbsp;' * (5-len(str(i))) + str(i)) + '&nbsp;'
  126. if i in highlight:
  127. line = '<tt>=&gt;%s%s</tt>' % (num, pydoc.html.preformat(line))
  128. rows.append('<tr><td bgcolor="#ffccee">%s</td></tr>' % line)
  129. else:
  130. line = '<tt>&nbsp;&nbsp;%s%s</tt>' % (num, pydoc.html.preformat(line))
  131. rows.append('<tr><td>%s</td></tr>' % grey(line))
  132. i += 1
  133. done, dump = {}, []
  134. for name, where, value in vars:
  135. if name in done: continue
  136. done[name] = 1
  137. if value is not __UNDEF__:
  138. if where in ('global', 'builtin'):
  139. name = ('<em>%s</em> ' % where) + strong(name)
  140. elif where == 'local':
  141. name = strong(name)
  142. else:
  143. name = where + strong(name.split('.')[-1])
  144. dump.append('%s&nbsp;= %s' % (name, pydoc.html.repr(value)))
  145. else:
  146. dump.append(name + ' <em>undefined</em>')
  147. rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  148. frames.append('''
  149. <table width="100%%" cellspacing=0 cellpadding=0 border=0>
  150. %s</table>''' % '\n'.join(rows))
  151. exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),
  152. pydoc.html.escape(str(evalue)))]
  153. for name in dir(evalue):
  154. if name[:1] == '_': continue
  155. value = pydoc.html.repr(getattr(evalue, name))
  156. exception.append('\n<br>%s%s&nbsp;=\n%s' % (indent, name, value))
  157. return head + ''.join(frames) + ''.join(exception) + '''
  158. <!-- The above is a description of an error in a Python program, formatted
  159. for a Web browser because the 'cgitb' module was enabled. In case you
  160. are not reading this in a Web browser, here is the original traceback:
  161. %s
  162. -->
  163. ''' % pydoc.html.escape(
  164. ''.join(traceback.format_exception(etype, evalue, etb)))
  165. def text(einfo, context=5):
  166. """Return a plain text document describing a given traceback."""
  167. etype, evalue, etb = einfo
  168. if isinstance(etype, type):
  169. etype = etype.__name__
  170. pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable
  171. date = time.ctime(time.time())
  172. head = "%s\n%s\n%s\n" % (str(etype), pyver, date) + '''
  173. A problem occurred in a Python script. Here is the sequence of
  174. function calls leading up to the error, in the order they occurred.
  175. '''
  176. frames = []
  177. records = inspect.getinnerframes(etb, context)
  178. for frame, file, lnum, func, lines, index in records:
  179. file = file and os.path.abspath(file) or '?'
  180. args, varargs, varkw, locals = inspect.getargvalues(frame)
  181. call = ''
  182. if func != '?':
  183. call = 'in ' + func + \
  184. inspect.formatargvalues(args, varargs, varkw, locals,
  185. formatvalue=lambda value: '=' + pydoc.text.repr(value))
  186. highlight = {}
  187. def reader(lnum=[lnum]):
  188. highlight[lnum[0]] = 1
  189. try: return linecache.getline(file, lnum[0])
  190. finally: lnum[0] += 1
  191. vars = scanvars(reader, frame, locals)
  192. rows = [' %s %s' % (file, call)]
  193. if index is not None:
  194. i = lnum - index
  195. for line in lines:
  196. num = '%5d ' % i
  197. rows.append(num+line.rstrip())
  198. i += 1
  199. done, dump = {}, []
  200. for name, where, value in vars:
  201. if name in done: continue
  202. done[name] = 1
  203. if value is not __UNDEF__:
  204. if where == 'global': name = 'global ' + name
  205. elif where != 'local': name = where + name.split('.')[-1]
  206. dump.append('%s = %s' % (name, pydoc.text.repr(value)))
  207. else:
  208. dump.append(name + ' undefined')
  209. rows.append('\n'.join(dump))
  210. frames.append('\n%s\n' % '\n'.join(rows))
  211. exception = ['%s: %s' % (str(etype), str(evalue))]
  212. for name in dir(evalue):
  213. value = pydoc.text.repr(getattr(evalue, name))
  214. exception.append('\n%s%s = %s' % (" "*4, name, value))
  215. return head + ''.join(frames) + ''.join(exception) + '''
  216. The above is a description of an error in a Python program. Here is
  217. the original traceback:
  218. %s
  219. ''' % ''.join(traceback.format_exception(etype, evalue, etb))
  220. class Hook:
  221. """A hook to replace sys.excepthook that shows tracebacks in HTML."""
  222. def __init__(self, display=1, logdir=None, context=5, file=None,
  223. format="html"):
  224. self.display = display # send tracebacks to browser if true
  225. self.logdir = logdir # log tracebacks to files if not None
  226. self.context = context # number of source code lines per frame
  227. self.file = file or sys.stdout # place to send the output
  228. self.format = format
  229. def __call__(self, etype, evalue, etb):
  230. self.handle((etype, evalue, etb))
  231. def handle(self, info=None):
  232. info = info or sys.exc_info()
  233. if self.format == "html":
  234. self.file.write(reset())
  235. formatter = (self.format=="html") and html or text
  236. plain = False
  237. try:
  238. doc = formatter(info, self.context)
  239. except: # just in case something goes wrong
  240. doc = ''.join(traceback.format_exception(*info))
  241. plain = True
  242. if self.display:
  243. if plain:
  244. doc = doc.replace('&', '&amp;').replace('<', '&lt;')
  245. self.file.write('<pre>' + doc + '</pre>\n')
  246. else:
  247. self.file.write(doc + '\n')
  248. else:
  249. self.file.write('<p>A problem occurred in a Python script.\n')
  250. if self.logdir is not None:
  251. suffix = ['.txt', '.html'][self.format=="html"]
  252. (fd, path) = tempfile.mkstemp(suffix=suffix, dir=self.logdir)
  253. try:
  254. with os.fdopen(fd, 'w') as file:
  255. file.write(doc)
  256. msg = '%s contains the description of this error.' % path
  257. except:
  258. msg = 'Tried to save traceback to %s, but failed.' % path
  259. if self.format == 'html':
  260. self.file.write('<p>%s</p>\n' % msg)
  261. else:
  262. self.file.write(msg + '\n')
  263. try:
  264. self.file.flush()
  265. except: pass
  266. handler = Hook().handle
  267. def enable(display=1, logdir=None, context=5, format="html"):
  268. """Install an exception handler that formats tracebacks as HTML.
  269. The optional argument 'display' can be set to 0 to suppress sending the
  270. traceback to the browser, and 'logdir' can be set to a directory to cause
  271. tracebacks to be written to files there."""
  272. sys.excepthook = Hook(display=display, logdir=logdir,
  273. context=context, format=format)