* bitmaps/README:
[bpt/emacs.git] / lisp / finder.el
CommitLineData
1164bae9
ER
1;;; finder.el --- topic & keyword-based code finder
2
228b7396
GM
3;; Copyright (C) 1992, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005,
4;; 2006, 2007, 2008 Free Software Foundation, Inc.
1164bae9
ER
5
6;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
7;; Created: 16 Jun 1992
8;; Version: 1.0
9;; Keywords: help
10
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
1164bae9 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
1164bae9
ER
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
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1164bae9 25
101dad14 26;;; Commentary:
1164bae9
ER
27
28;; This mode uses the Keywords library header to provide code-finding
29;; services by keyword.
30;;
31;; Things to do:
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.
37
38;;; Code:
39
40(require 'lisp-mnt)
24d30c03 41(require 'find-func) ;for find-library(-suffixes)
f0c4433f
SM
42;; Use `load' rather than `require' so that it doesn't get loaded
43;; during byte-compilation (at which point it might be missing).
2e819a08 44(load "finder-inf" t t)
1164bae9 45
4f451c3f
DL
46;; These are supposed to correspond to top-level customization groups,
47;; says rms.
1164bae9
ER
48(defvar finder-known-keywords
49 '(
dea24479 50 (abbrev . "abbreviation handling, typing shortcuts, macros")
f06f7416 51 ;; Too specific:
be2c35e4 52 (bib . "code related to the `bib' bibliography processor")
68f8f37f 53 (c . "support for the C language and related languages")
1164bae9 54 (calendar . "calendar and time management support")
e9571d2a 55 (comm . "communications, networking, remote access to files")
35e9c644 56 (convenience . "convenience features for faster editing")
dde4a5bb 57 (data . "support for editing files of data")
1164bae9
ER
58 (docs . "support for Emacs documentation")
59 (emulations . "emulations of other editors")
60 (extensions . "Emacs Lisp language extensions")
be2c35e4 61 (faces . "support for multiple fonts")
f06f7416 62 (files . "support for editing and manipulating files")
f1aabce0 63 (frames . "support for Emacs frames and window systems")
1164bae9
ER
64 (games . "games, jokes and amusements")
65 (hardware . "support for interfacing with exotic hardware")
66 (help . "support for on-line help systems")
f1aabce0 67 (hypermedia . "support for links between text or other media types")
14931973 68 (i18n . "internationalization and alternate character-set support")
1164bae9
ER
69 (internal . "code for Emacs internals, build process, defaults")
70 (languages . "specialized modes for editing programming languages")
71 (lisp . "Lisp support, including Emacs Lisp")
72 (local . "code local to your site")
73 (maint . "maintenance aids for the Emacs development group")
74 (mail . "modes for electronic-mail handling")
be2c35e4
RS
75 (matching . "various sorts of searching and matching")
76 (mouse . "mouse support")
1226dd0b 77 (multimedia . "images and sound support")
1164bae9 78 (news . "support for netnews reading and posting")
f1aabce0
RS
79 (oop . "support for object-oriented programming")
80 (outlines . "support for hierarchical outlining")
1164bae9
ER
81 (processes . "process, subshell, compilation, and job control support")
82 (terminals . "support for terminal types")
dde4a5bb 83 (tex . "supporting code for the TeX formatter")
1164bae9 84 (tools . "programming tools")
dde4a5bb 85 (unix . "front-ends/assistants for, or emulators of, UNIX-like features")
1164bae9
ER
86 (wp . "word processing")
87 ))
88
79760fb2
SM
89(defvar finder-mode-map
90 (let ((map (make-sparse-keymap)))
91 (define-key map " " 'finder-select)
92 (define-key map "f" 'finder-select)
24bdbffe 93 (define-key map [follow-link] 'mouse-face)
79760fb2
SM
94 (define-key map [mouse-2] 'finder-mouse-select)
95 (define-key map "\C-m" 'finder-select)
96 (define-key map "?" 'finder-summary)
c9fdebdf
RS
97 (define-key map "n" 'next-line)
98 (define-key map "p" 'previous-line)
79760fb2
SM
99 (define-key map "q" 'finder-exit)
100 (define-key map "d" 'finder-list-keywords)
101 map))
e141acb3 102
89e2d476
SM
103(defvar finder-mode-syntax-table
104 (let ((st (make-syntax-table emacs-lisp-mode-syntax-table)))
105 (modify-syntax-entry ?\; ". " st)
106 st)
107 "Syntax table used while in `finder-mode'.")
108
109(defvar finder-font-lock-keywords
54e05660 110 '(("`\\([^'`]+\\)'" 1 font-lock-constant-face prepend))
89e2d476
SM
111 "Font-lock keywords for Finder mode.")
112
228b7396
GM
113(defvar finder-headmark nil
114 "Internal finder-mode variable, local in finder buffer.")
101dad14 115
1164bae9
ER
116;;; Code for regenerating the keyword list.
117
118(defvar finder-package-info nil
119 "Assoc list mapping file names to description & keyword lists.")
120
9bd0d71a 121(defvar generated-finder-keywords-file "finder-inf.el"
228b7396
GM
122 "The function `finder-compile-keywords' writes keywords into this file.")
123
124;; Skip autogenerated files, because they will never contain anything
125;; useful, and because in parallel builds of Emacs they may get
126;; modified while we are trying to read them.
127;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-01/msg00469.html
276f10b7
GM
128;; ldefs-boot is not auto-generated, but has nothing useful.
129(defvar finder-no-scan-regexp "\\(^\\.#\\|\\(loaddefs\\|ldefs-boot\\|\
130cus-load\\|finder-inf\\|esh-groups\\|subdirs\\)\\.el$\\)"
228b7396
GM
131 "Regexp matching file names not to scan for keywords.")
132
133(autoload 'autoload-rubric "autoload")
9bd0d71a 134
1164bae9 135(defun finder-compile-keywords (&rest dirs)
9bd0d71a 136 "Regenerate the keywords association list into `generated-finder-keywords-file'.
2d212d87
DL
137Optional arguments DIRS are a list of Emacs Lisp directories to compile from;
138no arguments compiles from `load-path'."
1164bae9 139 (save-excursion
54e05660
GM
140 (find-file generated-finder-keywords-file)
141 (setq buffer-undo-list t)
142 (erase-buffer)
143 (insert (autoload-rubric generated-finder-keywords-file
144 "keyword-to-package mapping"))
145 (search-backward "\f")
146 (insert "(setq finder-package-info '(\n")
67f63a7a 147 (let (processed summary keywords)
3731290f 148 (mapc
e6fb4d11 149 (lambda (d)
5b64ebe8
RS
150 (when (file-exists-p (directory-file-name d))
151 (message "Directory %s" d)
228b7396 152 (mapc
2d212d87 153 (lambda (f)
228b7396
GM
154 ;; FIXME should this not be using (expand-file-name f d)?
155 (unless (or (member f processed)
156 (string-match finder-no-scan-regexp f))
157 (setq processed (cons f processed))
158 (with-temp-buffer
159 (insert-file-contents (expand-file-name f d))
160 (setq summary (lm-synopsis)
67f63a7a 161 keywords (lm-keywords-list)))
228b7396
GM
162 (insert
163 (format " (\"%s\"\n "
164 (if (string-match "\\.\\(gz\\|Z\\)$" f)
165 (file-name-sans-extension f)
166 f)))
167 (prin1 summary (current-buffer))
168 (insert "\n ")
67f63a7a
GM
169 (princ keywords (current-buffer))
170 (insert ")\n")))
228b7396
GM
171 (directory-files d nil
172 ;; Allow compressed files also. FIXME:
173 ;; generalize this, especially for
174 ;; MS-DOG-type filenames.
175 "^[^=].*\\.el\\(\\.\\(gz\\|Z\\)\\)?$"
176 ))))
54e05660
GM
177 (or dirs load-path)))
178 (insert " ))\n")
179 (eval-buffer) ; so we get the new keyword list immediately
180 (basic-save-buffer)))
1164bae9 181
1c6425ea
RS
182(defun finder-compile-keywords-make-dist ()
183 "Regenerate `finder-inf.el' for the Emacs distribution."
644f58eb
RS
184 (apply 'finder-compile-keywords command-line-args-left)
185 (kill-emacs))
1c6425ea 186
1164bae9
ER
187;;; Now the retrieval code
188
e6fb4d11 189(defun finder-insert-at-column (column &rest strings)
eb4df0c3 190 "Insert, at column COLUMN, other args STRINGS."
ff524b84 191 (if (>= (current-column) column) (insert "\n"))
eb4df0c3 192 (move-to-column column t)
e6fb4d11
EN
193 (apply 'insert strings))
194
f06f7416
DL
195(defvar finder-help-echo nil)
196
eb4df0c3 197(defun finder-mouse-face-on-line ()
f06f7416 198 "Put `mouse-face' and `help-echo' properties on the previous line."
eb4df0c3 199 (save-excursion
bf8aa901 200 (forward-line -1)
54e05660
GM
201 ;; If finder-insert-at-column moved us to a new line, go back one more.
202 (if (looking-at "[ \t]") (forward-line -1))
f06f7416
DL
203 (unless finder-help-echo
204 (setq finder-help-echo
205 (let* ((keys1 (where-is-internal 'finder-select
206 finder-mode-map))
207 (keys (nconc (where-is-internal
208 'finder-mouse-select finder-mode-map)
209 keys1)))
210 (concat (mapconcat 'key-description keys ", ")
211 ": select item"))))
212 (add-text-properties
213 (line-beginning-position) (line-end-position)
214 '(mouse-face highlight
215 help-echo finder-help-echo))))
eb4df0c3 216
706239c7 217;;;###autoload
101dad14
ER
218(defun finder-list-keywords ()
219 "Display descriptions of the keywords in the Finder buffer."
220 (interactive)
5acc847d
RS
221 (if (get-buffer "*Finder*")
222 (pop-to-buffer "*Finder*")
228b7396 223 (pop-to-buffer (get-buffer-create "*Finder*"))
5acc847d 224 (finder-mode)
228b7396
GM
225 (setq buffer-read-only nil
226 buffer-undo-list t)
5acc847d 227 (erase-buffer)
f06f7416 228 (mapc
5acc847d
RS
229 (lambda (assoc)
230 (let ((keyword (car assoc)))
231 (insert (symbol-name keyword))
232 (finder-insert-at-column 14 (concat (cdr assoc) "\n"))
eb4df0c3 233 (finder-mouse-face-on-line)))
5acc847d
RS
234 finder-known-keywords)
235 (goto-char (point-min))
228b7396
GM
236 (setq finder-headmark (point)
237 buffer-read-only t)
5acc847d
RS
238 (set-buffer-modified-p nil)
239 (balance-windows)
240 (finder-summary)))
101dad14
ER
241
242(defun finder-list-matches (key)
2d7b0db7 243 (pop-to-buffer (set-buffer (get-buffer-create "*Finder Category*")))
5acc847d 244 (finder-mode)
228b7396
GM
245 (setq buffer-read-only nil
246 buffer-undo-list t)
101dad14
ER
247 (erase-buffer)
248 (let ((id (intern key)))
249 (insert
250 "The following packages match the keyword `" key "':\n\n")
14931973 251 (setq finder-headmark (point))
f06f7416 252 (mapc
e6fb4d11 253 (lambda (x)
54e05660
GM
254 (when (memq id (cadr (cdr x)))
255 (insert (car x))
256 (finder-insert-at-column 16 (concat (cadr x) "\n"))
257 (finder-mouse-face-on-line)))
101dad14
ER
258 finder-package-info)
259 (goto-char (point-min))
260 (forward-line)
261 (setq buffer-read-only t)
262 (set-buffer-modified-p nil)
263 (shrink-window-if-larger-than-buffer)
264 (finder-summary)))
265
54e05660
GM
266(define-button-type 'finder-xref 'action #'finder-goto-xref)
267
268(defun finder-goto-xref (button)
269 "Jump to a lisp file for the BUTTON at point."
270 (let* ((file (button-get button 'xref))
271 (lib (locate-library file)))
272 (if lib (finder-commentary lib)
273 (message "Unable to locate `%s'" file))))
274
706239c7 275;;;###autoload
101dad14 276(defun finder-commentary (file)
2d212d87
DL
277 "Display FILE's commentary section.
278FILE should be in a form suitable for passing to `locate-library'."
24d30c03
SM
279 (interactive
280 (list
281 (completing-read "Library name: "
6a021917
SM
282 (apply-partially 'locate-file-completion-table
283 (or find-function-source-path load-path)
284 (find-library-suffixes)))))
228b7396
GM
285 (let ((str (lm-commentary (find-library-name file))))
286 (or str (error "Can't find any Commentary section"))
63fe0a98
RS
287 ;; This used to use *Finder* but that would clobber the
288 ;; directory of categories.
61e938eb 289 (delete-other-windows)
63fe0a98 290 (pop-to-buffer "*Finder-package*")
228b7396
GM
291 (setq buffer-read-only nil
292 buffer-undo-list t)
101dad14
ER
293 (erase-buffer)
294 (insert str)
295 (goto-char (point-min))
296 (delete-blank-lines)
297 (goto-char (point-max))
298 (delete-blank-lines)
299 (goto-char (point-min))
300 (while (re-search-forward "^;+ ?" nil t)
301 (replace-match "" nil nil))
302 (goto-char (point-min))
54e05660
GM
303 (while (re-search-forward "\\<\\([-[:alnum:]]+\\.el\\)\\>" nil t)
304 (if (locate-library (match-string 1))
305 (make-text-button (match-beginning 1) (match-end 1)
306 'xref (match-string-no-properties 1)
307 'help-echo "Read this file's commentary"
308 :type 'finder-xref)))
309 (goto-char (point-min))
101dad14
ER
310 (setq buffer-read-only t)
311 (set-buffer-modified-p nil)
312 (shrink-window-if-larger-than-buffer)
8f713f53 313 (finder-mode)
e6fb4d11 314 (finder-summary)))
101dad14
ER
315
316(defun finder-current-item ()
62832105
EZ
317 (let ((key (save-excursion
318 (beginning-of-line)
319 (current-word))))
320 (if (or (and finder-headmark (< (point) finder-headmark))
228b7396 321 (zerop (length key)))
62832105
EZ
322 (error "No keyword or filename on this line")
323 key)))
101dad14
ER
324
325(defun finder-select ()
eb4df0c3 326 "Select item on current line in a finder buffer."
101dad14
ER
327 (interactive)
328 (let ((key (finder-current-item)))
f3b330d6
KH
329 (if (string-match "\\.el$" key)
330 (finder-commentary key)
331 (finder-list-matches key))))
332
333(defun finder-mouse-select (event)
eb4df0c3 334 "Select item in a finder buffer with the mouse."
f3b330d6
KH
335 (interactive "e")
336 (save-excursion
eb4df0c3
DL
337 (set-buffer (window-buffer (posn-window (event-start event))))
338 (goto-char (posn-point (event-start event)))
339 (finder-select)))
101dad14 340
706239c7 341;;;###autoload
1164bae9
ER
342(defun finder-by-keyword ()
343 "Find packages matching a given keyword."
344 (interactive)
101dad14
ER
345 (finder-list-keywords))
346
228b7396 347(define-derived-mode finder-mode nil "Finder"
101dad14 348 "Major mode for browsing package documentation.
527da106 349\\<finder-mode-map>
101dad14 350\\[finder-select] more help for the item on the current line
2d212d87 351\\[finder-exit] exit Finder mode and kill the Finder buffer."
228b7396 352 :syntax-table finder-mode-syntax-table
89e2d476
SM
353 (setq font-lock-defaults '(finder-font-lock-keywords nil nil
354 (("+-*/.<>=!?$%_&~^:@" . "w")) nil))
228b7396 355 (set (make-local-variable 'finder-headmark) nil))
101dad14
ER
356
357(defun finder-summary ()
358 "Summarize basic Finder commands."
359 (interactive)
90f061c7 360 (message "%s"
527da106 361 (substitute-command-keys
eb4df0c3
DL
362 "\\<finder-mode-map>\\[finder-select] = select, \
363\\[finder-mouse-select] = select, \\[finder-list-keywords] = to \
364finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
f5a16823 365
101dad14 366(defun finder-exit ()
89e2d476 367 "Exit Finder mode.
228b7396 368Delete the window and kill all Finder-related buffers."
101dad14 369 (interactive)
228b7396
GM
370 (ignore-errors (delete-window))
371 (dolist (buff '("*Finder*" "*Finder-package*" "*Finder Category*"))
372 (and (get-buffer buff) (kill-buffer buff))))
1164bae9 373
6a7ceddc 374\f
1164bae9
ER
375(provide 'finder)
376
bf8aa901 377;; arch-tag: ec85ff49-8cb8-41f5-a63f-9131d53ce2c5
1164bae9 378;;; finder.el ends here