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