Prefer directed to neutral quotes
[emacs.git] / lisp / emacs-lisp / lisp-mnt.el
blob6fdd348caab2043b5427a660d1009f5f38761158
1 ;;; lisp-mnt.el --- utility functions for Emacs Lisp maintainers
3 ;; Copyright (C) 1992, 1994, 1997, 2000-2015 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 (save-excursion
269 (goto-char (point-min))
270 (let ((case-fold-search t))
271 (when (and (re-search-forward (lm-get-header-re header) (lm-code-mark) t)
272 ;; RCS ident likes format "$identifier: data$"
273 (looking-at
274 (if (save-excursion
275 (skip-chars-backward "^$" (match-beginning 0))
276 (= (point) (match-beginning 0)))
277 "[^\n]+" "[^$\n]+")))
278 (match-string-no-properties 0)))))
280 (defun lm-header-multiline (header)
281 "Return the contents of the header named HEADER, with continuation lines.
282 The returned value is a list of strings, one per line."
283 (save-excursion
284 (goto-char (point-min))
285 (let ((res (lm-header header)))
286 (when res
287 (setq res (list res))
288 (forward-line 1)
289 (while (looking-at "^;+\\(\t\\|[\t\s]\\{2,\\}\\)\\(.+\\)")
290 (push (match-string-no-properties 2) res)
291 (forward-line 1)))
292 (nreverse res))))
294 ;; These give us smart access to the header fields and commentary
296 (defmacro lm-with-file (file &rest body)
297 "Execute BODY in a buffer containing the contents of FILE.
298 If FILE is nil, execute BODY in the current buffer."
299 (declare (indent 1) (debug t))
300 (let ((filesym (make-symbol "file")))
301 `(let ((,filesym ,file))
302 (if ,filesym
303 (with-temp-buffer
304 (insert-file-contents ,filesym)
305 (emacs-lisp-mode)
306 ,@body)
307 (save-excursion
308 (save-restriction
309 (widen)
310 (goto-char (point-min))
311 ;; Switching major modes is too drastic, so just switch
312 ;; temporarily to the Emacs Lisp mode syntax table.
313 (with-syntax-table emacs-lisp-mode-syntax-table
314 ,@body)))))))
316 ;; Fixme: Probably this should be amalgamated with copyright.el; also
317 ;; we need a check for ranges in copyright years.
319 (defun lm-crack-copyright (&optional file)
320 "Return the copyright holder, and a list of copyright years.
321 Use the current buffer if FILE is nil.
322 Return argument is of the form (\"HOLDER\" \"YEAR1\" ... \"YEARN\")"
323 (lm-with-file file
324 (goto-char (lm-copyright-mark))
325 (let ((holder nil)
326 (years nil)
327 (start (point))
328 (end (line-end-position)))
329 ;; Cope with multi-line copyright `lines'. Assume the second
330 ;; line is indented (with the same commenting style).
331 (save-excursion
332 (beginning-of-line 2)
333 (let ((str (concat (match-string-no-properties 1) "[ \t]+")))
334 (beginning-of-line)
335 (while (looking-at str)
336 (setq end (line-end-position))
337 (beginning-of-line 2))))
338 ;; Make a single line and parse that.
339 (let ((buff (current-buffer)))
340 (with-temp-buffer
341 (insert-buffer-substring buff start end)
342 (goto-char (point-min))
343 (while (re-search-forward "^;+[ \t]+" nil t)
344 (replace-match ""))
345 (goto-char (point-min))
346 (while (re-search-forward " *\n" nil t)
347 (replace-match " "))
348 (goto-char (point-min))
349 (while (re-search-forward "\\([0-9]+\\),? +" nil t)
350 (setq years (cons (match-string-no-properties 1) years)))
351 (if (looking-at ".*$")
352 (setq holder (match-string-no-properties 0)))))
353 (cons holder (nreverse years)))))
355 (defun lm-summary (&optional file)
356 "Return the one-line summary of file FILE, or current buffer if FILE is nil."
357 (lm-with-file file
358 (goto-char (point-min))
359 (if (and (looking-at lm-header-prefix)
360 (progn (goto-char (match-end 0))
361 (looking-at "[^ ]+[ \t]+--+[ \t]+\\(.*\\)")))
362 (let ((summary (match-string-no-properties 1)))
363 ;; Strip off -*- specifications.
364 (if (string-match "[ \t]*-\\*-.*-\\*-" summary)
365 (substring summary 0 (match-beginning 0))
366 summary)))))
368 (defun lm-crack-address (x)
369 "Split up an email address X into full name and real email address.
370 The value is a cons of the form (FULLNAME . ADDRESS)."
371 (cond ((string-match "\\(.+\\) [(<]\\(\\S-+@\\S-+\\)[>)]" x)
372 (cons (match-string 1 x)
373 (match-string 2 x)))
374 ((string-match "\\(\\S-+@\\S-+\\) [(<]\\(.*\\)[>)]" x)
375 (cons (match-string 2 x)
376 (match-string 1 x)))
377 ((string-match "\\S-+@\\S-+" x)
378 (cons nil x))
380 (cons x nil))))
382 (defun lm-authors (&optional file)
383 "Return the author list of file FILE, or current buffer if FILE is nil.
384 Each element of the list is a cons; the car is the full name,
385 the cdr is an email address."
386 (lm-with-file file
387 (let ((authorlist (lm-header-multiline "author")))
388 (mapcar 'lm-crack-address authorlist))))
390 (defun lm-maintainer (&optional file)
391 "Return the maintainer of file FILE, or current buffer if FILE is nil.
392 The return value has the form (NAME . ADDRESS)."
393 (lm-with-file file
394 (let ((maint (lm-header "maintainer")))
395 (if maint
396 (lm-crack-address maint)
397 (car (lm-authors))))))
399 (defun lm-creation-date (&optional file)
400 "Return the created date given in file FILE, or current buffer if FILE is nil."
401 (lm-with-file file
402 (lm-header "created")))
404 (defun lm-last-modified-date (&optional file iso-date)
405 "Return the modify-date given in file FILE, or current buffer if FILE is nil.
406 ISO-DATE non-nil means return the date in ISO 8601 format."
407 (lm-with-file file
408 (when (progn (goto-char (point-min))
409 (re-search-forward
410 "\\$[I]d: [^ ]+ [^ ]+ \\([^/]+\\)/\\([^/]+\\)/\\([^ ]+\\) "
411 (lm-code-mark) t))
412 (let ((dd (match-string 3))
413 (mm (match-string 2))
414 (yyyy (match-string 1)))
415 (if iso-date
416 (format "%s-%s-%s" yyyy mm dd)
417 (format "%s %s %s"
419 (nth (string-to-number mm)
420 '("" "Jan" "Feb" "Mar" "Apr" "May" "Jun"
421 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"))
422 yyyy))))))
424 (defun lm-version (&optional file)
425 "Return the version listed in file FILE, or current buffer if FILE is nil.
426 This can be found in an RCS or SCCS header."
427 (lm-with-file file
428 (or (lm-header "version")
429 (let ((header-max (lm-code-mark)))
430 (goto-char (point-min))
431 (cond
432 ;; Look for an RCS header
433 ((re-search-forward "\\$[I]d: [^ ]+ \\([^ ]+\\) " header-max t)
434 (match-string-no-properties 1))
435 ((re-search-forward "\\$Revision: +\\([^ ]+\\) " header-max t)
436 (match-string-no-properties 1))
437 ;; Look for an SCCS header
438 ((re-search-forward
439 (concat
440 "@(#)"
441 (if buffer-file-name
442 (regexp-quote (file-name-nondirectory buffer-file-name))
443 "[^\t\n]+")
444 "\t\\([012345679.]*\\)")
445 header-max t)
446 (match-string-no-properties 1)))))))
448 (defun lm-keywords (&optional file)
449 "Return the keywords given in file FILE, or current buffer if FILE is nil.
450 The return is a `downcase'-ed string, or nil if no keywords
451 header. Multi-line keywords are joined up with a space between
452 each line."
453 (lm-with-file file
454 (let ((keywords (lm-header-multiline "keywords")))
455 (and keywords
456 (mapconcat 'downcase keywords " ")))))
458 (defun lm-keywords-list (&optional file)
459 "Return list of keywords given in file FILE."
460 (let ((keywords (lm-keywords file)))
461 (if keywords
462 (if (string-match-p "," keywords)
463 (split-string keywords ",[ \t\n]*" t "[ ]+")
464 (split-string keywords "[ \t\n]+" t "[ ]+")))))
466 (defvar finder-known-keywords)
467 (defun lm-keywords-finder-p (&optional file)
468 "Return non-nil if any keywords in FILE are known to finder."
469 (require 'finder)
470 (let ((keys (lm-keywords-list file)))
471 (catch 'keyword-found
472 (while keys
473 (if (assoc (intern (car keys)) finder-known-keywords)
474 (throw 'keyword-found t))
475 (setq keys (cdr keys)))
476 nil)))
478 (defun lm-adapted-by (&optional file)
479 "Return the adapted-by names in file FILE, or current buffer if FILE is nil.
480 This is the name of the person who cleaned up this package for
481 distribution."
482 (lm-with-file file
483 (lm-header "adapted-by")))
485 (defun lm-commentary (&optional file)
486 "Return the commentary in file FILE, or current buffer if FILE is nil.
487 Return the value as a string. In the file, the commentary
488 section starts with the tag `Commentary' or `Documentation' and
489 ends just before the next section. If the commentary section is
490 absent, return nil."
491 (lm-with-file file
492 (let ((start (lm-commentary-start)))
493 (when start
494 (buffer-substring-no-properties start (lm-commentary-end))))))
496 (defun lm-homepage (&optional file)
497 "Return the homepage in file FILE, or current buffer if FILE is nil."
498 (let ((page (lm-with-file file
499 (lm-header "\\(?:x-\\)?\\(?:homepage\\|url\\)"))))
500 (if (and page (string-match "^<.+>$" page))
501 (substring page 1 -1)
502 page)))
504 ;;; Verification and synopses
506 (defun lm-insert-at-column (col &rest strings)
507 "Insert, at column COL, list of STRINGS."
508 (if (> (current-column) col) (insert "\n"))
509 (move-to-column col t)
510 (apply 'insert strings))
512 (defun lm-verify (&optional file showok verbose non-fsf-ok)
513 "Check that the current buffer (or FILE if given) is in proper format.
514 If FILE is a directory, recurse on its files and generate a report in a
515 temporary buffer. In that case, the optional argument SHOWOK
516 says display \"OK\" in temp buffer for files that have no problems.
518 Optional argument VERBOSE specifies verbosity level.
519 Optional argument NON-FSF-OK if non-nil means a non-FSF
520 copyright notice is allowed."
521 (interactive (list nil nil t))
522 (let* ((ret (and verbose "Ok"))
523 name)
524 (if (and file (file-directory-p file))
525 (setq ret
526 (with-temp-buffer
527 (dolist (f (directory-files file nil "\\.el\\'")
528 (buffer-string))
529 (when (file-regular-p f)
530 (let ((status (lm-verify f)))
531 (insert f ":")
532 (if status
533 (lm-insert-at-column lm-comment-column status
534 "\n")
535 (if showok
536 (lm-insert-at-column lm-comment-column
537 "OK\n"))))))))
538 (lm-with-file file
539 (setq name (lm-get-package-name))
540 (setq ret
541 (cond
542 ((null name)
543 "Can't find package name")
544 ((not (lm-authors))
545 "‘Author:’ tag missing")
546 ((not (lm-maintainer))
547 "‘Maintainer:’ tag missing")
548 ((not (lm-summary))
549 "Can't find the one-line summary description")
550 ((not (lm-keywords))
551 "‘Keywords:’ tag missing")
552 ((not (lm-keywords-finder-p))
553 "‘Keywords:’ has no valid finder keywords (see ‘finder-known-keywords’)")
554 ((not (lm-commentary-mark))
555 "Can't find a ‘Commentary’ section marker")
556 ((not (lm-history-mark))
557 "Can't find a ‘History’ section marker")
558 ((not (lm-code-mark))
559 "Can't find a ‘Code’ section marker")
560 ((progn
561 (goto-char (point-max))
562 (not
563 (re-search-backward
564 (concat "^;;;[ \t]+" name "[ \t]+ends here[ \t]*$"
565 "\\|^;;;[ \t]+ End of file[ \t]+" name)
566 nil t)))
567 "Can't find the footer line")
568 ((not (and (lm-copyright-mark) (lm-crack-copyright)))
569 "Can't find a valid copyright notice")
570 ((not (or non-fsf-ok
571 (string-match "Free Software Foundation"
572 (car (lm-crack-copyright)))))
573 "Copyright holder is not the Free Software Foundation")
575 ret)))))
576 (if verbose
577 (message "%s" ret))
578 ret))
580 (defun lm-synopsis (&optional file showall)
581 "Generate a synopsis listing for the buffer or the given FILE if given.
582 If FILE is a directory, recurse on its files and generate a report in
583 a temporary buffer. If SHOWALL is non-nil, also generate a line for files
584 which do not include a recognizable synopsis."
585 (interactive
586 (list
587 (read-file-name "Synopsis for (file or dir): ")))
589 (if (and file (file-directory-p file))
590 (with-output-to-temp-buffer "*Synopsis*"
591 (set-buffer standard-output)
592 (dolist (f (directory-files file nil ".*\\.el\\'"))
593 (let ((syn (lm-synopsis (expand-file-name f file))))
594 (when (or syn showall)
595 (insert f ":")
596 (lm-insert-at-column lm-comment-column (or syn "NA") "\n")))))
597 (save-excursion
598 (let ((must-kill (and file (not (get-file-buffer file)))))
599 (when file (find-file file))
600 (prog1
601 (if (called-interactively-p 'interactive)
602 (message "%s" (lm-summary))
603 (lm-summary))
604 (when must-kill (kill-buffer (current-buffer))))))))
606 (defvar report-emacs-bug-address)
608 (defun lm-report-bug (topic)
609 "Report a bug in the package currently being visited to its maintainer.
610 Prompts for bug subject TOPIC. Leaves you in a mail buffer."
611 (interactive "sBug Subject: ")
612 (require 'emacsbug)
613 (let ((package (lm-get-package-name))
614 (addr (lm-maintainer))
615 (version (lm-version)))
616 (compose-mail (if addr
617 (concat (car addr) " <" (cdr addr) ">")
618 report-emacs-bug-address)
619 topic)
620 (goto-char (point-max))
621 (insert "\nIn " package)
622 (if version
623 (insert " version " version))
624 (newline 2)
625 (message "%s"
626 (substitute-command-keys "Type \\[mail-send] to send bug report."))))
628 (provide 'lisp-mnt)
630 ;;; lisp-mnt.el ends here