home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / lisp / utils / reporter.el < prev    next >
Encoding:
Text File  |  1995-04-17  |  14.2 KB  |  419 lines

  1. ;;; reporter.el --- customizable bug reporting of lisp programs
  2.  
  3. ;; Author: 1993 Barry A. Warsaw <bwarsaw@cnri.reston.va.us>
  4. ;; Maintainer:      bwarsaw@cnri.reston.va.us
  5. ;; Created:         19-Apr-1993
  6. ;; Version:         2.21
  7. ;; Last Modified:   2-jan-95
  8. ;; Keywords: mail, lisp
  9.  
  10. ;; Copyright (C) 1993 1994 Barry A. Warsaw
  11. ;; Copyright (C) 1993 1994 Free Software Foundation, Inc.
  12.  
  13. ;; This file is part of XEmacs.
  14.  
  15. ;; XEmacs is free software; you can redistribute it and/or modify it
  16. ;; under the terms of the GNU General Public License as published by
  17. ;; the Free Software Foundation; either version 2, or (at your option)
  18. ;; any later version.
  19.  
  20. ;; XEmacs is distributed in the hope that it will be useful, but
  21. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  22. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  23. ;; General Public License for more details.
  24.  
  25. ;; You should have received a copy of the GNU General Public License
  26. ;; along with XEmacs; see the file COPYING.  If not, write to the Free
  27. ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  28.  
  29. ;;; Commentary:
  30. ;;
  31. ;; Introduction
  32. ;; ============
  33. ;; This program is for lisp package authors and can be used to ease
  34. ;; reporting of bugs.  When invoked, reporter-submit-bug-report will
  35. ;; set up a mail buffer with the appropriate bug report address,
  36. ;; including a lisp expression the maintainer of the package can eval
  37. ;; to completely reproduce the environment in which the bug was
  38. ;; observed (e.g. by using eval-last-sexp). This package proved
  39. ;; especially useful during my development of cc-mode.el, which is
  40. ;; highly dependent on its configuration variables.
  41. ;;
  42. ;; Do a "C-h f reporter-submit-bug-report" for more information.
  43. ;; Here's an example usage:
  44. ;;
  45. ;;(defconst mypkg-version "9.801")
  46. ;;(defconst mypkg-maintainer-address "mypkg-help@foo.com")
  47. ;;(defun mypkg-submit-bug-report ()
  48. ;;  "Submit via mail a bug report on mypkg"
  49. ;;  (interactive)
  50. ;;  (require 'reporter)
  51. ;;  (reporter-submit-bug-report
  52. ;;   mypkg-maintainer-address
  53. ;;   (concat "mypkg.el " mypkg-version)
  54. ;;   (list 'mypkg-variable-1
  55. ;;         'mypkg-variable-2
  56. ;;         ;; ...
  57. ;;         'mypkg-variable-last)))
  58.  
  59. ;; Mailing List
  60. ;; ============
  61. ;; I've set up a mailing list to report bugs or suggest enhancements,
  62. ;; etc. This list's intended audience is elisp package authors who are
  63. ;; using reporter and want to stay current with releases. Here are the
  64. ;; relevent addresses:
  65. ;;
  66. ;; Administrivia: reporter-request@anthem.nlm.nih.gov
  67. ;; Submissions:   reporter@anthem.nlm.nih.gov
  68.  
  69. ;; Packages that currently use reporter are: cc-mode, supercite, elp,
  70. ;; tcl, ediff, crypt, vm, edebug, archie, and efs.  If you know of
  71. ;; others, please email me!
  72.  
  73. ;; LCD Archive Entry:
  74. ;; reporter|Barry A. Warsaw|bwarsaw@cnri.reston.va.us|
  75. ;; Customizable bug reporting of lisp programs.|
  76. ;; 1994/11/29 16:13:50|2.21|~/misc/reporter.el.Z|
  77.  
  78. ;;; Code:
  79.  
  80.  
  81. ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
  82. ;; user defined variables
  83.  
  84. (defvar reporter-mailer '(vm-mail mail)
  85.   "*Mail package to use to generate bug report buffer.
  86. This can either be a function symbol or a list of function symbols.
  87. If a list, it tries to use each specified mailer in order until an
  88. existing one is found.
  89.  
  90. MH-E users may want to use `mh-smail'.")
  91.  
  92. (defvar reporter-prompt-for-summary-p nil
  93.   "Interface variable controlling prompting for problem summary.
  94. When non-nil, `reporter-submit-bug-report' prompts the user for a
  95. brief summary of the problem, and puts this summary on the Subject:
  96. line.
  97.  
  98. Default behavior is to not prompt (i.e. nil). If you want reporter to
  99. prompt, you should `let' bind this variable to t before calling
  100. `reporter-submit-bug-report'.  Note that this variable is not
  101. buffer-local so you should never just `setq' it.")
  102.  
  103. (defvar reporter-dont-compact-list nil
  104.   "Interface variable controlling compating of list values.
  105. When non-nil, this must be a list of variable symbols.  When a
  106. variable containing a list value is formatted in the bug report mail
  107. buffer, it normally is compacted so that its value fits one the fewest
  108. number of lines.  If the variable's symbol appears in this list, its
  109. value is printed in a more verbose style, specifically, one elemental
  110. sexp per line.
  111.  
  112. Note that this variable is not buffer-local so you should never just
  113. `setq' it.  If you want to changes its default value, you should `let'
  114. bind it.")
  115.  
  116. ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  117. ;; end of user defined variables
  118.  
  119. (defvar reporter-eval-buffer nil
  120.   "Buffer to retrieve variable's value from.
  121. This is necessary to properly support the printing of buffer-local
  122. variables.  Current buffer will always be the mail buffer being
  123. composed.")
  124.  
  125. (defconst reporter-version "2.21"
  126.   "Reporter version number.")
  127.  
  128. (defvar reporter-initial-text nil
  129.   "The automatically created initial text of a bug report.")
  130. (make-variable-buffer-local 'reporter-initial-text)
  131.  
  132.  
  133. (defvar reporter-status-message nil)
  134. (defvar reporter-status-count nil)
  135.  
  136. (defun reporter-update-status ()
  137.   ;; periodically output a status message
  138.   (if (zerop (% reporter-status-count 10))
  139.       (progn
  140.     (message reporter-status-message)
  141.     (setq reporter-status-message (concat reporter-status-message "."))))
  142.   (setq reporter-status-count (1+ reporter-status-count)))
  143.  
  144.  
  145. (defun reporter-beautify-list (maxwidth compact-p)
  146.   ;; pretty print a list
  147.   (reporter-update-status)
  148.   (let (linebreak indent-enclosing-p indent-p here)
  149.     (condition-case nil            ;loop exit
  150.     (progn
  151.       (down-list 1)
  152.       (setq indent-enclosing-p t)
  153.       (while t
  154.         (setq here (point))
  155.         (forward-sexp 1)
  156.         (if (<= maxwidth (current-column))
  157.         (if linebreak
  158.             (progn
  159.               (goto-char linebreak)
  160.               (newline-and-indent)
  161.               (setq linebreak nil))
  162.           (goto-char here)
  163.           (setq indent-p (reporter-beautify-list maxwidth compact-p))
  164.           (goto-char here)
  165.           (forward-sexp 1)
  166.           (if indent-p
  167.               (newline-and-indent))
  168.           t)
  169.           (if compact-p
  170.           (setq linebreak (point))
  171.         (newline-and-indent))
  172.           ))
  173.       t)
  174.       (error indent-enclosing-p))))
  175.  
  176. (defun reporter-lisp-indent (indent-point state)
  177.   ;; a better lisp indentation style for bug reporting
  178.   (save-excursion
  179.     (goto-char (1+ (nth 1 state)))
  180.     (current-column)))
  181.  
  182. (defun reporter-dump-variable (varsym mailbuf)
  183.   ;; Pretty-print the value of the variable in symbol VARSYM.  MAILBUF
  184.   ;; is the mail buffer being composed
  185.   (reporter-update-status)
  186.   (condition-case nil
  187.       (let ((val (save-excursion
  188.            (set-buffer reporter-eval-buffer)
  189.            (symbol-value varsym)))
  190.         (sym (symbol-name varsym))
  191.         (print-escape-newlines t)
  192.         (maxwidth (1- (window-width)))
  193.         (here (point)))
  194.     (insert "     " sym " "
  195.         (cond
  196.          ((memq val '(t nil)) "")
  197.          ((listp val) "'")
  198.          ((symbolp val) "'")
  199.          (t ""))
  200.         (prin1-to-string val))
  201.     (lisp-indent-line)
  202.     ;; clean up lists, but only if the line as printed was long
  203.     ;; enough to wrap
  204.     (if (and val            ;nil is a list, but short
  205.          (listp val)
  206.          (<= maxwidth (current-column)))
  207.         (save-excursion
  208.           (let ((compact-p (not (memq varsym reporter-dont-compact-list)))
  209.             (lisp-indent-function 'reporter-lisp-indent))
  210.         (goto-char here)
  211.         (reporter-beautify-list maxwidth compact-p))))
  212.     (insert "\n"))
  213.     (void-variable
  214.      (save-excursion
  215.        (set-buffer mailbuf)
  216.        (mail-position-on-field "X-Reporter-Void-Vars-Found")
  217.        (end-of-line)
  218.        (insert (symbol-name varsym) " ")))
  219.     (error (error))))
  220.  
  221. (defun reporter-dump-state (pkgname varlist pre-hooks post-hooks)
  222.   ;; Dump the state of the mode specific variables.
  223.   ;; PKGNAME contains the name of the mode as it will appear in the bug
  224.   ;; report (you must explicitly concat any version numbers).
  225.  
  226.   ;; VARLIST is the list of variables to dump.  Each element in
  227.   ;; VARLIST can be a variable symbol, or a cons cell.  If a symbol,
  228.   ;; this will be passed to `reporter-dump-variable' for insertion
  229.   ;; into the mail buffer.  If a cons cell, the car must be a variable
  230.   ;; symbol and the cdr must be a function which will be `funcall'd
  231.   ;; with arguments the symbol and the mail buffer being composed. Use
  232.   ;; this to write your own custom variable value printers for
  233.   ;; specific variables.
  234.  
  235.   ;; Note that the global variable `reporter-eval-buffer' will be bound to
  236.   ;; the buffer in which `reporter-submit-bug-report' was invoked.  If you
  237.   ;; want to print the value of a buffer local variable, you should wrap
  238.   ;; the `eval' call in your custom printer inside a `set-buffer' (and
  239.   ;; probably a `save-excursion'). `reporter-dump-variable' handles this
  240.   ;; properly.
  241.  
  242.   ;; PRE-HOOKS is run after the emacs-version and PKGNAME are inserted, but
  243.   ;; before the VARLIST is dumped.  POST-HOOKS is run after the VARLIST is
  244.   ;; dumped.
  245.   (let ((buffer (current-buffer)))
  246.     (set-buffer buffer)
  247.     (insert "Emacs  : " (emacs-version) "\n")
  248.     (and pkgname
  249.      (insert "Package: " pkgname "\n"))
  250.     (run-hooks 'pre-hooks)
  251.     (if (not varlist)
  252.     nil
  253.       (insert "\ncurrent state:\n==============\n")
  254.       ;; create an emacs-lisp-mode buffer to contain the output, which
  255.       ;; we'll later insert into the mail buffer
  256.       (condition-case fault
  257.       (let ((mailbuf (current-buffer))
  258.         (elbuf (get-buffer-create " *tmp-reporter-buffer*")))
  259.         (save-excursion
  260.           (set-buffer elbuf)
  261.           (emacs-lisp-mode)
  262.           (erase-buffer)
  263.           (insert "(setq\n")
  264.           (lisp-indent-line)
  265.           (mapcar
  266.            (function
  267.         (lambda (varsym-or-cons-cell)
  268.           (let ((varsym (or (car-safe varsym-or-cons-cell)
  269.                     varsym-or-cons-cell))
  270.             (printer (or (cdr-safe varsym-or-cons-cell)
  271.                      'reporter-dump-variable)))
  272.             (funcall printer varsym mailbuf)
  273.             )))
  274.            varlist)
  275.           (lisp-indent-line)
  276.           (insert ")\n"))
  277.         (insert-buffer elbuf))
  278.     (error
  279.      (insert "State could not be dumped due to the following error:\n\n"
  280.          (format "%s" fault)
  281.          "\n\nYou should still send this bug report."))))
  282.     (run-hooks 'post-hooks)
  283.     ))
  284.  
  285.  
  286. (defun reporter-calculate-separator ()
  287.   ;; returns the string regexp matching the mail separator
  288.   (save-excursion
  289.     (re-search-forward
  290.      (concat
  291.       "^\\("                ;beginning of line
  292.       (mapconcat
  293.        'identity
  294.        (list "[\t ]*"            ;simple SMTP form
  295.          "-+"            ;mh-e form
  296.          (regexp-quote 
  297.           mail-header-separator))    ;sendmail.el form
  298.        "\\|")                ;or them together
  299.       "\\)$")                ;end of line
  300.      nil
  301.      'move)                ;search for and move
  302.     (buffer-substring (match-beginning 0) (match-end 0))))
  303.  
  304. ;;;###autoload
  305. (defun reporter-submit-bug-report
  306.   (address pkgname varlist &optional pre-hooks post-hooks salutation)
  307.   ;; Submit a bug report via mail.
  308.  
  309.   ;; ADDRESS is the email address for the package's maintainer. PKGNAME is
  310.   ;; the name of the mode (you must explicitly concat any version numbers).
  311.   ;; VARLIST is the list of variables to dump (see `reporter-dump-state'
  312.   ;; for details). Optional PRE-HOOKS and POST-HOOKS are passed to
  313.   ;; `reporter-dump-state'. Optional SALUTATION is inserted at the top of the
  314.   ;; mail buffer, and point is left after the salutation.
  315.  
  316.   ;; This function will prompt for a summary if
  317.   ;; reporter-prompt-for-summary-p is non-nil.
  318.  
  319.   ;; The mailer used is described in the variable `reporter-mailer'.
  320.   (let ((reporter-eval-buffer (current-buffer))
  321.     final-resting-place
  322.     after-sep-pos
  323.     (reporter-status-message "Formatting bug report buffer...")
  324.     (reporter-status-count 0)
  325.     (problem (and reporter-prompt-for-summary-p
  326.               (read-string "(Very) brief summary of problem: ")))
  327.     (mailbuf
  328.      (progn
  329.        (call-interactively
  330.         (if (nlistp reporter-mailer)
  331.         reporter-mailer
  332.           (let ((mlist reporter-mailer)
  333.             (mailer nil))
  334.         (while mlist
  335.           (if (commandp (car mlist))
  336.               (setq mailer (car mlist)
  337.                 mlist nil)
  338.             (setq mlist (cdr mlist))))
  339.         (if (not mailer)
  340.             (error
  341.              "variable `%s' does not contain a command for mailing."
  342.              "reporter-mailer"))
  343.         mailer)))
  344.        (current-buffer))))
  345.     (require 'sendmail)
  346.     (pop-to-buffer reporter-eval-buffer)
  347.     (pop-to-buffer mailbuf)
  348.     (goto-char (point-min))
  349.     ;; different mailers use different separators, some may not even
  350.     ;; use m-h-s, but sendmail.el stuff must have m-h-s bound.
  351.     (let ((mail-header-separator (reporter-calculate-separator)))
  352.       (mail-position-on-field "to")
  353.       (insert address)
  354.       ;; insert problem summary if available
  355.       (if (and reporter-prompt-for-summary-p problem pkgname)
  356.       (progn
  357.         (mail-position-on-field "subject")
  358.         (insert pkgname "; " problem)))
  359.       ;; move point to the body of the message
  360.       (mail-text)
  361.       (forward-line 1)
  362.       (setq after-sep-pos (point))
  363.       (and salutation (insert "\n" salutation "\n\n"))
  364.       (unwind-protect
  365.       (progn
  366.         (setq final-resting-place (point-marker))
  367.         (insert "\n\n")
  368.         (reporter-dump-state pkgname varlist pre-hooks post-hooks)
  369.         (goto-char final-resting-place))
  370.     (set-marker final-resting-place nil)))
  371.  
  372.     ;; save initial text and set up the `no-empty-submission' hook.
  373.     ;; This only works for mailers that support mail-send-hook,
  374.     ;; e.g. sendmail.el
  375.     (if (fboundp 'add-hook)
  376.     (progn
  377.       (save-excursion
  378.         (goto-char (point-max))
  379.         (skip-chars-backward " \t\n")
  380.         (setq reporter-initial-text
  381.           (buffer-substring after-sep-pos (point))))
  382.       (make-variable-buffer-local 'mail-send-hook)
  383.       (add-hook 'mail-send-hook 'reporter-bug-hook)))
  384.  
  385.     ;; minibuf message
  386.     ;; C-c C-c can't be generalized because they don't always run
  387.     ;; mail-send-and-exit. E.g. vm-mail-send-and-exit.  I don't want
  388.     ;; to hard code these.
  389.     (let* ((sendkey "C-c C-c")
  390.        (killkey-whereis (where-is-internal 'kill-buffer nil t))
  391.        (killkey (if killkey-whereis
  392.             (key-description killkey-whereis)
  393.               "M-x kill-buffer")))
  394.       (message "Please type in your report. Hit %s to send, %s to abort."
  395.            sendkey killkey))
  396.     ))
  397.  
  398. (defun reporter-bug-hook ()
  399.   ;; prohibit sending mail if empty bug report
  400.   (let ((after-sep-pos
  401.      (save-excursion
  402.        (beginning-of-buffer)
  403.        (re-search-forward (reporter-calculate-separator) (point-max) 'move)
  404.        (forward-line 1)
  405.        (point))))
  406.     (save-excursion
  407.       (goto-char (point-max))
  408.       (skip-chars-backward " \t\n")
  409.       (if (and (= (- (point) after-sep-pos)
  410.           (length reporter-initial-text))
  411.            (string= (buffer-substring after-sep-pos (point))
  412.             reporter-initial-text))
  413.       (error "Empty bug report cannot be sent."))
  414.       )))
  415.  
  416.  
  417. (provide 'reporter)
  418. ;;; reporter.el ends here
  419.