1d6856ee1b1bf6a995a61fcad390bf02ba35722b
[bpt/emacs.git] / lisp / progmodes / compile.el
1 ;;;!!! dup removal is broken.
2 ;; Run compiler as inferior of Emacs, and parse its error messages.
3 ;; Copyright (C) 1985-1991 Free Software Foundation, Inc.
4
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is distributed in the hope that it will be useful,
8 ;; but WITHOUT ANY WARRANTY. No author or distributor
9 ;; accepts responsibility to anyone for the consequences of using it
10 ;; or for whether it serves any particular purpose or works at all,
11 ;; unless he says so in writing. Refer to the GNU Emacs General Public
12 ;; License for full details.
13
14 ;; Everyone is granted permission to copy, modify and redistribute
15 ;; GNU Emacs, but only under the conditions described in the
16 ;; GNU Emacs General Public License. A copy of this license is
17 ;; supposed to have been given to you along with GNU Emacs so you
18 ;; can know your rights and responsibilities. It should be in a
19 ;; file named COPYING. Among other things, the copyright notice
20 ;; and this notice must be preserved on all copies.
21
22 (provide 'compile)
23
24 (defconst compilation-window-height nil
25 "*Number of lines in a compilation window. If nil, use Emacs default.")
26
27 (defvar compilation-error-list nil
28 "List of error message descriptors for visiting erring functions.
29 Each error descriptor is a cons (or nil).
30 Its car is a marker pointing to an error message.
31 If its cdr is a marker, it points to the text of the line the message is about.
32 If its cdr is a cons, that cons's car is a cons (DIRECTORY . FILE), specifying
33 file the message is about, and its cdr is the number of the line the message
34 is about. Or its cdr may be nil if that error is not interesting.
35
36 The value may be t instead of a list; this means that the buffer of
37 error messages should be reparsed the next time the list of errors is wanted.")
38
39 (defvar compilation-old-error-list nil
40 "Value of `compilation-error-list' after errors were parsed.")
41
42 (defvar compilation-parse-errors-function 'compilation-parse-errors
43 "Function to call (with no args) to parse error messages from a compilation.
44 It should read in the source files which have errors and set
45 `compilation-error-list' to a list with an element for each error message
46 found. See that variable for more info.")
47
48 (defvar compilation-buffer-name-function nil
49 "Function to call with one argument, the name of the major mode of the
50 compilation buffer, to give the buffer a name. It should return a string.
51 If nil, the name \"*compilation*\" is used for compilation buffers,
52 and the name \"*grep*\" is used for grep buffers.
53 \(Actually, the name (concat "*" (downcase major-mode) "*") is used.)")
54
55 (defvar compilation-finish-function nil
56 "Function to call when a compilation process finishes.
57 It is called with two arguments: the compilation buffer, and a string
58 describing how the process finished.")
59
60 (defvar compilation-last-buffer nil
61 "The buffer in which the last compilation was started,
62 or which was used by the last \\[next-error] or \\[compile-goto-error].")
63
64 (defvar compilation-parsing-end nil
65 "Position of end of buffer when last error messages were parsed.")
66
67 (defvar compilation-error-message "No more errors"
68 "Message to print when no more matches for `compilation-error-regexp-alist'
69 are found.")
70
71 (defvar compilation-error-regexp-alist
72 '(
73 ;; 4.3BSD grep, cc, lint pass 1:
74 ;; /usr/src/foo/foo.c(8): warning: w may be used before set
75 ;; or GNU utilities
76 ;; foo.c:8: error message
77 ("^\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2)
78 ;; 4.3BSD lint pass 2
79 ;; strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8)
80 ("[ \t:]+\\([^:( \t\n]+\\)[ \t]*[:(]+[ \t]*\\([0-9]+\\)[:) \t]*$" 1 2)
81 ;; 4.3BSD lint pass 3
82 ;; bloofle defined( /users/wolfgang/foo.c(4) ), but never used
83 ("[ \t(]+\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2)
84 ;; Line 45 of "foo.c": bloofel undefined (who does this?)
85 ("^[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+of[ \t]+\"\\([^\"]+\\)\":" 2 1)
86 ;; Apollo cc, 4.3BSD fc
87 ;; "foo.f", line 3: Error: syntax error near end of statement
88 ("^\"\\([^\"]+\\)\", line \\([0-9]+\\):" 1 2)
89 ;; HP-UX 7.0 fc
90 ;; foo.f :16 some horrible error message
91 ("\\([^ \t:]+\\)[ \t]*:\\([0-9]+\\)" 1 2)
92 ;; IBM AIX PS/2 C version 1.1
93 ;; ****** Error number 140 in line 8 of file errors.c ******
94 ("in line \\([0-9]+\\) of file \\([^ ]+[^. ]\\)\\.? " 2 1)
95 ;; IBM AIX lint is too painful to do right this way. File name
96 ;; prefixes entire sections rather than being on each line.
97 )
98 "Alist (REGEXP FILE-IDX LINE-IDX) of regular expressions to match errors in
99 compilation. If REGEXP matches, the FILE-IDX'th subexpression gives the file
100 name, and the LINE-IDX'th subexpression gives the line number.")
101
102 (defvar compilation-search-path '(nil)
103 "List of directories to search for source files named in error messages.
104 Elements should be directory names, not file names of directories.
105 nil as an element means to try the default directory.")
106
107 (defvar compile-command "make -k "
108 "Last shell command used to do a compilation; default for next compilation.
109
110 Sometimes it is useful for files to supply local values for this variable.
111 You might also use mode hooks to specify it in certain modes, like this:
112
113 (setq c-mode-hook
114 '(lambda () (or (file-exists-p \"makefile\") (file-exists-p \"Makefile\")
115 (progn (make-local-variable 'compile-command)
116 (setq compile-command
117 (concat \"make -k \"
118 buffer-file-name))))))")
119
120 ;;;###autoload
121 (defvar grep-command "grep -n "
122 "Last shell command used to do a grep search; default for next search.
123 Typically \"grep -n\" or \"egrep -n\".
124 \(The \"-n\" option tells grep to output line numbers.)")
125
126 (defconst compilation-enter-directory-regexp
127 ": Entering directory `\\\(.*\\\)'$"
128 "Regular expression for a line in the compilation log that
129 changes the current directory. This must contain one \\\(, \\\) pair
130 around the directory name.
131
132 The default value matches lines printed by the `-w' option of GNU Make.")
133
134 (defconst compilation-leave-directory-regexp
135 ": Leaving directory `\\\(.*\\\)'$"
136 "Regular expression for a line in the compilation log that
137 changes the current directory to a previous value. This may
138 contain one \\\(, \\\) pair around the name of the directory
139 being moved from. If it does not, the last directory entered
140 \(by a line matching `compilation-enter-directory-regexp'\) is assumed.
141
142 The default value matches lines printed by the `-w' option of GNU Make.")
143
144 (defvar compilation-directory-stack nil
145 "Stack of directories entered by lines matching
146 \`compilation-enter-directory-regexp' and not yet left by lines matching
147 \`compilation-leave-directory-regexp'. The head element is the directory
148 the compilation was started in.")
149
150 ;;;###autoload
151 (defun compile (command)
152 "Compile the program including the current buffer. Default: run `make'.
153 Runs COMMAND, a shell command, in a separate process asynchronously
154 with output going to the buffer `*compilation*'.
155
156 You can then use the command \\[next-error] to find the next error message
157 and move to the source code that caused it.
158
159 To run more than one compilation at once, start one and rename the
160 \`*compilation*' buffer to some other name with \\[rename-buffer].
161 Then start the next one.
162
163 The name used for the buffer is actually whatever is returned by
164 the function in `compilation-buffer-name-function', so you can set that
165 to a function that generates a unique name."
166 (interactive (list (read-string "Compile command: " compile-command)))
167 (setq compile-command command)
168 (save-some-buffers nil nil)
169 (compile-internal compile-command "No more errors"))
170
171 ;;;###autoload
172 (defun grep (command-args)
173 "Run grep, with user-specified args, and collect output in a buffer.
174 While grep runs asynchronously, you can use the \\[next-error] command
175 to find the text that grep hits refer to.
176
177 The variable `grep-command' holds the last grep command run,
178 and is the default for future runs. The command should use the `-n'
179 flag, so that line numbers are displayed for each match.
180 What the user enters in response to the prompt for grep args is
181 appended to everything up to and including the `-n' in `grep-command'."
182 (interactive
183 (list (read-string (concat "Run "
184 (substring grep-command 0
185 (string-match "[\t ]+" grep-command))
186 " (with args): ")
187 (progn
188 (string-match "-n[\t ]+" grep-command)
189 (substring grep-command (match-end 0))))))
190 ;; why a redundant string-match? It might not be interactive ...
191 (setq grep-command (concat (substring grep-command 0
192 (progn
193 (string-match "-n" grep-command)
194 (match-end 0)))
195 " " command-args))
196 (compile-internal (concat grep-command " /dev/null")
197 "No more grep hits" "grep"))
198
199 (defun compile-internal (command error-message
200 &optional name-of-mode parser regexp-alist
201 name-function)
202 "Run compilation command COMMAND (low level interface).
203 ERROR-MESSAGE is a string to print if the user asks to see another error
204 and there are no more errors. Third argument NAME-OF-MODE is the name
205 to display as the major mode in the compilation buffer.
206
207 Fourth arg PARSER is the error parser function (nil means the default). Fifth
208 arg REGEXP-ALIST is the error message regexp alist to use (nil means the
209 default). Sixth arg NAME-FUNCTION is a function called to name the buffer (nil
210 means the default). The defaults for these variables are the global values of
211 \`compilation-parse-errors-function', `compilation-error-regexp-alist', and
212 \`compilation-buffer-name-function', respectively."
213 (let (outbuf)
214 (save-excursion
215 (or name-of-mode
216 (setq name-of-mode "Compilation"))
217 (setq outbuf
218 (get-buffer-create
219 (funcall (or name-function compilation-buffer-name-function
220 (function (lambda (mode)
221 (concat "*" (downcase mode) "*"))))
222 name-of-mode)))
223 (set-buffer outbuf)
224 (let ((comp-proc (get-buffer-process (current-buffer))))
225 (if comp-proc
226 (if (or (not (eq (process-status comp-proc) 'run))
227 (yes-or-no-p
228 "A compilation process is running; kill it? "))
229 (condition-case ()
230 (progn
231 (interrupt-process comp-proc)
232 (sit-for 1)
233 (delete-process comp-proc))
234 (error nil))
235 (error "Cannot have two processes in `%s' at once"
236 (buffer-name))
237 )))
238 ;; In case the compilation buffer is current, make sure we get the global
239 ;; values of compilation-error-regexp-alist, etc.
240 (kill-all-local-variables))
241 (let ((regexp-alist (or regexp-alist compilation-error-regexp-alist))
242 (parser (or parser compilation-parse-errors-function))
243 (thisdir default-directory)
244 outwin)
245 (save-excursion
246 ;; Clear out the compilation buffer and make it writable.
247 ;; Change its default-directory to the directory where the compilation
248 ;; will happen, and insert a `cd' command to indicate this.
249 (set-buffer outbuf)
250 (setq buffer-read-only nil)
251 (erase-buffer)
252 (setq default-directory thisdir)
253 (insert "cd " thisdir "\n" command "\n")
254 (set-buffer-modified-p nil))
255 ;; If we're already in the compilation buffer, go to the end
256 ;; of the buffer, so point will track the compilation output.
257 (if (eq outbuf (current-buffer))
258 (goto-char (point-max)))
259 ;; Pop up the compilation buffer.
260 (setq outwin (display-buffer outbuf))
261 (set-buffer outbuf)
262 (compilation-mode)
263 (set (make-local-variable 'compilation-parse-errors-function) parser)
264 (set (make-local-variable 'compilation-error-message) error-message)
265 (set (make-local-variable 'compilation-error-regexp-alist) regexp-alist)
266 (setq default-directory thisdir
267 compilation-directory-stack (list default-directory))
268 (set-window-start outwin (point-min))
269 (setq mode-name name-of-mode)
270 (or (eq outwin (selected-window))
271 (set-window-point outwin (point-min)))
272 (and compilation-window-height
273 (= (window-width outwin) (screen-width))
274 (let ((w (selected-window)))
275 (unwind-protect
276 (progn
277 (select-window outwin)
278 (enlarge-window (- compilation-window-height
279 (window-height))))
280 (select-window w))))
281 ;; Start the compilation.
282 (start-process-shell-command (downcase mode-name) outbuf command)
283 (set-process-sentinel (get-buffer-process outbuf)
284 'compilation-sentinel))
285 ;; Make it so the next C-x ` will use this buffer.
286 (setq compilation-last-buffer outbuf)))
287
288 (defvar compilation-mode-map
289 (let ((map (make-sparse-keymap)))
290 (define-key map "\C-c\C-c" 'compile-goto-error)
291 (define-key map "\C-c\C-k" 'kill-compilation)
292 map)
293 "Keymap for compilation log buffers.")
294
295 (defun compilation-mode ()
296 "Major mode for compilation log buffers.
297 \\<compilation-mode-map>To visit the source for a line-numbered error,
298 move point to the error message line and type \\[compile-goto-error].
299 To kill the compilation, type \\[kill-compilation]."
300 (interactive)
301 (fundamental-mode)
302 (use-local-map compilation-mode-map)
303 (buffer-disable-undo (current-buffer))
304 (setq major-mode 'compilation-mode)
305 (setq mode-name "Compilation")
306 ;; Make buffer's mode line show process state
307 (setq mode-line-process '(": %s"))
308 (set (make-local-variable 'compilation-error-list) nil)
309 (set (make-local-variable 'compilation-old-error-list) nil)
310 (set (make-local-variable 'compilation-parsing-end) 1)
311 (set (make-local-variable 'compilation-directory-stack) nil)
312 (setq compilation-last-buffer (current-buffer)))
313
314 ;; Called when compilation process changes state.
315 (defun compilation-sentinel (proc msg)
316 "Sentinel for compilation buffers."
317 (let ((buffer (process-buffer proc)))
318 (cond ((null (buffer-name buffer))
319 ;; buffer killed
320 (set-process-buffer proc nil))
321 ((memq (process-status proc) '(signal exit))
322 (let ((obuf (current-buffer))
323 omax opoint)
324 ;; save-excursion isn't the right thing if
325 ;; process-buffer is current-buffer
326 (unwind-protect
327 (progn
328 ;; Write something in the compilation buffer
329 ;; and hack its mode line.
330 (set-buffer buffer)
331 (setq omax (point-max)
332 opoint (point))
333 (goto-char omax)
334 (insert ?\n mode-name " " msg)
335 (forward-char -1)
336 (insert " at " (substring (current-time-string) 0 19))
337 (forward-char 1)
338 (setq mode-line-process
339 (concat ": "
340 (symbol-name (process-status proc))))
341 ;; Since the buffer and mode line will show that the
342 ;; process is dead, we can delete it now. Otherwise it
343 ;; will stay around until M-x list-processes.
344 (delete-process proc))
345 ;; Force mode line redisplay soon.
346 (set-buffer-modified-p (buffer-modified-p)))
347 (if (and opoint (< opoint omax))
348 (goto-char opoint))
349 (set-buffer obuf)
350 (if compilation-finish-function
351 (funcall compilation-finish-function buffer msg))
352 ))
353 )))
354
355 (defun kill-compilation ()
356 "Kill the process made by the \\[compile] command."
357 (interactive)
358 (let ((buffer (compilation-find-buffer)))
359 (if (get-buffer-process buffer)
360 (interrupt-process (get-buffer-process buffer))
361 (error "The compilation process is not running."))))
362
363
364 ;; Parse any new errors in the compilation buffer,
365 ;; or reparse from the beginning if the user has asked for that.
366 (defun compile-reinitialize-errors (argp)
367 (save-excursion
368 (set-buffer compilation-last-buffer)
369 ;; If we are out of errors, or if user says "reparse",
370 ;; discard the info we have, to force reparsing.
371 (if (or (eq compilation-error-list t)
372 (consp argp))
373 (progn (compilation-forget-errors)
374 (setq compilation-parsing-end 1)))
375 (if compilation-error-list
376 ;; Since compilation-error-list is non-nil, it points to a specific
377 ;; error the user wanted. So don't move it around.
378 nil
379 (switch-to-buffer compilation-last-buffer)
380 (set-buffer-modified-p nil)
381 (let ((at-start (= compilation-parsing-end 1)))
382 (funcall compilation-parse-errors-function)
383 ;; Remember the entire list for compilation-forget-errors.
384 ;; If this is an incremental parse, append to previous list.
385 (if at-start
386 (setq compilation-old-error-list compilation-error-list)
387 (setq compilation-old-error-list
388 (nconc compilation-old-error-list compilation-error-list)))))))
389
390 (defun compile-goto-error (&optional argp)
391 "Visit the source for the error message point is on.
392 Use this command in a compilation log buffer.
393 C-u as a prefix arg means to reparse the buffer's error messages first;
394 other kinds of prefix arguments are ignored."
395 (interactive "P")
396 (or (compilation-buffer-p (current-buffer))
397 (error "Not in a compilation buffer."))
398 (setq compilation-last-buffer (current-buffer))
399 (compile-reinitialize-errors argp)
400 (save-excursion
401 (beginning-of-line)
402 ;; Move compilation-error-list to the elt of
403 ;; compilation-old-error-list whose car is the error we want.
404 (setq compilation-error-list
405 (memq (let (elt)
406 (while (not (or (setq elt (assoc (point-marker)
407 compilation-old-error-list))
408 (eobp)))
409 ;; This line doesn't contain an error.
410 ;; Move forward a line and look again.
411 (forward-line 1))
412 elt)
413 compilation-old-error-list)))
414 ;; Move to another window, so that next-error's window changes
415 ;; result in the desired setup.
416 (or (one-window-p)
417 (other-window -1))
418 (next-error 1))
419
420 (defun compilation-buffer-p (buffer)
421 (assq 'compilation-error-list (buffer-local-variables buffer)))
422
423 ;; Return a compilation buffer.
424 ;; If the current buffer is a compilation buffer, return it.
425 ;; If compilation-last-buffer is set to a live buffer, use that.
426 ;; Otherwise, look for a compilation buffer and signal an error
427 ;; if there are none.
428 (defun compilation-find-buffer ()
429 (if (compilation-buffer-p (current-buffer))
430 ;; The current buffer is a compilation buffer.
431 (current-buffer)
432 (if (and compilation-last-buffer (buffer-name compilation-last-buffer))
433 compilation-last-buffer
434 (let ((buffers (buffer-list)))
435 (while (and buffers (not (compilation-buffer-p (car buffers))))
436 (setq buffers (cdr buffers)))
437 (if buffers
438 (car buffers)
439 (error "No compilation started!"))))))
440
441 ;;;###autoload
442 (defun next-error (&optional argp)
443 "Visit next compilation error message and corresponding source code.
444 This operates on the output from the \\[compile] command.
445 If all preparsed error messages have been processed,
446 the error message buffer is checked for new ones.
447
448 A prefix arg specifies how many error messages to move;
449 negative means move back to previous error messages.
450 Just C-u as a prefix means reparse the error message buffer
451 and start at the first error.
452
453 \\[next-error] normally applies to the most recent compilation started,
454 but as long as you are in the middle of parsing errors from one compilation
455 output buffer, you stay with that compilation output buffer.
456
457 Use \\[next-error] in a compilation output buffer to switch to
458 processing errors from that compilation.
459
460 See variables `compilation-parse-errors-function' and
461 \`compilation-error-regexp-alist' for customization ideas."
462 (interactive "P")
463 (setq compilation-last-buffer (compilation-find-buffer))
464 (compile-reinitialize-errors argp)
465 ;; Make ARGP nil if the prefix arg was just C-u,
466 ;; since that means to reparse the errors, which the
467 ;; compile-reinitialize-errors call just did.
468 ;; Now we are only interested in a numeric prefix arg.
469 (if (consp argp)
470 (setq argp nil))
471 (let (next-errors next-error)
472 (save-excursion
473 (set-buffer compilation-last-buffer)
474 (setq next-errors (nthcdr (+ (- (length compilation-old-error-list)
475 (length compilation-error-list)
476 1)
477 (prefix-numeric-value argp))
478 compilation-old-error-list)
479 next-error (car next-errors))
480 (while
481 (progn
482 (if (null next-error)
483 (progn
484 (if argp (if (> (prefix-numeric-value argp) 0)
485 (error "Moved past last error")
486 (error "Moved back past first error")))
487 (compilation-forget-errors)
488 (error (concat compilation-error-message
489 (and (get-buffer-process (current-buffer))
490 (eq (process-status
491 (get-buffer-process
492 (current-buffer)))
493 'run)
494 " yet"))))
495 (setq compilation-error-list (cdr next-errors))
496 (if (null (cdr next-error))
497 ;; This error is boring. Go to the next.
498 t
499 (or (markerp (cdr next-error))
500 ;; This error has a filename/lineno pair.
501 ;; Find the file and turn it into a marker.
502 (let* ((fileinfo (car (cdr next-error)))
503 (buffer (compilation-find-file (cdr fileinfo)
504 (car fileinfo)
505 (car next-error))))
506 (if (null buffer)
507 ;; We can't find this error's file.
508 ;; Remove all errors in the same file.
509 (progn
510 (setq next-errors compilation-old-error-list)
511 (while next-errors
512 (and (consp (cdr (car next-errors)))
513 (equal (car (cdr (car next-errors)))
514 fileinfo)
515 (progn
516 (set-marker (car (car next-errors)) nil)
517 (setcdr (car next-errors) nil)))
518 (setq next-errors (cdr next-errors)))
519 ;; Look for the next error.
520 t)
521 ;; We found the file. Get a marker for this error.
522 (set-buffer buffer)
523 (save-excursion
524 (save-restriction
525 (widen)
526 (let ((errors compilation-old-error-list)
527 (last-line (cdr (cdr next-error))))
528 (goto-line last-line)
529 (beginning-of-line)
530 (setcdr next-error (point-marker))
531 ;; Make all the other error messages referring
532 ;; to the same file have markers into the buffer.
533 (while errors
534 (and (consp (cdr (car errors)))
535 (equal (car (cdr (car errors))) fileinfo)
536 (let ((this (cdr (cdr (car errors))))
537 (lines (- (cdr (cdr (car errors)))
538 last-line)))
539 (if (eq selective-display t)
540 (if (< lines 0)
541 (re-search-backward "[\n\C-m]"
542 nil 'end
543 (- lines))
544 (re-search-forward "[\n\C-m]"
545 nil 'end
546 lines))
547 (forward-line lines))
548 (setq last-line this)
549 (setcdr (car errors) (point-marker))))
550 (setq errors (cdr errors)))))))))
551 ;; If we didn't get a marker for this error,
552 ;; go on to the next one.
553 (not (markerp (cdr next-error))))))
554 (setq next-errors compilation-error-list
555 next-error (car next-errors))))
556
557 ;; Skip over multiple error messages for the same source location,
558 ;; so the next C-x ` won't go to an error in the same place.
559 (while (and compilation-error-list
560 (equal (cdr (car compilation-error-list)) (cdr next-error)))
561 (setq compilation-error-list (cdr compilation-error-list)))
562
563 ;; We now have a marker for the position of the error.
564 (switch-to-buffer (marker-buffer (cdr next-error)))
565 (goto-char (cdr next-error))
566 ;; If narrowing got in the way of
567 ;; going to the right place, widen.
568 (or (= (point) (marker-position (cdr next-error)))
569 (progn
570 (widen)
571 (goto-char (cdr next-error))))
572
573 ;; Show compilation buffer in other window, scrolled to this error.
574 (let* ((pop-up-windows t)
575 (w (display-buffer (marker-buffer (car next-error)))))
576 (set-window-point w (car next-error))
577 (set-window-start w (car next-error)))))
578
579 ;;;###autoload
580 (define-key ctl-x-map "`" 'next-error)
581
582 ;; Find a buffer for file FILENAME.
583 ;; Search the directories in compilation-search-path.
584 ;; A nil in compilation-search-path means to try the
585 ;; current directory, which is passed in DIR.
586 ;; If FILENAME is not found at all, ask the user where to find it.
587 ;; Pop up the buffer containing MARKER and scroll to MARKER if we ask the user.
588 (defun compilation-find-file (filename dir marker)
589 (let ((dirs compilation-search-path)
590 result name)
591 (while (and dirs (null result))
592 (setq name (expand-file-name filename (or (car dirs) dir))
593 result (and (file-exists-p name)
594 (find-file-noselect name))
595 dirs (cdr dirs)))
596 (or result
597 ;; The file doesn't exist.
598 ;; Ask the user where to find it.
599 ;; If he hits C-g, then the next time he does
600 ;; next-error, he'll skip past it.
601 (progn
602 (let* ((pop-up-windows t)
603 (w (display-buffer (marker-buffer marker))))
604 (set-window-point w marker)
605 (set-window-start w marker))
606 (setq name
607 (expand-file-name
608 (read-file-name
609 (format "Find this error in: (default %s) "
610 filename) dir filename t)))
611 (if (file-directory-p name)
612 (setq name (concat (file-name-as-directory name) filename)))
613 (if (file-exists-p name)
614 (find-file-noselect name))))))
615
616 ;; Set compilation-error-list to nil, and unchain the markers that point to the
617 ;; error messages and their text, so that they no longer slow down gap motion.
618 ;; This would happen anyway at the next garbage collection, but it is better to
619 ;; do it the right away.
620 (defun compilation-forget-errors ()
621 (while compilation-old-error-list
622 (let ((next-error (car compilation-old-error-list)))
623 (set-marker (car next-error) nil)
624 (if (markerp (cdr next-error))
625 (set-marker (cdr next-error) nil)))
626 (setq compilation-old-error-list (cdr compilation-old-error-list)))
627 (setq compilation-error-list nil)
628 (while (cdr compilation-directory-stack)
629 (setq compilation-directory-stack (cdr compilation-directory-stack))))
630
631
632 (defun count-regexp-groupings (regexp)
633 "Return the number of \\( ... \\) groupings in REGEXP (a string)."
634 (let ((groupings 0)
635 (len (length regexp))
636 (i 0)
637 c)
638 (while (< i len)
639 (setq c (aref regexp i)
640 i (1+ i))
641 (cond ((= c ?\[)
642 ;; Find the end of this [...].
643 (while (and (< i len)
644 (not (= (aref regexp i) ?\])))
645 (setq i (1+ i))))
646 ((= c ?\\)
647 (if (< i len)
648 (progn
649 (setq c (aref regexp i)
650 i (1+ i))
651 (if (= c ?\))
652 ;; We found the end of a grouping,
653 ;; so bump our counter.
654 (setq groupings (1+ groupings))))))))
655 groupings))
656
657 (defun compilation-parse-errors ()
658 "Parse the current buffer as grep, cc or lint error messages.
659 See variable `compilation-parse-errors-function' for the interface it uses."
660 (setq compilation-error-list nil)
661 (message "Parsing error messages...")
662 (let (text-buffer
663 regexp enter-group leave-group error-group
664 alist subexpr error-regexp-groups)
665
666 ;; Don't reparse messages already seen at last parse.
667 (goto-char compilation-parsing-end)
668 ;; Don't parse the first two lines as error messages.
669 ;; This matters for grep.
670 (if (bobp)
671 (forward-line 2))
672
673 ;; Compile all the regexps we want to search for into one.
674 (setq regexp (concat "\\(" compilation-enter-directory-regexp "\\)\\|"
675 "\\(" compilation-leave-directory-regexp "\\)\\|"
676 "\\(" (mapconcat (function
677 (lambda (elt)
678 (concat "\\(" (car elt) "\\)")))
679 compilation-error-regexp-alist
680 "\\|") "\\)"))
681
682 ;; Find out how many \(...\) groupings are in each of the regexps, and set
683 ;; *-GROUP to the grouping containing each constituent regexp (whose
684 ;; subgroups will come immediately thereafter) of the big regexp we have
685 ;; just constructed.
686 (setq enter-group 1
687 leave-group (+ enter-group
688 (count-regexp-groupings
689 compilation-enter-directory-regexp)
690 1)
691 error-group (+ leave-group
692 (count-regexp-groupings
693 compilation-leave-directory-regexp)
694 1))
695
696 ;; Compile an alist (IDX FILE LINE), where IDX is the number of the
697 ;; subexpression for an entire error-regexp, and FILE and LINE are the
698 ;; numbers for the subexpressions giving the file name and line number.
699 (setq alist compilation-error-regexp-alist
700 subexpr (1+ error-group))
701 (while alist
702 (setq error-regexp-groups (cons (list subexpr
703 (+ subexpr (nth 1 (car alist)))
704 (+ subexpr (nth 2 (car alist))))
705 error-regexp-groups))
706 (setq subexpr (+ subexpr 1 (count-regexp-groupings (car (car alist)))))
707 (setq alist (cdr alist)))
708
709 (while (re-search-forward regexp nil t)
710 ;; Figure out which constituent regexp matched.
711 (cond ((match-beginning enter-group)
712 ;; The match was the enter-directory regexp.
713 (let ((dir
714 (file-name-as-directory
715 (expand-file-name
716 (buffer-substring (match-beginning (+ enter-group 1))
717 (match-end (+ enter-group 1)))))))
718 (setq compilation-directory-stack
719 (cons dir compilation-directory-stack))
720 (and (file-directory-p dir)
721 (setq default-directory dir))))
722
723 ((match-beginning leave-group)
724 ;; The match was the leave-directory regexp.
725 (let ((beg (match-beginning (+ leave-group 1)))
726 (stack compilation-directory-stack))
727 (if beg
728 (let ((dir
729 (file-name-as-directory
730 (expand-file-name
731 (buffer-substring beg
732 (match-end (+ leave-group
733 1)))))))
734 (while (and stack
735 (not (string-equal (car stack) dir)))
736 (setq stack (cdr stack)))))
737 (setq compilation-directory-stack (cdr stack))
738 (setq stack (car compilation-directory-stack))
739 (if stack
740 (setq default-directory stack))
741 ))
742
743 ((match-beginning error-group)
744 ;; The match was the composite error regexp.
745 ;; Find out which individual regexp matched.
746 (setq alist error-regexp-groups)
747 (while (and alist
748 (null (match-beginning (car (car alist)))))
749 (setq alist (cdr alist)))
750 (if alist
751 (setq alist (car alist))
752 (error "Impossible regexp match!"))
753
754 ;; Extract the file name and line number from the error message.
755 (let ((filename
756 (cons default-directory
757 (buffer-substring (match-beginning (nth 1 alist))
758 (match-end (nth 1 alist)))))
759 (linenum (save-restriction
760 (narrow-to-region
761 (match-beginning (nth 2 alist))
762 (match-end (nth 2 alist)))
763 (goto-char (point-min))
764 (if (looking-at "[0-9]")
765 (read (current-buffer))))))
766 ;; Locate the erring file and line.
767 ;; Cons a new elt onto compilation-error-list,
768 ;; giving a marker for the current compilation buffer
769 ;; location, and the file and line number of the error.
770 (save-excursion
771 (beginning-of-line 1)
772 (setq compilation-error-list
773 (cons (cons (point-marker)
774 (cons filename linenum))
775 compilation-error-list)))))
776 (t
777 (error "Impossible regexp match!"))))
778 (setq compilation-parsing-end (point-max)))
779 (message "Parsing error messages...done")
780 (setq compilation-error-list (nreverse compilation-error-list)))
781
782 (define-key ctl-x-map "`" 'next-error)