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