(fancy-splash-screens): Remove the code for debugging;
[bpt/emacs.git] / lisp / find-file.el
CommitLineData
2be55c9c
RS
1;;; find-file.el --- find a file corresponding to this one given a pattern
2
b4686a1c 3;; Author: Henry Guillaume <henri@tibco.com, henry@c032.aone.net.au>
5027054f 4;; Maintainer: FSF
2be55c9c
RS
5;; Keywords: c, matching, tools
6
732be465 7;; Copyright (C) 1994, 1995 Free Software Foundation, Inc.
2be55c9c 8
b578f267
EN
9;; This file is part of GNU Emacs.
10
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 2, or (at your option)
14;; any later version.
15
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.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
2be55c9c
RS
25
26;;; Commentary:
27
28;; PURPOSE:
98d775e5
DL
29;; This package features a function called ff-find-other-file, which performs
30;; the following function:
2be55c9c
RS
31;;
32;; When in a .c file, find the first corresponding .h file in a set
33;; of directories and display it, and vice-versa from the .h file.
34;;
35;; Many people maintain their include file in a directory separate to their
36;; src directory, and very often you may be editing a file and have a need to
37;; visit the "other file". This package searches through a set of directories
38;; to find that file.
39;;
40;; THE "OTHER FILE", or "corresponding file", generally has the same basename,
98d775e5 41;; and just has a different extension as described by the ff-other-file-alist
2be55c9c
RS
42;; variable:
43;;
44;; '(("\\.cc$" (".hh" ".h"))
45;; ("\\.hh$" (".cc" ".C" ".CC" ".cxx" ".cpp")))
46;;
47;; If the current file has a .cc extension, ff-find-other-file will attempt
48;; to look for a .hh file, and then a .h file in some directory as described
49;; below. The mechanism here is to replace the matched part of the original
50;; filename with each of the corresponding extensions in turn.
51;;
52;; Alternatively, there are situations where the filename of the other file
53;; cannot be determined easily with regexps. For example, a .c file may
54;; have two corresponding .h files, for its public and private parts, or
55;; the filename for the .c file contains part of the pathname of the .h
56;; file, as between src/fooZap.cc and include/FOO/zap.hh. In that case, the
57;; format above can be changed to include a function to be called when the
58;; current file matches the regexp:
59;;
60;; '(("\\.cc$" cc-function)
61;; ("\\.hh$" hh-function))
62;;
98d775e5
DL
63;; These functions must return a list consisting of the possible names of the
64;; corresponding file, with or without path. There is no real need for more
2be55c9c
RS
65;; than one function, and one could imagine the following value for cc-other-
66;; file-alist:
67;;
68;; (setq cc-other-file-alist
69;; '(("\\.cc$" ff-cc-hh-converter)
70;; ("\\.hh$" ff-cc-hh-converter)
71;; ("\\.c$" (".h"))
72;; ("\\.h$" (".c" ".cc" ".C" ".CC" ".cxx" ".cpp"))))
73;;
74;; ff-cc-hh-converter is included at the end of this file as a reference.
75;;
76;; SEARCHING is carried out in a set of directories specified by the
77;; ff-search-directories variable:
78;;
79;; ("." "../../src" "../include/*" "/usr/local/*/src/*" "$PROJECT/src")
80;;
81;; This means that the corresponding file will be searched for first in
82;; the current directory, then in ../../src, then in one of the directories
83;; under ../include, and so on. The star is _not_ a general wildcard
84;; character: it just indicates that the subdirectories of this directory
85;; must each be searched in turn. Environment variables will be expanded in
86;; the ff-search-directories variable.
87;;
88;; If the point is on a #include line, the file to be #included is searched
89;; for in the same manner. This can be disabled with the ff-ignore-include
90;; variable, or by calling ff-get-other-file instead of ff-find-other-file.
91;;
92;; If the file was not found, ff-find-other-file will prompt you for where
93;; to create the new "corresponding file" (defaults to the current directory),
98d775e5 94;; unless the variable ff-always-try-to-create is set to nil.
2be55c9c 95;;
98d775e5
DL
96;; GIVEN AN ARGUMENT (with the ^U prefix), ff-find-other-file will get the
97;; other file in another (the other?) window (see find-file-other-window and
98;; switch-to-buffer-other-window). This can be set on a more permanent basis
99;; by setting ff-always-in-other-window to t in which case the ^U prefix will
2be55c9c
RS
100;; do the opposite of what was described above.
101;;
102;; THERE ARE FIVE AVAILABLE HOOKS, called in this order if non-nil:
103;;
104;; - ff-pre-find-hooks - called before the search for the other file starts
105;; - ff-not-found-hooks - called when the other file could not be found
106;; - ff-pre-load-hooks - called just before the other file is 'loaded'
107;; - ff-file-created-hooks - called when the other file is created
108;; - ff-post-load-hooks - called just after the other file is 'loaded'
109;;
110;; The *load-hooks allow you to place point where you want it in the other
98d775e5 111;; file.
2be55c9c
RS
112
113;; CREDITS:
114;; Many thanks go to TUSC Computer Systems Pty Ltd for providing an environ-
115;; ment that made the development of this package possible.
116;;
117;; Many thanks also go to all those who provided valuable feedback throughout
118;; the development of this package:
119;; Rolf Ebert in particular, Fritz Knabe, Heddy Boubaker, Sebastian Kremer,
98d775e5 120;; Vasco Lopes Paulo, Mark A. Plaksin, Robert Lang, Trevor West, Kevin
17feeeb2 121;; Pereira, Benedict Lofstedt & Justin Vallon.
2be55c9c 122
17feeeb2 123;;; Code:
2be55c9c
RS
124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
125;; User definable variables:
126
14d4446b
SE
127(defgroup ff nil
128 "Find a file corresponding to this one given a pattern."
129 :prefix "ff-"
98d775e5 130 :link '(emacs-commentary-link "find-file")
14d4446b
SE
131 :group 'find-file)
132
133(defcustom ff-pre-find-hooks nil
134 "*List of functions to be called before the search for the file starts."
135 :type 'hook
136 :group 'ff)
137
138(defcustom ff-pre-load-hooks nil
139 "*List of functions to be called before the other file is loaded."
140 :type 'hook
141 :group 'ff)
142
143(defcustom ff-post-load-hooks nil
144 "*List of functions to be called after the other file is loaded."
145 :type 'hook
146 :group 'ff)
147
148(defcustom ff-not-found-hooks nil
149 "*List of functions to be called if the other file could not be found."
150 :type 'hook
151 :group 'ff)
152
153(defcustom ff-file-created-hooks nil
154 "*List of functions to be called if the other file needs to be created."
155 :type 'hook
156 :group 'ff)
157
158(defcustom ff-case-fold-search nil
8c17509e 159 "*Non-nil means ignore cases in matches (see `case-fold-search').
14d4446b
SE
160If you have extensions in different cases, you will want this to be nil."
161 :type 'boolean
162 :group 'ff)
2be55c9c 163
14d4446b 164(defcustom ff-always-in-other-window nil
8c17509e 165 "*If non-nil, find the corresponding file in another window by default.
14d4446b
SE
166To override this, give an argument to `ff-find-other-file'."
167 :type 'boolean
168 :group 'ff)
2be55c9c 169
14d4446b
SE
170(defcustom ff-ignore-include nil
171 "*If non-nil, ignore `#include' lines."
172 :type 'boolean
173 :group 'ff)
2be55c9c 174
14d4446b
SE
175(defcustom ff-always-try-to-create t
176 "*If non-nil, always attempt to create the other file if it was not found."
177 :type 'boolean
178 :group 'ff)
2be55c9c 179
14d4446b
SE
180(defcustom ff-quiet-mode nil
181 "*If non-nil, trace which directories are being searched."
182 :type 'boolean
183 :group 'ff)
2be55c9c 184
98d775e5 185(defvar ff-special-constructs
2be55c9c
RS
186 '(
187 ;; C/C++ include, for NeXTSTEP too
188 ("^\#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" .
189 (lambda ()
190 (setq fname (buffer-substring (match-beginning 2) (match-end 2)))))
191
192 ;; Ada import
193 ("^with[ \t]+\\([a-zA-Z0-9_\\.]+\\)" .
194 (lambda ()
195 (setq fname (buffer-substring (match-beginning 1) (match-end 1)))
903a238c 196 (require 'ada-mode)
2be55c9c 197 (setq fname (concat (ada-make-filename-from-adaname fname)
903a238c 198 ada-spec-suffix))))
2be55c9c 199 )
98d775e5
DL
200 "*A list of regular expressions for `ff-find-file'.
201Specifies how to recognise special constructs such as include files
202etc. and an associated method for extracting the filename from that
203construct.")
2be55c9c 204
14d4446b 205(defcustom ff-other-file-alist 'cc-other-file-alist
2be55c9c
RS
206 "*Alist of extensions to find given the current file's extension.
207
208This list should contain the most used extensions before the others,
209since the search algorithm searches sequentially through each
8c17509e
RS
210directory specified in `ff-search-directories'. If a file is not found,
211a new one is created with the first matching extension (`.cc' yields `.hh').
14d4446b
SE
212This alist should be set by the major mode."
213 :type '(choice (repeat (list regexp (choice (repeat string) function)))
214 symbol)
215 :group 'ff)
2be55c9c 216
14d4446b 217(defcustom ff-search-directories 'cc-search-directories
2be55c9c
RS
218 "*List of directories to search for a specific file.
219
8c17509e 220Set by default to `cc-search-directories', expanded at run-time.
2be55c9c
RS
221
222This list is searched through with each extension specified in
8c17509e 223`ff-other-file-alist' that matches this file's extension. So the
2be55c9c
RS
224longer the list, the longer it'll take to realise that a file
225may not exist.
226
98d775e5 227A typical format is
2be55c9c 228
17feeeb2 229 '(\".\" \"/usr/include\" \"$PROJECT/*/include\")
2be55c9c 230
8c17509e 231Environment variables can be inserted between slashes (`/').
2be55c9c 232They will be replaced by their definition. If a variable does
8c17509e 233not exist, it is replaced (silently) with an empty string.
2be55c9c 234
8c17509e
RS
235The stars are *not* wildcards: they are searched for together with
236the preceding slash. The star represents all the subdirectories except
14d4446b
SE
237`..', and each of these subdirectories will be searched in turn."
238 :type '(choice (repeat directory) symbol)
239 :group 'ff)
2be55c9c 240
14d4446b 241(defcustom cc-search-directories
17feeeb2 242 '("." "/usr/include" "/usr/local/include/*")
14d4446b
SE
243 "*See the description of the `ff-search-directories' variable."
244 :type '(repeat directory)
245 :group 'ff)
2be55c9c 246
14d4446b 247(defcustom cc-other-file-alist
2be55c9c
RS
248 '(
249 ("\\.cc$" (".hh" ".h"))
250 ("\\.hh$" (".cc" ".C"))
251
252 ("\\.c$" (".h"))
253 ("\\.h$" (".c" ".cc" ".C" ".CC" ".cxx" ".cpp"))
254
255 ("\\.C$" (".H" ".hh" ".h"))
256 ("\\.H$" (".C" ".CC"))
257
258 ("\\.CC$" (".HH" ".H" ".hh" ".h"))
259 ("\\.HH$" (".CC"))
260
261 ("\\.cxx$" (".hh" ".h"))
262 ("\\.cpp$" (".hh" ".h"))
263 )
264 "*Alist of extensions to find given the current file's extension.
265
266This list should contain the most used extensions before the others,
267since the search algorithm searches sequentially through each directory
8c17509e 268specified in `ff-search-directories'. If a file is not found, a new one
14d4446b
SE
269is created with the first matching extension (`.cc' yields `.hh')."
270 :type '(repeat (list regexp (choice (repeat string) function)))
271 :group 'ff)
2be55c9c 272
14d4446b 273(defcustom modula2-other-file-alist
2be55c9c
RS
274 '(
275 ("\\.mi$" (".md")) ;; Modula-2 module definition
276 ("\\.md$" (".mi")) ;; and implementation.
277 )
14d4446b
SE
278 "*See the description for the `ff-search-directories' variable."
279 :type '(repeat (list regexp (choice (repeat string) function)))
280 :group 'ff)
281
2be55c9c
RS
282
283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
284;; No user definable variables beyond this point!
285;; ==============================================
286
287(make-variable-buffer-local 'ff-pre-find-hooks)
288(make-variable-buffer-local 'ff-pre-load-hooks)
289(make-variable-buffer-local 'ff-post-load-hooks)
290(make-variable-buffer-local 'ff-not-found-hooks)
291(make-variable-buffer-local 'ff-file-created-hooks)
292(make-variable-buffer-local 'ff-case-fold-search)
293(make-variable-buffer-local 'ff-always-in-other-window)
294(make-variable-buffer-local 'ff-ignore-include)
295(make-variable-buffer-local 'ff-quiet-mode)
296(make-variable-buffer-local 'ff-other-file-alist)
297(make-variable-buffer-local 'ff-search-directories)
298
299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
300;; User entry points
301
302;;;###autoload
303(defun ff-get-other-file (&optional in-other-window)
8c17509e 304 "Find the header or source file corresponding to this file.
98d775e5 305See also the documentation for `ff-find-other-file'.
2be55c9c 306
8c17509e 307If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
2be55c9c
RS
308 (interactive "P")
309 (let ((ignore ff-ignore-include))
310 (setq ff-ignore-include t)
311 (ff-find-the-other-file in-other-window)
312 (setq ff-ignore-include ignore)))
313
314;;;###autoload
315(defun ff-find-other-file (&optional in-other-window ignore-include)
8c17509e
RS
316 "Find the header or source file corresponding to this file.
317Being on a `#include' line pulls in that file.
2be55c9c 318
8c17509e
RS
319If optional IN-OTHER-WINDOW is non-nil, find the file in the other window.
320If optional IGNORE-INCLUDE is non-nil, ignore being on `#include' lines.
2be55c9c
RS
321
322Variables of interest include:
323
98d775e5
DL
324 - `ff-case-fold-search'
325 Non-nil means ignore cases in matches (see `case-fold-search').
2be55c9c
RS
326 If you have extensions in different cases, you will want this to be nil.
327
98d775e5 328 - `ff-always-in-other-window'
2be55c9c 329 If non-nil, always open the other file in another window, unless an
98d775e5 330 argument is given to `ff-find-other-file'.
2be55c9c 331
98d775e5 332 - `ff-ignore-include'
2be55c9c
RS
333 If non-nil, ignores #include lines.
334
98d775e5 335 - `ff-always-try-to-create'
2be55c9c
RS
336 If non-nil, always attempt to create the other file if it was not found.
337
98d775e5 338 - `ff-quiet-mode'
2be55c9c
RS
339 If non-nil, traces which directories are being searched.
340
98d775e5
DL
341 - `ff-special-constructs'
342 A list of regular expressions specifying how to recognise special
343 constructs such as include files etc, and an associated method for
2be55c9c
RS
344 extracting the filename from that construct.
345
98d775e5 346 - `ff-other-file-alist'
2be55c9c
RS
347 Alist of extensions to find given the current file's extension.
348
98d775e5 349 - `ff-search-directories'
2be55c9c 350 List of directories searched through with each extension specified in
98d775e5 351 `ff-other-file-alist' that matches this file's extension.
2be55c9c 352
98d775e5 353 - `ff-pre-find-hooks'
2be55c9c
RS
354 List of functions to be called before the search for the file starts.
355
98d775e5 356 - `ff-pre-load-hooks'
2be55c9c
RS
357 List of functions to be called before the other file is loaded.
358
98d775e5 359 - `ff-post-load-hooks'
2be55c9c
RS
360 List of functions to be called after the other file is loaded.
361
98d775e5 362 - `ff-not-found-hooks'
2be55c9c
RS
363 List of functions to be called if the other file could not be found.
364
98d775e5 365 - `ff-file-created-hooks'
2be55c9c
RS
366 List of functions to be called if the other file has been created."
367 (interactive "P")
368 (let ((ignore ff-ignore-include))
369 (setq ff-ignore-include ignore-include)
370 (ff-find-the-other-file in-other-window)
371 (setq ff-ignore-include ignore)))
372
373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
374;; Support functions
375
2be55c9c 376(defun ff-find-the-other-file (&optional in-other-window)
8c17509e
RS
377 "Find the header or source file corresponding to the current file.
378Being on a `#include' line pulls in that file, but see the help on
379the `ff-ignore-include' variable.
2be55c9c 380
8c17509e 381If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
2be55c9c
RS
382
383 (let (match ;; matching regexp for this file
384 suffixes ;; set of replacing regexps for the matching regexp
385 action ;; function to generate the names of the other files
386 fname ;; basename of this file
387 pos ;; where we start matching filenames
388 stub ;; name of the file without extension
389 alist ;; working copy of the list of file extensions
390 pathname ;; the pathname of the file or the #include line
391 default-name ;; file we should create if none found
98d775e5
DL
392 format ;; what we have to match
393 found ;; name of the file or buffer found - nil if none
2be55c9c
RS
394 dirs ;; local value of ff-search-directories
395 no-match) ;; whether we know about this kind of file
396
397 (if ff-pre-find-hooks
398 (run-hooks 'ff-pre-find-hooks))
399
400 (message "Working...")
401
402 (setq dirs
403 (if (symbolp ff-search-directories)
404 (ff-list-replace-env-vars (symbol-value ff-search-directories))
405 (ff-list-replace-env-vars ff-search-directories)))
406
407 (save-excursion
408 (beginning-of-line 1)
409 (setq fname (ff-treat-as-special)))
410
411 (cond
412 ((and (not ff-ignore-include) fname)
413 (setq default-name fname)
414 (setq found (ff-get-file dirs fname nil in-other-window)))
415
416 ;; let's just get the corresponding file
417 (t
418 (setq alist (if (symbolp ff-other-file-alist)
419 (symbol-value ff-other-file-alist)
420 ff-other-file-alist)
421 pathname (if (buffer-file-name)
422 (buffer-file-name)
423 "/none.none"))
424
425 (string-match ".*/\\(.+\\)$" pathname)
426 (setq fname (substring pathname (match-beginning 1) (match-end 1))
427 no-match nil
428 match (car alist))
429
430 ;; find the table entry corresponding to this file
431 (setq pos (ff-string-match (car match) fname))
432 (while (and match (if (and pos (>= pos 0)) nil (not pos)))
433 (setq alist (cdr alist))
434 (setq match (car alist))
435 (setq pos (ff-string-match (car match) fname)))
436
437 ;; no point going on if we haven't found anything
438 (if (not match)
439 (setq no-match t)
440
441 ;; otherwise, suffixes contains what we need
442 (setq suffixes (car (cdr match))
443 action (car (cdr match))
444 found nil)
445
98d775e5 446 ;; if we have a function to generate new names,
2be55c9c
RS
447 ;; invoke it with the name of the current file
448 (if (and (atom action) (fboundp action))
449 (progn
450 (setq suffixes (funcall action (buffer-file-name))
451 match (cons (car match) (list suffixes))
452 stub nil
453 default-name (car suffixes)))
454
455 ;; otherwise build our filename stub
98d775e5 456 (cond
2be55c9c
RS
457
458 ;; get around the problem that 0 and nil both mean false!
459 ((= pos 0)
460 (setq format "")
461 (setq stub "")
462 )
463
464 (t
465 (setq format (concat "\\(.+\\)" (car match)))
466 (string-match format fname)
467 (setq stub (substring fname (match-beginning 1) (match-end 1)))
468 ))
469
470 ;; if we find nothing, we should try to get a file like this one
471 (setq default-name
472 (concat stub (car (car (cdr match))))))
473
474 ;; do the real work - find the file
98d775e5 475 (setq found
2be55c9c
RS
476 (ff-get-file dirs
477 stub
98d775e5 478 suffixes
2be55c9c
RS
479 in-other-window)))))
480
481 (cond
482 (no-match ;; could not even determine the other file
483 (message ""))
484
98d775e5 485 (t
2be55c9c
RS
486 (cond
487
488 ((not found) ;; could not find the other file
489
490 (if ff-not-found-hooks ;; run the hooks
491 (run-hooks 'ff-not-found-hooks))
492
98d775e5 493 (cond
2be55c9c
RS
494 (ff-always-try-to-create ;; try to create the file
495 (let (name pathname)
496
497 (setq name
498 (expand-file-name
499 (read-file-name
500 (format "Find or create %s in: " default-name)
501 default-directory default-name nil)))
502
503 (setq pathname
504 (if (file-directory-p name)
505 (concat (file-name-as-directory name) default-name)
506 (setq found name)))
507
508 (ff-find-file pathname in-other-window t)))
509
510 (t ;; don't create the file, just whinge
988021a7 511 (message "No file found for %s" fname))))
2be55c9c
RS
512
513 (t ;; matching file found
514 nil))))
515
516 found)) ;; return buffer-name or filename
517
98d775e5
DL
518(defun ff-get-file (search-dirs filename &optional suffix-list other-window)
519 "Find a file in the SEARCH-DIRS with the given FILENAME (or filename stub).
520If (optional) SUFFIX-LIST is nil, search for fname, otherwise search
521for fname with each of the given suffixes. Get the file or the buffer
522corresponding to the name of the first file found, or nil."
523 (let ((filename (ff-get-file-name search-dirs filename suffix-list)))
2be55c9c 524
98d775e5 525 (cond
2be55c9c
RS
526 ((not filename)
527 nil)
528
91afecb3
RS
529 ((bufferp (get-file-buffer filename))
530 (ff-switch-to-buffer (get-file-buffer filename) other-window)
2be55c9c
RS
531 filename)
532
533 ((file-exists-p filename)
534 (ff-find-file filename other-window nil)
535 filename)
536
537 (t
538 nil))))
539
540(defun ff-get-file-name (search-dirs fname-stub &optional suffix-list)
98d775e5
DL
541 "Find a file in SEARCH-DIRS with the given name (or stub) FNAME-STUB.
542If (optional) SUFFIX-LIST is nil, search for FNAME-STUB, otherwise
543search for FNAME-STUB with each of the given suffixes. Return the
544name of the first file found."
2be55c9c
RS
545 (let* (dirs ;; working copy of dirs to search
546 dir ;; the current dir considered
547 file ;; filename being looked for
548 rest ;; pathname after first /*
549 this-suffix ;; the suffix we are currently considering
550 suffixes ;; working copy of suffix-list
551 filename ;; built filename
552 blist ;; list of live buffers
553 buf ;; current buffer in blist
554 found) ;; whether we have found anything
555
556 (setq suffixes suffix-list)
557
558 ;; suffixes is nil => fname-stub is the file we are looking for
559 ;; otherwise fname-stub is a stub, and we append a suffix
560 (if suffixes
561 (setq this-suffix (car suffixes))
562 (setq this-suffix "")
563 (setq suffixes (list "")))
564
565 ;; find whether the file is in a buffer first
566 (while (and suffixes (not found))
567 (setq filename (concat fname-stub this-suffix))
568
569 (if (not ff-quiet-mode)
988021a7 570 (message "Finding buffer %s..." filename))
2be55c9c 571
988021a7
RS
572 (if (bufferp (get-file-buffer filename))
573 (setq found (buffer-file-name (get-file-buffer filename))))
2be55c9c
RS
574
575 (setq blist (buffer-list))
576 (setq buf (buffer-name (car blist)))
577 (while (and blist (not found))
578
579 (if (string-match (concat filename "<[0-9]+>") buf)
17feeeb2 580 (setq found (buffer-file-name (car blist))))
2be55c9c
RS
581
582 (setq blist (cdr blist))
583 (setq buf (buffer-name (car blist))))
584
585 (setq suffixes (cdr suffixes))
586 (setq this-suffix (car suffixes)))
587
588 ;; now look for the real file
589 (setq dirs search-dirs)
590 (setq dir (car dirs))
591 (while (and (not found) dirs)
592
593 (setq suffixes suffix-list)
594
595 ;; if dir does not contain '/*', look for the file
596 (if (and dir (not (string-match "\\([^*]*\\)/\\\*\\(/.*\\)*" dir)))
98d775e5 597 (progn
2be55c9c
RS
598
599 ;; suffixes is nil => fname-stub is the file we are looking for
600 ;; otherwise fname-stub is a stub, and we append a suffix
601 (if suffixes
602 (setq this-suffix (car suffixes))
603 (setq this-suffix "")
604 (setq suffixes (list "")))
605
606 (while (and suffixes (not found))
607
608 (setq filename (concat fname-stub this-suffix))
609 (setq file (concat dir "/" filename))
610
611 (if (not ff-quiet-mode)
988021a7 612 (message "Finding %s..." file))
2be55c9c
RS
613
614 (if (file-exists-p file)
615 (setq found file))
616
617 (setq suffixes (cdr suffixes))
618 (setq this-suffix (car suffixes))))
619
620 ;; otherwise dir matches the '/*', so search each dir separately
621 (progn
622 (if (match-beginning 2)
623 (setq rest (substring dir (match-beginning 2) (match-end 2)))
624 (setq rest "")
625 )
626 (setq dir (substring dir (match-beginning 1) (match-end 1)))
627
628 (let ((dirlist (ff-all-dirs-under dir '("..")))
629 this-dir compl-dirs)
630
631 (setq this-dir (car dirlist))
632 (while dirlist
633 (setq compl-dirs
634 (append
635 compl-dirs
636 (list (concat this-dir rest))
637 ))
638 (setq dirlist (cdr dirlist))
639 (setq this-dir (car dirlist)))
640
641 (if compl-dirs
642 (setq found (ff-get-file-name compl-dirs
643 fname-stub
644 suffix-list))))))
645 (setq dirs (cdr dirs))
646 (setq dir (car dirs)))
647
648 (if found
649 (message "%s found" found))
650
651 found))
652
653(defun ff-string-match (regexp string &optional start)
91afecb3 654 "Like `string-match', but set `case-fold-search' temporarily.
8c17509e
RS
655The value used comes from `ff-case-fold-search'."
656 (let ((case-fold-search ff-case-fold-search))
2be55c9c 657 (if regexp
8c17509e 658 (string-match regexp string start))))
2be55c9c
RS
659
660(defun ff-list-replace-env-vars (search-list)
661 "Replace environment variables (of the form $VARIABLE) in SEARCH-LIST."
662 (let (list
663 (var (car search-list)))
664 (while search-list
665 (if (string-match "\\(.*\\)\\$[({]*\\([a-zA-Z0-9_]+\\)[)}]*\\(.*\\)" var)
666 (setq var
667 (concat
668 (substring var (match-beginning 1) (match-end 1))
669 (getenv (substring var (match-beginning 2) (match-end 2)))
670 (substring var (match-beginning 3) (match-end 3)))))
671 (setq search-list (cdr search-list))
672 (setq list (cons var list))
673 (setq var (car search-list)))
674 (setq search-list (reverse list))))
675
676(defun ff-treat-as-special ()
98d775e5 677 "Return the file to look for if the construct was special, else nil.
91afecb3 678The construct is defined in the variable `ff-special-constructs'."
2be55c9c
RS
679 (let* (fname
680 (list ff-special-constructs)
681 (elem (car list))
682 (regexp (car elem))
683 (match (cdr elem)))
684 (while (and list (not fname))
685 (if (and (looking-at regexp) match)
686 (setq fname (funcall match)))
687 (setq list (cdr list))
688 (setq elem (car list))
689 (setq regexp (car elem))
690 (setq match (cdr elem)))
691 fname))
692
693(defun ff-basename (string)
98d775e5 694 "Return the basename of pathname STRING."
2be55c9c
RS
695 (setq string (concat "/" string))
696 (string-match ".*/\\([^/]+\\)$" string)
697 (setq string (substring string (match-beginning 1) (match-end 1))))
698
699(defun ff-all-dirs-under (here &optional exclude)
8c17509e 700 "Get all the directory files under directory HERE.
2be55c9c
RS
701Exclude all files in the optional EXCLUDE list."
702 (if (file-directory-p here)
703 (condition-case nil
704 (progn
705 (let ((files (directory-files here t))
706 (dirlist (list))
707 file)
708 (while files
709 (setq file (car files))
710 (if (and
711 (file-directory-p file)
712 (not (member (ff-basename file) exclude)))
713 (setq dirlist (cons file dirlist)))
714 (setq files (cdr files)))
715 (setq dirlist (reverse dirlist))))
716 (error nil))
717 nil))
718
719(defun ff-switch-file (f1 f2 file &optional in-other-window new-file)
8c17509e
RS
720 "Call F1 or F2 on FILE, according to IN-OTHER-WINDOW.
721In addition, this runs various hooks.
2be55c9c 722
8c17509e
RS
723Either F1 or F2 receives FILE as the sole argument.
724The decision of which one to call is based on IN-OTHER-WINDOW
725and on the global variable `ff-always-in-other-window'.
2be55c9c 726
8c17509e
RS
727F1 and F2 are typically `find-file' / `find-file-other-window'
728or `switch-to-buffer' / `switch-to-buffer-other-window' function pairs.
729
98d775e5 730If optional NEW-FILE is t, then a special hook (`ff-file-created-hooks') is
8c17509e 731called before `ff-post-load-hooks'."
2be55c9c
RS
732 (if ff-pre-load-hooks
733 (run-hooks 'ff-pre-load-hooks))
734 (if (or
735 (and in-other-window (not ff-always-in-other-window))
736 (and (not in-other-window) ff-always-in-other-window))
737 (funcall f2 file)
738 (funcall f1 file))
739 (if new-file
740 (if ff-file-created-hooks
741 (run-hooks 'ff-file-created-hooks)))
742 (if ff-post-load-hooks
743 (run-hooks 'ff-post-load-hooks)))
744
745(defun ff-find-file (file &optional in-other-window new-file)
91afecb3 746 "Like `find-file', but may show the file in another window."
98d775e5
DL
747 (ff-switch-file 'find-file
748 'find-file-other-window
2be55c9c
RS
749 file in-other-window new-file))
750
91afecb3
RS
751(defun ff-switch-to-buffer (buffer-or-name &optional in-other-window)
752 "Like `switch-to-buffer', but may show the buffer in another window."
2be55c9c 753
98d775e5
DL
754 (ff-switch-file 'switch-to-buffer
755 'switch-to-buffer-other-window
91afecb3 756 buffer-or-name in-other-window nil))
2be55c9c 757
6e9aac74
RS
758;;;###autoload
759(defun ff-mouse-find-other-file (event)
760 "Visit the file you click on."
761 (interactive "e")
762 (save-excursion
98d775e5 763 (mouse-set-point event)
6e9aac74 764 (ff-find-other-file nil)))
2be55c9c 765
6e9aac74
RS
766;;;###autoload
767(defun ff-mouse-find-other-file-other-window (event)
98d775e5 768 "Visit the file you click on in another window."
6e9aac74
RS
769 (interactive "e")
770 (save-excursion
98d775e5 771 (mouse-set-point event)
6e9aac74 772 (ff-find-other-file t)))
2be55c9c 773
2be55c9c
RS
774;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
775;; This section offers an example of user defined function to select files
776
8c17509e 777(defun ff-upcase-p (string &optional start end)
98d775e5 778 "Return t if STRING is all uppercase.
8c17509e 779Given START and/or END, checks between these characters."
2be55c9c
RS
780 (let (match str)
781 (if (not start)
782 (setq start 0))
783 (if (not end)
784 (setq end (length string)))
785 (if (= start end)
786 (setq end (1+ end)))
787 (setq str (substring string start end))
98d775e5 788 (if (and
2be55c9c
RS
789 (ff-string-match "[A-Z]+" str)
790 (setq match (match-data))
791 (= (car match) 0)
792 (= (car (cdr match)) (length str)))
793 t
794 nil)))
795
796(defun ff-cc-hh-converter (arg)
8c17509e
RS
797 "Discriminate file extensions.
798Build up a new file list based possibly on part of the directory name
799and the name of the file passed in."
2be55c9c 800 (ff-string-match "\\(.*\\)/\\([^/]+\\)/\\([^.]+\\).\\([^/]+\\)$" arg)
98d775e5 801 (let ((path (if (match-beginning 1)
2be55c9c 802 (substring arg (match-beginning 1) (match-end 1)) nil))
98d775e5 803 (dire (if (match-beginning 2)
2be55c9c 804 (substring arg (match-beginning 2) (match-end 2)) nil))
98d775e5 805 (file (if (match-beginning 3)
2be55c9c 806 (substring arg (match-beginning 3) (match-end 3)) nil))
98d775e5 807 (extn (if (match-beginning 4)
2be55c9c
RS
808 (substring arg (match-beginning 4) (match-end 4)) nil))
809 return-list)
810 (cond
811 ;; fooZapJunk.cc => ZapJunk.{hh,h} or fooZapJunk.{hh,h}
98d775e5 812 ((and (string= extn "cc")
2be55c9c
RS
813 (ff-string-match "^\\([a-z]+\\)\\([A-Z].+\\)$" file))
814 (let ((stub (substring file (match-beginning 2) (match-end 2))))
815 (setq dire (upcase (substring file (match-beginning 1) (match-end 1))))
816 (setq return-list (list (concat stub ".hh")
817 (concat stub ".h")
818 (concat file ".hh")
819 (concat file ".h")))
820 ))
821 ;; FOO/ZapJunk.hh => fooZapJunk.{cc,C} or ZapJunk.{cc,C}
8c17509e 822 ((and (string= extn "hh") (ff-upcase-p dire) file)
2be55c9c 823 (let ((stub (concat (downcase dire) file)))
98d775e5 824 (setq return-list (list (concat stub ".cc")
2be55c9c
RS
825 (concat stub ".C")
826 (concat file ".cc")
827 (concat file ".C")))
828 ))
829 ;; zap.cc => zap.hh or zap.h
830 ((string= extn "cc")
831 (let ((stub file))
832 (setq return-list (list (concat stub ".hh")
833 (concat stub ".h")))
834 ))
835 ;; zap.hh => zap.cc or zap.C
836 ((string= extn "hh")
837 (let ((stub file))
838 (setq return-list (list (concat stub ".cc")
839 (concat stub ".C")))
840 ))
98d775e5 841 (t
2be55c9c
RS
842 nil))
843
844 return-list))
845
846;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
847;; This section offers an example of user defined function to place point.
848;; The regexps are Ada specific.
849
850(defvar ff-function-name nil "Name of the function we are in.")
851
97b7ec0b 852(eval-when-compile (require 'ada-mode))
2be55c9c
RS
853
854;; bind with (setq ff-pre-load-hooks 'ff-which-function-are-we-in)
855;;
856(defun ff-which-function-are-we-in ()
8c17509e
RS
857 "Return the name of the function whose definition/declaration point is in.
858Also remember that name in `ff-function-name'."
2be55c9c
RS
859
860 (setq ff-function-name nil)
861
862 (save-excursion
863 (if (re-search-backward ada-procedure-start-regexp nil t)
864 (setq ff-function-name (buffer-substring (match-beginning 0)
865 (match-end 0)))
866 ; we didn't find a procedure start, perhaps there is a package
867 (if (re-search-backward ada-package-start-regexp nil t)
868 (setq ff-function-name (buffer-substring (match-beginning 0)
869 (match-end 0)))
870 ))))
871
872;; bind with (setq ff-post-load-hooks 'ff-set-point-accordingly)
873;;
874(defun ff-set-point-accordingly ()
8c17509e 875 "Find the function specified in `ff-function-name'.
2ab6bb14 876That name was previously determined by `ff-which-function-are-we-in'."
2be55c9c
RS
877 (if ff-function-name
878 (progn
879 (goto-char (point-min))
880 (search-forward ff-function-name nil t))))
881
98d775e5 882(provide 'find-file)
2be55c9c 883
98d775e5 884;;; find-file.el ends here