Update FSF's address.
[bpt/emacs.git] / lisp / finder.el
1 ;;; finder.el --- topic & keyword-based code finder
2
3 ;; Copyright (C) 1992 Free Software Foundation, Inc.
4
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6 ;; Created: 16 Jun 1992
7 ;; Version: 1.0
8 ;; Keywords: help
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; This mode uses the Keywords library header to provide code-finding
30 ;; services by keyword.
31 ;;
32 ;; Things to do:
33 ;; 1. Support multiple keywords per search. This could be extremely hairy;
34 ;; there doesn't seem to be any way to get completing-read to exit on
35 ;; an EOL with no substring pending, which is what we'd want to end the loop.
36 ;; 2. Search by string in synopsis line?
37 ;; 3. Function to check finder-package-info for unknown keywords.
38
39 ;;; Code:
40
41 (require 'lisp-mnt)
42 (require 'finder-inf)
43 (require 'picture)
44
45 ;; Local variable in finder buffer.
46 (defvar finder-headmark)
47
48 (defvar finder-known-keywords
49 '(
50 (abbrev . "abbreviation handling, typing shortcuts, macros")
51 (bib . "code related to the `bib' bibliography processor")
52 (c . "support for the C language and related languages")
53 (calendar . "calendar and time management support")
54 (comm . "communications, networking, remote access to files")
55 (data . "support editing files of data")
56 (docs . "support for Emacs documentation")
57 (emulations . "emulations of other editors")
58 (extensions . "Emacs Lisp language extensions")
59 (faces . "support for multiple fonts")
60 (frames . "support for Emacs frames and window systems")
61 (games . "games, jokes and amusements")
62 (hardware . "support for interfacing with exotic hardware")
63 (help . "support for on-line help systems")
64 (hypermedia . "support for links between text or other media types")
65 (i18n . "internationalization and alternate character-set support")
66 (internal . "code for Emacs internals, build process, defaults")
67 (languages . "specialized modes for editing programming languages")
68 (lisp . "Lisp support, including Emacs Lisp")
69 (local . "code local to your site")
70 (maint . "maintenance aids for the Emacs development group")
71 (mail . "modes for electronic-mail handling")
72 (matching . "various sorts of searching and matching")
73 (mouse . "mouse support")
74 (news . "support for netnews reading and posting")
75 (oop . "support for object-oriented programming")
76 (outlines . "support for hierarchical outlining")
77 (processes . "process, subshell, compilation, and job control support")
78 (terminals . "support for terminal types")
79 (tex . "code related to the TeX formatter")
80 (tools . "programming tools")
81 (unix . "front-ends/assistants for, or emulators of, UNIX features")
82 (vms . "support code for vms")
83 (wp . "word processing")
84 ))
85
86 (defvar finder-mode-map nil)
87 (or finder-mode-map
88 (let ((map (make-sparse-keymap)))
89 (define-key map " " 'finder-select)
90 (define-key map "f" 'finder-select)
91 (define-key map "\C-m" 'finder-select)
92 (define-key map "?" 'finder-summary)
93 (define-key map "q" 'finder-exit)
94 (define-key map "d" 'finder-list-keywords)
95 (setq finder-mode-map map)))
96
97
98 ;;; Code for regenerating the keyword list.
99
100 (defvar finder-package-info nil
101 "Assoc list mapping file names to description & keyword lists.")
102
103 (defun finder-compile-keywords (&rest dirs)
104 "Regenerate the keywords association list into the file `finder-inf.el'.
105 Optional arguments are a list of Emacs Lisp directories to compile from; no
106 arguments compiles from `load-path'."
107 (save-excursion
108 (let ((processed nil))
109 (find-file "finder-inf.el")
110 (erase-buffer)
111 (insert ";;; finder-inf.el --- keyword-to-package mapping\n")
112 (insert ";; Keywords: help\n")
113 (insert ";;; Commentary:\n")
114 (insert ";; Don't edit this file. It's generated by finder.el\n\n")
115 (insert ";;; Code:\n")
116 (insert "\n(setq finder-package-info '(\n")
117 (mapcar
118 (function
119 (lambda (d)
120 (mapcar
121 (function
122 (lambda (f)
123 (if (and (string-match "^[^=].*\\.el$" f)
124 (not (member f processed)))
125 (let (summary keystart keywords)
126 (setq processed (cons f processed))
127 (save-excursion
128 (set-buffer (get-buffer-create "*finder-scratch*"))
129 (buffer-disable-undo (current-buffer))
130 (erase-buffer)
131 (insert-file-contents
132 (concat (file-name-as-directory (or d ".")) f))
133 (setq summary (lm-synopsis))
134 (setq keywords (lm-keywords)))
135 (insert
136 (format " (\"%s\"\n " f))
137 (prin1 summary (current-buffer))
138 (insert
139 "\n ")
140 (setq keystart (point))
141 (insert
142 (if keywords (format "(%s)" keywords) "nil")
143 ")\n")
144 (subst-char-in-region keystart (point) ?, ? )
145 )
146 )))
147 (directory-files (or d ".")))
148 ))
149 (or dirs load-path))
150 (insert "))\n\n(provide 'finder-inf)\n\n;;; finder-inf.el ends here\n")
151 (kill-buffer "*finder-scratch*")
152 (eval-current-buffer) ;; So we get the new keyword list immediately
153 (basic-save-buffer)
154 )))
155
156 ;;; Now the retrieval code
157
158 (defun finder-list-keywords ()
159 "Display descriptions of the keywords in the Finder buffer."
160 (interactive)
161 (setq buffer-read-only nil)
162 (erase-buffer)
163 (mapcar
164 (function (lambda (assoc)
165 (let ((keyword (car assoc)))
166 (insert (symbol-name keyword))
167 (insert-at-column 14 (concat (cdr assoc) "\n"))
168 (cons (symbol-name keyword) keyword))))
169 finder-known-keywords)
170 (goto-char (point-min))
171 (setq finder-headmark (point))
172 (setq buffer-read-only t)
173 (set-buffer-modified-p nil)
174 (balance-windows)
175 (finder-summary))
176
177 (defun finder-list-matches (key)
178 (setq buffer-read-only nil)
179 (erase-buffer)
180 (let ((id (intern key)))
181 (insert
182 "The following packages match the keyword `" key "':\n\n")
183 (setq finder-headmark (point))
184 (mapcar
185 (function (lambda (x)
186 (if (memq id (car (cdr (cdr x))))
187 (progn
188 (insert (car x))
189 (insert-at-column 16
190 (concat (car (cdr x)) "\n"))
191 ))
192 ))
193 finder-package-info)
194 (goto-char (point-min))
195 (forward-line)
196 (setq buffer-read-only t)
197 (set-buffer-modified-p nil)
198 (shrink-window-if-larger-than-buffer)
199 (finder-summary)))
200
201 ;; Search for a file named FILE the same way `load' would search.
202 (defun finder-find-library (file)
203 (if (file-name-absolute-p file)
204 file
205 (let ((dirs load-path)
206 found)
207 (while (and dirs (not found))
208 (if (file-exists-p (expand-file-name (concat file ".el") (car dirs)))
209 (setq found (expand-file-name file (car dirs)))
210 (if (file-exists-p (expand-file-name file (car dirs)))
211 (setq found (expand-file-name file (car dirs)))))
212 (setq dirs (cdr dirs)))
213 found)))
214
215 (defun finder-commentary (file)
216 (interactive)
217 (let* ((str (lm-commentary (finder-find-library file))))
218 (if (null str)
219 (error "Can't find any Commentary section"))
220 (pop-to-buffer "*Finder*")
221 (setq buffer-read-only nil)
222 (erase-buffer)
223 (insert str)
224 (goto-char (point-min))
225 (delete-blank-lines)
226 (goto-char (point-max))
227 (delete-blank-lines)
228 (goto-char (point-min))
229 (while (re-search-forward "^;+ ?" nil t)
230 (replace-match "" nil nil))
231 (goto-char (point-min))
232 (setq buffer-read-only t)
233 (set-buffer-modified-p nil)
234 (shrink-window-if-larger-than-buffer)
235 (finder-summary)
236 ))
237
238 (defun finder-current-item ()
239 (if (and finder-headmark (< (point) finder-headmark))
240 (error "No keyword or filename on this line")
241 (save-excursion
242 (beginning-of-line)
243 (current-word))))
244
245 (defun finder-select ()
246 (interactive)
247 (let ((key (finder-current-item)))
248 (if (string-match "\\.el$" key)
249 (finder-commentary key)
250 (finder-list-matches key))))
251
252 (defun finder-by-keyword ()
253 "Find packages matching a given keyword."
254 (interactive)
255 (finder-mode)
256 (finder-list-keywords))
257
258 (defun finder-mode ()
259 "Major mode for browsing package documentation.
260 \\<finder-mode-map>
261 \\[finder-select] more help for the item on the current line
262 \\[finder-exit] exit Finder mode and kill the Finder buffer.
263 "
264 (interactive)
265 (pop-to-buffer "*Finder*")
266 (setq buffer-read-only nil)
267 (erase-buffer)
268 (use-local-map finder-mode-map)
269 (set-syntax-table emacs-lisp-mode-syntax-table)
270 (setq mode-name "Finder")
271 (setq major-mode 'finder-mode)
272 (make-local-variable 'finder-headmark)
273 (setq finder-headmark nil)
274 )
275
276 (defun finder-summary ()
277 "Summarize basic Finder commands."
278 (interactive)
279 (message
280 (substitute-command-keys
281 "\\<finder-mode-map>\\[finder-select] = select, \\[finder-list-keywords] = to finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
282
283 (defun finder-exit ()
284 "Exit Finder mode and kill the buffer"
285 (interactive)
286 (delete-window)
287 (kill-buffer "*Finder*"))
288
289 (provide 'finder)
290
291 ;;; finder.el ends here