1 ;;; lisp-mnt.el --- utility functions for Emacs Lisp maintainers
3 ;; Copyright (C) 1992, 1994, 1997, 2000-2013 Free Software Foundation,
6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
8 ;; Created: 14 Jul 1992
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/>.
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
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.
53 ;; * Copyright line, which looks more or less like this:
55 ;; ;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
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 ;; This field may have some special values; notably "FSF", meaning
74 ;; "Free Software Foundation".
76 ;; * Maintainer line --- should be a single name/address as in the Author
77 ;; line, or an address only, or the string "FSF". If there is no maintainer
78 ;; line, the person(s) in the Author field are presumed to be it.
79 ;; The idea behind these two fields is to be able to write a Lisp function
80 ;; that does "send mail to the author" without having to mine the name out by
81 ;; hand. Please be careful about surrounding the network address with <> if
82 ;; there's also a name in the field.
84 ;; * Created line --- optional, gives the original creation date of the
85 ;; file. For historical interest, basically.
87 ;; * Version line --- intended to give the reader a clue if they're looking
88 ;; at a different version of the file than the one they're accustomed to. This
89 ;; may be an RCS or SCCS header.
91 ;; * Adapted-By line --- this is for FSF's internal use. The person named
92 ;; in this field was the one responsible for installing and adapting the
93 ;; package for the distribution. (This file doesn't have one because the
94 ;; author *is* one of the maintainers.)
96 ;; * Keywords line --- used by the finder code for finding Emacs
97 ;; Lisp code related to a topic.
99 ;; * X-Bogus-Bureaucratic-Cruft line --- this is a joke and an example
100 ;; of a comment header. Headers starting with `X-' should never be used
101 ;; for any real purpose; this is the way to safely add random headers
102 ;; without invoking the wrath of any program.
104 ;; * Commentary line --- enables Lisp code to find the developer's and
105 ;; maintainers' explanations of the package internals.
107 ;; * Change log line --- optional, exists to terminate the commentary
108 ;; section and start a change-log part, if one exists.
110 ;; * Code line --- exists so Lisp can know where commentary and/or
111 ;; change-log sections end.
113 ;; * Footer line --- marks end-of-file so it can be distinguished from
114 ;; an expanded formfeed or the results of truncation.
118 ;; Tue Jul 14 23:44:17 1992 ESR
125 (defgroup lisp-mnt nil
126 "Utility functions for Emacs Lisp maintainers."
130 ;; At least some of these defcustoms should probably be defconsts,
131 ;; since they define, or are defined by, the header format. -- fx
133 (defcustom lm-header-prefix
"^;+[ \t]+\\(@(#)\\)?[ \t]*\\$?"
134 "Prefix that is ignored before the tag.
135 For example, you can write the 1st line synopsis string and headers like this
136 in your Lisp package:
138 ;; @(#) package.el -- package description
140 ;; @(#) $Maintainer: Person Foo Bar $
142 The @(#) construct is used by unix what(1) and
143 then $identifier: doc string $ is used by GNU ident(1)"
147 (defcustom lm-copyright-prefix
"^\\(;+[ \t]\\)+Copyright (C) "
148 "Prefix that is ignored before the dates in a copyright.
149 Leading comment characters and whitespace should be in regexp group 1."
153 (defcustom lm-comment-column
16
154 "Column used for placing formatted output."
158 (defcustom lm-any-header
".*"
159 "Regexp which matches start of any section."
163 (defcustom lm-commentary-header
"Commentary\\|Documentation"
164 "Regexp which matches start of documentation section."
168 (defcustom lm-history-header
"Change ?Log\\|History"
169 "Regexp which matches the start of code log section."
175 ;; These functions all parse the headers of the current buffer
177 (defun lm-get-header-re (header &optional mode
)
178 "Return regexp for matching HEADER.
179 If called with optional MODE and with value `section',
180 return section regexp instead."
181 (if (eq mode
'section
)
182 (concat "^;;;;* \\(" header
"\\):[ \t]*$")
183 (concat lm-header-prefix
"\\(" header
"\\)[ \t]*:[ \t]*")))
185 (defun lm-get-package-name ()
186 "Return package name by looking at the first line."
188 (goto-char (point-min))
189 (if (and (looking-at (concat lm-header-prefix
))
190 (progn (goto-char (match-end 0))
191 (looking-at "\\([^\t ]+\\)")
193 (match-string-no-properties 1))))
195 (defun lm-section-start (header &optional after
)
196 "Return the buffer location of a given section start marker.
197 The HEADER is the section mark string to search for.
198 If AFTER is non-nil, return the location of the next line.
199 If the given section does not exist, return nil."
201 (let ((case-fold-search t
))
202 (goto-char (point-min))
203 (if (re-search-forward (lm-get-header-re header
'section
) nil t
)
204 (line-beginning-position (if after
2))))))
205 (defalias 'lm-section-mark
'lm-section-start
)
207 (defun lm-section-end (header)
208 "Return the buffer location of the end of a given section.
209 The HEADER is the section string marking the beginning of the
210 section. If the given section does not exist, return nil.
212 The section ends before the first non-comment text or the next
213 section of the same level or lower; whatever comes first. The
214 function `lisp-outline-level' is used to compute the level of
216 (require 'outline
) ;; for outline-regexp.
217 (let ((start (lm-section-start header
)))
221 (let ((level (lisp-outline-level))
224 (beginning-of-line 2)
225 (while (and (setq next-section-found
227 (lm-get-header-re lm-any-header
'section
)
231 (lisp-outline-level))
233 (min (if next-section-found
234 (progn (beginning-of-line 0)
235 (unless (looking-at "\f")
236 (beginning-of-line 2))
239 (progn (goto-char start
)
240 (while (forward-comment 1))
243 (defsubst lm-code-start
()
244 "Return the buffer location of the `Code' start marker."
245 (lm-section-start "Code"))
246 (defalias 'lm-code-mark
'lm-code-start
)
248 (defsubst lm-commentary-start
()
249 "Return the buffer location of the `Commentary' start marker."
250 (lm-section-start lm-commentary-header
))
251 (defalias 'lm-commentary-mark
'lm-commentary-start
)
253 (defsubst lm-commentary-end
()
254 "Return the buffer location of the `Commentary' section end."
255 (lm-section-end lm-commentary-header
))
257 (defsubst lm-history-start
()
258 "Return the buffer location of the `History' start marker."
259 (lm-section-start lm-history-header
))
260 (defalias 'lm-history-mark
'lm-history-start
)
262 (defsubst lm-copyright-mark
()
263 "Return the buffer location of the `Copyright' line."
265 (let ((case-fold-search t
))
266 (goto-char (point-min))
267 (if (re-search-forward lm-copyright-prefix nil t
)
270 (defun lm-header (header)
271 "Return the contents of the header named HEADER."
272 (goto-char (point-min))
273 (let ((case-fold-search t
))
274 (when (and (re-search-forward (lm-get-header-re header
) (lm-code-mark) t
)
275 ;; RCS ident likes format "$identifier: data$"
278 (skip-chars-backward "^$" (match-beginning 0))
279 (= (point) (match-beginning 0)))
280 "[^\n]+" "[^$\n]+")))
281 (match-string-no-properties 0))))
283 (defun lm-header-multiline (header)
284 "Return the contents of the header named HEADER, with continuation lines.
285 The returned value is a list of strings, one per line."
287 (goto-char (point-min))
288 (let ((res (lm-header header
)))
290 (setq res
(list res
))
292 (while (looking-at "^;+\\(\t\\|[\t\s]\\{2,\\}\\)\\(.+\\)")
293 (push (match-string-no-properties 2) res
)
297 ;; These give us smart access to the header fields and commentary
299 (defmacro lm-with-file
(file &rest body
)
300 "Execute BODY in a buffer containing the contents of FILE.
301 If FILE is nil, execute BODY in the current buffer."
302 (declare (indent 1) (debug t
))
303 (let ((filesym (make-symbol "file")))
304 `(let ((,filesym
,file
))
307 (insert-file-contents ,filesym
)
313 (goto-char (point-min))
314 ;; Switching major modes is too drastic, so just switch
315 ;; temporarily to the Emacs Lisp mode syntax table.
316 (with-syntax-table emacs-lisp-mode-syntax-table
319 ;; Fixme: Probably this should be amalgamated with copyright.el; also
320 ;; we need a check for ranges in copyright years.
322 (defun lm-crack-copyright (&optional file
)
323 "Return the copyright holder, and a list of copyright years.
324 Use the current buffer if FILE is nil.
325 Return argument is of the form (\"HOLDER\" \"YEAR1\" ... \"YEARN\")"
327 (goto-char (lm-copyright-mark))
331 (end (line-end-position)))
332 ;; Cope with multi-line copyright `lines'. Assume the second
333 ;; line is indented (with the same commenting style).
335 (beginning-of-line 2)
336 (let ((str (concat (match-string-no-properties 1) "[ \t]+")))
338 (while (looking-at str
)
339 (setq end
(line-end-position))
340 (beginning-of-line 2))))
341 ;; Make a single line and parse that.
342 (let ((buff (current-buffer)))
344 (insert-buffer-substring buff start end
)
345 (goto-char (point-min))
346 (while (re-search-forward "^;+[ \t]+" nil t
)
348 (goto-char (point-min))
349 (while (re-search-forward " *\n" nil t
)
351 (goto-char (point-min))
352 (while (re-search-forward "\\([0-9]+\\),? +" nil t
)
353 (setq years
(cons (match-string-no-properties 1) years
)))
354 (if (looking-at ".*$")
355 (setq holder
(match-string-no-properties 0)))))
356 (cons holder
(nreverse years
)))))
358 (defun lm-summary (&optional file
)
359 "Return the one-line summary of file FILE, or current buffer if FILE is nil."
361 (goto-char (point-min))
362 (if (and (looking-at lm-header-prefix
)
363 (progn (goto-char (match-end 0))
364 (looking-at "[^ ]+[ \t]+--+[ \t]+\\(.*\\)")))
365 (let ((summary (match-string-no-properties 1)))
366 ;; Strip off -*- specifications.
367 (if (string-match "[ \t]*-\\*-.*-\\*-" summary
)
368 (substring summary
0 (match-beginning 0))
371 (defun lm-crack-address (x)
372 "Split up an email address X into full name and real email address.
373 The value is a cons of the form (FULLNAME . ADDRESS)."
374 (cond ((string-match "\\(.+\\) [(<]\\(\\S-+@\\S-+\\)[>)]" x
)
375 (cons (match-string 1 x
)
377 ((string-match "\\(\\S-+@\\S-+\\) [(<]\\(.*\\)[>)]" x
)
378 (cons (match-string 2 x
)
380 ((string-match "\\S-+@\\S-+" x
)
385 (defun lm-authors (&optional file
)
386 "Return the author list of file FILE, or current buffer if FILE is nil.
387 Each element of the list is a cons; the car is the full name,
388 the cdr is an email address."
390 (let ((authorlist (lm-header-multiline "author")))
391 (mapcar 'lm-crack-address authorlist
))))
393 (defun lm-maintainer (&optional file
)
394 "Return the maintainer of file FILE, or current buffer if FILE is nil.
395 The return value has the form (NAME . ADDRESS)."
397 (let ((maint (lm-header "maintainer")))
399 (lm-crack-address maint
)
400 (car (lm-authors))))))
402 (defun lm-creation-date (&optional file
)
403 "Return the created date given in file FILE, or current buffer if FILE is nil."
405 (lm-header "created")))
407 (defun lm-last-modified-date (&optional file iso-date
)
408 "Return the modify-date given in file FILE, or current buffer if FILE is nil.
409 ISO-DATE non-nil means return the date in ISO 8601 format."
411 (when (progn (goto-char (point-min))
413 "\\$[I]d: [^ ]+ [^ ]+ \\([^/]+\\)/\\([^/]+\\)/\\([^ ]+\\) "
415 (let ((dd (match-string 3))
416 (mm (match-string 2))
417 (yyyy (match-string 1)))
419 (format "%s-%s-%s" yyyy mm dd
)
422 (nth (string-to-number mm
)
423 '("" "Jan" "Feb" "Mar" "Apr" "May" "Jun"
424 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"))
427 (defun lm-version (&optional file
)
428 "Return the version listed in file FILE, or current buffer if FILE is nil.
429 This can be found in an RCS or SCCS header."
431 (or (lm-header "version")
432 (let ((header-max (lm-code-mark)))
433 (goto-char (point-min))
435 ;; Look for an RCS header
436 ((re-search-forward "\\$[I]d: [^ ]+ \\([^ ]+\\) " header-max t
)
437 (match-string-no-properties 1))
438 ((re-search-forward "\\$Revision: +\\([^ ]+\\) " header-max t
)
439 (match-string-no-properties 1))
440 ;; Look for an SCCS header
443 (regexp-quote "@(#)")
444 (regexp-quote (file-name-nondirectory (buffer-file-name)))
445 "\t\\([012345679.]*\\)")
447 (match-string-no-properties 1)))))))
449 (defun lm-keywords (&optional file
)
450 "Return the keywords given in file FILE, or current buffer if FILE is nil.
451 The return is a `downcase'-ed string, or nil if no keywords
452 header. Multi-line keywords are joined up with a space between
455 (let ((keywords (lm-header-multiline "keywords")))
457 (mapconcat 'downcase keywords
" ")))))
459 (defun lm-keywords-list (&optional file
)
460 "Return list of keywords given in file FILE."
461 (let ((keywords (lm-keywords file
)))
463 (if (string-match-p "," keywords
)
464 (split-string keywords
",[ \t\n]*" t
)
465 (split-string keywords
"[ \t\n]+" t
)))))
467 (defvar finder-known-keywords
)
468 (defun lm-keywords-finder-p (&optional file
)
469 "Return non-nil if any keywords in FILE are known to finder."
471 (let ((keys (lm-keywords-list file
)))
472 (catch 'keyword-found
474 (if (assoc (intern (car keys
)) finder-known-keywords
)
475 (throw 'keyword-found t
))
476 (setq keys
(cdr keys
)))
479 (defun lm-adapted-by (&optional file
)
480 "Return the adapted-by names in file FILE, or current buffer if FILE is nil.
481 This is the name of the person who cleaned up this package for
484 (lm-header "adapted-by")))
486 (defun lm-commentary (&optional file
)
487 "Return the commentary in file FILE, or current buffer if FILE is nil.
488 Return the value as a string. In the file, the commentary
489 section starts with the tag `Commentary' or `Documentation' and
490 ends just before the next section. If the commentary section is
493 (let ((start (lm-commentary-start)))
495 (buffer-substring-no-properties start
(lm-commentary-end))))))
497 (defun lm-homepage (&optional file
)
498 "Return the homepage in file FILE, or current buffer if FILE is nil."
499 (let ((page (lm-with-file file
500 (lm-header "\\(?:x-\\)?\\(?:homepage\\|url\\)"))))
501 (if (and page
(string-match "^<.+>$" page
))
502 (substring page
1 -
1)
505 ;;; Verification and synopses
507 (defun lm-insert-at-column (col &rest strings
)
508 "Insert, at column COL, list of STRINGS."
509 (if (> (current-column) col
) (insert "\n"))
510 (move-to-column col t
)
511 (apply 'insert strings
))
513 (defun lm-verify (&optional file showok verbose non-fsf-ok
)
514 "Check that the current buffer (or FILE if given) is in proper format.
515 If FILE is a directory, recurse on its files and generate a report in a
516 temporary buffer. In that case, the optional argument SHOWOK
517 says display \"OK\" in temp buffer for files that have no problems.
519 Optional argument VERBOSE specifies verbosity level.
520 Optional argument NON-FSF-OK if non-nil means a non-FSF
521 copyright notice is allowed."
522 (interactive (list nil nil t
))
523 (let* ((ret (and verbose
"Ok"))
525 (if (and file
(file-directory-p file
))
528 (dolist (f (directory-files file nil
"\\.el\\'")
530 (when (file-regular-p f
)
531 (let ((status (lm-verify f
)))
534 (lm-insert-at-column lm-comment-column status
537 (lm-insert-at-column lm-comment-column
540 (setq name
(lm-get-package-name))
544 "Can't find package name")
546 "`Author:' tag missing")
547 ((not (lm-maintainer))
548 "`Maintainer:' tag missing")
550 "Can't find the one-line summary description")
552 "`Keywords:' tag missing")
553 ((not (lm-keywords-finder-p))
554 "`Keywords:' has no valid finder keywords (see `finder-known-keywords')")
555 ((not (lm-commentary-mark))
556 "Can't find a 'Commentary' section marker")
557 ((not (lm-history-mark))
558 "Can't find a 'History' section marker")
559 ((not (lm-code-mark))
560 "Can't find a 'Code' section marker")
562 (goto-char (point-max))
565 (concat "^;;;[ \t]+" name
"[ \t]+ends here[ \t]*$"
566 "\\|^;;;[ \t]+ End of file[ \t]+" name
)
568 "Can't find the footer line")
569 ((not (and (lm-copyright-mark) (lm-crack-copyright)))
570 "Can't find a valid copyright notice")
572 (string-match "Free Software Foundation"
573 (car (lm-crack-copyright)))))
574 "Copyright holder is not the Free Software Foundation")
581 (defun lm-synopsis (&optional file showall
)
582 "Generate a synopsis listing for the buffer or the given FILE if given.
583 If FILE is a directory, recurse on its files and generate a report in
584 a temporary buffer. If SHOWALL is non-nil, also generate a line for files
585 which do not include a recognizable synopsis."
588 (read-file-name "Synopsis for (file or dir): ")))
590 (if (and file
(file-directory-p file
))
591 (with-output-to-temp-buffer "*Synopsis*"
592 (set-buffer standard-output
)
593 (dolist (f (directory-files file nil
".*\\.el\\'"))
594 (let ((syn (lm-synopsis (expand-file-name f file
))))
595 (when (or syn showall
)
597 (lm-insert-at-column lm-comment-column
(or syn
"NA") "\n")))))
599 (let ((must-kill (and file
(not (get-file-buffer file
)))))
600 (when file
(find-file file
))
602 (if (called-interactively-p 'interactive
)
603 (message "%s" (lm-summary))
605 (when must-kill
(kill-buffer (current-buffer))))))))
607 (defvar report-emacs-bug-address
)
609 (defun lm-report-bug (topic)
610 "Report a bug in the package currently being visited to its maintainer.
611 Prompts for bug subject TOPIC. Leaves you in a mail buffer."
612 (interactive "sBug Subject: ")
614 (let ((package (lm-get-package-name))
615 (addr (lm-maintainer))
616 (version (lm-version)))
617 (compose-mail (if addr
618 (concat (car addr
) " <" (cdr addr
) ">")
619 report-emacs-bug-address
)
621 (goto-char (point-max))
622 (insert "\nIn " package
)
624 (insert " version " version
))
627 (substitute-command-keys "Type \\[mail-send] to send bug report."))))
631 ;;; lisp-mnt.el ends here