]> code.delx.au - gnu-emacs/blob - lisp/progmodes/compile.el
4ab8a8549ec3e9af957a9165e31753f3619abec2
[gnu-emacs] / lisp / progmodes / compile.el
1 ;;; compile.el --- run compiler as inferior of Emacs, parse error messages.
2
3 ;; Copyright (C) 1985, 86, 87, 93 Free Software Foundation, Inc.
4
5 ;; Author: Roland McGrath <roland@prep.ai.mit.edu>
6 ;; Maintainer: FSF
7 ;; Keywords: tools, processes
8
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
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;; This package provides the compile and grep facilities documented in
28 ;; the Emacs user's manual.
29
30 ;;; Code:
31
32 ;;;###autoload
33 (defvar compilation-mode-hook nil
34 "*List of hook functions run by compilation-mode (see `run-hooks').")
35
36 ;;;###autoload
37 (defconst compilation-window-height nil
38 "*Number of lines in a compilation window. If nil, use Emacs default.")
39
40 (defvar compilation-error-list nil
41 "List of error message descriptors for visiting erring functions.
42 Each error descriptor is a cons (or nil). Its car is a marker pointing to
43 an error message. If its cdr is a marker, it points to the text of the
44 line the message is about. If its cdr is a cons, that cons's car is a cons
45 \(DIRECTORY . FILE\), specifying the file the message is about, and its cdr
46 is the number of the line the message is about. Or its cdr may be nil if
47 that error is not interesting.
48
49 The value may be t instead of a list; this means that the buffer of
50 error messages should be reparsed the next time the list of errors is wanted.")
51
52 (defvar compilation-old-error-list nil
53 "Value of `compilation-error-list' after errors were parsed.")
54
55 (defvar compilation-parse-errors-function 'compilation-parse-errors
56 "Function to call to parse error messages from a compilation.
57 It takes args LIMIT-SEARCH and FIND-AT-LEAST.
58 If LIMIT-SEARCH is non-nil, don't bother parsing past that location.
59 If FIND-AT-LEAST is non-nil, don't bother parsing after finding that
60 many new erros.
61 It should read in the source files which have errors and set
62 `compilation-error-list' to a list with an element for each error message
63 found. See that variable for more info.")
64
65 ;;;###autoload
66 (defvar compilation-buffer-name-function nil
67 "Function to compute the name of a compilation buffer.
68 The function receives one argument, the name of the major mode of the
69 compilation buffer. It should return a string.
70 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
71
72 ;;;###autoload
73 (defvar compilation-finish-function nil
74 "*Function to call when a compilation process finishes.
75 It is called with two arguments: the compilation buffer, and a string
76 describing how the process finished.")
77
78 (defvar compilation-last-buffer nil
79 "The most recent compilation buffer.
80 A buffer becomes most recent when its compilation is started
81 or when it is used with \\[next-error] or \\[compile-goto-error].")
82
83 (defvar compilation-in-progress nil
84 "List of compilation processes now running.")
85 (or (assq 'compilation-in-progress minor-mode-alist)
86 (setq minor-mode-alist (cons '(compilation-in-progress " Compiling")
87 minor-mode-alist)))
88
89 (defvar compilation-parsing-end nil
90 "Position of end of buffer when last error messages were parsed.")
91
92 (defvar compilation-error-message "No more errors"
93 "Message to print when no more matches are found.")
94
95 (defvar compilation-num-errors-found)
96
97 (defvar compilation-error-regexp-alist
98 '(
99 ;; NOTE! This first one is repeated in grep-regexp-alist, below.
100
101 ;; 4.3BSD grep, cc, lint pass 1:
102 ;; /usr/src/foo/foo.c(8): warning: w may be used before set
103 ;; or GNU utilities:
104 ;; foo.c:8: error message
105 ;; or HP-UX 7.0 fc:
106 ;; foo.f :16 some horrible error message
107 ;;
108 ;; We'll insist that the number be followed by a colon or closing
109 ;; paren, because otherwise this matches just about anything
110 ;; containing a number with spaces around it.
111 ("^\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2)
112
113 ;; 4.3BSD lint pass 2
114 ;; strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8)
115 ("[ \t:]+\\([^:( \t\n]+\\)[ \t]*[:(]*(+[ \t]*\\([0-9]+\\))[:) \t]*$" 1 2)
116
117 ;; 4.3BSD lint pass 3
118 ;; bloofle defined( /users/wolfgang/foo.c(4) ), but never used
119 ;; This used to be
120 ;; ("[ \t(]+\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2)
121 ;; which is regexp Impressionism - it matches almost anything!
122 ("([ \t]*\\([^:( \t\n]+\\)[ \t]*[:(][ \t]*\\([0-9]+\\))" 1 2)
123
124 ;; Line 45 of "foo.c": bloofel undefined (who does this?)
125 ("^[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+of[ \t]+\"\\([^\"\n]+\\)\":" 2 1)
126
127 ;; Apollo cc, 4.3BSD fc:
128 ;; "foo.f", line 3: Error: syntax error near end of statement
129 ;; or MIPS RISC CC - the one distributed with Ultrix:
130 ;; ccom: Error: foo.c, line 2: syntax error
131 ("\\b\"?\\([^,\" \n\t]\\)\"?, line \\([0-9]+\\):" 1 2)
132
133 ;; IBM AIX PS/2 C version 1.1:
134 ;; ****** Error number 140 in line 8 of file errors.c ******
135 ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
136 ;; IBM AIX lint is too painful to do right this way. File name
137 ;; prefixes entire sections rather than being on each line.
138
139 )
140 "Alist that specifies how to match errors in compiler output.
141 Each element has the form (REGEXP FILE-IDX LINE-IDX).
142 If REGEXP matches, the FILE-IDX'th subexpression gives the file
143 name, and the LINE-IDX'th subexpression gives the line number.")
144
145 (defvar grep-regexp-alist
146 '(("^\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2))
147 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
148
149 ;;;###autoload
150 (defvar compilation-search-path '(nil)
151 "*List of directories to search for source files named in error messages.
152 Elements should be directory names, not file names of directories.
153 nil as an element means to try the default directory.")
154
155 (defvar compile-command "make -k "
156 "Last shell command used to do a compilation; default for next compilation.
157
158 Sometimes it is useful for files to supply local values for this variable.
159 You might also use mode hooks to specify it in certain modes, like this:
160
161 (setq c-mode-hook
162 '(lambda () (or (file-exists-p \"makefile\") (file-exists-p \"Makefile\")
163 (progn (make-local-variable 'compile-command)
164 (setq compile-command
165 (concat \"make -k \"
166 buffer-file-name))))))")
167
168 (defconst compilation-enter-directory-regexp
169 ": Entering directory `\\(.*\\)'$"
170 "Regular expression matching lines that indicate a new current directory.
171 This must contain one \\(, \\) pair around the directory name.
172
173 The default value matches lines printed by the `-w' option of GNU Make.")
174
175 (defconst compilation-leave-directory-regexp
176 ": Leaving directory `\\(.*\\)'$"
177 "Regular expression matching lines that indicate restoring current directory.
178 This may contain one \\(, \\) pair around the name of the directory
179 being moved from. If it does not, the last directory entered \(by a
180 line matching `compilation-enter-directory-regexp'\) is assumed.
181
182 The default value matches lines printed by the `-w' option of GNU Make.")
183
184 (defvar compilation-directory-stack nil
185 "Stack of previous directories for `compilation-leave-directory-regexp'.
186 The head element is the directory the compilation was started in.")
187
188 ;; History of compile commands.
189 (defvar compile-history nil)
190 ;; History of grep commands.
191 (defvar grep-history nil)
192
193 ;;;###autoload
194 (defun compile (command)
195 "Compile the program including the current buffer. Default: run `make'.
196 Runs COMMAND, a shell command, in a separate process asynchronously
197 with output going to the buffer `*compilation*'.
198
199 You can then use the command \\[next-error] to find the next error message
200 and move to the source code that caused it.
201
202 To run more than one compilation at once, start one and rename the
203 \`*compilation*' buffer to some other name with \\[rename-buffer].
204 Then start the next one.
205
206 The name used for the buffer is actually whatever is returned by
207 the function in `compilation-buffer-name-function', so you can set that
208 to a function that generates a unique name."
209 (interactive (list (read-from-minibuffer "Compile command: "
210 compile-command nil nil
211 '(compile-history . 1))))
212 (setq compile-command command)
213 (save-some-buffers nil nil)
214 (compile-internal compile-command "No more errors"))
215
216 ;;;###autoload
217 (defun grep (command-args)
218 "Run grep, with user-specified args, and collect output in a buffer.
219 While grep runs asynchronously, you can use the \\[next-error] command
220 to find the text that grep hits refer to.
221
222 This command uses a special history list for its arguments, so you can
223 easily repeat a grep command."
224 (interactive
225 (list (read-from-minibuffer "Run grep (like this): "
226 "grep -n " nil nil 'grep-history)))
227 (compile-internal (concat command-args " /dev/null")
228 "No more grep hits" "grep"
229 ;; Give it a simpler regexp to match.
230 nil grep-regexp-alist))
231
232 (defun compile-internal (command error-message
233 &optional name-of-mode parser regexp-alist
234 name-function)
235 "Run compilation command COMMAND (low level interface).
236 ERROR-MESSAGE is a string to print if the user asks to see another error
237 and there are no more errors. Third argument NAME-OF-MODE is the name
238 to display as the major mode in the compilation buffer.
239
240 Fourth arg PARSER is the error parser function (nil means the default). Fifth
241 arg REGEXP-ALIST is the error message regexp alist to use (nil means the
242 default). Sixth arg NAME-FUNCTION is a function called to name the buffer (nil
243 means the default). The defaults for these variables are the global values of
244 \`compilation-parse-errors-function', `compilation-error-regexp-alist', and
245 \`compilation-buffer-name-function', respectively.
246
247 Returns the compilation buffer created."
248 (let (outbuf)
249 (save-excursion
250 (or name-of-mode
251 (setq name-of-mode "Compilation"))
252 (setq outbuf
253 (get-buffer-create
254 (funcall (or name-function compilation-buffer-name-function
255 (function (lambda (mode)
256 (concat "*" (downcase mode) "*"))))
257 name-of-mode)))
258 (set-buffer outbuf)
259 (let ((comp-proc (get-buffer-process (current-buffer))))
260 (if comp-proc
261 (if (or (not (eq (process-status comp-proc) 'run))
262 (yes-or-no-p
263 (format "A %s process is running; kill it? "
264 name-of-mode)))
265 (condition-case ()
266 (progn
267 (interrupt-process comp-proc)
268 (sit-for 1)
269 (delete-process comp-proc))
270 (error nil))
271 (error "Cannot have two processes in `%s' at once"
272 (buffer-name))
273 )))
274 ;; In case the compilation buffer is current, make sure we get the global
275 ;; values of compilation-error-regexp-alist, etc.
276 (kill-all-local-variables))
277 (let ((regexp-alist (or regexp-alist compilation-error-regexp-alist))
278 (parser (or parser compilation-parse-errors-function))
279 (thisdir default-directory)
280 outwin)
281 (save-excursion
282 ;; Clear out the compilation buffer and make it writable.
283 ;; Change its default-directory to the directory where the compilation
284 ;; will happen, and insert a `cd' command to indicate this.
285 (set-buffer outbuf)
286 (setq buffer-read-only nil)
287 (erase-buffer)
288 (setq default-directory thisdir)
289 (insert "cd " thisdir "\n" command "\n")
290 (set-buffer-modified-p nil))
291 ;; If we're already in the compilation buffer, go to the end
292 ;; of the buffer, so point will track the compilation output.
293 (if (eq outbuf (current-buffer))
294 (goto-char (point-max)))
295 ;; Pop up the compilation buffer.
296 (setq outwin (display-buffer outbuf))
297 (set-buffer outbuf)
298 (compilation-mode)
299 (buffer-disable-undo (current-buffer))
300 (setq buffer-read-only t)
301 (set (make-local-variable 'compilation-parse-errors-function) parser)
302 (set (make-local-variable 'compilation-error-message) error-message)
303 (set (make-local-variable 'compilation-error-regexp-alist) regexp-alist)
304 (setq default-directory thisdir
305 compilation-directory-stack (list default-directory))
306 (set-window-start outwin (point-min))
307 (setq mode-name name-of-mode)
308 (or (eq outwin (selected-window))
309 (set-window-point outwin (point-min)))
310 (and compilation-window-height
311 (= (window-width outwin) (frame-width))
312 (let ((w (selected-window)))
313 (unwind-protect
314 (progn
315 (select-window outwin)
316 (enlarge-window (- compilation-window-height
317 (window-height))))
318 (select-window w))))
319 ;; Start the compilation.
320 (let ((proc (start-process-shell-command (downcase mode-name)
321 outbuf
322 command)))
323 (set-process-sentinel proc 'compilation-sentinel)
324 (setq compilation-in-progress (cons proc compilation-in-progress))))
325 ;; Make it so the next C-x ` will use this buffer.
326 (setq compilation-last-buffer outbuf)))
327
328 (defvar compilation-mode-map
329 (let ((map (make-sparse-keymap)))
330 (define-key map "\C-c\C-c" 'compile-goto-error)
331 (define-key map "\C-c\C-k" 'kill-compilation)
332 (define-key map " " 'scroll-up)
333 (define-key map "\^?" 'scroll-down)
334 (define-key map "\M-n" 'compilation-next-error)
335 (define-key map "\M-p" 'compilation-previous-error)
336 (define-key map "\M-{" 'compilation-previous-file)
337 (define-key map "\M-}" 'compilation-next-file)
338 map)
339 "Keymap for compilation log buffers.")
340
341 (defun compilation-mode ()
342 "Major mode for compilation log buffers.
343 \\<compilation-mode-map>To visit the source for a line-numbered error,
344 move point to the error message line and type \\[compile-goto-error].
345 To kill the compilation, type \\[kill-compilation].
346
347 Runs `compilation-mode-hook' with `run-hooks' (which see)."
348 (interactive)
349 (fundamental-mode)
350 (use-local-map compilation-mode-map)
351 (setq major-mode 'compilation-mode)
352 (setq mode-name "Compilation")
353 ;; Make buffer's mode line show process state
354 (setq mode-line-process '(": %s"))
355 (set (make-local-variable 'compilation-error-list) nil)
356 (set (make-local-variable 'compilation-old-error-list) nil)
357 (set (make-local-variable 'compilation-parsing-end) 1)
358 (set (make-local-variable 'compilation-directory-stack) nil)
359 (setq compilation-last-buffer (current-buffer))
360 (run-hooks 'compilation-mode-hook))
361
362 ;; Called when compilation process changes state.
363 (defun compilation-sentinel (proc msg)
364 "Sentinel for compilation buffers."
365 (let ((buffer (process-buffer proc)))
366 (if (memq (process-status proc) '(signal exit))
367 (progn
368 (if (null (buffer-name buffer))
369 ;; buffer killed
370 (set-process-buffer proc nil)
371 (let ((obuf (current-buffer))
372 omax opoint)
373 ;; save-excursion isn't the right thing if
374 ;; process-buffer is current-buffer
375 (unwind-protect
376 (progn
377 ;; Write something in the compilation buffer
378 ;; and hack its mode line.
379 (set-buffer buffer)
380 (let ((buffer-read-only nil))
381 (setq omax (point-max)
382 opoint (point))
383 (goto-char omax)
384 ;; Record where we put the message, so we can ignore it
385 ;; later on.
386 (insert ?\n mode-name " " msg)
387 (forward-char -1)
388 (insert " at " (substring (current-time-string) 0 19))
389 (forward-char 1)
390 (setq mode-line-process
391 (concat ": "
392 (symbol-name (process-status proc))))
393 ;; Since the buffer and mode line will show that the
394 ;; process is dead, we can delete it now. Otherwise it
395 ;; will stay around until M-x list-processes.
396 (delete-process proc)
397 ;; Force mode line redisplay soon.
398 (set-buffer-modified-p (buffer-modified-p)))
399 (if (and opoint (< opoint omax))
400 (goto-char opoint))
401 (if compilation-finish-function
402 (funcall compilation-finish-function buffer msg)))
403 (set-buffer obuf))))
404 (setq compilation-in-progress (delq proc compilation-in-progress))
405 ))))
406
407 ;; Return the cdr of compilation-old-error-list for the error containing point.
408 (defun compile-error-at-point ()
409 (compile-reinitialize-errors nil (point))
410 (let ((errors compilation-old-error-list))
411 (while (and errors
412 (> (point) (car (car errors))))
413 (setq errors (cdr errors)))
414 errors))
415
416 (defun compilation-next-error (n)
417 "Move point to the next error in the compilation buffer.
418 Does NOT find the source line like \\[next-error]."
419 (interactive "p")
420 (or (compilation-buffer-p (current-buffer))
421 (error "Not in a compilation buffer."))
422 (setq compilation-last-buffer (current-buffer))
423
424 (let ((errors (compile-error-at-point)))
425
426 ;; Move to the error after the one containing point.
427 (goto-char (car (if (< n 0)
428 (let ((i 0)
429 (e compilation-old-error-list))
430 ;; See how many cdrs away ERRORS is from the start.
431 (while (not (eq e errors))
432 (setq i (1+ i)
433 e (cdr e)))
434 (if (> (- n) i)
435 (error "Moved back past first error")
436 (nth (+ i n) compilation-old-error-list)))
437 (let ((compilation-error-list (cdr errors)))
438 (compile-reinitialize-errors nil nil n)
439 (if compilation-error-list
440 (nth (1- n) compilation-error-list)
441 (error "Moved past last error"))))))))
442
443 (defun compilation-previous-error (n)
444 "Move point to the previous error in the compilation buffer.
445 Does NOT find the source line like \\[next-error]."
446 (interactive "p")
447 (compilation-next-error (- n)))
448
449
450 (defun compile-file-of-error (data)
451 (setq data (cdr data))
452 (if (markerp data)
453 (buffer-file-name (marker-buffer data))
454 (setq data (car data))
455 (expand-file-name (cdr data) (car data))))
456
457 (defun compilation-next-file (n)
458 "Move point to the next error for a different file than the current one."
459 (interactive "p")
460 (or (compilation-buffer-p (current-buffer))
461 (error "Not in a compilation buffer."))
462 (setq compilation-last-buffer (current-buffer))
463
464 (let ((reversed (< n 0))
465 errors file)
466
467 (if (not reversed)
468 (setq errors (or (compile-error-at-point)
469 (error "Moved past last error")))
470
471 ;; Get a reversed list of the errors up through the one containing point.
472 (compile-reinitialize-errors nil (point))
473 (setq errors (reverse compilation-old-error-list)
474 n (- n))
475
476 ;; Ignore errors after point. (car ERRORS) will be the error
477 ;; containing point, (cadr ERRORS) the one before it.
478 (while (and errors
479 (< (point) (car (car errors))))
480 (setq errors (cdr errors))))
481
482 (while (> n 0)
483 (setq file (compile-file-of-error (car errors)))
484
485 ;; Skip past the other errors for this file.
486 (while (string= file
487 (compile-file-of-error
488 (car (or errors
489 (if reversed
490 (error "%s the first erring file" file)
491 (let ((compilation-error-list nil))
492 ;; Parse some more.
493 (compile-reinitialize-errors nil nil 2)
494 (setq errors compilation-error-list)))
495 (error "%s is the last erring file" file)))))
496 (setq errors (cdr errors)))
497
498 (setq n (1- n)))
499
500 ;; Move to the following error.
501 (goto-char (car (car (or errors
502 (if reversed
503 (error "This is the first erring file")
504 (let ((compilation-error-list nil))
505 ;; Parse the last one.
506 (compile-reinitialize-errors nil nil 1)
507 compilation-error-list))))))))
508
509 (defun compilation-previous-file (n)
510 "Move point to the previous error for a different file than the current one."
511 (interactive "p")
512 (compilation-next-file (- n)))
513
514
515 (defun kill-compilation ()
516 "Kill the process made by the \\[compile] command."
517 (interactive)
518 (let ((buffer (compilation-find-buffer)))
519 (if (get-buffer-process buffer)
520 (interrupt-process (get-buffer-process buffer))
521 (error "The compilation process is not running."))))
522
523
524 ;; Parse any new errors in the compilation buffer,
525 ;; or reparse from the beginning if the user has asked for that.
526 (defun compile-reinitialize-errors (argp &optional limit-search find-at-least)
527 (save-excursion
528 (set-buffer compilation-last-buffer)
529 ;; If we are out of errors, or if user says "reparse",
530 ;; discard the info we have, to force reparsing.
531 (if (or (eq compilation-error-list t)
532 (consp argp))
533 (progn (compilation-forget-errors)
534 (setq compilation-parsing-end 1)))
535 (if (and compilation-error-list
536 (or (not limit-search)
537 (> compilation-parsing-end limit-search))
538 (or (not find-at-least)
539 (> (length compilation-error-list) find-at-least)))
540 ;; Since compilation-error-list is non-nil, it points to a specific
541 ;; error the user wanted. So don't move it around.
542 nil
543 (switch-to-buffer compilation-last-buffer)
544 (set-buffer-modified-p nil)
545 (if (< compilation-parsing-end (point-max))
546 (let ((at-start (= compilation-parsing-end 1)))
547 (funcall compilation-parse-errors-function
548 limit-search find-at-least)
549 ;; Remember the entire list for compilation-forget-errors.
550 ;; If this is an incremental parse, append to previous list.
551 (if at-start
552 (setq compilation-old-error-list compilation-error-list)
553 (setq compilation-old-error-list
554 (nconc compilation-old-error-list compilation-error-list)))
555 )))))
556
557 (defun compile-goto-error (&optional argp)
558 "Visit the source for the error message point is on.
559 Use this command in a compilation log buffer.
560 \\[universal-argument] as a prefix arg means to reparse the buffer's error messages first;
561 other kinds of prefix arguments are ignored."
562 (interactive "P")
563 (or (compilation-buffer-p (current-buffer))
564 (error "Not in a compilation buffer."))
565 (setq compilation-last-buffer (current-buffer))
566 (compile-reinitialize-errors argp (point))
567
568 ;; Move to bol; the marker for the error on this line will point there.
569 (beginning-of-line)
570
571 ;; Move compilation-error-list to the elt of compilation-old-error-list
572 ;; we want.
573 (setq compilation-error-list compilation-old-error-list)
574 (while (and compilation-error-list
575 (> (point) (car (car compilation-error-list))))
576 (setq compilation-error-list (cdr compilation-error-list)))
577
578 ;; Move to another window, so that next-error's window changes
579 ;; result in the desired setup.
580 (or (one-window-p)
581 (progn
582 (other-window -1)
583 ;; other-window changed the selected buffer,
584 ;; but we didn't want to do that.
585 (set-buffer compilation-last-buffer)))
586
587 (next-error 1))
588
589 (defun compilation-buffer-p (buffer)
590 (assq 'compilation-error-list (buffer-local-variables buffer)))
591
592 ;; Return a compilation buffer.
593 ;; If the current buffer is a compilation buffer, return it.
594 ;; If compilation-last-buffer is set to a live buffer, use that.
595 ;; Otherwise, look for a compilation buffer and signal an error
596 ;; if there are none.
597 (defun compilation-find-buffer (&optional other-buffer)
598 (if (and (not other-buffer)
599 (compilation-buffer-p (current-buffer)))
600 ;; The current buffer is a compilation buffer.
601 (current-buffer)
602 (if (and compilation-last-buffer (buffer-name compilation-last-buffer)
603 (or (not other-buffer) (not (eq compilation-last-buffer
604 (current-buffer)))))
605 compilation-last-buffer
606 (let ((buffers (buffer-list)))
607 (while (and buffers (or (not (compilation-buffer-p (car buffers)))
608 (and other-buffer
609 (eq (car buffers) (current-buffer)))))
610 (setq buffers (cdr buffers)))
611 (if buffers
612 (car buffers)
613 (or (and other-buffer
614 (compilation-buffer-p (current-buffer))
615 ;; The current buffer is a compilation buffer.
616 (progn
617 (if other-buffer
618 (message "This is the only compilation buffer."))
619 (current-buffer)))
620 (error "No compilation started!")))))))
621
622 ;;;###autoload
623 (defun next-error (&optional argp)
624 "Visit next compilation error message and corresponding source code.
625 This operates on the output from the \\[compile] command.
626 If all preparsed error messages have been processed,
627 the error message buffer is checked for new ones.
628
629 A prefix arg specifies how many error messages to move;
630 negative means move back to previous error messages.
631 Just C-u as a prefix means reparse the error message buffer
632 and start at the first error.
633
634 \\[next-error] normally applies to the most recent compilation started,
635 but as long as you are in the middle of parsing errors from one compilation
636 output buffer, you stay with that compilation output buffer.
637
638 Use \\[next-error] in a compilation output buffer to switch to
639 processing errors from that compilation.
640
641 See variables `compilation-parse-errors-function' and
642 \`compilation-error-regexp-alist' for customization ideas."
643 (interactive "P")
644 (setq compilation-last-buffer (compilation-find-buffer))
645 (compile-reinitialize-errors argp nil
646 ;; We want to pass a number here only if
647 ;; we got a numeric prefix arg, not just C-u.
648 (and (not (consp argp))
649 (1- (prefix-numeric-value argp))))
650 ;; Make ARGP nil if the prefix arg was just C-u,
651 ;; since that means to reparse the errors, which the
652 ;; compile-reinitialize-errors call just did.
653 ;; Now we are only interested in a numeric prefix arg.
654 (if (consp argp)
655 (setq argp nil))
656 (let (next-errors next-error)
657 (save-excursion
658 (set-buffer compilation-last-buffer)
659 ;; compilation-error-list points to the "current" error.
660 (setq next-errors (nthcdr (1- (prefix-numeric-value argp))
661 compilation-error-list)
662 next-error (car next-errors))
663 (while
664 (progn
665 (if (null next-error)
666 (progn
667 (if argp (if (> (prefix-numeric-value argp) 0)
668 (error "Moved past last error")
669 (error "Moved back past first error")))
670 (compilation-forget-errors)
671 (error (concat compilation-error-message
672 (and (get-buffer-process (current-buffer))
673 (eq (process-status
674 (get-buffer-process
675 (current-buffer)))
676 'run)
677 " yet"))))
678 (setq compilation-error-list (cdr next-errors))
679 (if (null (cdr next-error))
680 ;; This error is boring. Go to the next.
681 t
682 (or (markerp (cdr next-error))
683 ;; This error has a filename/lineno pair.
684 ;; Find the file and turn it into a marker.
685 (let* ((fileinfo (car (cdr next-error)))
686 (buffer (compilation-find-file (cdr fileinfo)
687 (car fileinfo)
688 (car next-error))))
689 (if (null buffer)
690 ;; We can't find this error's file.
691 ;; Remove all errors in the same file.
692 (progn
693 (setq next-errors compilation-old-error-list)
694 (while next-errors
695 (and (consp (cdr (car next-errors)))
696 (equal (car (cdr (car next-errors)))
697 fileinfo)
698 (progn
699 (set-marker (car (car next-errors)) nil)
700 (setcdr (car next-errors) nil)))
701 (setq next-errors (cdr next-errors)))
702 ;; Look for the next error.
703 t)
704 ;; We found the file. Get a marker for this error.
705 ;; compilation-old-error-list is a buffer-local
706 ;; variable, so we must be careful to extract its value
707 ;; before switching to the source file buffer.
708 (let ((errors compilation-old-error-list)
709 (last-line (cdr (cdr next-error))))
710 (set-buffer buffer)
711 (save-excursion
712 (save-restriction
713 (widen)
714 (goto-line last-line)
715 (beginning-of-line)
716 (setcdr next-error (point-marker))
717 ;; Make all the other error messages referring
718 ;; to the same file have markers into the buffer.
719 (while errors
720 (and (consp (cdr (car errors)))
721 (equal (car (cdr (car errors))) fileinfo)
722 (let ((this (cdr (cdr (car errors))))
723 (lines (- (cdr (cdr (car errors)))
724 last-line)))
725 (if (eq selective-display t)
726 (if (< lines 0)
727 (re-search-backward "[\n\C-m]"
728 nil 'end
729 (- lines))
730 (re-search-forward "[\n\C-m]"
731 nil 'end
732 lines))
733 (forward-line lines))
734 (setq last-line this)
735 (setcdr (car errors) (point-marker))))
736 (setq errors (cdr errors)))))))))
737 ;; If we didn't get a marker for this error,
738 ;; go on to the next one.
739 (not (markerp (cdr next-error))))))
740 (setq next-errors compilation-error-list
741 next-error (car next-errors))))
742
743 ;; Skip over multiple error messages for the same source location,
744 ;; so the next C-x ` won't go to an error in the same place.
745 (while (and compilation-error-list
746 (equal (cdr (car compilation-error-list)) (cdr next-error)))
747 (setq compilation-error-list (cdr compilation-error-list)))
748
749 ;; We now have a marker for the position of the error.
750 (switch-to-buffer (marker-buffer (cdr next-error)))
751 (goto-char (cdr next-error))
752 ;; If narrowing got in the way of
753 ;; going to the right place, widen.
754 (or (= (point) (marker-position (cdr next-error)))
755 (progn
756 (widen)
757 (goto-char (cdr next-error))))
758
759 ;; Show compilation buffer in other window, scrolled to this error.
760 (let* ((pop-up-windows t)
761 (w (display-buffer (marker-buffer (car next-error)))))
762 (set-window-point w (car next-error))
763 (set-window-start w (car next-error)))))
764
765 ;;;###autoload
766 (define-key ctl-x-map "`" 'next-error)
767
768 ;; Find a buffer for file FILENAME.
769 ;; Search the directories in compilation-search-path.
770 ;; A nil in compilation-search-path means to try the
771 ;; current directory, which is passed in DIR.
772 ;; If FILENAME is not found at all, ask the user where to find it.
773 ;; Pop up the buffer containing MARKER and scroll to MARKER if we ask the user.
774 (defun compilation-find-file (filename dir marker)
775 (let ((dirs compilation-search-path)
776 result name)
777 (while (and dirs (null result))
778 (setq name (expand-file-name filename (or (car dirs) dir))
779 result (and (file-exists-p name)
780 (find-file-noselect name))
781 dirs (cdr dirs)))
782 (or result
783 ;; The file doesn't exist.
784 ;; Ask the user where to find it.
785 ;; If he hits C-g, then the next time he does
786 ;; next-error, he'll skip past it.
787 (progn
788 (let* ((pop-up-windows t)
789 (w (display-buffer (marker-buffer marker))))
790 (set-window-point w marker)
791 (set-window-start w marker))
792 (setq name
793 (expand-file-name
794 (read-file-name
795 (format "Find this error in: (default %s) "
796 filename) dir filename t)))
797 (if (file-directory-p name)
798 (setq name (concat (file-name-as-directory name) filename)))
799 (if (file-exists-p name)
800 (find-file-noselect name))))))
801
802 ;; Set compilation-error-list to nil, and unchain the markers that point to the
803 ;; error messages and their text, so that they no longer slow down gap motion.
804 ;; This would happen anyway at the next garbage collection, but it is better to
805 ;; do it right away.
806 (defun compilation-forget-errors ()
807 (while compilation-old-error-list
808 (let ((next-error (car compilation-old-error-list)))
809 (set-marker (car next-error) nil)
810 (if (markerp (cdr next-error))
811 (set-marker (cdr next-error) nil)))
812 (setq compilation-old-error-list (cdr compilation-old-error-list)))
813 (setq compilation-error-list nil
814 compilation-directory-stack nil))
815
816
817 (defun count-regexp-groupings (regexp)
818 "Return the number of \\( ... \\) groupings in REGEXP (a string)."
819 (let ((groupings 0)
820 (len (length regexp))
821 (i 0)
822 c)
823 (while (< i len)
824 (setq c (aref regexp i)
825 i (1+ i))
826 (cond ((= c ?\[)
827 ;; Find the end of this [...].
828 (while (and (< i len)
829 (not (= (aref regexp i) ?\])))
830 (setq i (1+ i))))
831 ((= c ?\\)
832 (if (< i len)
833 (progn
834 (setq c (aref regexp i)
835 i (1+ i))
836 (if (= c ?\))
837 ;; We found the end of a grouping,
838 ;; so bump our counter.
839 (setq groupings (1+ groupings))))))))
840 groupings))
841
842 (defun compilation-parse-errors (limit-search find-at-least)
843 "Parse the current buffer as grep, cc or lint error messages.
844 See variable `compilation-parse-errors-function' for the interface it uses."
845 (setq compilation-error-list nil)
846 (message "Parsing error messages...")
847 (let (text-buffer
848 regexp enter-group leave-group error-group
849 alist subexpr error-regexp-groups
850 (found-desired nil)
851 (compilation-num-errors-found 0))
852
853 ;; Don't reparse messages already seen at last parse.
854 (goto-char compilation-parsing-end)
855 ;; Don't parse the first two lines as error messages.
856 ;; This matters for grep.
857 (if (bobp)
858 (forward-line 2))
859
860 ;; Compile all the regexps we want to search for into one.
861 (setq regexp (concat "\\(" compilation-enter-directory-regexp "\\)\\|"
862 "\\(" compilation-leave-directory-regexp "\\)\\|"
863 "\\(" (mapconcat (function
864 (lambda (elt)
865 (concat "\\(" (car elt) "\\)")))
866 compilation-error-regexp-alist
867 "\\|") "\\)"))
868
869 ;; Find out how many \(...\) groupings are in each of the regexps, and set
870 ;; *-GROUP to the grouping containing each constituent regexp (whose
871 ;; subgroups will come immediately thereafter) of the big regexp we have
872 ;; just constructed.
873 (setq enter-group 1
874 leave-group (+ enter-group
875 (count-regexp-groupings
876 compilation-enter-directory-regexp)
877 1)
878 error-group (+ leave-group
879 (count-regexp-groupings
880 compilation-leave-directory-regexp)
881 1))
882
883 ;; Compile an alist (IDX FILE LINE), where IDX is the number of the
884 ;; subexpression for an entire error-regexp, and FILE and LINE are the
885 ;; numbers for the subexpressions giving the file name and line number.
886 (setq alist compilation-error-regexp-alist
887 subexpr (1+ error-group))
888 (while alist
889 (setq error-regexp-groups (cons (list subexpr
890 (+ subexpr (nth 1 (car alist)))
891 (+ subexpr (nth 2 (car alist))))
892 error-regexp-groups))
893 (setq subexpr (+ subexpr 1 (count-regexp-groupings (car (car alist)))))
894 (setq alist (cdr alist)))
895
896 (while (and (not found-desired)
897 ;; We don't just pass LIMIT-SEARCH to re-search-forward
898 ;; because we want to find matches containing LIMIT-SEARCH
899 ;; but which extend past it.
900 (re-search-forward regexp nil t))
901
902 ;; Figure out which constituent regexp matched.
903 (cond ((match-beginning enter-group)
904 ;; The match was the enter-directory regexp.
905 (let ((dir
906 (file-name-as-directory
907 (expand-file-name
908 (buffer-substring (match-beginning (+ enter-group 1))
909 (match-end (+ enter-group 1)))))))
910 (setq compilation-directory-stack
911 (cons dir compilation-directory-stack))
912 (and (file-directory-p dir)
913 (setq default-directory dir))))
914
915 ((match-beginning leave-group)
916 ;; The match was the leave-directory regexp.
917 (let ((beg (match-beginning (+ leave-group 1)))
918 (stack compilation-directory-stack))
919 (if beg
920 (let ((dir
921 (file-name-as-directory
922 (expand-file-name
923 (buffer-substring beg
924 (match-end (+ leave-group
925 1)))))))
926 (while (and stack
927 (not (string-equal (car stack) dir)))
928 (setq stack (cdr stack)))))
929 (setq compilation-directory-stack (cdr stack))
930 (setq stack (car compilation-directory-stack))
931 (if stack
932 (setq default-directory stack))
933 ))
934
935 ((match-beginning error-group)
936 ;; The match was the composite error regexp.
937 ;; Find out which individual regexp matched.
938 (setq alist error-regexp-groups)
939 (while (and alist
940 (null (match-beginning (car (car alist)))))
941 (setq alist (cdr alist)))
942 (if alist
943 (setq alist (car alist))
944 (error "compilation-parse-errors: Impossible regexp match!"))
945
946 ;; Extract the file name and line number from the error message.
947 (let ((beginning-of-match (match-beginning 0)) ;looking-at nukes
948 (filename
949 (cons default-directory
950 (buffer-substring (match-beginning (nth 1 alist))
951 (match-end (nth 1 alist)))))
952 (linenum (save-restriction
953 (narrow-to-region
954 (match-beginning (nth 2 alist))
955 (match-end (nth 2 alist)))
956 (goto-char (point-min))
957 (if (looking-at "[0-9]")
958 (read (current-buffer))))))
959 ;; Locate the erring file and line.
960 ;; Cons a new elt onto compilation-error-list,
961 ;; giving a marker for the current compilation buffer
962 ;; location, and the file and line number of the error.
963 (save-excursion
964 (beginning-of-line 1)
965 (setq compilation-error-list
966 (cons (cons (point-marker)
967 (cons filename linenum))
968 compilation-error-list)))
969 (setq compilation-num-errors-found
970 (1+ compilation-num-errors-found))
971 (and find-at-least (>= compilation-num-errors-found
972 find-at-least)
973 ;; We have found as many new errors as the user wants.
974 ;; We continue to parse until we have seen all
975 ;; the consecutive errors in the same file,
976 ;; so the error positions will be recorded as markers
977 ;; in this buffer that might change.
978 (cdr compilation-error-list) ; Must check at least two.
979 (not (equal (car (cdr (nth 0 compilation-error-list)))
980 (car (cdr (nth 1 compilation-error-list)))))
981 (progn
982 ;; Discard the error just parsed, so that the next
983 ;; parsing run can get it and the following errors in
984 ;; the same file all at once. If we didn't do this, we
985 ;; would have the same problem we are trying to avoid
986 ;; with the test above, just delayed until the next run!
987 (setq compilation-error-list
988 (cdr compilation-error-list))
989 (goto-char beginning-of-match)
990 (setq found-desired t)))
991 )
992 )
993 (t
994 (error "compilation-parse-errors: impossible regexp match!")))
995
996 (message "Parsing error messages...%d (%d%% of buffer)"
997 compilation-num-errors-found
998 (/ (* 100 (point)) (point-max)))
999
1000 (and limit-search (>= (point) limit-search)
1001 ;; The user wanted a specific error, and we're past it.
1002 (setq found-desired t)))
1003 (setq compilation-parsing-end (if found-desired
1004 (point)
1005 ;; We have searched the whole buffer.
1006 (point-max))))
1007 (setq compilation-error-list (nreverse compilation-error-list))
1008 (message "Parsing error messages...done"))
1009
1010 (define-key ctl-x-map "`" 'next-error)
1011
1012 (provide 'compile)
1013
1014 ;;; compile.el ends here