* term.el: Fix typos in docstrings.
[emacs.git] / lisp / locate.el
blobd0021dfed22ed1e57db201c66e5408b9ffdf31db
1 ;;; locate.el --- interface to the locate command
3 ;; Copyright (C) 1996, 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Peter Breton <pbreton@cs.umb.edu>
7 ;; Keywords: unix files
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Search a database of files and use dired commands on the result.
28 ;; Locate.el provides an interface to a program which searches a
29 ;; database of file names. By default, this program is the GNU locate
30 ;; command, but it could also be the BSD-style find command, or even a
31 ;; user specified command.
33 ;; To use the BSD-style "fast find", or any other shell command of the
34 ;; form
36 ;; SHELLPROGRAM Name-to-find
38 ;; set the variable `locate-command' in your .emacs file.
40 ;; To use a more complicated expression, create a function which
41 ;; takes a string (the name to find) as input and returns a list.
42 ;; The first element should be the command to be executed, the remaining
43 ;; elements should be the arguments (including the name to find). Then put
45 ;; (setq locate-make-command-line 'my-locate-command-line)
47 ;; in your .emacs, using the name of your function in place of
48 ;; my-locate-command-line.
50 ;; You should make sure that whichever command you use works correctly
51 ;; from a shell prompt. GNU locate and BSD find expect the file databases
52 ;; to either be in standard places or located via environment variables.
53 ;; If the latter, make sure these environment variables are set in
54 ;; your emacs process.
56 ;; Locate-mode assumes that each line output from the locate-command
57 ;; consists exactly of a file name, possibly preceded or trailed by
58 ;; whitespace. If your file database has other information on the line (for
59 ;; example, the file size), you will need to redefine the function
60 ;; `locate-get-file-positions' to return a list consisting of the first
61 ;; character in the file name and the last character in the file name.
63 ;; To use locate-mode, simply type M-x locate and then the string
64 ;; you wish to find. You can use almost all of the dired commands in
65 ;; the resulting *Locate* buffer. It is worth noting that your commands
66 ;; do not, of course, affect the file database. For example, if you
67 ;; compress a file in the locate buffer, the actual file will be
68 ;; compressed, but the entry in the file database will not be
69 ;; affected. Consequently, the database and the filesystem will be out
70 ;; of sync until the next time the database is updated.
72 ;; The command `locate-with-filter' keeps only lines matching a
73 ;; regular expression; this is often useful to constrain a big search.
76 ;;;;; Building a database of files ;;;;;;;;;
78 ;; You can create a simple files database with a port of the Unix find command
79 ;; and one of the various Windows NT various scheduling utilities,
80 ;; for example the AT command from the NT Resource Kit, WinCron which is
81 ;; included with Microsoft FrontPage, or the shareware NTCron program.
83 ;; To set up a function which searches the files database, do something
84 ;; like this:
86 ;; (defvar locate-fcodes-file "c:/users/peter/fcodes")
87 ;; (defvar locate-make-command-line 'nt-locate-make-command-line)
89 ;; (defun nt-locate-make-command-line (arg)
90 ;; (list "grep" "-i" arg locate-fcodes-file))
92 ;;;;;;;; ADVICE For dired-make-relative: ;;;;;;;;;
94 ;; For certain dired commands to work right, you should also include the
95 ;; following in your _emacs/.emacs:
97 ;; (defadvice dired-make-relative (before set-no-error activate)
98 ;; "For locate mode and Windows, don't return errors"
99 ;; (if (and (eq major-mode 'locate-mode)
100 ;; (memq system-type (list 'windows-nt 'ms-dos)))
101 ;; (ad-set-arg 2 t)
102 ;; ))
104 ;; Otherwise, `dired-make-relative' will give error messages like
105 ;; "FILENAME: not in directory tree growing at /"
108 ;;; Code:
110 (require 'dired)
112 ;; Variables
114 (defvar locate-current-filter nil)
115 (defvar locate-local-filter nil)
116 (defvar locate-local-search nil)
117 (defvar locate-local-prompt nil)
119 (defgroup locate nil
120 "Interface to the locate command."
121 :prefix "locate-"
122 :group 'external)
124 (defcustom locate-command "locate"
125 "Executable program for searching a database of files.
126 The Emacs commands `locate' and `locate-with-filter' use this.
127 The value should be a program that can be called from a shell
128 with one argument, SEARCH-STRING. The program determines which
129 database it searches. The output of the program should consist
130 of those file names in the database that match SEARCH-STRING,
131 listed one per line, possibly with leading or trailing
132 whitespace. If the output is in another form, you may have to
133 redefine the function `locate-get-file-positions'.
135 The program may interpret SEARCH-STRING as a literal string, a
136 shell pattern or a regular expression. The exact rules of what
137 constitutes a match may also depend on the program.
139 The standard value of this variable is \"locate\".
140 This program normally searches a database of all files on your
141 system, or of all files that you have access to. Consult the
142 documentation of that program for the details about how it determines
143 which file names match SEARCH-STRING. (Those details vary highly with
144 the version.)"
145 :type 'string
146 :group 'locate)
148 (defvar locate-history-list nil
149 "The history list used by the \\[locate] command.")
151 (defvar locate-grep-history-list nil
152 "The history list used by the \\[locate-with-filter] command.")
154 (defcustom locate-make-command-line 'locate-default-make-command-line
155 "Function used to create the locate command line.
156 The Emacs commands `locate' and `locate-with-filter' use this.
157 This function should take one argument, a string (the name to find)
158 and return a list of strings. The first element of the list should be
159 the name of a command to be executed by a shell, the remaining elements
160 should be the arguments to that command (including the name to find)."
161 :type 'function
162 :group 'locate)
164 (defcustom locate-buffer-name "*Locate*"
165 "Name of the buffer to show results from the \\[locate] command."
166 :type 'string
167 :group 'locate)
169 (defcustom locate-fcodes-file nil
170 "File name for the database of file names used by `locate'.
171 If non-nil, `locate' uses this name in the header of the `*Locate*'
172 buffer. If nil, it mentions no file name in that header.
174 Just setting this variable does not actually change the database
175 that `locate' searches. The executive program that the Emacs
176 function `locate' uses, as given by the variables `locate-command'
177 or `locate-make-command-line', determines the database."
178 :type '(choice (const :tag "None" nil) file)
179 :group 'locate)
181 (defcustom locate-header-face nil
182 "Face used to highlight the locate header."
183 :type '(choice (const :tag "None" nil) face)
184 :group 'locate)
186 ;;;###autoload
187 (defcustom locate-ls-subdir-switches (purecopy "-al")
188 "`ls' switches for inserting subdirectories in `*Locate*' buffers.
189 This should contain the \"-l\" switch, but not the \"-F\" or \"-b\" switches."
190 :type 'string
191 :group 'locate
192 :version "22.1")
194 (defcustom locate-update-when-revert nil
195 "This option affects how the *Locate* buffer gets reverted.
196 If non-nil, offer to update the locate database when reverting that buffer.
197 \(Normally, you need to have root privileges for this to work. See the
198 option `locate-update-path'.)
199 If nil, reverting does not update the locate database."
200 :type 'boolean
201 :group 'locate
202 :version "22.1")
204 (defcustom locate-update-command "updatedb"
205 "The executable program used to update the locate database."
206 :type 'string
207 :group 'locate)
209 (defcustom locate-update-path "/"
210 "The default directory from where `locate-update-command' is called.
211 Usually, root permissions are required to run that command. This
212 can be achieved by setting this option to \"/su::\" or \"/sudo::\"
213 \(if you have the appropriate authority). If your current user
214 permissions are sufficient to run the command, you can set this
215 option to \"/\"."
216 :type 'string
217 :group 'locate
218 :version "22.1")
220 (defcustom locate-prompt-for-command nil
221 "If non-nil, the `locate' command prompts for a command to run.
222 Otherwise, that behavior is invoked via a prefix argument.
224 Setting this option non-nil actually inverts the meaning of a prefix arg;
225 that is, with a prefix arg, you get the default behavior."
226 :group 'locate
227 :type 'boolean)
229 ;; Functions
231 (defun locate-default-make-command-line (search-string)
232 (list locate-command search-string))
234 (defun locate-word-at-point ()
235 (let ((pt (point)))
236 (buffer-substring-no-properties
237 (save-excursion
238 (skip-chars-backward "-a-zA-Z0-9.")
239 (point))
240 (save-excursion
241 (skip-chars-forward "-a-zA-Z0-9.")
242 (skip-chars-backward "." pt)
243 (point)))))
245 ;; Function for use in interactive declarations.
246 (defun locate-prompt-for-search-string ()
247 (if (or (and current-prefix-arg
248 (not locate-prompt-for-command))
249 (and (not current-prefix-arg) locate-prompt-for-command))
250 (let ((locate-cmd (funcall locate-make-command-line "")))
251 (read-from-minibuffer
252 "Run locate (like this): "
253 (cons
254 (concat (car locate-cmd) " "
255 (mapconcat 'identity (cdr locate-cmd) " "))
256 (+ 2 (length (car locate-cmd))))
257 nil nil 'locate-history-list))
258 (let* ((default (locate-word-at-point))
259 (input
260 (read-from-minibuffer
261 (if (> (length default) 0)
262 (format "Locate (default %s): " default)
263 (format "Locate: "))
264 nil nil nil 'locate-history-list default t)))
265 (and (equal input "") default
266 (setq input default))
267 input)))
269 ;;;###autoload
270 (defun locate (search-string &optional filter arg)
271 "Run the program `locate', putting results in `*Locate*' buffer.
272 Pass it SEARCH-STRING as argument. Interactively, prompt for SEARCH-STRING.
273 With prefix arg, prompt for the exact shell command to run instead.
275 This program searches for those file names in a database that match
276 SEARCH-STRING and normally outputs all matching absolute file names,
277 one per line. The database normally consists of all files on your
278 system, or of all files that you have access to. Consult the
279 documentation of the program for the details about how it determines
280 which file names match SEARCH-STRING. (Those details vary highly with
281 the version.)
283 You can specify another program for this command to run by customizing
284 the variables `locate-command' or `locate-make-command-line'.
286 The main use of FILTER is to implement `locate-with-filter'. See
287 the docstring of that function for its meaning.
289 ARG is the interactive prefix arg."
290 (interactive
291 (list
292 (locate-prompt-for-search-string)
294 current-prefix-arg))
296 (if (equal search-string "")
297 (error "Please specify a filename to search for"))
298 (let* ((locate-cmd-list (funcall locate-make-command-line search-string))
299 (locate-cmd (car locate-cmd-list))
300 (locate-cmd-args (cdr locate-cmd-list))
301 (run-locate-command
302 (or (and arg (not locate-prompt-for-command))
303 (and (not arg) locate-prompt-for-command)))
306 ;; Find the Locate buffer
307 (save-window-excursion
308 (set-buffer (get-buffer-create locate-buffer-name))
309 (locate-mode)
310 (let ((inhibit-read-only t)
311 (buffer-undo-list t))
312 (erase-buffer)
314 (setq locate-current-filter filter)
315 (set (make-local-variable 'locate-local-search) search-string)
316 (set (make-local-variable 'locate-local-filter) filter)
317 (set (make-local-variable 'locate-local-prompt) run-locate-command)
319 (if run-locate-command
320 (shell-command search-string locate-buffer-name)
321 (apply 'call-process locate-cmd nil t nil locate-cmd-args))
323 (and filter
324 (locate-filter-output filter))
326 (locate-do-setup search-string)
328 (and (not (string-equal (buffer-name) locate-buffer-name))
329 (switch-to-buffer-other-window locate-buffer-name))
331 (run-hooks 'dired-mode-hook)
332 (dired-next-line 3) ;move to first matching file.
333 (run-hooks 'locate-post-command-hook)
337 ;;;###autoload
338 (defun locate-with-filter (search-string filter &optional arg)
339 "Run the executable program `locate' with a filter.
340 This function is similar to the function `locate', which see.
341 The difference is that, when invoked interactively, the present function
342 prompts for both SEARCH-STRING and FILTER. It passes SEARCH-STRING
343 to the locate executable program. It produces a `*Locate*' buffer
344 that lists only those lines in the output of the locate program that
345 contain a match for the regular expression FILTER; this is often useful
346 to constrain a big search.
348 ARG is the interactive prefix arg, which has the same effect as in `locate'.
350 When called from Lisp, this function is identical with `locate',
351 except that FILTER is not optional."
352 (interactive
353 (list
354 (locate-prompt-for-search-string)
355 (read-from-minibuffer "Filter: " nil nil
356 nil 'locate-grep-history-list)
357 current-prefix-arg))
358 (locate search-string filter arg))
360 (defun locate-filter-output (filter)
361 "Filter output from the locate command."
362 (goto-char (point-min))
363 (keep-lines filter))
365 (defvar locate-mode-map
366 (let ((map (copy-keymap dired-mode-map)))
367 ;; Undefine Useless Dired Menu bars
368 (define-key map [menu-bar Dired] 'undefined)
369 (define-key map [menu-bar subdir] 'undefined)
370 (define-key map [menu-bar mark executables] 'undefined)
371 (define-key map [menu-bar mark directory] 'undefined)
372 (define-key map [menu-bar mark directories] 'undefined)
373 (define-key map [menu-bar mark symlinks] 'undefined)
374 (define-key map [M-mouse-2] 'locate-mouse-view-file)
375 (define-key map "\C-c\C-t" 'locate-tags)
376 (define-key map "l" 'locate-do-redisplay)
377 (define-key map "U" 'dired-unmark-all-files)
378 (define-key map "V" 'locate-find-directory)
379 map)
380 "Local keymap for Locate mode buffers.")
382 ;; This variable is used to indent the lines and then to search for
383 ;; the file name
384 (defconst locate-filename-indentation 4
385 "The amount of indentation for each file.")
387 (defun locate-get-file-positions ()
388 "Return list of start and end of the file name on the current line.
389 This is a list of two buffer positions.
391 You should only call this function on lines that contain a file name
392 listed by the locate program. Inside inserted subdirectories, or if
393 there is no file name on the current line, the return value is
394 meaningless. You can check whether the current line contains a file
395 listed by the locate program, using the function
396 `locate-main-listing-line-p'."
397 (list (+ locate-filename-indentation
398 (line-beginning-position))
399 ;; Assume names end at the end of the line.
400 (line-end-position)))
402 ;; From SQL-mode
403 (defun locate-current-line-number ()
404 "Return the current line number, as an integer."
405 (+ (count-lines (point-min) (point))
406 (if (eq (current-column) 0)
408 0)))
410 ;; You should only call this function on lines that contain a file name
411 ;; listed by the locate program. Inside inserted subdirectories, or if
412 ;; there is no file name on the current line, the return value is
413 ;; meaningless. You can check whether the current line contains a file
414 ;; listed by the locate program, using the function
415 ;; `locate-main-listing-line-p'.
416 (defun locate-get-filename ()
417 (let ((pos (locate-get-file-positions))
418 (lineno (locate-current-line-number)))
419 (and (not (eq lineno 1))
420 (not (eq lineno 2))
421 (buffer-substring (elt pos 0) (elt pos 1)))))
423 (defun locate-main-listing-line-p ()
424 "Return t if current line contains a file name listed by locate.
425 This function returns nil if the current line either contains no
426 file name or is inside a subdirectory."
427 (save-excursion
428 (forward-line 0)
429 (looking-at (concat "."
430 (make-string (1- locate-filename-indentation) ?\s)
431 "\\(/\\|[A-Za-z]:\\)"))))
433 (defun locate-mouse-view-file (event)
434 "In Locate mode, view a file, using the mouse."
435 (interactive "@e")
436 (save-excursion
437 (goto-char (posn-point (event-start event)))
438 (if (locate-main-listing-line-p)
439 (view-file (locate-get-filename))
440 (message "This command only works inside main listing."))))
442 ;; Define a mode for locate
443 ;; Default directory is set to "/" so that dired commands, which
444 ;; expect to be in a tree, will work properly
445 (defun locate-mode ()
446 "Major mode for the `*Locate*' buffer made by \\[locate].
447 \\<locate-mode-map>\
448 In that buffer, you can use almost all the usual dired bindings.
449 \\[locate-find-directory] visits the directory of the file on the current line.
451 Operating on listed files works, but does not always
452 automatically update the buffer as in ordinary Dired.
453 This is true both for the main listing and for subdirectories.
454 Reverting the buffer using \\[revert-buffer] deletes all subdirectories.
455 Specific `locate-mode' commands, such as \\[locate-find-directory],
456 do not work in subdirectories.
458 \\{locate-mode-map}"
459 ;; Not to be called interactively.
460 (kill-all-local-variables)
461 ;; Avoid clobbering this variable
462 (make-local-variable 'dired-subdir-alist)
463 (use-local-map locate-mode-map)
464 (setq major-mode 'locate-mode
465 mode-name "Locate"
466 default-directory "/"
467 buffer-read-only t
468 selective-display t)
469 (dired-alist-add-1 default-directory (point-min-marker))
470 (set (make-local-variable 'dired-directory) "/")
471 (set (make-local-variable 'dired-subdir-switches) locate-ls-subdir-switches)
472 (setq dired-switches-alist nil)
473 (make-local-variable 'directory-listing-before-filename-regexp)
474 ;; This should support both Unix and Windoze style names
475 (setq directory-listing-before-filename-regexp
476 (concat "^."
477 (make-string (1- locate-filename-indentation) ?\s)
478 "\\(/\\|[A-Za-z]:\\)\\|"
479 (default-value 'directory-listing-before-filename-regexp)))
480 (make-local-variable 'dired-actual-switches)
481 (setq dired-actual-switches "")
482 (make-local-variable 'dired-permission-flags-regexp)
483 (setq dired-permission-flags-regexp
484 (concat "^.\\("
485 (make-string (1- locate-filename-indentation) ?\s)
486 "\\)\\|"
487 (default-value 'dired-permission-flags-regexp)))
488 (make-local-variable 'revert-buffer-function)
489 (setq revert-buffer-function 'locate-update)
490 (set (make-local-variable 'page-delimiter) "\n\n")
491 (run-mode-hooks 'locate-mode-hook))
493 (defun locate-do-setup (search-string)
494 (goto-char (point-min))
495 (save-excursion
497 ;; Nothing returned from locate command?
498 (and (eobp)
499 (progn
500 (kill-buffer locate-buffer-name)
501 (if locate-current-filter
502 (error "Locate: no match for %s in database using filter %s"
503 search-string locate-current-filter)
504 (error "Locate: no match for %s in database" search-string))))
506 (locate-insert-header search-string)
508 (while (not (eobp))
509 (insert-char ?\s locate-filename-indentation t)
510 (locate-set-properties)
511 (forward-line 1)))
512 (goto-char (point-min)))
514 (defun locate-set-properties ()
515 (save-excursion
516 (let ((pos (locate-get-file-positions)))
517 (dired-insert-set-properties (elt pos 0) (elt pos 1)))))
519 (defun locate-insert-header (search-string)
520 ;; There needs to be a space before `Matches, because otherwise,
521 ;; `*!" would erase the `M'. We can not use two spaces, or the line
522 ;; would mistakenly fit `dired-subdir-regexp'.
523 (let ((locate-format-string " /:\n Matches for %s")
524 (locate-regexp-match
525 (concat " *Matches for \\(" (regexp-quote search-string) "\\)"))
526 (locate-format-args (list search-string))
529 (and locate-fcodes-file
530 (setq locate-format-string
531 (concat locate-format-string " in %s")
532 locate-regexp-match
533 (concat locate-regexp-match
534 " in \\("
535 (regexp-quote locate-fcodes-file)
536 "\\)")
537 locate-format-args
538 (append (list locate-fcodes-file) locate-format-args)))
540 (and locate-current-filter
541 (setq locate-format-string
542 (concat locate-format-string " using filter %s")
543 locate-regexp-match
544 (concat locate-regexp-match
545 " using filter "
546 "\\("
547 (regexp-quote locate-current-filter)
548 "\\)")
549 locate-format-args
550 (append (list locate-current-filter) locate-format-args)))
552 (setq locate-format-string
553 (concat locate-format-string ":\n\n")
554 locate-regexp-match
555 (concat locate-regexp-match ":\n"))
557 (insert (apply 'format locate-format-string (reverse locate-format-args)))
559 (save-excursion
560 (goto-char (point-min))
561 (forward-line 1)
562 (if (not (looking-at locate-regexp-match))
564 (add-text-properties (match-beginning 1) (match-end 1)
565 (list 'face locate-header-face))
566 (and (match-beginning 2)
567 (add-text-properties (match-beginning 2) (match-end 2)
568 (list 'face locate-header-face)))
569 (and (match-beginning 3)
570 (add-text-properties (match-beginning 3) (match-end 3)
571 (list 'face locate-header-face)))
572 ))))
574 (defun locate-tags ()
575 "Visit a tags table in `*Locate*' mode."
576 (interactive)
577 (if (locate-main-listing-line-p)
578 (let ((tags-table (locate-get-filename)))
579 (and (y-or-n-p (format "Visit tags table %s? " tags-table))
580 (visit-tags-table tags-table)))
581 (message "This command only works inside main listing.")))
583 ;; From Stephen Eglen <stephen@cns.ed.ac.uk>
584 (defun locate-update (ignore1 ignore2)
585 "Revert the *Locate* buffer.
586 If `locate-update-when-revert' is non-nil, offer to update the
587 locate database using the shell command in `locate-update-command'."
588 (let ((locate-buffer-name (buffer-name))
589 (locate-prompt-for-command locate-local-prompt))
590 (and locate-update-when-revert
591 (yes-or-no-p "Update locate database (may take a few seconds)? ")
592 ;; `expand-file-name' is used in order to autoload Tramp if
593 ;; necessary. It cannot be loaded when `default-directory'
594 ;; is remote.
595 (let ((default-directory (expand-file-name locate-update-path)))
596 (shell-command locate-update-command)))
597 (locate locate-local-search locate-local-filter)))
599 ;;; Modified three functions from `dired.el':
600 ;;; dired-find-directory,
601 ;;; dired-find-directory-other-window
602 ;;; dired-get-filename
604 (defun locate-find-directory ()
605 "Visit the directory of the file mentioned on this line."
606 (interactive)
607 (if (locate-main-listing-line-p)
608 (let ((directory-name (locate-get-dirname)))
609 (if (file-directory-p directory-name)
610 (find-file directory-name)
611 (if (file-symlink-p directory-name)
612 (error "Directory is a symlink to a nonexistent target")
613 (error "Directory no longer exists; run `updatedb' to update database"))))
614 (message "This command only works inside main listing.")))
616 (defun locate-find-directory-other-window ()
617 "Visit the directory of the file named on this line in other window."
618 (interactive)
619 (if (locate-main-listing-line-p)
620 (find-file-other-window (locate-get-dirname))
621 (message "This command only works inside main listing.")))
623 ;; You should only call this function on lines that contain a file name
624 ;; listed by the locate program. Inside inserted subdirectories, or if
625 ;; there is no file name on the current line, the return value is
626 ;; meaningless. You can check whether the current line contains a file
627 ;; listed by the locate program, using the function
628 ;; `locate-main-listing-line-p'.
629 (defun locate-get-dirname ()
630 "Return the directory name of the file mentioned on this line."
631 (let (file (filepos (locate-get-file-positions)))
632 (if (setq file (buffer-substring (nth 0 filepos) (nth 1 filepos)))
633 (progn
634 ;; Get rid of the mouse-face property that file names have.
635 (set-text-properties 0 (length file) nil file)
636 (setq file (file-name-directory file))
637 ;; Unquote names quoted by ls or by dired-insert-directory.
638 ;; Using read to unquote is much faster than substituting
639 ;; \007 (4 chars) -> ^G (1 char) etc. in a lisp loop.
640 (setq file
641 (read
642 (concat "\""
643 ;; some ls -b don't escape quotes, argh!
644 ;; This is not needed for GNU ls, though.
645 (or (dired-string-replace-match
646 "\\([^\\]\\|\\`\\)\"" file "\\1\\\\\"" nil t)
647 file)
648 "\"")))))
649 (and file buffer-file-coding-system
650 (not file-name-coding-system)
651 (setq file (encode-coding-string file buffer-file-coding-system)))
652 file))
654 ;; Only for GNU locate
655 (defun locate-in-alternate-database (search-string database)
656 "Run the GNU locate program, using an alternate database.
658 This command only works if you use GNU locate. It does not work
659 properly if `locate-prompt-for-command' is set to t. In that
660 case, you can just run the regular `locate' command and specify
661 the database on the command line."
662 (interactive
663 (list
664 (progn
665 ;; (require 'locate)
666 (read-from-minibuffer "Locate: " nil nil
667 nil 'locate-history-list))
668 (read-file-name "Locate using Database: " )
670 (or (file-exists-p database)
671 (error "Database file %s does not exist" database))
672 (let ((locate-make-command-line
673 (function (lambda (string)
674 (cons locate-command
675 (list (concat "--database="
676 (expand-file-name database))
677 string))))))
678 (locate search-string)))
680 (defun locate-do-redisplay (&optional arg test-for-subdir)
681 "Like `dired-do-redisplay', but adapted for `*Locate*' buffers."
682 (interactive "P\np")
683 (if (string= (dired-current-directory) "/")
684 (message "This command only works in subdirectories.")
685 (let ((dired-actual-switches locate-ls-subdir-switches))
686 (dired-do-redisplay arg test-for-subdir))))
688 (provide 'locate)
690 ;; arch-tag: 60c4d098-b5d5-4b3c-a3e0-51a2e9f43898
691 ;;; locate.el ends here