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 1, 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
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
28 ;; This mode uses the Keywords library header to provide code-finding
29 ;; services by keyword.
32 ;; 1. Support multiple keywords per search. This could be extremely hairy;
33 ;; there doesn't seem to be any way to get completing-read to exit on
34 ;; an EOL with no substring pending, which is what we'd want to end the loop.
35 ;; 2. Search by string in synopsis line?
36 ;; 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(1) bibliography processor")
51 (c .
"C and C++ language support")
52 (calendar .
"calendar and time management support")
53 (comm .
"communications, networking, remote access to files")
54 (docs .
"support for Emacs documentation")
55 (emulations .
"emulations of other editors")
56 (extensions .
"Emacs Lisp language extensions")
57 (games .
"games, jokes and amusements")
58 (hardware .
"support for interfacing with exotic hardware")
59 (help .
"support for on-line help systems")
60 (i18n .
"internationalization and alternate character-set support")
61 (internal .
"code for Emacs internals, build process, defaults")
62 (languages .
"specialized modes for editing programming languages")
63 (lisp .
"Lisp support, including Emacs Lisp")
64 (local .
"code local to your site")
65 (maint .
"maintenance aids for the Emacs development group")
66 (mail .
"modes for electronic-mail handling")
67 (news .
"support for netnews reading and posting")
68 (processes .
"process, subshell, compilation, and job control support")
69 (terminals .
"support for terminal types")
70 (tex .
"code related to the TeX formatter")
71 (tools .
"programming tools")
72 (unix .
"front-ends/assistants for, or emulators of, UNIX features")
73 (vms .
"support code for vms")
74 (wp .
"word processing")
77 (defvar finder-mode-map nil
)
80 (setq finder-mode-map
(make-sparse-keymap))
81 (define-key finder-mode-map
" " 'finder-select
)
82 (define-key finder-mode-map
"?" 'finder-summary
)
83 (define-key finder-mode-map
"q" 'finder-exit
)
84 (define-key finder-mode-map
"f" 'finder-list-keywords
)
87 ;;; Code for regenerating the keyword list.
89 (defvar finder-package-info nil
90 "Assoc list mapping file names to description & keyword lists.")
92 (defun finder-compile-keywords (&rest dirs
)
93 "Regenerate the keywords association list into the file `finder-inf.el'.
94 Optional arguments are a list of Emacs Lisp directories to compile from; no
95 arguments compiles from `load-path'."
97 (let ((processed nil
))
98 (find-file "finder-inf.el")
100 (insert ";;; finder-inf.el --- keyword-to-package mapping\n")
101 (insert ";; Keywords: help\n")
102 (insert ";;; Commentary:\n")
103 (insert ";; Don't edit this file. It's generated by finder.el\n\n")
104 (insert ";;; Code:\n")
105 (insert "\n(setq finder-package-info '(\n")
112 (if (and (string-match "^[^=].*\\.el$" f
)
113 (not (member f processed
)))
114 (let (summary keystart keywords
)
115 (setq processed
(cons f processed
))
117 (set-buffer (get-buffer-create "*finder-scratch*"))
118 (buffer-disable-undo (current-buffer))
120 (insert-file-contents
121 (concat (file-name-as-directory (or d
".")) f
))
122 (setq summary
(lm-synopsis))
123 (setq keywords
(lm-keywords)))
125 (format " (\"%s\"\n " f
))
126 (prin1 summary
(current-buffer))
129 (setq keystart
(point))
131 (if keywords
(format "(%s)" keywords
) "nil")
133 (subst-char-in-region keystart
(point) ?
, ?
)
136 (directory-files (or d
".")))
139 (insert "))\n\n(provide 'finder-inf)\n\n;;; finder-inf.el ends here\n")
140 (kill-buffer "*finder-scratch*")
141 (eval-current-buffer) ;; So we get the new keyword list immediately
145 ;;; Now the retrieval code
147 (defun finder-list-keywords ()
148 "Display descriptions of the keywords in the Finder buffer."
150 (setq buffer-read-only nil
)
153 (function (lambda (assoc)
154 (let ((keyword (car assoc
)))
155 (insert (symbol-name keyword
))
156 (insert-at-column 14 (concat (cdr assoc
) "\n"))
157 (cons (symbol-name keyword
) keyword
))))
158 finder-known-keywords
)
159 (goto-char (point-min))
160 (setq finder-headmark
(point))
161 (setq buffer-read-only t
)
162 (set-buffer-modified-p nil
)
166 (defun finder-list-matches (key)
167 (setq buffer-read-only nil
)
169 (let ((id (intern key
)))
171 "The following packages match the keyword `" key
"':\n\n")
172 (setq finder-headmark
(point))
174 (function (lambda (x)
175 (if (memq id
(car (cdr (cdr x
))))
179 (concat (car (cdr x
)) "\n"))
183 (goto-char (point-min))
185 (setq buffer-read-only t
)
186 (set-buffer-modified-p nil
)
187 (shrink-window-if-larger-than-buffer)
190 ;; Search for a file named FILE the same way `load' would search.
191 (defun finder-find-library (file)
192 (if (file-name-absolute-p file
)
194 (let ((dirs load-path
)
196 (while (and dirs
(not found
))
197 (if (file-exists-p (expand-file-name (concat file
".el") (car dirs
)))
198 (setq found
(expand-file-name file
(car dirs
)))
199 (if (file-exists-p (expand-file-name file
(car dirs
)))
200 (setq found
(expand-file-name file
(car dirs
)))))
201 (setq dirs
(cdr dirs
)))
204 (defun finder-commentary (file)
206 (let* ((str (lm-commentary (finder-find-library file
))))
208 (error "Can't find any Commentary section."))
209 (pop-to-buffer "*Finder*")
210 (setq buffer-read-only nil
)
213 (goto-char (point-min))
215 (goto-char (point-max))
217 (goto-char (point-min))
218 (while (re-search-forward "^;+ ?" nil t
)
219 (replace-match "" nil nil
))
220 (goto-char (point-min))
221 (setq buffer-read-only t
)
222 (set-buffer-modified-p nil
)
223 (shrink-window-if-larger-than-buffer)
227 (defun finder-current-item ()
228 (if (and finder-headmark
(< (point) finder-headmark
))
229 (error "No keyword or filename on this line")
234 (defun finder-select ()
236 (let ((key (finder-current-item)))
237 (if (string-match "\\.el$" key
)
238 (finder-commentary key
)
239 (finder-list-matches key
))))
241 (defun finder-by-keyword ()
242 "Find packages matching a given keyword."
245 (finder-list-keywords))
247 (defun finder-mode ()
248 "Major mode for browsing package documentation.
250 \\[finder-select] more help for the item on the current line
251 \\[finder-exit] exit Finder mode and fill the Finder buffer.
254 (pop-to-buffer "*Finder*")
255 (setq buffer-read-only nil
)
257 (use-local-map finder-mode-map
)
258 (set-syntax-table emacs-lisp-mode-syntax-table
)
259 (setq mode-name
"Finder")
260 (setq major-mode
'finder-mode
)
261 (make-local-variable 'finder-headmark
)
262 (setq finder-headmark nil
)
265 (defun finder-summary ()
266 "Summarize basic Finder commands."
269 (substitute-command-keys
270 "\\<finder-mode-map>\\[finder-select] = select, \\[finder-list-keywords] = back to finder, \\[finder-exit] = quit, \\[finder-summary] = help")))
272 (defun finder-exit ()
273 "Exit Finder mode and kill the buffer"
276 (kill-buffer "*Finder*"))
280 ;;; finder.el ends here