1 ;;; finder.el --- topic & keyword-based code finder
3 ;; Copyright (C) 1992, 1997, 1998, 1999 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 (convenience .
"convenience features for faster editing")
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")
86 (defvar finder-mode-map nil
)
88 (let ((map (make-sparse-keymap)))
89 (define-key map
" " 'finder-select
)
90 (define-key map
"f" 'finder-select
)
91 (define-key map
[mouse-2
] 'finder-mouse-select
)
92 (define-key map
"\C-m" 'finder-select
)
93 (define-key map
"?" 'finder-summary
)
94 (define-key map
"q" 'finder-exit
)
95 (define-key map
"d" 'finder-list-keywords
)
96 (setq finder-mode-map map
)))
99 ;;; Code for regenerating the keyword list.
101 (defvar finder-package-info nil
102 "Assoc list mapping file names to description & keyword lists.")
104 (defun finder-compile-keywords (&rest dirs
)
105 "Regenerate the keywords association list into the file `finder-inf.el'.
106 Optional arguments DIRS are a list of Emacs Lisp directories to compile from;
107 no arguments compiles from `load-path'."
109 (let ((processed nil
))
110 (find-file "finder-inf.el")
112 (insert ";;; finder-inf.el --- keyword-to-package mapping\n")
113 (insert ";; Keywords: help\n")
114 (insert ";;; Commentary:\n")
115 (insert ";; Don't edit this file. It's generated by finder.el\n\n")
116 (insert ";;; Code:\n")
117 (insert "\n(setq finder-package-info '(\n")
120 (when (file-exists-p (directory-file-name d
))
121 (message "Directory %s" d
)
124 (if (and (or (string-match "^[^=].*\\.el$" f
)
125 ;; Allow compressed files also. Fixme:
126 ;; generalize this, especially for
127 ;; MS-DOG-type filenames.
128 (and (string-match "^[^=].*\\.el\\.\\(gz\\|Z\\)$" f
)
129 (require 'jka-compr
)))
130 ;; Ignore lock files.
131 (not (string-match "^.#" f
))
132 (not (member f processed
)))
133 (let (summary keystart keywords
)
134 (setq processed
(cons f processed
))
136 (set-buffer (get-buffer-create "*finder-scratch*"))
137 (buffer-disable-undo (current-buffer))
139 (insert-file-contents
140 (concat (file-name-as-directory (or d
".")) f
))
141 (setq summary
(lm-synopsis))
142 (setq keywords
(lm-keywords)))
144 (format " (\"%s\"\n "
145 (if (string-match "\\.\\(gz\\|Z\\)$" f
)
146 (file-name-sans-extension f
)
148 (prin1 summary
(current-buffer))
151 (setq keystart
(point))
153 (if keywords
(format "(%s)" keywords
) "nil")
155 (subst-char-in-region keystart
(point) ?
, ?
)
157 (directory-files (or d
".")))))
159 (insert "))\n\n(provide 'finder-inf)\n\n;;; finder-inf.el ends here\n")
160 (kill-buffer "*finder-scratch*")
161 (eval-current-buffer) ;; So we get the new keyword list immediately
162 (basic-save-buffer))))
164 (defun finder-compile-keywords-make-dist ()
165 "Regenerate `finder-inf.el' for the Emacs distribution."
166 (apply 'finder-compile-keywords command-line-args-left
)
169 ;;; Now the retrieval code
171 (defun finder-insert-at-column (column &rest strings
)
172 "Insert, at column COLUMN, other args STRINGS."
173 (if (> (current-column) column
) (insert "\n"))
174 (move-to-column column t
)
175 (apply 'insert strings
))
177 (defun finder-mouse-face-on-line ()
178 "Put a `mouse-face' property on the previous line."
181 (put-text-property (save-excursion (beginning-of-line) (point))
182 (progn (end-of-line) (point))
183 'mouse-face
'highlight
)))
185 (defun finder-list-keywords ()
186 "Display descriptions of the keywords in the Finder buffer."
188 (if (get-buffer "*Finder*")
189 (pop-to-buffer "*Finder*")
190 (pop-to-buffer (set-buffer (get-buffer-create "*Finder*")))
192 (setq buffer-read-only nil
)
196 (let ((keyword (car assoc
)))
197 (insert (symbol-name keyword
))
198 (finder-insert-at-column 14 (concat (cdr assoc
) "\n"))
199 (finder-mouse-face-on-line)))
200 finder-known-keywords
)
201 (goto-char (point-min))
202 (setq finder-headmark
(point))
203 (setq buffer-read-only t
)
204 (set-buffer-modified-p nil
)
208 (defun finder-list-matches (key)
209 (pop-to-buffer (set-buffer (get-buffer-create "*Finder Category*")))
211 (setq buffer-read-only nil
)
213 (let ((id (intern key
)))
215 "The following packages match the keyword `" key
"':\n\n")
216 (setq finder-headmark
(point))
219 (if (memq id
(car (cdr (cdr x
))))
222 (finder-insert-at-column 16 (concat (nth 1 x
) "\n"))
223 (finder-mouse-face-on-line))))
225 (goto-char (point-min))
227 (setq buffer-read-only t
)
228 (set-buffer-modified-p nil
)
229 (shrink-window-if-larger-than-buffer)
232 (defun finder-find-library (library)
233 "Search for file LIBRARY on `load-path'.
234 Try compressed versions if jka-compr is in use."
235 (or (locate-library library t
)
236 (if (rassq 'jka-compr-handler file-name-handler-alist
)
237 (or (locate-library (concat library
".gz") t
)
238 (locate-library (concat library
".Z") t
)
239 ;; last resort for MS-DOG et al
240 (locate-library (concat library
"z"))))))
242 (defun finder-commentary (file)
243 "Display FILE's commentary section.
244 FILE should be in a form suitable for passing to `locate-library'."
245 (interactive "sLibrary name: ")
246 (let* ((str (lm-commentary (or (finder-find-library file
)
247 (finder-find-library (concat file
".el"))
248 (error "Can't find library %s" file
)))))
250 (error "Can't find any Commentary section"))
251 (pop-to-buffer "*Finder*")
252 (setq buffer-read-only nil
)
255 (goto-char (point-min))
257 (goto-char (point-max))
259 (goto-char (point-min))
260 (while (re-search-forward "^;+ ?" nil t
)
261 (replace-match "" nil nil
))
262 (goto-char (point-min))
263 (setq buffer-read-only t
)
264 (set-buffer-modified-p nil
)
265 (shrink-window-if-larger-than-buffer)
268 (defun finder-current-item ()
269 (if (and finder-headmark
(< (point) finder-headmark
))
270 (error "No keyword or filename on this line")
275 (defun finder-select ()
276 "Select item on current line in a finder buffer."
278 (let ((key (finder-current-item)))
279 (if (string-match "\\.el$" key
)
280 (finder-commentary key
)
281 (finder-list-matches key
))))
283 (defun finder-mouse-select (event)
284 "Select item in a finder buffer with the mouse."
287 (set-buffer (window-buffer (posn-window (event-start event
))))
288 (goto-char (posn-point (event-start event
)))
291 (defun finder-by-keyword ()
292 "Find packages matching a given keyword."
294 (finder-list-keywords))
296 (defun finder-mode ()
297 "Major mode for browsing package documentation.
299 \\[finder-select] more help for the item on the current line
300 \\[finder-exit] exit Finder mode and kill the Finder buffer."
302 (use-local-map finder-mode-map
)
303 (set-syntax-table emacs-lisp-mode-syntax-table
)
304 (setq mode-name
"Finder")
305 (setq major-mode
'finder-mode
)
306 (make-local-variable 'finder-headmark
)
307 (setq finder-headmark nil
))
309 (defun finder-summary ()
310 "Summarize basic Finder commands."
313 (substitute-command-keys
314 "\\<finder-mode-map>\\[finder-select] = select, \
315 \\[finder-mouse-select] = select, \\[finder-list-keywords] = to \
316 finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
318 (defun finder-exit ()
319 "Exit Finder mode and kill the buffer."
323 ;; Can happen in either buffer -- kill each of the two that exists
324 (and (get-buffer "*Finder*")
325 (kill-buffer "*Finder*"))
326 (and (get-buffer "*Finder Category*")
327 (kill-buffer "*Finder Category*")))
331 ;;; finder.el ends here