Merge branch 'master' into comment-cache
[emacs.git] / lisp / emacs-lisp / lisp-mnt.el
blobfc3caf3359a67a79ca8ad0a6f5b819b38fc5125c
1 ;;; lisp-mnt.el --- utility functions for Emacs Lisp maintainers
3 ;; Copyright (C) 1992, 1994, 1997, 2000-2017 Free Software Foundation,
4 ;; Inc.
6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Created: 14 Jul 1992
9 ;; Keywords: docs
10 ;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out!
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; This library adds some services to Emacs-Lisp editing mode.
31 ;; First, it knows about the header conventions for library packages.
32 ;; One entry point supports generating synopses from a library directory.
33 ;; Another can be used to check for missing headers in library files.
35 ;; Another entry point automatically addresses bug mail to a package's
36 ;; maintainer or author.
38 ;; This file can be loaded by your emacs-lisp-mode-hook. Have it
39 ;; (require 'lisp-mnt)
41 ;; This file is an example of the header conventions. Note the following
42 ;; features:
44 ;; * Header line --- makes it possible to extract a one-line summary of
45 ;; the package's uses automatically for use in library synopses, KWIC
46 ;; indexes and the like.
48 ;; Format is three semicolons, followed by the filename, followed by
49 ;; three dashes, followed by the summary. All fields space-separated.
51 ;; * A blank line
53 ;; * Copyright line, which looks more or less like this:
55 ;; ;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
57 ;; * A blank line
59 ;; * Author line --- contains the name and net address of at least
60 ;; the principal author.
62 ;; If there are multiple authors, they should be listed on continuation
63 ;; lines led by ;;<TAB>, like this:
65 ;; ;; Author: Ashwin Ram <Ram-Ashwin@cs.yale.edu>
66 ;; ;; Dave Sill <de5@ornl.gov>
67 ;; ;; David Lawrence <tale@pawl.rpi.edu>
68 ;; ;; Noah Friedman <friedman@ai.mit.edu>
69 ;; ;; Joe Wells <jbw@maverick.uswest.com>
70 ;; ;; Dave Brennan <brennan@hal.com>
71 ;; ;; Eric Raymond <esr@snark.thyrsus.com>
73 ;; * Maintainer line --- should be a single name/address as in the Author
74 ;; line, or an address only. If there is no maintainer
75 ;; line, the person(s) in the Author field are presumed to be it.
76 ;; The idea behind these two fields is to be able to write a Lisp function
77 ;; that does "send mail to the author" without having to mine the name out by
78 ;; hand. Please be careful about surrounding the network address with <> if
79 ;; there's also a name in the field.
81 ;; * Created line --- optional, gives the original creation date of the
82 ;; file. For historical interest, basically.
84 ;; * Version line --- intended to give the reader a clue if they're looking
85 ;; at a different version of the file than the one they're accustomed to. This
86 ;; may be an RCS or SCCS header.
88 ;; * Adapted-By line --- this was used historically when some files
89 ;; were added to Emacs. The person named in this field installed and
90 ;; (possibly adapted) the package in the Emacs distribution.
92 ;; * Keywords line --- used by the finder code for finding Emacs
93 ;; Lisp code related to a topic.
95 ;; * X-Bogus-Bureaucratic-Cruft line --- this is a joke and an example
96 ;; of a comment header. Headers starting with `X-' should never be used
97 ;; for any real purpose; this is the way to safely add random headers
98 ;; without invoking the wrath of any program.
100 ;; * Commentary line --- enables Lisp code to find the developer's and
101 ;; maintainers' explanations of the package internals.
103 ;; * Change log line --- optional, exists to terminate the commentary
104 ;; section and start a change-log part, if one exists.
106 ;; * Code line --- exists so Lisp can know where commentary and/or
107 ;; change-log sections end.
109 ;; * Footer line --- marks end-of-file so it can be distinguished from
110 ;; an expanded formfeed or the results of truncation.
112 ;;; Change Log:
114 ;; Tue Jul 14 23:44:17 1992 ESR
115 ;; * Created.
117 ;;; Code:
119 ;;; Variables:
121 (defgroup lisp-mnt nil
122 "Utility functions for Emacs Lisp maintainers."
123 :prefix "lm-"
124 :group 'maint)
126 ;; At least some of these defcustoms should probably be defconsts,
127 ;; since they define, or are defined by, the header format. -- fx
129 (defcustom lm-header-prefix "^;+[ \t]+\\(@(#)\\)?[ \t]*\\$?"
130 "Prefix that is ignored before the tag.
131 For example, you can write the 1st line synopsis string and headers like this
132 in your Lisp package:
134 ;; @(#) package.el -- package description
136 ;; @(#) $Maintainer: Person Foo Bar $
138 The @(#) construct is used by unix what(1) and
139 then $identifier: doc string $ is used by GNU ident(1)"
140 :type 'regexp
141 :group 'lisp-mnt)
143 (defcustom lm-copyright-prefix "^\\(;+[ \t]\\)+Copyright (C) "
144 "Prefix that is ignored before the dates in a copyright.
145 Leading comment characters and whitespace should be in regexp group 1."
146 :type 'regexp
147 :group 'lisp-mnt)
149 (defcustom lm-comment-column 16
150 "Column used for placing formatted output."
151 :type 'integer
152 :group 'lisp-mnt)
154 (defcustom lm-any-header ".*"
155 "Regexp which matches start of any section."
156 :type 'regexp
157 :group 'lisp-mnt)
159 (defcustom lm-commentary-header "Commentary\\|Documentation"
160 "Regexp which matches start of documentation section."
161 :type 'regexp
162 :group 'lisp-mnt)
164 (defcustom lm-history-header "Change ?Log\\|History"
165 "Regexp which matches the start of code log section."
166 :type 'regexp
167 :group 'lisp-mnt)
169 ;;; Functions:
171 ;; These functions all parse the headers of the current buffer
173 (defun lm-get-header-re (header &optional mode)
174 "Return regexp for matching HEADER.
175 If called with optional MODE and with value `section',
176 return section regexp instead."
177 (if (eq mode 'section)
178 (concat "^;;;;* \\(" header "\\):[ \t]*$")
179 (concat lm-header-prefix "\\(" header "\\)[ \t]*:[ \t]*")))
181 (defun lm-get-package-name ()
182 "Return package name by looking at the first line."
183 (save-excursion
184 (goto-char (point-min))
185 (if (and (looking-at (concat lm-header-prefix))
186 (progn (goto-char (match-end 0))
187 (looking-at "\\([^\t ]+\\)")
188 (match-end 1)))
189 (match-string-no-properties 1))))
191 (defun lm-section-start (header &optional after)
192 "Return the buffer location of a given section start marker.
193 The HEADER is the section mark string to search for.
194 If AFTER is non-nil, return the location of the next line.
195 If the given section does not exist, return nil."
196 (save-excursion
197 (let ((case-fold-search t))
198 (goto-char (point-min))
199 (if (re-search-forward (lm-get-header-re header 'section) nil t)
200 (line-beginning-position (if after 2))))))
201 (defalias 'lm-section-mark 'lm-section-start)
203 (defun lm-section-end (header)
204 "Return the buffer location of the end of a given section.
205 The HEADER is the section string marking the beginning of the
206 section. If the given section does not exist, return nil.
208 The section ends before the first non-comment text or the next
209 section of the same level or lower; whatever comes first. The
210 function `lisp-outline-level' is used to compute the level of
211 a section."
212 (require 'outline) ;; for outline-regexp.
213 (let ((start (lm-section-start header)))
214 (when start
215 (save-excursion
216 (goto-char start)
217 (let ((level (lisp-outline-level))
218 (case-fold-search t)
219 next-section-found)
220 (beginning-of-line 2)
221 (while (and (setq next-section-found
222 (re-search-forward
223 (lm-get-header-re lm-any-header 'section)
224 nil t))
225 (> (save-excursion
226 (beginning-of-line)
227 (lisp-outline-level))
228 level)))
229 (min (if next-section-found
230 (progn (beginning-of-line 0)
231 (unless (looking-at "\f")
232 (beginning-of-line 2))
233 (point))
234 (point-max))
235 (progn (goto-char start)
236 (while (forward-comment 1))
237 (point))))))))
239 (defsubst lm-code-start ()
240 "Return the buffer location of the `Code' start marker."
241 (lm-section-start "Code"))
242 (defalias 'lm-code-mark 'lm-code-start)
244 (defsubst lm-commentary-start ()
245 "Return the buffer location of the `Commentary' start marker."
246 (lm-section-start lm-commentary-header))
247 (defalias 'lm-commentary-mark 'lm-commentary-start)
249 (defsubst lm-commentary-end ()
250 "Return the buffer location of the `Commentary' section end."
251 (lm-section-end lm-commentary-header))
253 (defsubst lm-history-start ()
254 "Return the buffer location of the `History' start marker."
255 (lm-section-start lm-history-header))
256 (defalias 'lm-history-mark 'lm-history-start)
258 (defsubst lm-copyright-mark ()
259 "Return the buffer location of the `Copyright' line."
260 (save-excursion
261 (let ((case-fold-search t))
262 (goto-char (point-min))
263 (if (re-search-forward lm-copyright-prefix nil t)
264 (point)))))
266 (defun lm-header (header)
267 "Return the contents of the header named HEADER."
268 (goto-char (point-min))
269 (let ((case-fold-search t))
270 (when (and (re-search-forward (lm-get-header-re header) (lm-code-mark) t)
271 ;; RCS ident likes format "$identifier: data$"
272 (looking-at
273 (if (save-excursion
274 (skip-chars-backward "^$" (match-beginning 0))
275 (= (point) (match-beginning 0)))
276 "[^\n]+" "[^$\n]+")))
277 (match-string-no-properties 0))))
279 (defun lm-header-multiline (header)
280 "Return the contents of the header named HEADER, with continuation lines.
281 The returned value is a list of strings, one per line."
282 (save-excursion
283 (goto-char (point-min))
284 (let ((res (lm-header header)))
285 (when res
286 (setq res (list res))
287 (forward-line 1)
288 (while (looking-at "^;+\\(\t\\|[\t\s]\\{2,\\}\\)\\(.+\\)")
289 (push (match-string-no-properties 2) res)
290 (forward-line 1)))
291 (nreverse res))))
293 ;; These give us smart access to the header fields and commentary
295 (defmacro lm-with-file (file &rest body)
296 "Execute BODY in a buffer containing the contents of FILE.
297 If FILE is nil, execute BODY in the current buffer."
298 (declare (indent 1) (debug t))
299 (let ((filesym (make-symbol "file")))
300 `(let ((,filesym ,file))
301 (if ,filesym
302 (with-temp-buffer
303 (insert-file-contents ,filesym)
304 (emacs-lisp-mode)
305 ,@body)
306 (save-excursion
307 (save-restriction
308 (widen)
309 (goto-char (point-min))
310 ;; Switching major modes is too drastic, so just switch
311 ;; temporarily to the Emacs Lisp mode syntax table.
312 (with-syntax-table emacs-lisp-mode-syntax-table
313 ,@body)))))))
315 ;; Fixme: Probably this should be amalgamated with copyright.el; also
316 ;; we need a check for ranges in copyright years.
318 (defun lm-crack-copyright (&optional file)
319 "Return the copyright holder, and a list of copyright years.
320 Use the current buffer if FILE is nil.
321 Return argument is of the form (\"HOLDER\" \"YEAR1\" ... \"YEARN\")"
322 (lm-with-file file
323 (goto-char (lm-copyright-mark))
324 (let ((holder nil)
325 (years nil)
326 (start (point))
327 (end (line-end-position)))
328 ;; Cope with multi-line copyright `lines'. Assume the second
329 ;; line is indented (with the same commenting style).
330 (save-excursion
331 (beginning-of-line 2)
332 (let ((str (concat (match-string-no-properties 1) "[ \t]+")))
333 (beginning-of-line)
334 (while (looking-at str)
335 (setq end (line-end-position))
336 (beginning-of-line 2))))
337 ;; Make a single line and parse that.
338 (let ((buff (current-buffer)))
339 (with-temp-buffer
340 (insert-buffer-substring buff start end)
341 (goto-char (point-min))
342 (while (re-search-forward "^;+[ \t]+" nil t)
343 (replace-match ""))
344 (goto-char (point-min))
345 (while (re-search-forward " *\n" nil t)
346 (replace-match " "))
347 (goto-char (point-min))
348 (while (re-search-forward "\\([0-9]+\\),? +" nil t)
349 (setq years (cons (match-string-no-properties 1) years)))
350 (if (looking-at ".*$")
351 (setq holder (match-string-no-properties 0)))))
352 (cons holder (nreverse years)))))
354 (defun lm-summary (&optional file)
355 "Return the one-line summary of file FILE, or current buffer if FILE is nil."
356 (lm-with-file file
357 (goto-char (point-min))
358 (if (and (looking-at lm-header-prefix)
359 (progn (goto-char (match-end 0))
360 (looking-at "[^ ]+[ \t]+--+[ \t]+\\(.*\\)")))
361 (let ((summary (match-string-no-properties 1)))
362 ;; Strip off -*- specifications.
363 (if (string-match "[ \t]*-\\*-.*-\\*-" summary)
364 (substring summary 0 (match-beginning 0))
365 summary)))))
367 (defun lm-crack-address (x)
368 "Split up an email address X into full name and real email address.
369 The value is a cons of the form (FULLNAME . ADDRESS)."
370 (cond ((string-match "\\(.+\\) [(<]\\(\\S-+@\\S-+\\)[>)]" x)
371 (cons (match-string 1 x)
372 (match-string 2 x)))
373 ((string-match "\\(\\S-+@\\S-+\\) [(<]\\(.*\\)[>)]" x)
374 (cons (match-string 2 x)
375 (match-string 1 x)))
376 ((string-match "\\S-+@\\S-+" x)
377 (cons nil x))
379 (cons x nil))))
381 (defun lm-authors (&optional file)
382 "Return the author list of file FILE, or current buffer if FILE is nil.
383 Each element of the list is a cons; the car is the full name,
384 the cdr is an email address."
385 (lm-with-file file
386 (let ((authorlist (lm-header-multiline "author")))
387 (mapcar 'lm-crack-address authorlist))))
389 (defun lm-maintainer (&optional file)
390 "Return the maintainer of file FILE, or current buffer if FILE is nil.
391 The return value has the form (NAME . ADDRESS)."
392 (lm-with-file file
393 (let ((maint (lm-header "maintainer")))
394 (if maint
395 (lm-crack-address maint)
396 (car (lm-authors))))))
398 (defun lm-creation-date (&optional file)
399 "Return the created date given in file FILE, or current buffer if FILE is nil."
400 (lm-with-file file
401 (lm-header "created")))
403 (defun lm-last-modified-date (&optional file iso-date)
404 "Return the modify-date given in file FILE, or current buffer if FILE is nil.
405 ISO-DATE non-nil means return the date in ISO 8601 format."
406 (lm-with-file file
407 (when (progn (goto-char (point-min))
408 (re-search-forward
409 "\\$[I]d: [^ ]+ [^ ]+ \\([^/]+\\)/\\([^/]+\\)/\\([^ ]+\\) "
410 (lm-code-mark) t))
411 (let ((dd (match-string 3))
412 (mm (match-string 2))
413 (yyyy (match-string 1)))
414 (if iso-date
415 (format "%s-%s-%s" yyyy mm dd)
416 (format "%s %s %s"
418 (nth (string-to-number mm)
419 '("" "Jan" "Feb" "Mar" "Apr" "May" "Jun"
420 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"))
421 yyyy))))))
423 (defun lm-version (&optional file)
424 "Return the version listed in file FILE, or current buffer if FILE is nil.
425 This can be found in an RCS or SCCS header."
426 (lm-with-file file
427 (or (lm-header "version")
428 (let ((header-max (lm-code-mark)))
429 (goto-char (point-min))
430 (cond
431 ;; Look for an RCS header
432 ((re-search-forward "\\$[I]d: [^ ]+ \\([^ ]+\\) " header-max t)
433 (match-string-no-properties 1))
434 ((re-search-forward "\\$Revision: +\\([^ ]+\\) " header-max t)
435 (match-string-no-properties 1))
436 ;; Look for an SCCS header
437 ((re-search-forward
438 (concat
439 "@(#)"
440 (if buffer-file-name
441 (regexp-quote (file-name-nondirectory buffer-file-name))
442 "[^\t\n]+")
443 "\t\\([012345679.]*\\)")
444 header-max t)
445 (match-string-no-properties 1)))))))
447 (defun lm-keywords (&optional file)
448 "Return the keywords given in file FILE, or current buffer if FILE is nil.
449 The return is a `downcase'-ed string, or nil if no keywords
450 header. Multi-line keywords are joined up with a space between
451 each line."
452 (lm-with-file file
453 (let ((keywords (lm-header-multiline "keywords")))
454 (and keywords
455 (mapconcat 'downcase keywords " ")))))
457 (defun lm-keywords-list (&optional file)
458 "Return list of keywords given in file FILE."
459 (let ((keywords (lm-keywords file)))
460 (if keywords
461 (if (string-match-p "," keywords)
462 (split-string keywords ",[ \t\n]*" t "[ ]+")
463 (split-string keywords "[ \t\n]+" t "[ ]+")))))
465 (defvar finder-known-keywords)
466 (defun lm-keywords-finder-p (&optional file)
467 "Return non-nil if any keywords in FILE are known to finder."
468 (require 'finder)
469 (let ((keys (lm-keywords-list file)))
470 (catch 'keyword-found
471 (while keys
472 (if (assoc (intern (car keys)) finder-known-keywords)
473 (throw 'keyword-found t))
474 (setq keys (cdr keys)))
475 nil)))
477 (defun lm-adapted-by (&optional file)
478 "Return the adapted-by names in file FILE, or current buffer if FILE is nil.
479 This is the name of the person who cleaned up this package for
480 distribution."
481 (lm-with-file file
482 (lm-header "adapted-by")))
484 (defun lm-commentary (&optional file)
485 "Return the commentary in file FILE, or current buffer if FILE is nil.
486 Return the value as a string. In the file, the commentary
487 section starts with the tag `Commentary' or `Documentation' and
488 ends just before the next section. If the commentary section is
489 absent, return nil."
490 (lm-with-file file
491 (let ((start (lm-commentary-start)))
492 (when start
493 (buffer-substring-no-properties start (lm-commentary-end))))))
495 (defun lm-homepage (&optional file)
496 "Return the homepage in file FILE, or current buffer if FILE is nil."
497 (let ((page (lm-with-file file
498 (lm-header "\\(?:x-\\)?\\(?:homepage\\|url\\)"))))
499 (if (and page (string-match "^<.+>$" page))
500 (substring page 1 -1)
501 page)))
503 ;;; Verification and synopses
505 (defun lm-insert-at-column (col &rest strings)
506 "Insert, at column COL, list of STRINGS."
507 (if (> (current-column) col) (insert "\n"))
508 (move-to-column col t)
509 (apply 'insert strings))
511 (defun lm-verify (&optional file showok verbose non-fsf-ok)
512 "Check that the current buffer (or FILE if given) is in proper format.
513 If FILE is a directory, recurse on its files and generate a report in a
514 temporary buffer. In that case, the optional argument SHOWOK
515 says display \"OK\" in temp buffer for files that have no problems.
517 Optional argument VERBOSE specifies verbosity level.
518 Optional argument NON-FSF-OK if non-nil means a non-FSF
519 copyright notice is allowed."
520 (interactive (list nil nil t))
521 (let* ((ret (and verbose "Ok"))
522 name)
523 (if (and file (file-directory-p file))
524 (setq ret
525 (with-temp-buffer
526 (dolist (f (directory-files file nil "\\.el\\'")
527 (buffer-string))
528 (when (file-regular-p f)
529 (let ((status (lm-verify f)))
530 (insert f ":")
531 (if status
532 (lm-insert-at-column lm-comment-column status
533 "\n")
534 (if showok
535 (lm-insert-at-column lm-comment-column
536 "OK\n"))))))))
537 (lm-with-file file
538 (setq name (lm-get-package-name))
539 (setq ret
540 (cond
541 ((null name)
542 "Can't find package name")
543 ((not (lm-authors))
544 "`Author:' tag missing")
545 ((not (lm-maintainer))
546 "`Maintainer:' tag missing")
547 ((not (lm-summary))
548 "Can't find the one-line summary description")
549 ((not (lm-keywords))
550 "`Keywords:' tag missing")
551 ((not (lm-keywords-finder-p))
552 "`Keywords:' has no valid finder keywords (see `finder-known-keywords')")
553 ((not (lm-commentary-mark))
554 "Can't find a `Commentary' section marker")
555 ((not (lm-history-mark))
556 "Can't find a `History' section marker")
557 ((not (lm-code-mark))
558 "Can't find a `Code' section marker")
559 ((progn
560 (goto-char (point-max))
561 (not
562 (re-search-backward
563 (concat "^;;;[ \t]+" name "[ \t]+ends here[ \t]*$"
564 "\\|^;;;[ \t]+ End of file[ \t]+" name)
565 nil t)))
566 "Can't find the footer line")
567 ((not (and (lm-copyright-mark) (lm-crack-copyright)))
568 "Can't find a valid copyright notice")
569 ((not (or non-fsf-ok
570 (string-match "Free Software Foundation"
571 (car (lm-crack-copyright)))))
572 "Copyright holder is not the Free Software Foundation")
574 ret)))))
575 (if verbose
576 (message "%s" ret))
577 ret))
579 (defun lm-synopsis (&optional file showall)
580 "Generate a synopsis listing for the buffer or the given FILE if given.
581 If FILE is a directory, recurse on its files and generate a report in
582 a temporary buffer. If SHOWALL is non-nil, also generate a line for files
583 which do not include a recognizable synopsis."
584 (interactive
585 (list
586 (read-file-name "Synopsis for (file or dir): ")))
588 (if (and file (file-directory-p file))
589 (with-output-to-temp-buffer "*Synopsis*"
590 (set-buffer standard-output)
591 (dolist (f (directory-files file nil ".*\\.el\\'"))
592 (let ((syn (lm-synopsis (expand-file-name f file))))
593 (when (or syn showall)
594 (insert f ":")
595 (lm-insert-at-column lm-comment-column (or syn "NA") "\n")))))
596 (save-excursion
597 (let ((must-kill (and file (not (get-file-buffer file)))))
598 (when file (find-file file))
599 (prog1
600 (if (called-interactively-p 'interactive)
601 (message "%s" (lm-summary))
602 (lm-summary))
603 (when must-kill (kill-buffer (current-buffer))))))))
605 (defvar report-emacs-bug-address)
607 (defun lm-report-bug (topic)
608 "Report a bug in the package currently being visited to its maintainer.
609 Prompts for bug subject TOPIC. Leaves you in a mail buffer."
610 (interactive "sBug Subject: ")
611 (require 'emacsbug)
612 (let ((package (lm-get-package-name))
613 (addr (lm-maintainer))
614 (version (lm-version)))
615 (compose-mail (if addr
616 (concat (car addr) " <" (cdr addr) ">")
617 report-emacs-bug-address)
618 topic)
619 (goto-char (point-max))
620 (insert "\nIn " package)
621 (if version
622 (insert " version " version))
623 (newline 2)
624 (message "%s"
625 (substitute-command-keys "Type \\[mail-send] to send bug report."))))
627 (provide 'lisp-mnt)
629 ;;; lisp-mnt.el ends here