*** empty log message ***
[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
6cc6a2e9 7;; Copyright (C) 1994, 1995, 2002 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"))))
71296446 73;;
2be55c9c 74;; ff-cc-hh-converter is included at the end of this file as a reference.
71296446 75;;
2be55c9c
RS
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;;
03741cc5
SM
104;; - ff-pre-find-hook - called before the search for the other file starts
105;; - ff-not-found-hook - called when the other file could not be found
106;; - ff-pre-load-hook - called just before the other file is 'loaded'
107;; - ff-file-created-hook - called when the other file is created
108;; - ff-post-load-hook - called just after the other file is 'loaded'
2be55c9c 109;;
03741cc5 110;; The *load-hook 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
03741cc5 133(defcustom ff-pre-find-hook nil
14d4446b
SE
134 "*List of functions to be called before the search for the file starts."
135 :type 'hook
136 :group 'ff)
137
03741cc5 138(defcustom ff-pre-load-hook nil
14d4446b
SE
139 "*List of functions to be called before the other file is loaded."
140 :type 'hook
141 :group 'ff)
142
03741cc5 143(defcustom ff-post-load-hook nil
14d4446b
SE
144 "*List of functions to be called after the other file is loaded."
145 :type 'hook
146 :group 'ff)
147
03741cc5 148(defcustom ff-not-found-hook nil
14d4446b
SE
149 "*List of functions to be called if the other file could not be found."
150 :type 'hook
151 :group 'ff)
152
03741cc5 153(defcustom ff-file-created-hook nil
14d4446b
SE
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)))))
2be55c9c 191 )
98d775e5
DL
192 "*A list of regular expressions for `ff-find-file'.
193Specifies how to recognise special constructs such as include files
194etc. and an associated method for extracting the filename from that
195construct.")
2be55c9c 196
f7583fb6 197(defvaralias 'ff-related-file-alist 'ff-other-file-alist)
14d4446b 198(defcustom ff-other-file-alist 'cc-other-file-alist
2be55c9c
RS
199 "*Alist of extensions to find given the current file's extension.
200
201This list should contain the most used extensions before the others,
202since the search algorithm searches sequentially through each
8c17509e
RS
203directory specified in `ff-search-directories'. If a file is not found,
204a new one is created with the first matching extension (`.cc' yields `.hh').
14d4446b
SE
205This alist should be set by the major mode."
206 :type '(choice (repeat (list regexp (choice (repeat string) function)))
207 symbol)
208 :group 'ff)
2be55c9c 209
14d4446b 210(defcustom ff-search-directories 'cc-search-directories
2be55c9c
RS
211 "*List of directories to search for a specific file.
212
8c17509e 213Set by default to `cc-search-directories', expanded at run-time.
2be55c9c
RS
214
215This list is searched through with each extension specified in
8c17509e 216`ff-other-file-alist' that matches this file's extension. So the
2be55c9c
RS
217longer the list, the longer it'll take to realise that a file
218may not exist.
219
98d775e5 220A typical format is
2be55c9c 221
17feeeb2 222 '(\".\" \"/usr/include\" \"$PROJECT/*/include\")
2be55c9c 223
8c17509e 224Environment variables can be inserted between slashes (`/').
2be55c9c 225They will be replaced by their definition. If a variable does
8c17509e 226not exist, it is replaced (silently) with an empty string.
2be55c9c 227
8c17509e
RS
228The stars are *not* wildcards: they are searched for together with
229the preceding slash. The star represents all the subdirectories except
14d4446b
SE
230`..', and each of these subdirectories will be searched in turn."
231 :type '(choice (repeat directory) symbol)
232 :group 'ff)
2be55c9c 233
14d4446b 234(defcustom cc-search-directories
17feeeb2 235 '("." "/usr/include" "/usr/local/include/*")
14d4446b
SE
236 "*See the description of the `ff-search-directories' variable."
237 :type '(repeat directory)
238 :group 'ff)
2be55c9c 239
14d4446b 240(defcustom cc-other-file-alist
2be55c9c
RS
241 '(
242 ("\\.cc$" (".hh" ".h"))
243 ("\\.hh$" (".cc" ".C"))
244
245 ("\\.c$" (".h"))
246 ("\\.h$" (".c" ".cc" ".C" ".CC" ".cxx" ".cpp"))
247
248 ("\\.C$" (".H" ".hh" ".h"))
249 ("\\.H$" (".C" ".CC"))
250
251 ("\\.CC$" (".HH" ".H" ".hh" ".h"))
252 ("\\.HH$" (".CC"))
253
254 ("\\.cxx$" (".hh" ".h"))
255 ("\\.cpp$" (".hh" ".h"))
256 )
257 "*Alist of extensions to find given the current file's extension.
258
259This list should contain the most used extensions before the others,
260since the search algorithm searches sequentially through each directory
8c17509e 261specified in `ff-search-directories'. If a file is not found, a new one
14d4446b
SE
262is created with the first matching extension (`.cc' yields `.hh')."
263 :type '(repeat (list regexp (choice (repeat string) function)))
264 :group 'ff)
2be55c9c 265
14d4446b 266(defcustom modula2-other-file-alist
2be55c9c
RS
267 '(
268 ("\\.mi$" (".md")) ;; Modula-2 module definition
269 ("\\.md$" (".mi")) ;; and implementation.
270 )
14d4446b
SE
271 "*See the description for the `ff-search-directories' variable."
272 :type '(repeat (list regexp (choice (repeat string) function)))
273 :group 'ff)
274
2be55c9c
RS
275
276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
277;; No user definable variables beyond this point!
278;; ==============================================
279
03741cc5
SM
280(make-variable-buffer-local 'ff-pre-find-hook)
281(make-variable-buffer-local 'ff-pre-load-hook)
282(make-variable-buffer-local 'ff-post-load-hook)
283(make-variable-buffer-local 'ff-not-found-hook)
284(make-variable-buffer-local 'ff-file-created-hook)
2be55c9c
RS
285(make-variable-buffer-local 'ff-case-fold-search)
286(make-variable-buffer-local 'ff-always-in-other-window)
287(make-variable-buffer-local 'ff-ignore-include)
288(make-variable-buffer-local 'ff-quiet-mode)
289(make-variable-buffer-local 'ff-other-file-alist)
290(make-variable-buffer-local 'ff-search-directories)
291
292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
293;; User entry points
294
295;;;###autoload
296(defun ff-get-other-file (&optional in-other-window)
8c17509e 297 "Find the header or source file corresponding to this file.
98d775e5 298See also the documentation for `ff-find-other-file'.
2be55c9c 299
8c17509e 300If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
2be55c9c
RS
301 (interactive "P")
302 (let ((ignore ff-ignore-include))
303 (setq ff-ignore-include t)
304 (ff-find-the-other-file in-other-window)
305 (setq ff-ignore-include ignore)))
306
0af8ad28 307;;;###autoload
f7583fb6
RS
308(defalias 'ff-find-related-file 'ff-find-other-file)
309
2be55c9c
RS
310;;;###autoload
311(defun ff-find-other-file (&optional in-other-window ignore-include)
8c17509e
RS
312 "Find the header or source file corresponding to this file.
313Being on a `#include' line pulls in that file.
2be55c9c 314
8c17509e
RS
315If optional IN-OTHER-WINDOW is non-nil, find the file in the other window.
316If optional IGNORE-INCLUDE is non-nil, ignore being on `#include' lines.
2be55c9c
RS
317
318Variables of interest include:
319
98d775e5
DL
320 - `ff-case-fold-search'
321 Non-nil means ignore cases in matches (see `case-fold-search').
2be55c9c
RS
322 If you have extensions in different cases, you will want this to be nil.
323
98d775e5 324 - `ff-always-in-other-window'
2be55c9c 325 If non-nil, always open the other file in another window, unless an
98d775e5 326 argument is given to `ff-find-other-file'.
2be55c9c 327
98d775e5 328 - `ff-ignore-include'
2be55c9c
RS
329 If non-nil, ignores #include lines.
330
98d775e5 331 - `ff-always-try-to-create'
2be55c9c
RS
332 If non-nil, always attempt to create the other file if it was not found.
333
98d775e5 334 - `ff-quiet-mode'
2be55c9c
RS
335 If non-nil, traces which directories are being searched.
336
98d775e5
DL
337 - `ff-special-constructs'
338 A list of regular expressions specifying how to recognise special
339 constructs such as include files etc, and an associated method for
2be55c9c
RS
340 extracting the filename from that construct.
341
98d775e5 342 - `ff-other-file-alist'
2be55c9c
RS
343 Alist of extensions to find given the current file's extension.
344
98d775e5 345 - `ff-search-directories'
2be55c9c 346 List of directories searched through with each extension specified in
98d775e5 347 `ff-other-file-alist' that matches this file's extension.
2be55c9c 348
03741cc5 349 - `ff-pre-find-hook'
2be55c9c
RS
350 List of functions to be called before the search for the file starts.
351
03741cc5 352 - `ff-pre-load-hook'
2be55c9c
RS
353 List of functions to be called before the other file is loaded.
354
03741cc5 355 - `ff-post-load-hook'
2be55c9c
RS
356 List of functions to be called after the other file is loaded.
357
03741cc5 358 - `ff-not-found-hook'
2be55c9c
RS
359 List of functions to be called if the other file could not be found.
360
03741cc5 361 - `ff-file-created-hook'
2be55c9c
RS
362 List of functions to be called if the other file has been created."
363 (interactive "P")
364 (let ((ignore ff-ignore-include))
365 (setq ff-ignore-include ignore-include)
366 (ff-find-the-other-file in-other-window)
367 (setq ff-ignore-include ignore)))
368
369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
370;; Support functions
371
2be55c9c 372(defun ff-find-the-other-file (&optional in-other-window)
8c17509e
RS
373 "Find the header or source file corresponding to the current file.
374Being on a `#include' line pulls in that file, but see the help on
375the `ff-ignore-include' variable.
2be55c9c 376
8c17509e 377If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
2be55c9c
RS
378
379 (let (match ;; matching regexp for this file
380 suffixes ;; set of replacing regexps for the matching regexp
381 action ;; function to generate the names of the other files
382 fname ;; basename of this file
383 pos ;; where we start matching filenames
384 stub ;; name of the file without extension
385 alist ;; working copy of the list of file extensions
386 pathname ;; the pathname of the file or the #include line
387 default-name ;; file we should create if none found
98d775e5
DL
388 format ;; what we have to match
389 found ;; name of the file or buffer found - nil if none
2be55c9c
RS
390 dirs ;; local value of ff-search-directories
391 no-match) ;; whether we know about this kind of file
392
03741cc5 393 (run-hooks 'ff-pre-find-hook 'ff-pre-find-hooks)
2be55c9c
RS
394
395 (message "Working...")
396
397 (setq dirs
398 (if (symbolp ff-search-directories)
399 (ff-list-replace-env-vars (symbol-value ff-search-directories))
400 (ff-list-replace-env-vars ff-search-directories)))
401
402 (save-excursion
403 (beginning-of-line 1)
404 (setq fname (ff-treat-as-special)))
405
406 (cond
407 ((and (not ff-ignore-include) fname)
408 (setq default-name fname)
409 (setq found (ff-get-file dirs fname nil in-other-window)))
410
411 ;; let's just get the corresponding file
412 (t
413 (setq alist (if (symbolp ff-other-file-alist)
414 (symbol-value ff-other-file-alist)
415 ff-other-file-alist)
416 pathname (if (buffer-file-name)
417 (buffer-file-name)
418 "/none.none"))
419
f4a97216 420 (setq fname (file-name-nondirectory pathname)
2be55c9c
RS
421 no-match nil
422 match (car alist))
423
424 ;; find the table entry corresponding to this file
425 (setq pos (ff-string-match (car match) fname))
426 (while (and match (if (and pos (>= pos 0)) nil (not pos)))
427 (setq alist (cdr alist))
428 (setq match (car alist))
429 (setq pos (ff-string-match (car match) fname)))
430
431 ;; no point going on if we haven't found anything
432 (if (not match)
433 (setq no-match t)
434
435 ;; otherwise, suffixes contains what we need
436 (setq suffixes (car (cdr match))
437 action (car (cdr match))
438 found nil)
439
98d775e5 440 ;; if we have a function to generate new names,
2be55c9c
RS
441 ;; invoke it with the name of the current file
442 (if (and (atom action) (fboundp action))
443 (progn
444 (setq suffixes (funcall action (buffer-file-name))
445 match (cons (car match) (list suffixes))
446 stub nil
447 default-name (car suffixes)))
448
449 ;; otherwise build our filename stub
98d775e5 450 (cond
2be55c9c
RS
451
452 ;; get around the problem that 0 and nil both mean false!
453 ((= pos 0)
454 (setq format "")
455 (setq stub "")
456 )
457
458 (t
459 (setq format (concat "\\(.+\\)" (car match)))
460 (string-match format fname)
461 (setq stub (substring fname (match-beginning 1) (match-end 1)))
462 ))
463
464 ;; if we find nothing, we should try to get a file like this one
465 (setq default-name
466 (concat stub (car (car (cdr match))))))
467
468 ;; do the real work - find the file
98d775e5 469 (setq found
2be55c9c
RS
470 (ff-get-file dirs
471 stub
98d775e5 472 suffixes
2be55c9c
RS
473 in-other-window)))))
474
475 (cond
476 (no-match ;; could not even determine the other file
477 (message ""))
478
98d775e5 479 (t
2be55c9c
RS
480 (cond
481
482 ((not found) ;; could not find the other file
483
03741cc5 484 (run-hooks 'ff-not-found-hook 'ff-not-found-hooks)
2be55c9c 485
98d775e5 486 (cond
2be55c9c
RS
487 (ff-always-try-to-create ;; try to create the file
488 (let (name pathname)
489
490 (setq name
491 (expand-file-name
492 (read-file-name
493 (format "Find or create %s in: " default-name)
494 default-directory default-name nil)))
71296446 495
2be55c9c
RS
496 (setq pathname
497 (if (file-directory-p name)
498 (concat (file-name-as-directory name) default-name)
499 (setq found name)))
71296446 500
2be55c9c
RS
501 (ff-find-file pathname in-other-window t)))
502
503 (t ;; don't create the file, just whinge
988021a7 504 (message "No file found for %s" fname))))
2be55c9c
RS
505
506 (t ;; matching file found
507 nil))))
508
509 found)) ;; return buffer-name or filename
510
274890d9
RS
511(defun ff-other-file-name ()
512 "Return name of the header or source file corresponding to the current file.
513Being on a `#include' line pulls in that file, but see the help on
514the `ff-ignore-include' variable."
515
516 (let (match ;; matching regexp for this file
517 suffixes ;; set of replacing regexps for the matching regexp
518 action ;; function to generate the names of the other files
519 fname ;; basename of this file
520 pos ;; where we start matching filenames
521 stub ;; name of the file without extension
522 alist ;; working copy of the list of file extensions
523 pathname ;; the pathname of the file or the #include line
524 default-name ;; file we should create if none found
525 format ;; what we have to match
526 found ;; name of the file or buffer found - nil if none
527 dirs ;; local value of ff-search-directories
528 no-match) ;; whether we know about this kind of file
529
530 (message "Working...")
531
532 (setq dirs
533 (if (symbolp ff-search-directories)
534 (ff-list-replace-env-vars (symbol-value ff-search-directories))
535 (ff-list-replace-env-vars ff-search-directories)))
536
537 (save-excursion
538 (beginning-of-line 1)
539 (setq fname (ff-treat-as-special)))
540
541 (cond
542 ((and (not ff-ignore-include) fname)
543 (setq default-name fname)
544 (setq found (ff-get-file-name dirs fname nil)))
545
546 ;; let's just get the corresponding file
547 (t
548 (setq alist (if (symbolp ff-other-file-alist)
549 (symbol-value ff-other-file-alist)
550 ff-other-file-alist)
551 pathname (if (buffer-file-name)
552 (buffer-file-name)
553 "/none.none"))
554
555 (setq fname (file-name-nondirectory pathname)
556 no-match nil
557 match (car alist))
558
559 ;; find the table entry corresponding to this file
560 (setq pos (ff-string-match (car match) fname))
561 (while (and match (if (and pos (>= pos 0)) nil (not pos)))
562 (setq alist (cdr alist))
563 (setq match (car alist))
564 (setq pos (ff-string-match (car match) fname)))
565
566 ;; no point going on if we haven't found anything
567 (if (not match)
568 (setq no-match t)
569
570 ;; otherwise, suffixes contains what we need
571 (setq suffixes (car (cdr match))
572 action (car (cdr match))
573 found nil)
574
575 ;; if we have a function to generate new names,
576 ;; invoke it with the name of the current file
577 (if (and (atom action) (fboundp action))
578 (progn
579 (setq suffixes (funcall action (buffer-file-name))
580 match (cons (car match) (list suffixes))
581 stub nil
582 default-name (car suffixes)))
583
584 ;; otherwise build our filename stub
585 (cond
586
587 ;; get around the problem that 0 and nil both mean false!
588 ((= pos 0)
589 (setq format "")
590 (setq stub "")
591 )
592
593 (t
594 (setq format (concat "\\(.+\\)" (car match)))
595 (string-match format fname)
596 (setq stub (substring fname (match-beginning 1) (match-end 1)))
597 ))
598
599 ;; if we find nothing, we should try to get a file like this one
600 (setq default-name
601 (concat stub (car (car (cdr match))))))
602
603 ;; do the real work - find the file
604 (setq found
605 (ff-get-file-name dirs stub suffixes)))))
606 found)) ;; return buffer-name or filename
607
98d775e5
DL
608(defun ff-get-file (search-dirs filename &optional suffix-list other-window)
609 "Find a file in the SEARCH-DIRS with the given FILENAME (or filename stub).
610If (optional) SUFFIX-LIST is nil, search for fname, otherwise search
611for fname with each of the given suffixes. Get the file or the buffer
612corresponding to the name of the first file found, or nil."
613 (let ((filename (ff-get-file-name search-dirs filename suffix-list)))
71296446 614
98d775e5 615 (cond
2be55c9c
RS
616 ((not filename)
617 nil)
618
91afecb3
RS
619 ((bufferp (get-file-buffer filename))
620 (ff-switch-to-buffer (get-file-buffer filename) other-window)
2be55c9c 621 filename)
71296446 622
2be55c9c
RS
623 ((file-exists-p filename)
624 (ff-find-file filename other-window nil)
625 filename)
626
627 (t
628 nil))))
629
630(defun ff-get-file-name (search-dirs fname-stub &optional suffix-list)
98d775e5
DL
631 "Find a file in SEARCH-DIRS with the given name (or stub) FNAME-STUB.
632If (optional) SUFFIX-LIST is nil, search for FNAME-STUB, otherwise
633search for FNAME-STUB with each of the given suffixes. Return the
634name of the first file found."
2be55c9c
RS
635 (let* (dirs ;; working copy of dirs to search
636 dir ;; the current dir considered
637 file ;; filename being looked for
638 rest ;; pathname after first /*
639 this-suffix ;; the suffix we are currently considering
640 suffixes ;; working copy of suffix-list
641 filename ;; built filename
642 blist ;; list of live buffers
643 buf ;; current buffer in blist
644 found) ;; whether we have found anything
645
646 (setq suffixes suffix-list)
647
648 ;; suffixes is nil => fname-stub is the file we are looking for
649 ;; otherwise fname-stub is a stub, and we append a suffix
650 (if suffixes
651 (setq this-suffix (car suffixes))
652 (setq this-suffix "")
653 (setq suffixes (list "")))
71296446 654
2be55c9c
RS
655 ;; find whether the file is in a buffer first
656 (while (and suffixes (not found))
657 (setq filename (concat fname-stub this-suffix))
658
659 (if (not ff-quiet-mode)
988021a7 660 (message "Finding buffer %s..." filename))
2be55c9c 661
988021a7
RS
662 (if (bufferp (get-file-buffer filename))
663 (setq found (buffer-file-name (get-file-buffer filename))))
2be55c9c
RS
664
665 (setq blist (buffer-list))
666 (setq buf (buffer-name (car blist)))
667 (while (and blist (not found))
668
669 (if (string-match (concat filename "<[0-9]+>") buf)
17feeeb2 670 (setq found (buffer-file-name (car blist))))
2be55c9c
RS
671
672 (setq blist (cdr blist))
673 (setq buf (buffer-name (car blist))))
674
675 (setq suffixes (cdr suffixes))
676 (setq this-suffix (car suffixes)))
677
678 ;; now look for the real file
679 (setq dirs search-dirs)
680 (setq dir (car dirs))
681 (while (and (not found) dirs)
682
683 (setq suffixes suffix-list)
684
685 ;; if dir does not contain '/*', look for the file
686 (if (and dir (not (string-match "\\([^*]*\\)/\\\*\\(/.*\\)*" dir)))
98d775e5 687 (progn
71296446 688
2be55c9c
RS
689 ;; suffixes is nil => fname-stub is the file we are looking for
690 ;; otherwise fname-stub is a stub, and we append a suffix
691 (if suffixes
692 (setq this-suffix (car suffixes))
693 (setq this-suffix "")
694 (setq suffixes (list "")))
71296446 695
2be55c9c
RS
696 (while (and suffixes (not found))
697
698 (setq filename (concat fname-stub this-suffix))
699 (setq file (concat dir "/" filename))
71296446 700
2be55c9c 701 (if (not ff-quiet-mode)
988021a7 702 (message "Finding %s..." file))
2be55c9c
RS
703
704 (if (file-exists-p file)
705 (setq found file))
71296446 706
2be55c9c
RS
707 (setq suffixes (cdr suffixes))
708 (setq this-suffix (car suffixes))))
709
710 ;; otherwise dir matches the '/*', so search each dir separately
711 (progn
712 (if (match-beginning 2)
713 (setq rest (substring dir (match-beginning 2) (match-end 2)))
714 (setq rest "")
715 )
716 (setq dir (substring dir (match-beginning 1) (match-end 1)))
717
718 (let ((dirlist (ff-all-dirs-under dir '("..")))
719 this-dir compl-dirs)
720
721 (setq this-dir (car dirlist))
722 (while dirlist
723 (setq compl-dirs
724 (append
725 compl-dirs
726 (list (concat this-dir rest))
727 ))
728 (setq dirlist (cdr dirlist))
729 (setq this-dir (car dirlist)))
730
731 (if compl-dirs
732 (setq found (ff-get-file-name compl-dirs
733 fname-stub
734 suffix-list))))))
735 (setq dirs (cdr dirs))
736 (setq dir (car dirs)))
737
738 (if found
739 (message "%s found" found))
740
741 found))
742
743(defun ff-string-match (regexp string &optional start)
91afecb3 744 "Like `string-match', but set `case-fold-search' temporarily.
8c17509e
RS
745The value used comes from `ff-case-fold-search'."
746 (let ((case-fold-search ff-case-fold-search))
2be55c9c 747 (if regexp
8c17509e 748 (string-match regexp string start))))
2be55c9c
RS
749
750(defun ff-list-replace-env-vars (search-list)
751 "Replace environment variables (of the form $VARIABLE) in SEARCH-LIST."
752 (let (list
753 (var (car search-list)))
754 (while search-list
755 (if (string-match "\\(.*\\)\\$[({]*\\([a-zA-Z0-9_]+\\)[)}]*\\(.*\\)" var)
756 (setq var
757 (concat
758 (substring var (match-beginning 1) (match-end 1))
759 (getenv (substring var (match-beginning 2) (match-end 2)))
760 (substring var (match-beginning 3) (match-end 3)))))
761 (setq search-list (cdr search-list))
762 (setq list (cons var list))
763 (setq var (car search-list)))
764 (setq search-list (reverse list))))
765
766(defun ff-treat-as-special ()
98d775e5 767 "Return the file to look for if the construct was special, else nil.
91afecb3 768The construct is defined in the variable `ff-special-constructs'."
2be55c9c
RS
769 (let* (fname
770 (list ff-special-constructs)
771 (elem (car list))
772 (regexp (car elem))
773 (match (cdr elem)))
774 (while (and list (not fname))
775 (if (and (looking-at regexp) match)
776 (setq fname (funcall match)))
777 (setq list (cdr list))
778 (setq elem (car list))
779 (setq regexp (car elem))
780 (setq match (cdr elem)))
781 fname))
782
783(defun ff-basename (string)
98d775e5 784 "Return the basename of pathname STRING."
2be55c9c
RS
785 (setq string (concat "/" string))
786 (string-match ".*/\\([^/]+\\)$" string)
787 (setq string (substring string (match-beginning 1) (match-end 1))))
788
789(defun ff-all-dirs-under (here &optional exclude)
8c17509e 790 "Get all the directory files under directory HERE.
2be55c9c
RS
791Exclude all files in the optional EXCLUDE list."
792 (if (file-directory-p here)
793 (condition-case nil
794 (progn
795 (let ((files (directory-files here t))
796 (dirlist (list))
797 file)
798 (while files
799 (setq file (car files))
800 (if (and
801 (file-directory-p file)
802 (not (member (ff-basename file) exclude)))
803 (setq dirlist (cons file dirlist)))
804 (setq files (cdr files)))
805 (setq dirlist (reverse dirlist))))
806 (error nil))
807 nil))
808
809(defun ff-switch-file (f1 f2 file &optional in-other-window new-file)
8c17509e
RS
810 "Call F1 or F2 on FILE, according to IN-OTHER-WINDOW.
811In addition, this runs various hooks.
2be55c9c 812
8c17509e
RS
813Either F1 or F2 receives FILE as the sole argument.
814The decision of which one to call is based on IN-OTHER-WINDOW
815and on the global variable `ff-always-in-other-window'.
2be55c9c 816
8c17509e
RS
817F1 and F2 are typically `find-file' / `find-file-other-window'
818or `switch-to-buffer' / `switch-to-buffer-other-window' function pairs.
819
03741cc5
SM
820If optional NEW-FILE is t, then a special hook (`ff-file-created-hook') is
821called before `ff-post-load-hook'."
822 (run-hooks 'ff-pre-load-hook 'ff-pre-load-hooks)
2be55c9c
RS
823 (if (or
824 (and in-other-window (not ff-always-in-other-window))
825 (and (not in-other-window) ff-always-in-other-window))
826 (funcall f2 file)
827 (funcall f1 file))
828 (if new-file
03741cc5
SM
829 (run-hooks 'ff-file-created-hook 'ff-file-created-hooks))
830 (run-hooks 'ff-post-load-hook 'ff-post-load-hooks))
2be55c9c
RS
831
832(defun ff-find-file (file &optional in-other-window new-file)
91afecb3 833 "Like `find-file', but may show the file in another window."
98d775e5
DL
834 (ff-switch-file 'find-file
835 'find-file-other-window
2be55c9c
RS
836 file in-other-window new-file))
837
91afecb3
RS
838(defun ff-switch-to-buffer (buffer-or-name &optional in-other-window)
839 "Like `switch-to-buffer', but may show the buffer in another window."
2be55c9c 840
98d775e5
DL
841 (ff-switch-file 'switch-to-buffer
842 'switch-to-buffer-other-window
91afecb3 843 buffer-or-name in-other-window nil))
2be55c9c 844
6e9aac74
RS
845;;;###autoload
846(defun ff-mouse-find-other-file (event)
847 "Visit the file you click on."
848 (interactive "e")
849 (save-excursion
98d775e5 850 (mouse-set-point event)
6e9aac74 851 (ff-find-other-file nil)))
2be55c9c 852
6e9aac74
RS
853;;;###autoload
854(defun ff-mouse-find-other-file-other-window (event)
98d775e5 855 "Visit the file you click on in another window."
6e9aac74
RS
856 (interactive "e")
857 (save-excursion
98d775e5 858 (mouse-set-point event)
6e9aac74 859 (ff-find-other-file t)))
2be55c9c 860
2be55c9c
RS
861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
862;; This section offers an example of user defined function to select files
863
8c17509e 864(defun ff-upcase-p (string &optional start end)
98d775e5 865 "Return t if STRING is all uppercase.
8c17509e 866Given START and/or END, checks between these characters."
2be55c9c
RS
867 (let (match str)
868 (if (not start)
869 (setq start 0))
870 (if (not end)
871 (setq end (length string)))
872 (if (= start end)
873 (setq end (1+ end)))
874 (setq str (substring string start end))
98d775e5 875 (if (and
2be55c9c
RS
876 (ff-string-match "[A-Z]+" str)
877 (setq match (match-data))
878 (= (car match) 0)
879 (= (car (cdr match)) (length str)))
880 t
881 nil)))
882
883(defun ff-cc-hh-converter (arg)
8c17509e
RS
884 "Discriminate file extensions.
885Build up a new file list based possibly on part of the directory name
886and the name of the file passed in."
2be55c9c 887 (ff-string-match "\\(.*\\)/\\([^/]+\\)/\\([^.]+\\).\\([^/]+\\)$" arg)
98d775e5 888 (let ((path (if (match-beginning 1)
2be55c9c 889 (substring arg (match-beginning 1) (match-end 1)) nil))
98d775e5 890 (dire (if (match-beginning 2)
2be55c9c 891 (substring arg (match-beginning 2) (match-end 2)) nil))
98d775e5 892 (file (if (match-beginning 3)
2be55c9c 893 (substring arg (match-beginning 3) (match-end 3)) nil))
98d775e5 894 (extn (if (match-beginning 4)
2be55c9c
RS
895 (substring arg (match-beginning 4) (match-end 4)) nil))
896 return-list)
897 (cond
898 ;; fooZapJunk.cc => ZapJunk.{hh,h} or fooZapJunk.{hh,h}
98d775e5 899 ((and (string= extn "cc")
2be55c9c
RS
900 (ff-string-match "^\\([a-z]+\\)\\([A-Z].+\\)$" file))
901 (let ((stub (substring file (match-beginning 2) (match-end 2))))
902 (setq dire (upcase (substring file (match-beginning 1) (match-end 1))))
903 (setq return-list (list (concat stub ".hh")
904 (concat stub ".h")
905 (concat file ".hh")
906 (concat file ".h")))
907 ))
908 ;; FOO/ZapJunk.hh => fooZapJunk.{cc,C} or ZapJunk.{cc,C}
8c17509e 909 ((and (string= extn "hh") (ff-upcase-p dire) file)
2be55c9c 910 (let ((stub (concat (downcase dire) file)))
98d775e5 911 (setq return-list (list (concat stub ".cc")
2be55c9c
RS
912 (concat stub ".C")
913 (concat file ".cc")
914 (concat file ".C")))
915 ))
916 ;; zap.cc => zap.hh or zap.h
917 ((string= extn "cc")
918 (let ((stub file))
919 (setq return-list (list (concat stub ".hh")
920 (concat stub ".h")))
921 ))
922 ;; zap.hh => zap.cc or zap.C
923 ((string= extn "hh")
924 (let ((stub file))
925 (setq return-list (list (concat stub ".cc")
926 (concat stub ".C")))
927 ))
98d775e5 928 (t
2be55c9c 929 nil))
71296446 930
2be55c9c
RS
931 return-list))
932
933;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
934;; This section offers an example of user defined function to place point.
935;; The regexps are Ada specific.
936
937(defvar ff-function-name nil "Name of the function we are in.")
938
03741cc5 939;; bind with (setq ff-pre-load-hook 'ff-which-function-are-we-in)
2be55c9c
RS
940;;
941(defun ff-which-function-are-we-in ()
8c17509e
RS
942 "Return the name of the function whose definition/declaration point is in.
943Also remember that name in `ff-function-name'."
2be55c9c
RS
944
945 (setq ff-function-name nil)
946
947 (save-excursion
948 (if (re-search-backward ada-procedure-start-regexp nil t)
949 (setq ff-function-name (buffer-substring (match-beginning 0)
950 (match-end 0)))
951 ; we didn't find a procedure start, perhaps there is a package
952 (if (re-search-backward ada-package-start-regexp nil t)
953 (setq ff-function-name (buffer-substring (match-beginning 0)
954 (match-end 0)))
955 ))))
956
03741cc5 957;; bind with (setq ff-post-load-hook 'ff-set-point-accordingly)
2be55c9c
RS
958;;
959(defun ff-set-point-accordingly ()
8c17509e 960 "Find the function specified in `ff-function-name'.
2ab6bb14 961That name was previously determined by `ff-which-function-are-we-in'."
2be55c9c
RS
962 (if ff-function-name
963 (progn
964 (goto-char (point-min))
965 (search-forward ff-function-name nil t))))
966
98d775e5 967(provide 'find-file)
2be55c9c 968
ab5796a9 969;;; arch-tag: 5a2fc49e-3b0a-4708-9acf-fb14e471a97a
98d775e5 970;;; find-file.el ends here