1 ;;; finder.el --- topic & keyword-based code finder
3 ;; Copyright (C) 1992 Free Software Foundation, Inc.
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6 ;; Created: 16 Jun 1992
10 ;; This file is part of GNU Emacs.
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)
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.
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.
29 ;; This mode uses the Keywords library header to provide code-finding
30 ;; services by keyword.
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.
44 ;; Local variable in finder buffer.
45 (defvar finder-headmark
)
47 (defvar finder-known-keywords
49 (abbrev .
"abbreviation handling, typing shortcuts, macros")
50 (bib .
"code related to the `bib' bibliography processor")
51 (c .
"support for the C language and related languages")
52 (calendar .
"calendar and time management support")
53 (comm .
"communications, networking, remote access to files")
54 (data .
"support editing files of data")
55 (docs .
"support for Emacs documentation")
56 (emulations .
"emulations of other editors")
57 (extensions .
"Emacs Lisp language extensions")
58 (faces .
"support for multiple fonts")
59 (frames .
"support for Emacs frames and window systems")
60 (games .
"games, jokes and amusements")
61 (hardware .
"support for interfacing with exotic hardware")
62 (help .
"support for on-line help systems")
63 (hypermedia .
"support for links between text or other media types")
64 (i18n .
"internationalization and alternate character-set support")
65 (internal .
"code for Emacs internals, build process, defaults")
66 (languages .
"specialized modes for editing programming languages")
67 (lisp .
"Lisp support, including Emacs Lisp")
68 (local .
"code local to your site")
69 (maint .
"maintenance aids for the Emacs development group")
70 (mail .
"modes for electronic-mail handling")
71 (matching .
"various sorts of searching and matching")
72 (mouse .
"mouse support")
73 (news .
"support for netnews reading and posting")
74 (oop .
"support for object-oriented programming")
75 (outlines .
"support for hierarchical outlining")
76 (processes .
"process, subshell, compilation, and job control support")
77 (terminals .
"support for terminal types")
78 (tex .
"code related to the TeX formatter")
79 (tools .
"programming tools")
80 (unix .
"front-ends/assistants for, or emulators of, UNIX features")
81 (vms .
"support code for vms")
82 (wp .
"word processing")
85 (defvar finder-mode-map nil
)
87 (let ((map (make-sparse-keymap)))
88 (define-key map
" " 'finder-select
)
89 (define-key map
"f" 'finder-select
)
90 (define-key map
"\C-m" 'finder-select
)
91 (define-key map
"?" 'finder-summary
)
92 (define-key map
"q" 'finder-exit
)
93 (define-key map
"d" 'finder-list-keywords
)
94 (setq finder-mode-map map
)))
97 ;;; Code for regenerating the keyword list.
99 (defvar finder-package-info nil
100 "Assoc list mapping file names to description & keyword lists.")
102 (defun finder-compile-keywords (&rest dirs
)
103 "Regenerate the keywords association list into the file `finder-inf.el'.
104 Optional arguments are a list of Emacs Lisp directories to compile from; no
105 arguments compiles from `load-path'."
107 (let ((processed nil
))
108 (find-file "finder-inf.el")
110 (insert ";;; finder-inf.el --- keyword-to-package mapping\n")
111 (insert ";; Keywords: help\n")
112 (insert ";;; Commentary:\n")
113 (insert ";; Don't edit this file. It's generated by finder.el\n\n")
114 (insert ";;; Code:\n")
115 (insert "\n(setq finder-package-info '(\n")
120 (if (and (string-match "^[^=.].*\\.el$" f
)
121 (not (member f processed
)))
122 (let (summary keystart keywords
)
123 (setq processed
(cons f processed
))
125 (set-buffer (get-buffer-create "*finder-scratch*"))
126 (buffer-disable-undo (current-buffer))
128 (insert-file-contents
129 (concat (file-name-as-directory (or d
".")) f
))
130 (setq summary
(lm-synopsis))
131 (setq keywords
(lm-keywords)))
133 (format " (\"%s\"\n " f
))
134 (prin1 summary
(current-buffer))
137 (setq keystart
(point))
139 (if keywords
(format "(%s)" keywords
) "nil")
141 (subst-char-in-region keystart
(point) ?
, ?
)
143 (directory-files (or d
"."))))
145 (insert "))\n\n(provide 'finder-inf)\n\n;;; finder-inf.el ends here\n")
146 (kill-buffer "*finder-scratch*")
147 (eval-current-buffer) ;; So we get the new keyword list immediately
148 (basic-save-buffer))))
150 (defun finder-compile-keywords-make-dist ()
151 "Regenerate `finder-inf.el' for the Emacs distribution."
152 (apply 'finder-compile-keywords command-line-args-left
)
155 ;;; Now the retrieval code
157 (defun finder-insert-at-column (column &rest strings
)
158 "Insert list of STRINGS, at column COLUMN."
159 (if (> (current-column) column
) (insert "\n"))
160 (move-to-column column
)
161 (let ((col (current-column)))
164 (if (and (/= col column
)
165 (= (preceding-char) ?
\t))
166 (let (indent-tabs-mode)
169 (move-to-column column
)))))
170 (apply 'insert strings
))
172 (defun finder-list-keywords ()
173 "Display descriptions of the keywords in the Finder buffer."
175 (if (get-buffer "*Finder*")
176 (pop-to-buffer "*Finder*")
177 (pop-to-buffer (set-buffer (get-buffer-create "*Finder*")))
179 (setq buffer-read-only nil
)
183 (let ((keyword (car assoc
)))
184 (insert (symbol-name keyword
))
185 (finder-insert-at-column 14 (concat (cdr assoc
) "\n"))
186 (cons (symbol-name keyword
) keyword
)))
187 finder-known-keywords
)
188 (goto-char (point-min))
189 (setq finder-headmark
(point))
190 (setq buffer-read-only t
)
191 (set-buffer-modified-p nil
)
195 (defun finder-list-matches (key)
196 (pop-to-buffer (set-buffer (get-buffer-create "*Finder Category*")))
198 (setq buffer-read-only nil
)
200 (let ((id (intern key
)))
202 "The following packages match the keyword `" key
"':\n\n")
203 (setq finder-headmark
(point))
206 (if (memq id
(car (cdr (cdr x
))))
209 (finder-insert-at-column 16 (concat (car (cdr x
)) "\n")))))
211 (goto-char (point-min))
213 (setq buffer-read-only t
)
214 (set-buffer-modified-p nil
)
215 (shrink-window-if-larger-than-buffer)
218 ;; Search for a file named FILE the same way `load' would search.
219 (defun finder-find-library (file)
220 (if (file-name-absolute-p file
)
222 (let ((dirs load-path
)
224 (while (and dirs
(not found
))
225 (if (file-exists-p (expand-file-name (concat file
".el") (car dirs
)))
226 (setq found
(expand-file-name file
(car dirs
)))
227 (if (file-exists-p (expand-file-name file
(car dirs
)))
228 (setq found
(expand-file-name file
(car dirs
)))))
229 (setq dirs
(cdr dirs
)))
232 (defun finder-commentary (file)
234 (let* ((str (lm-commentary (finder-find-library file
))))
236 (error "Can't find any Commentary section"))
237 (pop-to-buffer "*Finder*")
238 (setq buffer-read-only nil
)
241 (goto-char (point-min))
243 (goto-char (point-max))
245 (goto-char (point-min))
246 (while (re-search-forward "^;+ ?" nil t
)
247 (replace-match "" nil nil
))
248 (goto-char (point-min))
249 (setq buffer-read-only t
)
250 (set-buffer-modified-p nil
)
251 (shrink-window-if-larger-than-buffer)
254 (defun finder-current-item ()
255 (if (and finder-headmark
(< (point) finder-headmark
))
256 (error "No keyword or filename on this line")
261 (defun finder-select ()
263 (let ((key (finder-current-item)))
264 (if (string-match "\\.el$" key
)
265 (finder-commentary key
)
266 (finder-list-matches key
))))
268 (defun finder-by-keyword ()
269 "Find packages matching a given keyword."
271 (finder-list-keywords))
273 (defun finder-mode ()
274 "Major mode for browsing package documentation.
276 \\[finder-select] more help for the item on the current line
277 \\[finder-exit] exit Finder mode and kill the Finder buffer.
280 (use-local-map finder-mode-map
)
281 (set-syntax-table emacs-lisp-mode-syntax-table
)
282 (setq mode-name
"Finder")
283 (setq major-mode
'finder-mode
)
284 (make-local-variable 'finder-headmark
)
285 (setq finder-headmark nil
))
287 (defun finder-summary ()
288 "Summarize basic Finder commands."
291 (substitute-command-keys
292 "\\<finder-mode-map>\\[finder-select] = select, \\[finder-list-keywords] = to finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
294 (defun finder-exit ()
295 "Exit Finder mode and kill the buffer"
298 (kill-buffer "*Finder*"))
302 ;;; finder.el ends here