(defgroup reftex): Update home page url-link.
[bpt/emacs.git] / lisp / progmodes / flymake.el
1 ;;; flymake.el -- a universal on-the-fly syntax checker
2
3 ;; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation
4
5 ;; Author: Pavel Kobiakov <pk_at_work@yahoo.com>
6 ;; Maintainer: Pavel Kobiakov <pk_at_work@yahoo.com>
7 ;; Version: 0.3
8 ;; Keywords: c languages tools
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28 ;;
29 ;; Flymake is a minor Emacs mode performing on-the-fly syntax
30 ;; checks using the external syntax check tool (for C/C++ this
31 ;; is usually the compiler)
32
33 ;;; Bugs/todo:
34
35 ;; - Only uses "Makefile", not "makefile" or "GNUmakefile"
36 ;; (from http://bugs.debian.org/337339).
37
38 ;;; Code:
39
40 (eval-when-compile (require 'cl))
41 (if (featurep 'xemacs) (require 'overlay))
42
43 (defvar flymake-is-running nil
44 "If t, flymake syntax check process is running for the current buffer.")
45 (make-variable-buffer-local 'flymake-is-running)
46
47 (defvar flymake-timer nil
48 "Timer for starting syntax check.")
49 (make-variable-buffer-local 'flymake-timer)
50
51 (defvar flymake-last-change-time nil
52 "Time of last buffer change.")
53 (make-variable-buffer-local 'flymake-last-change-time)
54
55 (defvar flymake-check-start-time nil
56 "Time at which syntax check was started.")
57 (make-variable-buffer-local 'flymake-check-start-time)
58
59 (defvar flymake-check-was-interrupted nil
60 "Non-nil if syntax check was killed by `flymake-compile'.")
61 (make-variable-buffer-local 'flymake-check-was-interrupted)
62
63 (defvar flymake-err-info nil
64 "Sorted list of line numbers and lists of err info in the form (file, err-text).")
65 (make-variable-buffer-local 'flymake-err-info)
66
67 (defvar flymake-new-err-info nil
68 "Same as `flymake-err-info', effective when a syntax check is in progress.")
69 (make-variable-buffer-local 'flymake-new-err-info)
70
71 ;;;; [[ cross-emacs compatibility routines
72 (defsubst flymake-makehash (&optional test)
73 (if (fboundp 'make-hash-table)
74 (if test (make-hash-table :test test) (make-hash-table))
75 (with-no-warnings
76 (makehash test))))
77
78 (defalias 'flymake-float-time
79 (if (fboundp 'float-time)
80 'float-time
81 (if (featurep 'xemacs)
82 (lambda ()
83 (multiple-value-bind (s0 s1 s2) (current-time)
84 (+ (* (float (ash 1 16)) s0) (float s1) (* 0.0000001 s2)))))))
85
86 (defalias 'flymake-replace-regexp-in-string
87 (if (eval-when-compile (fboundp 'replace-regexp-in-string))
88 'replace-regexp-in-string
89 (lambda (regexp rep str)
90 (replace-in-string str regexp rep))))
91
92 (defalias 'flymake-split-string
93 (if (condition-case nil (equal (split-string " bc " " " t) '("bc"))
94 (error nil))
95 (lambda (str pattern) (split-string str pattern t))
96 (lambda (str pattern)
97 "Split STR into a list of substrings bounded by PATTERN.
98 Zero-length substrings at the beginning and end of the list are omitted."
99 (let ((split (split-string str pattern)))
100 (while (equal (car split) "") (setq split (cdr split)))
101 (setq split (nreverse split))
102 (while (equal (car split) "") (setq split (cdr split)))
103 (nreverse split)))))
104
105 (defalias 'flymake-get-temp-dir
106 (if (fboundp 'temp-directory)
107 'temp-directory
108 (lambda () temporary-file-directory)))
109
110 (defalias 'flymake-line-beginning-position
111 (if (fboundp 'line-beginning-position)
112 'line-beginning-position
113 (lambda (&optional arg) (save-excursion (beginning-of-line arg) (point)))))
114
115 (defalias 'flymake-line-end-position
116 (if (fboundp 'line-end-position)
117 'line-end-position
118 (lambda (&optional arg) (save-excursion (end-of-line arg) (point)))))
119
120
121 (defun flymake-popup-menu (menu-data)
122 "Pop up the flymake menu at point, using the data MENU-DATA.
123 POS is a list of the form ((X Y) WINDOW), where X and Y are
124 pixels positions from the top left corner of WINDOW's frame.
125 MENU-DATA is a list of error and warning messages returned by
126 `flymake-make-err-menu-data'."
127 (if (featurep 'xemacs)
128 (let* ((pos (flymake-get-point-pixel-pos))
129 (x-pos (nth 0 pos))
130 (y-pos (nth 1 pos))
131 (fake-event-props '(button 1 x 1 y 1)))
132 (setq fake-event-props (plist-put fake-event-props 'x x-pos))
133 (setq fake-event-props (plist-put fake-event-props 'y y-pos))
134 (popup-menu (flymake-make-xemacs-menu menu-data)
135 (make-event 'button-press fake-event-props)))
136 (x-popup-menu (if (eval-when-compile (fboundp 'posn-at-point))
137 (posn-at-point)
138 (list (flymake-get-point-pixel-pos) (selected-window)))
139 (flymake-make-emacs-menu menu-data))))
140
141 (defun flymake-make-emacs-menu (menu-data)
142 "Return a menu specifier using MENU-DATA.
143 MENU-DATA is a list of error and warning messages returned by
144 `flymake-make-err-menu-data'.
145 See `x-popup-menu' for the menu specifier format."
146 (let* ((menu-title (nth 0 menu-data))
147 (menu-items (nth 1 menu-data))
148 (menu-commands (mapcar (lambda (foo)
149 (cons (nth 0 foo) (nth 1 foo)))
150 menu-items)))
151 (list menu-title (cons "" menu-commands))))
152
153 (if (featurep 'xemacs) (progn
154
155 (defun flymake-nop ())
156
157 (defun flymake-make-xemacs-menu (menu-data)
158 "Return a menu specifier using MENU-DATA."
159 (let* ((menu-title (nth 0 menu-data))
160 (menu-items (nth 1 menu-data))
161 (menu-commands nil))
162 (setq menu-commands (mapcar (lambda (foo)
163 (vector (nth 0 foo) (or (nth 1 foo) '(flymake-nop)) t))
164 menu-items))
165 (cons menu-title menu-commands)))
166
167 )) ;; xemacs
168
169 (unless (eval-when-compile (fboundp 'posn-at-point))
170
171 (defun flymake-current-row ()
172 "Return current row number in current frame."
173 (if (fboundp 'window-edges)
174 (+ (car (cdr (window-edges))) (count-lines (window-start) (point)))
175 (count-lines (window-start) (point))))
176
177 (defun flymake-selected-frame ()
178 (if (fboundp 'window-edges)
179 (selected-frame)
180 (selected-window)))
181
182 (defun flymake-get-point-pixel-pos ()
183 "Return point position in pixels: (x, y)."
184 (let ((mouse-pos (mouse-position))
185 (pixel-pos nil)
186 (ret nil))
187 (if (car (cdr mouse-pos))
188 (progn
189 (set-mouse-position (flymake-selected-frame) (current-column) (flymake-current-row))
190 (setq pixel-pos (mouse-pixel-position))
191 (set-mouse-position (car mouse-pos) (car (cdr mouse-pos)) (cdr (cdr mouse-pos)))
192 (setq ret (list (car (cdr pixel-pos)) (cdr (cdr pixel-pos)))))
193 (progn
194 (setq ret '(0 0))))
195 (flymake-log 3 "mouse pos is %s" ret)
196 ret))
197
198 ) ;; End of (unless (fboundp 'posn-at-point)
199
200 ;;;; ]]
201
202 (defcustom flymake-log-level -1
203 "Logging level, only messages with level lower or equal will be logged.
204 -1 = NONE, 0 = ERROR, 1 = WARNING, 2 = INFO, 3 = DEBUG"
205 :group 'flymake
206 :type 'integer)
207
208 (defun flymake-log (level text &rest args)
209 "Log a message at level LEVEL.
210 If LEVEL is higher than `flymake-log-level', the message is
211 ignored. Otherwise, it is printed using `message'.
212 TEXT is a format control string, and the remaining arguments ARGS
213 are the string substitutions (see `format')."
214 (if (<= level flymake-log-level)
215 (let* ((msg (apply 'format text args)))
216 (message "%s" msg)
217 ;;(with-temp-buffer
218 ;; (insert msg)
219 ;; (insert "\n")
220 ;; (flymake-save-buffer-in-file "d:/flymake.log" t) ; make log file name customizable
221 ;;)
222 )))
223
224 (defun flymake-ins-after (list pos val)
225 "Insert VAL into LIST after position POS."
226 (let ((tmp (copy-sequence list))) ; (???)
227 (setcdr (nthcdr pos tmp) (cons val (nthcdr (1+ pos) tmp)))
228 tmp))
229
230 (defun flymake-set-at (list pos val)
231 "Set VAL at position POS in LIST."
232 (let ((tmp (copy-sequence list))) ; (???)
233 (setcar (nthcdr pos tmp) val)
234 tmp))
235
236 (defvar flymake-processes nil
237 "List of currently active flymake processes.")
238
239 (defvar flymake-output-residual nil)
240
241 (make-variable-buffer-local 'flymake-output-residual)
242
243 (defcustom flymake-allowed-file-name-masks
244 '(("\\.c\\'" flymake-simple-make-init)
245 ("\\.cpp\\'" flymake-simple-make-init)
246 ("\\.xml\\'" flymake-xml-init)
247 ("\\.html?\\'" flymake-xml-init)
248 ("\\.cs\\'" flymake-simple-make-init)
249 ("\\.pl\\'" flymake-perl-init)
250 ("\\.h\\'" flymake-master-make-header-init flymake-master-cleanup)
251 ("\\.java\\'" flymake-simple-make-java-init flymake-simple-java-cleanup)
252 ("[0-9]+\\.tex\\'" flymake-master-tex-init flymake-master-cleanup)
253 ("\\.tex\\'" flymake-simple-tex-init)
254 ("\\.idl\\'" flymake-simple-make-init)
255 ;; ("\\.cpp\\'" 1)
256 ;; ("\\.java\\'" 3)
257 ;; ("\\.h\\'" 2 ("\\.cpp\\'" "\\.c\\'")
258 ;; ("[ \t]*#[ \t]*include[ \t]*\"\\([\w0-9/\\_\.]*[/\\]*\\)\\(%s\\)\"" 1 2))
259 ;; ("\\.idl\\'" 1)
260 ;; ("\\.odl\\'" 1)
261 ;; ("[0-9]+\\.tex\\'" 2 ("\\.tex\\'")
262 ;; ("[ \t]*\\input[ \t]*{\\(.*\\)\\(%s\\)}" 1 2 ))
263 ;; ("\\.tex\\'" 1)
264 )
265 "*Files syntax checking is allowed for."
266 :group 'flymake
267 :type '(repeat (string symbol symbol symbol)))
268
269 (defun flymake-get-file-name-mode-and-masks (file-name)
270 "Return the corresponding entry from `flymake-allowed-file-name-masks'."
271 (unless (stringp file-name)
272 (error "Invalid file-name"))
273 (let ((fnm flymake-allowed-file-name-masks)
274 (mode-and-masks nil))
275 (while (and (not mode-and-masks) fnm)
276 (if (string-match (car (car fnm)) file-name)
277 (setq mode-and-masks (cdr (car fnm))))
278 (setq fnm (cdr fnm)))
279 (flymake-log 3 "file %s, init=%s" file-name (car mode-and-masks))
280 mode-and-masks))
281
282 (defun flymake-can-syntax-check-file (file-name)
283 "Determine whether we can syntax check FILE-NAME.
284 Return nil if we cannot, non-nil if we can."
285 (if (flymake-get-init-function file-name) t nil))
286
287 (defun flymake-get-init-function (file-name)
288 "Return init function to be used for the file."
289 (let* ((init-f (nth 0 (flymake-get-file-name-mode-and-masks file-name))))
290 ;;(flymake-log 0 "calling %s" init-f)
291 ;;(funcall init-f (current-buffer))
292 init-f))
293
294 (defun flymake-get-cleanup-function (file-name)
295 "Return cleanup function to be used for the file."
296 (or (nth 1 (flymake-get-file-name-mode-and-masks file-name))
297 'flymake-simple-cleanup))
298
299 (defun flymake-get-real-file-name-function (file-name)
300 (or (nth 2 (flymake-get-file-name-mode-and-masks file-name))
301 'flymake-get-real-file-name))
302
303 (defcustom flymake-buildfile-dirs '("." ".." "../.." "../../.." "../../../.." "../../../../.." "../../../../../.." "../../../../../../.." "../../../../../../../.." "../../../../../../../../.." "../../../../../../../../../.." "../../../../../../../../../../..")
304 "Dirs to look for buildfile."
305 :group 'flymake
306 :type '(repeat (string)))
307
308 (defvar flymake-find-buildfile-cache (flymake-makehash 'equal))
309
310 (defun flymake-get-buildfile-from-cache (dir-name)
311 (gethash dir-name flymake-find-buildfile-cache))
312
313 (defun flymake-add-buildfile-to-cache (dir-name buildfile)
314 (puthash dir-name buildfile flymake-find-buildfile-cache))
315
316 (defun flymake-clear-buildfile-cache ()
317 (clrhash flymake-find-buildfile-cache))
318
319 (defun flymake-find-buildfile (buildfile-name source-dir-name)
320 "Find buildfile starting from current directory.
321 Buildfile includes Makefile, build.xml etc.
322 Return its file name if found, or nil if not found."
323 (or (flymake-get-buildfile-from-cache source-dir-name)
324 (let* ((dirs flymake-buildfile-dirs)
325 (buildfile-dir nil)
326 (found nil))
327 (while (and (not found) dirs)
328 (setq buildfile-dir (concat source-dir-name (car dirs)))
329 (when (file-exists-p (expand-file-name buildfile-name buildfile-dir))
330 (setq found t))
331 (setq dirs (cdr dirs)))
332 (if found
333 (progn
334 (flymake-log 3 "found buildfile at %s/%s" buildfile-dir buildfile-name)
335 (flymake-add-buildfile-to-cache source-dir-name buildfile-dir)
336 buildfile-dir)
337 (progn
338 (flymake-log 3 "buildfile for %s not found" source-dir-name)
339 nil)))))
340
341 (defun flymake-fix-file-name (name)
342 "Replace all occurrences of '\' with '/'."
343 (when name
344 (setq name (expand-file-name name))
345 (setq name (abbreviate-file-name name))
346 (setq name (directory-file-name name))
347 name))
348
349 (defun flymake-same-files (file-name-one file-name-two)
350 "Check if FILE-NAME-ONE and FILE-NAME-TWO point to same file.
351 Return t if so, nil if not."
352 (equal (flymake-fix-file-name file-name-one)
353 (flymake-fix-file-name file-name-two)))
354
355 (defcustom flymake-master-file-dirs '("." "./src" "./UnitTest")
356 "Dirs where to look for master files."
357 :group 'flymake
358 :type '(repeat (string)))
359
360 (defcustom flymake-master-file-count-limit 32
361 "Max number of master files to check."
362 :group 'flymake
363 :type 'integer)
364
365 ;; This is bound dynamically to pass a parameter to a sort predicate below
366 (defvar flymake-included-file-name)
367
368 (defun flymake-find-possible-master-files (file-name master-file-dirs masks)
369 "Find (by name and location) all possible master files.
370 Master files are .cpp and .c for and .h. Files are searched for
371 starting from the .h directory and max max-level parent dirs.
372 File contents are not checked."
373 (let* ((dirs master-file-dirs)
374 (files nil)
375 (done nil))
376
377 (while (and (not done) dirs)
378 (let* ((dir (expand-file-name (car dirs) (file-name-directory file-name)))
379 (masks masks))
380 (while (and (file-exists-p dir) (not done) masks)
381 (let* ((mask (car masks))
382 (dir-files (directory-files dir t mask)))
383
384 (flymake-log 3 "dir %s, %d file(s) for mask %s"
385 dir (length dir-files) mask)
386 (while (and (not done) dir-files)
387 (when (not (file-directory-p (car dir-files)))
388 (setq files (cons (car dir-files) files))
389 (when (>= (length files) flymake-master-file-count-limit)
390 (flymake-log 3 "master file count limit (%d) reached" flymake-master-file-count-limit)
391 (setq done t)))
392 (setq dir-files (cdr dir-files))))
393 (setq masks (cdr masks))))
394 (setq dirs (cdr dirs)))
395 (when files
396 (let ((flymake-included-file-name (file-name-nondirectory file-name)))
397 (setq files (sort files 'flymake-master-file-compare))))
398 (flymake-log 3 "found %d possible master file(s)" (length files))
399 files))
400
401 (defun flymake-master-file-compare (file-one file-two)
402 "Compare two files specified by FILE-ONE and FILE-TWO.
403 This function is used in sort to move most possible file names
404 to the beginning of the list (File.h -> File.cpp moved to top)."
405 (and (equal (file-name-sans-extension flymake-included-file-name)
406 (file-name-sans-extension (file-name-nondirectory file-one)))
407 (not (equal file-one file-two))))
408
409 (defcustom flymake-check-file-limit 8192
410 "Max number of chars to look at when checking possible master file."
411 :group 'flymake
412 :type 'integer)
413
414 (defun flymake-check-patch-master-file-buffer
415 (master-file-temp-buffer
416 master-file-name patched-master-file-name
417 source-file-name patched-source-file-name
418 include-dirs regexp)
419 "Check if MASTER-FILE-NAME is a master file for SOURCE-FILE-NAME.
420 For .cpp master file this means it includes SOURCE-FILE-NAME (.h).
421 If yes, patch a copy of MASTER-FILE-NAME to include PATCHED-SOURCE-FILE-NAME
422 instead of SOURCE-FILE-NAME.
423 Whether a buffer for MATER-FILE-NAME exists, use it as a source
424 instead of reading master file from disk."
425 (let* ((source-file-nondir (file-name-nondirectory source-file-name))
426 (found nil)
427 (inc-name nil)
428 (search-limit flymake-check-file-limit))
429 (setq regexp
430 (format regexp ; "[ \t]*#[ \t]*include[ \t]*\"\\(.*%s\\)\""
431 (regexp-quote source-file-nondir)))
432 (unwind-protect
433 (with-current-buffer master-file-temp-buffer
434 (when (> search-limit (point-max))
435 (setq search-limit (point-max)))
436 (flymake-log 3 "checking %s against regexp %s"
437 master-file-name regexp)
438 (goto-char (point-min))
439 (while (and (< (point) search-limit)
440 (re-search-forward regexp search-limit t))
441 (let ((match-beg (match-beginning 1))
442 (match-end (match-end 1)))
443
444 (flymake-log 3 "found possible match for %s" source-file-nondir)
445 (setq inc-name (match-string 1))
446 (when (eq t (compare-strings
447 source-file-nondir nil nil
448 inc-name (- (length inc-name)
449 (length source-file-nondir)) nil))
450 (flymake-log 3 "inc-name=%s" inc-name)
451 (when (flymake-check-include source-file-name inc-name
452 include-dirs)
453 (setq found t)
454 ;; replace-match is not used here as it fails in
455 ;; XEmacs with 'last match not a buffer' error as
456 ;; check-includes calls replace-in-string
457 (flymake-replace-region
458 match-beg match-end
459 (file-name-nondirectory patched-source-file-name))))
460 (forward-line 1)))
461 (when found
462 (flymake-save-buffer-in-file patched-master-file-name)))
463 ;;+(flymake-log 3 "killing buffer %s"
464 ;; (buffer-name master-file-temp-buffer))
465 (kill-buffer master-file-temp-buffer))
466 ;;+(flymake-log 3 "check-patch master file %s: %s" master-file-name found)
467 (when found
468 (flymake-log 2 "found master file %s" master-file-name))
469 found))
470
471 (defun flymake-replace-region (beg end rep)
472 "Replace text in BUFFER in region (BEG END) with REP."
473 (save-excursion
474 (goto-char end)
475 ;; Insert before deleting, so as to better preserve markers's positions.
476 (insert rep)
477 (delete-region beg end)))
478
479 (defun flymake-read-file-to-temp-buffer (file-name)
480 "Insert contents of FILE-NAME into newly created temp buffer."
481 (let* ((temp-buffer (get-buffer-create (generate-new-buffer-name (concat "flymake:" (file-name-nondirectory file-name))))))
482 (with-current-buffer temp-buffer
483 (insert-file-contents file-name))
484 temp-buffer))
485
486 (defun flymake-copy-buffer-to-temp-buffer (buffer)
487 "Copy contents of BUFFER into newly created temp buffer."
488 (with-current-buffer
489 (get-buffer-create (generate-new-buffer-name
490 (concat "flymake:" (buffer-name buffer))))
491 (insert-buffer-substring buffer)
492 (current-buffer)))
493
494 (defun flymake-check-include (source-file-name inc-name include-dirs)
495 "Check if SOURCE-FILE-NAME can be found in include path.
496 Return t if it can be found via include path using INC-NAME."
497 (if (file-name-absolute-p inc-name)
498 (flymake-same-files source-file-name inc-name)
499 (while (and include-dirs
500 (not (flymake-same-files
501 source-file-name
502 (concat (file-name-directory source-file-name)
503 "/" (car include-dirs)
504 "/" inc-name))))
505 (setq include-dirs (cdr include-dirs)))
506 include-dirs))
507
508 (defun flymake-find-buffer-for-file (file-name)
509 "Check if there exists a buffer visiting FILE-NAME.
510 Return t if so, nil if not."
511 (let ((buffer-name (get-file-buffer file-name)))
512 (if buffer-name
513 (get-buffer buffer-name))))
514
515 (defun flymake-create-master-file (source-file-name patched-source-file-name get-incl-dirs-f create-temp-f masks include-regexp)
516 "Save SOURCE-FILE-NAME with a different name.
517 Find master file, patch and save it."
518 (let* ((possible-master-files (flymake-find-possible-master-files source-file-name flymake-master-file-dirs masks))
519 (master-file-count (length possible-master-files))
520 (idx 0)
521 (temp-buffer nil)
522 (master-file-name nil)
523 (patched-master-file-name nil)
524 (found nil))
525
526 (while (and (not found) (< idx master-file-count))
527 (setq master-file-name (nth idx possible-master-files))
528 (setq patched-master-file-name (funcall create-temp-f master-file-name "flymake_master"))
529 (if (flymake-find-buffer-for-file master-file-name)
530 (setq temp-buffer (flymake-copy-buffer-to-temp-buffer (flymake-find-buffer-for-file master-file-name)))
531 (setq temp-buffer (flymake-read-file-to-temp-buffer master-file-name)))
532 (setq found
533 (flymake-check-patch-master-file-buffer
534 temp-buffer
535 master-file-name
536 patched-master-file-name
537 source-file-name
538 patched-source-file-name
539 (funcall get-incl-dirs-f (file-name-directory master-file-name))
540 include-regexp))
541 (setq idx (1+ idx)))
542 (if found
543 (list master-file-name patched-master-file-name)
544 (progn
545 (flymake-log 3 "none of %d master file(s) checked includes %s" master-file-count
546 (file-name-nondirectory source-file-name))
547 nil))))
548
549 (defun flymake-save-buffer-in-file (file-name)
550 (save-restriction
551 (widen)
552 (make-directory (file-name-directory file-name) 1)
553 (write-region (point-min) (point-max) file-name nil 566))
554 (flymake-log 3 "saved buffer %s in file %s" (buffer-name) file-name))
555
556 (defun flymake-save-string-to-file (file-name data)
557 "Save string DATA to file FILE-NAME."
558 (write-region data nil file-name nil 566))
559
560 (defun flymake-read-file-to-string (file-name)
561 "Read contents of file FILE-NAME and return as a string."
562 (with-temp-buffer
563 (insert-file-contents file-name)
564 (buffer-substring (point-min) (point-max))))
565
566 (defun flymake-process-filter (process output)
567 "Parse OUTPUT and highlight error lines.
568 It's flymake process filter."
569 (let ((source-buffer (process-buffer process)))
570
571 (flymake-log 3 "received %d byte(s) of output from process %d"
572 (length output) (process-id process))
573 (when source-buffer
574 (with-current-buffer source-buffer
575 (flymake-parse-output-and-residual output)))))
576
577 (defun flymake-process-sentinel (process event)
578 "Sentinel for syntax check buffers."
579 (when (memq (process-status process) '(signal exit))
580 (let* ((exit-status (process-exit-status process))
581 (command (process-command process))
582 (source-buffer (process-buffer process))
583 (cleanup-f (flymake-get-cleanup-function (buffer-file-name source-buffer))))
584
585 (flymake-log 2 "process %d exited with code %d"
586 (process-id process) exit-status)
587 (condition-case err
588 (progn
589 (flymake-log 3 "cleaning up using %s" cleanup-f)
590 (when (buffer-live-p source-buffer)
591 (with-current-buffer source-buffer
592 (funcall cleanup-f)))
593
594 (delete-process process)
595 (setq flymake-processes (delq process flymake-processes))
596
597 (when (buffer-live-p source-buffer)
598 (with-current-buffer source-buffer
599
600 (flymake-parse-residual)
601 (flymake-post-syntax-check exit-status command)
602 (setq flymake-is-running nil))))
603 (error
604 (let ((err-str (format "Error in process sentinel for buffer %s: %s"
605 source-buffer (error-message-string err))))
606 (flymake-log 0 err-str)
607 (with-current-buffer source-buffer
608 (setq flymake-is-running nil))))))))
609
610 (defun flymake-post-syntax-check (exit-status command)
611 (setq flymake-err-info flymake-new-err-info)
612 (setq flymake-new-err-info nil)
613 (setq flymake-err-info
614 (flymake-fix-line-numbers
615 flymake-err-info 1 (flymake-count-lines)))
616 (flymake-delete-own-overlays)
617 (flymake-highlight-err-lines flymake-err-info)
618 (let (err-count warn-count)
619 (setq err-count (flymake-get-err-count flymake-err-info "e"))
620 (setq warn-count (flymake-get-err-count flymake-err-info "w"))
621 (flymake-log 2 "%s: %d error(s), %d warning(s) in %.2f second(s)"
622 (buffer-name) err-count warn-count
623 (- (flymake-float-time) flymake-check-start-time))
624 (setq flymake-check-start-time nil)
625
626 (if (and (equal 0 err-count) (equal 0 warn-count))
627 (if (equal 0 exit-status)
628 (flymake-report-status "" "") ; PASSED
629 (if (not flymake-check-was-interrupted)
630 (flymake-report-fatal-status "CFGERR"
631 (format "Configuration error has occured while running %s" command))
632 (flymake-report-status nil ""))) ; "STOPPED"
633 (flymake-report-status (format "%d/%d" err-count warn-count) ""))))
634
635 (defun flymake-parse-output-and-residual (output)
636 "Split OUTPUT into lines, merge in residual if necessary."
637 (let* ((buffer-residual flymake-output-residual)
638 (total-output (if buffer-residual (concat buffer-residual output) output))
639 (lines-and-residual (flymake-split-output total-output))
640 (lines (nth 0 lines-and-residual))
641 (new-residual (nth 1 lines-and-residual)))
642 (setq flymake-output-residual new-residual)
643 (setq flymake-new-err-info
644 (flymake-parse-err-lines
645 flymake-new-err-info lines))))
646
647 (defun flymake-parse-residual ()
648 "Parse residual if it's non empty."
649 (when flymake-output-residual
650 (setq flymake-new-err-info
651 (flymake-parse-err-lines
652 flymake-new-err-info
653 (list flymake-output-residual)))
654 (setq flymake-output-residual nil)))
655
656 (defun flymake-er-make-er (line-no line-err-info-list)
657 (list line-no line-err-info-list))
658
659 (defun flymake-er-get-line (err-info)
660 (nth 0 err-info))
661
662 (defun flymake-er-get-line-err-info-list (err-info)
663 (nth 1 err-info))
664
665 (defstruct (flymake-ler
666 (:constructor nil)
667 (:constructor flymake-ler-make-ler (file line type text &optional full-file)))
668 file line type text full-file)
669
670 (defun flymake-ler-set-file (line-err-info file)
671 (flymake-ler-make-ler file
672 (flymake-ler-line line-err-info)
673 (flymake-ler-type line-err-info)
674 (flymake-ler-text line-err-info)
675 (flymake-ler-full-file line-err-info)))
676
677 (defun flymake-ler-set-full-file (line-err-info full-file)
678 (flymake-ler-make-ler (flymake-ler-file line-err-info)
679 (flymake-ler-line line-err-info)
680 (flymake-ler-type line-err-info)
681 (flymake-ler-text line-err-info)
682 full-file))
683
684 (defun flymake-ler-set-line (line-err-info line)
685 (flymake-ler-make-ler (flymake-ler-file line-err-info)
686 line
687 (flymake-ler-type line-err-info)
688 (flymake-ler-text line-err-info)
689 (flymake-ler-full-file line-err-info)))
690
691 (defun flymake-get-line-err-count (line-err-info-list type)
692 "Return number of errors of specified TYPE.
693 Value of TYPE is either \"e\" or \"w\"."
694 (let* ((idx 0)
695 (count (length line-err-info-list))
696 (err-count 0))
697
698 (while (< idx count)
699 (when (equal type (flymake-ler-type (nth idx line-err-info-list)))
700 (setq err-count (1+ err-count)))
701 (setq idx (1+ idx)))
702 err-count))
703
704 (defun flymake-get-err-count (err-info-list type)
705 "Return number of errors of specified TYPE for ERR-INFO-LIST."
706 (let* ((idx 0)
707 (count (length err-info-list))
708 (err-count 0))
709 (while (< idx count)
710 (setq err-count (+ err-count (flymake-get-line-err-count (nth 1 (nth idx err-info-list)) type)))
711 (setq idx (1+ idx)))
712 err-count))
713
714 (defun flymake-fix-line-numbers (err-info-list min-line max-line)
715 "Replace line numbers with fixed value.
716 If line-numbers is less than MIN-LINE, set line numbers to MIN-LINE.
717 If line numbers is greater than MAX-LINE, set line numbers to MAX-LINE.
718 The reason for this fix is because some compilers might report
719 line number outside the file being compiled."
720 (let* ((count (length err-info-list))
721 (err-info nil)
722 (line 0))
723 (while (> count 0)
724 (setq err-info (nth (1- count) err-info-list))
725 (setq line (flymake-er-get-line err-info))
726 (when (or (< line min-line) (> line max-line))
727 (setq line (if (< line min-line) min-line max-line))
728 (setq err-info-list (flymake-set-at err-info-list (1- count)
729 (flymake-er-make-er line
730 (flymake-er-get-line-err-info-list err-info)))))
731 (setq count (1- count))))
732 err-info-list)
733
734 (defun flymake-highlight-err-lines (err-info-list)
735 "Highlight error lines in BUFFER using info from ERR-INFO-LIST."
736 (save-excursion
737 (dolist (err err-info-list)
738 (flymake-highlight-line (car err) (nth 1 err)))))
739
740 (defun flymake-overlay-p (ov)
741 "Determine whether overlay OV was created by flymake."
742 (and (overlayp ov) (overlay-get ov 'flymake-overlay)))
743
744 (defun flymake-make-overlay (beg end tooltip-text face mouse-face)
745 "Allocate a flymake overlay in range BEG and END."
746 (when (not (flymake-region-has-flymake-overlays beg end))
747 (let ((ov (make-overlay beg end nil t t)))
748 (overlay-put ov 'face face)
749 (overlay-put ov 'mouse-face mouse-face)
750 (overlay-put ov 'help-echo tooltip-text)
751 (overlay-put ov 'flymake-overlay t)
752 (overlay-put ov 'priority 100)
753 ;;+(flymake-log 3 "created overlay %s" ov)
754 ov)
755 (flymake-log 3 "created an overlay at (%d-%d)" beg end)))
756
757 (defun flymake-delete-own-overlays ()
758 "Delete all flymake overlays in BUFFER."
759 (dolist (ol (overlays-in (point-min) (point-max)))
760 (when (flymake-overlay-p ol)
761 (delete-overlay ol)
762 ;;+(flymake-log 3 "deleted overlay %s" ol)
763 )))
764
765 (defun flymake-region-has-flymake-overlays (beg end)
766 "Check if region specified by BEG and END has overlay.
767 Return t if it has at least one flymake overlay, nil if no overlay."
768 (let ((ov (overlays-in beg end))
769 (has-flymake-overlays nil))
770 (while (consp ov)
771 (when (flymake-overlay-p (car ov))
772 (setq has-flymake-overlays t))
773 (setq ov (cdr ov)))
774 has-flymake-overlays))
775
776 (defface flymake-errline
777 ;;+ '((((class color)) (:foreground "OrangeRed" :bold t :underline t))
778 ;;+ '((((class color)) (:underline "OrangeRed"))
779 '((((class color)) (:background "LightPink"))
780 (t (:bold t)))
781 "Face used for marking error lines."
782 :group 'flymake)
783
784 (defface flymake-warnline
785 '((((class color)) (:background "LightBlue2"))
786 (t (:bold t)))
787 "Face used for marking warning lines."
788 :group 'flymake)
789
790 (defun flymake-highlight-line (line-no line-err-info-list)
791 "Highlight line LINE-NO in current buffer.
792 Perhaps use text from LINE-ERR-INFO-LIST to enhance highlighting."
793 (goto-line line-no)
794 (let* ((line-beg (flymake-line-beginning-position))
795 (line-end (flymake-line-end-position))
796 (beg line-beg)
797 (end line-end)
798 (tooltip-text (flymake-ler-text (nth 0 line-err-info-list)))
799 (face nil))
800
801 (goto-char line-beg)
802 (while (looking-at "[ \t]")
803 (forward-char))
804
805 (setq beg (point))
806
807 (goto-char line-end)
808 (while (and (looking-at "[ \t\r\n]") (> (point) 1))
809 (backward-char))
810
811 (setq end (1+ (point)))
812
813 (when (<= end beg)
814 (setq beg line-beg)
815 (setq end line-end))
816
817 (when (= end beg)
818 (goto-char end)
819 (forward-line)
820 (setq end (point)))
821
822 (if (> (flymake-get-line-err-count line-err-info-list "e") 0)
823 (setq face 'flymake-errline)
824 (setq face 'flymake-warnline))
825
826 (flymake-make-overlay beg end tooltip-text face nil)))
827
828 (defun flymake-parse-err-lines (err-info-list lines)
829 "Parse err LINES, store info in ERR-INFO-LIST."
830 (let* ((count (length lines))
831 (idx 0)
832 (line-err-info nil)
833 (real-file-name nil)
834 (source-file-name buffer-file-name)
835 (get-real-file-name-f (flymake-get-real-file-name-function source-file-name)))
836
837 (while (< idx count)
838 (setq line-err-info (flymake-parse-line (nth idx lines)))
839 (when line-err-info
840 (setq real-file-name (funcall get-real-file-name-f
841 (flymake-ler-file line-err-info)))
842 (setq line-err-info (flymake-ler-set-full-file line-err-info real-file-name))
843
844 (if (flymake-same-files real-file-name source-file-name)
845 (setq line-err-info (flymake-ler-set-file line-err-info nil))
846 (setq line-err-info (flymake-ler-set-file line-err-info (file-name-nondirectory real-file-name))))
847
848 (setq err-info-list (flymake-add-err-info err-info-list line-err-info)))
849 (flymake-log 3 "parsed '%s', %s line-err-info" (nth idx lines) (if line-err-info "got" "no"))
850 (setq idx (1+ idx)))
851 err-info-list))
852
853 (defun flymake-split-output (output)
854 "Split OUTPUT into lines.
855 Return last one as residual if it does not end with newline char.
856 Returns ((LINES) RESIDUAL)."
857 (when (and output (> (length output) 0))
858 (let* ((lines (flymake-split-string output "[\n\r]+"))
859 (complete (equal "\n" (char-to-string (aref output (1- (length output))))))
860 (residual nil))
861 (when (not complete)
862 (setq residual (car (last lines)))
863 (setq lines (butlast lines)))
864 (list lines residual))))
865
866 (defun flymake-reformat-err-line-patterns-from-compile-el (original-list)
867 "Grab error line patterns from ORIGINAL-LIST in compile.el format.
868 Convert it to flymake internal format."
869 (let* ((converted-list '()))
870 (dolist (item original-list)
871 (setq item (cdr item))
872 (let ((regexp (nth 0 item))
873 (file (nth 1 item))
874 (line (nth 2 item))
875 (col (nth 3 item)))
876 (if (consp file) (setq file (car file)))
877 (if (consp line) (setq line (car line)))
878 (if (consp col) (setq col (car col)))
879
880 (when (not (functionp line))
881 (setq converted-list (cons (list regexp file line col) converted-list)))))
882 converted-list))
883
884 (require 'compile)
885
886 (defvar flymake-err-line-patterns ; regexp file-idx line-idx col-idx (optional) text-idx(optional), match-end to end of string is error text
887 (append
888 '(
889 ;; MS Visual C++ 6.0
890 ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \: \\(\\(error\\|warning\\|fatal error\\) \\(C[0-9]+\\):[ \t\n]*\\(.+\\)\\)"
891 1 3 nil 4)
892 ;; jikes
893 ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[0-9]+\:[0-9]+\:[0-9]+\: \\(\\(Error\\|Warning\\|Caution\\|Semantic Error\\):[ \t\n]*\\(.+\\)\\)"
894 1 3 nil 4)
895 ;; MS midl
896 ("midl[ ]*:[ ]*\\(command line error .*\\)"
897 nil nil nil 1)
898 ;; MS C#
899 ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\),[0-9]+)\: \\(\\(error\\|warning\\|fatal error\\) \\(CS[0-9]+\\):[ \t\n]*\\(.+\\)\\)"
900 1 3 nil 4)
901 ;; perl
902 ("\\(.*\\) at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]" 2 3 nil 1)
903 ;; LaTeX warnings (fileless) ("\\(LaTeX \\(Warning\\|Error\\): .*\\) on input line \\([0-9]+\\)" 20 3 nil 1)
904 ;; ant/javac
905 (" *\\(\\[javac\\]\\)? *\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[ \t\n]*\\(.+\\)"
906 2 4 nil 5))
907 ;; compilation-error-regexp-alist)
908 (flymake-reformat-err-line-patterns-from-compile-el compilation-error-regexp-alist-alist))
909 "Patterns for matching error/warning lines.
910 \(REGEXP FILE-IDX LINE-IDX ERR-TEXT-IDX).
911 Use `flymake-reformat-err-line-patterns-from-compile-el' to add patterns
912 from compile.el")
913
914 ;;(defcustom flymake-err-line-patterns
915 ;; '(
916 ;; ; MS Visual C++ 6.0
917 ;; ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \: \\(\\(error\\|warning\\|fatal error\\) \\(C[0-9]+\\):[ \t\n]*\\(.+\\)\\)"
918 ;; 1 3 4)
919 ;; ; jikes
920 ;; ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[0-9]+\:[0-9]+\:[0-9]+\: \\(\\(Error\\|Warning\\|Caution\\):[ \t\n]*\\(.+\\)\\)"
921 ;; 1 3 4))
922 ;; "patterns for matching error/warning lines, (regexp file-idx line-idx err-text-idx)"
923 ;; :group 'flymake
924 ;; :type '(repeat (string number number number))
925 ;;)
926
927 (defun flymake-parse-line (line)
928 "Parse LINE to see if it is an error or warning.
929 Return its components if so, nil otherwise."
930 (let ((raw-file-name nil)
931 (line-no 0)
932 (err-type "e")
933 (err-text nil)
934 (patterns flymake-err-line-patterns)
935 (matched nil))
936 (while (and patterns (not matched))
937 (when (string-match (car (car patterns)) line)
938 (let* ((file-idx (nth 1 (car patterns)))
939 (line-idx (nth 2 (car patterns))))
940
941 (setq raw-file-name (if file-idx (match-string file-idx line) nil))
942 (setq line-no (if line-idx (string-to-number (match-string line-idx line)) 0))
943 (setq err-text (if (> (length (car patterns)) 4)
944 (match-string (nth 4 (car patterns)) line)
945 (flymake-patch-err-text (substring line (match-end 0)))))
946 (or err-text (setq err-text "<no error text>"))
947 (if (and err-text (string-match "^[wW]arning" err-text))
948 (setq err-type "w")
949 )
950 (flymake-log 3 "parse line: file-idx=%s line-idx=%s file=%s line=%s text=%s" file-idx line-idx
951 raw-file-name line-no err-text)
952 (setq matched t)))
953 (setq patterns (cdr patterns)))
954 (if matched
955 (flymake-ler-make-ler raw-file-name line-no err-type err-text)
956 ())))
957
958 (defun flymake-find-err-info (err-info-list line-no)
959 "Find (line-err-info-list pos) for specified LINE-NO."
960 (if err-info-list
961 (let* ((line-err-info-list nil)
962 (pos 0)
963 (count (length err-info-list)))
964
965 (while (and (< pos count) (< (car (nth pos err-info-list)) line-no))
966 (setq pos (1+ pos)))
967 (when (and (< pos count) (equal (car (nth pos err-info-list)) line-no))
968 (setq line-err-info-list (flymake-er-get-line-err-info-list (nth pos err-info-list))))
969 (list line-err-info-list pos))
970 '(nil 0)))
971
972 (defun flymake-line-err-info-is-less-or-equal (line-one line-two)
973 (or (string< (flymake-ler-type line-one) (flymake-ler-type line-two))
974 (and (string= (flymake-ler-type line-one) (flymake-ler-type line-two))
975 (not (flymake-ler-file line-one)) (flymake-ler-file line-two))
976 (and (string= (flymake-ler-type line-one) (flymake-ler-type line-two))
977 (or (and (flymake-ler-file line-one) (flymake-ler-file line-two))
978 (and (not (flymake-ler-file line-one)) (not (flymake-ler-file line-two)))))))
979
980 (defun flymake-add-line-err-info (line-err-info-list line-err-info)
981 "Update LINE-ERR-INFO-LIST with the error LINE-ERR-INFO.
982 For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'.
983 The new element is inserted in the proper position, according to
984 the predicate `flymake-line-err-info-is-less-or-equal'.
985 The updated value of LINE-ERR-INFO-LIST is returned."
986 (if (not line-err-info-list)
987 (list line-err-info)
988 (let* ((count (length line-err-info-list))
989 (idx 0))
990 (while (and (< idx count) (flymake-line-err-info-is-less-or-equal (nth idx line-err-info-list) line-err-info))
991 (setq idx (1+ idx)))
992 (cond ((equal 0 idx) (setq line-err-info-list (cons line-err-info line-err-info-list)))
993 (t (setq line-err-info-list (flymake-ins-after line-err-info-list (1- idx) line-err-info))))
994 line-err-info-list)))
995
996 (defun flymake-add-err-info (err-info-list line-err-info)
997 "Update ERR-INFO-LIST with the error LINE-ERR-INFO, preserving sort order.
998 Returns the updated value of ERR-INFO-LIST.
999 For the format of ERR-INFO-LIST, see `flymake-err-info'.
1000 For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'."
1001 (let* ((line-no (if (flymake-ler-file line-err-info) 1 (flymake-ler-line line-err-info)))
1002 (info-and-pos (flymake-find-err-info err-info-list line-no))
1003 (exists (car info-and-pos))
1004 (pos (nth 1 info-and-pos))
1005 (line-err-info-list nil)
1006 (err-info nil))
1007
1008 (if exists
1009 (setq line-err-info-list (flymake-er-get-line-err-info-list (car (nthcdr pos err-info-list)))))
1010 (setq line-err-info-list (flymake-add-line-err-info line-err-info-list line-err-info))
1011
1012 (setq err-info (flymake-er-make-er line-no line-err-info-list))
1013 (cond (exists (setq err-info-list (flymake-set-at err-info-list pos err-info)))
1014 ((equal 0 pos) (setq err-info-list (cons err-info err-info-list)))
1015 (t (setq err-info-list (flymake-ins-after err-info-list (1- pos) err-info))))
1016 err-info-list))
1017
1018 (defun flymake-get-project-include-dirs-imp (basedir)
1019 "Include dirs for the project current file belongs to."
1020 (if (flymake-get-project-include-dirs-from-cache basedir)
1021 (progn
1022 (flymake-get-project-include-dirs-from-cache basedir))
1023 ;;else
1024 (let* ((command-line (concat "make -C\"" basedir "\" DUMPVARS=INCLUDE_DIRS dumpvars"))
1025 (output (shell-command-to-string command-line))
1026 (lines (flymake-split-string output "\n"))
1027 (count (length lines))
1028 (idx 0)
1029 (inc-dirs nil))
1030 (while (and (< idx count) (not (string-match "^INCLUDE_DIRS=.*" (nth idx lines))))
1031 (setq idx (1+ idx)))
1032 (when (< idx count)
1033 (let* ((inc-lines (flymake-split-string (nth idx lines) " *-I"))
1034 (inc-count (length inc-lines)))
1035 (while (> inc-count 0)
1036 (when (not (string-match "^INCLUDE_DIRS=.*" (nth (1- inc-count) inc-lines)))
1037 (push (flymake-replace-regexp-in-string "\"" "" (nth (1- inc-count) inc-lines)) inc-dirs))
1038 (setq inc-count (1- inc-count)))))
1039 (flymake-add-project-include-dirs-to-cache basedir inc-dirs)
1040 inc-dirs)))
1041
1042 (defcustom flymake-get-project-include-dirs-function 'flymake-get-project-include-dirs-imp
1043 "Function used to get project include dirs, one parameter: basedir name."
1044 :group 'flymake
1045 :type 'function)
1046
1047 (defun flymake-get-project-include-dirs (basedir)
1048 (funcall flymake-get-project-include-dirs-function basedir))
1049
1050 (defun flymake-get-system-include-dirs ()
1051 "System include dirs - from the 'INCLUDE' env setting."
1052 (let* ((includes (getenv "INCLUDE")))
1053 (if includes (flymake-split-string includes path-separator) nil)))
1054
1055 (defvar flymake-project-include-dirs-cache (flymake-makehash 'equal))
1056
1057 (defun flymake-get-project-include-dirs-from-cache (base-dir)
1058 (gethash base-dir flymake-project-include-dirs-cache))
1059
1060 (defun flymake-add-project-include-dirs-to-cache (base-dir include-dirs)
1061 (puthash base-dir include-dirs flymake-project-include-dirs-cache))
1062
1063 (defun flymake-clear-project-include-dirs-cache ()
1064 (clrhash flymake-project-include-dirs-cache))
1065
1066 (defun flymake-get-include-dirs (base-dir)
1067 "Get dirs to use when resolving local file names."
1068 (let* ((include-dirs (append '(".") (flymake-get-project-include-dirs base-dir) (flymake-get-system-include-dirs))))
1069 include-dirs))
1070
1071 ;; (defun flymake-restore-formatting ()
1072 ;; "Remove any formatting made by flymake."
1073 ;; )
1074
1075 ;; (defun flymake-get-program-dir (buffer)
1076 ;; "Get dir to start program in."
1077 ;; (unless (bufferp buffer)
1078 ;; (error "Invalid buffer"))
1079 ;; (with-current-buffer buffer
1080 ;; default-directory))
1081
1082 (defun flymake-safe-delete-file (file-name)
1083 (when (and file-name (file-exists-p file-name))
1084 (delete-file file-name)
1085 (flymake-log 1 "deleted file %s" file-name)))
1086
1087 (defun flymake-safe-delete-directory (dir-name)
1088 (condition-case err
1089 (progn
1090 (delete-directory dir-name)
1091 (flymake-log 1 "deleted dir %s" dir-name))
1092 (error
1093 (flymake-log 1 "Failed to delete dir %s, error ignored" dir-name))))
1094
1095 (defcustom flymake-compilation-prevents-syntax-check t
1096 "If non-nil, syntax check won't be started in case compilation is running."
1097 :group 'flymake
1098 :type 'boolean)
1099
1100 (defun flymake-start-syntax-check ()
1101 "Start syntax checking for current buffer."
1102 (interactive)
1103 (flymake-log 3 "flymake is running: %s" flymake-is-running)
1104 (when (and (not flymake-is-running)
1105 (flymake-can-syntax-check-file buffer-file-name))
1106 (when (or (not flymake-compilation-prevents-syntax-check)
1107 (not (flymake-compilation-is-running))) ;+ (flymake-rep-ort-status buffer "COMP")
1108 (flymake-clear-buildfile-cache)
1109 (flymake-clear-project-include-dirs-cache)
1110
1111 (setq flymake-check-was-interrupted nil)
1112
1113 (let* ((source-file-name buffer-file-name)
1114 (init-f (flymake-get-init-function source-file-name))
1115 (cleanup-f (flymake-get-cleanup-function source-file-name))
1116 (cmd-and-args (funcall init-f))
1117 (cmd (nth 0 cmd-and-args))
1118 (args (nth 1 cmd-and-args))
1119 (dir (nth 2 cmd-and-args)))
1120 (if (not cmd-and-args)
1121 (progn
1122 (flymake-log 0 "init function %s for %s failed, cleaning up" init-f source-file-name)
1123 (funcall cleanup-f))
1124 (progn
1125 (setq flymake-last-change-time nil)
1126 (flymake-start-syntax-check-process cmd args dir)))))))
1127
1128 (defun flymake-start-syntax-check-process (cmd args dir)
1129 "Start syntax check process."
1130 (let* ((process nil))
1131 (condition-case err
1132 (progn
1133 (when dir
1134 (let ((default-directory dir))
1135 (flymake-log 3 "starting process on dir %s" default-directory)))
1136 (setq process (apply 'start-process "flymake-proc" (current-buffer) cmd args))
1137 (set-process-sentinel process 'flymake-process-sentinel)
1138 (set-process-filter process 'flymake-process-filter)
1139 (push process flymake-processes)
1140
1141 (setq flymake-is-running t)
1142 (setq flymake-last-change-time nil)
1143 (setq flymake-check-start-time (flymake-float-time))
1144
1145 (flymake-report-status nil "*")
1146 (flymake-log 2 "started process %d, command=%s, dir=%s"
1147 (process-id process) (process-command process)
1148 default-directory)
1149 process)
1150 (error
1151 (let* ((err-str (format "Failed to launch syntax check process '%s' with args %s: %s"
1152 cmd args (error-message-string err)))
1153 (source-file-name buffer-file-name)
1154 (cleanup-f (flymake-get-cleanup-function source-file-name)))
1155 (flymake-log 0 err-str)
1156 (funcall cleanup-f)
1157 (flymake-report-fatal-status "PROCERR" err-str))))))
1158
1159 (defun flymake-kill-process (proc)
1160 "Kill process PROC."
1161 (kill-process proc)
1162 (let* ((buf (process-buffer proc)))
1163 (when (buffer-live-p buf)
1164 (with-current-buffer buf
1165 (setq flymake-check-was-interrupted t))))
1166 (flymake-log 1 "killed process %d" (process-id proc)))
1167
1168 (defun flymake-stop-all-syntax-checks ()
1169 "Kill all syntax check processes."
1170 (interactive)
1171 (while flymake-processes
1172 (flymake-kill-process (pop flymake-processes))))
1173
1174 (defun flymake-compilation-is-running ()
1175 (and (boundp 'compilation-in-progress)
1176 compilation-in-progress))
1177
1178 (defun flymake-compile ()
1179 "Kill all flymake syntax checks, start compilation."
1180 (interactive)
1181 (flymake-stop-all-syntax-checks)
1182 (call-interactively 'compile))
1183
1184 (defcustom flymake-no-changes-timeout 0.5
1185 "Time to wait after last change before starting compilation."
1186 :group 'flymake
1187 :type 'number)
1188
1189 (defun flymake-on-timer-event (buffer)
1190 "Start a syntax check for buffer BUFFER if necessary."
1191 (when (buffer-live-p buffer)
1192 (with-current-buffer buffer
1193 (when (and (not flymake-is-running)
1194 flymake-last-change-time
1195 (> (- (flymake-float-time) flymake-last-change-time)
1196 flymake-no-changes-timeout))
1197
1198 (setq flymake-last-change-time nil)
1199 (flymake-log 3 "starting syntax check as more than 1 second passed since last change")
1200 (flymake-start-syntax-check)))))
1201
1202 (defun flymake-current-line-no ()
1203 "Return number of current line in current buffer."
1204 (count-lines (point-min) (if (eobp) (point) (1+ (point)))))
1205
1206 (defun flymake-count-lines ()
1207 "Return number of lines in buffer BUFFER."
1208 (count-lines (point-min) (point-max)))
1209
1210 (defun flymake-display-err-menu-for-current-line ()
1211 "Display a menu with errors/warnings for current line if it has errors and/or warnings."
1212 (interactive)
1213 (let* ((line-no (flymake-current-line-no))
1214 (line-err-info-list (nth 0 (flymake-find-err-info flymake-err-info line-no)))
1215 (menu-data (flymake-make-err-menu-data line-no line-err-info-list))
1216 (choice nil))
1217 (if menu-data
1218 (progn
1219 (setq choice (flymake-popup-menu menu-data))
1220 (flymake-log 3 "choice=%s" choice)
1221 (when choice
1222 (eval choice)))
1223 (flymake-log 1 "no errors for line %d" line-no))))
1224
1225 (defun flymake-make-err-menu-data (line-no line-err-info-list)
1226 "Make a (menu-title (item-title item-action)*) list with errors/warnings from LINE-ERR-INFO-LIST."
1227 (let* ((menu-items nil))
1228 (when line-err-info-list
1229 (let* ((count (length line-err-info-list))
1230 (menu-item-text nil))
1231 (while (> count 0)
1232 (setq menu-item-text (flymake-ler-text (nth (1- count) line-err-info-list)))
1233 (let* ((file (flymake-ler-file (nth (1- count) line-err-info-list)))
1234 (full-file (flymake-ler-full-file (nth (1- count) line-err-info-list)))
1235 (line (flymake-ler-line (nth (1- count) line-err-info-list))))
1236 (if file
1237 (setq menu-item-text (concat menu-item-text " - " file "(" (format "%d" line) ")")))
1238 (setq menu-items (cons (list menu-item-text
1239 (if file (list 'flymake-goto-file-and-line full-file line) nil))
1240 menu-items)))
1241 (setq count (1- count)))
1242 (flymake-log 3 "created menu-items with %d item(s)" (length menu-items))))
1243 (if menu-items
1244 (let* ((menu-title (format "Line %d: %d error(s), %d warning(s)" line-no
1245 (flymake-get-line-err-count line-err-info-list "e")
1246 (flymake-get-line-err-count line-err-info-list "w"))))
1247 (list menu-title menu-items))
1248 nil)))
1249
1250 (defun flymake-goto-file-and-line (file line)
1251 "Try to get buffer for FILE and goto line LINE in it."
1252 (if (not (file-exists-p file))
1253 (flymake-log 1 "file %s does not exists" file)
1254 (progn
1255 (find-file file)
1256 (goto-line line))))
1257
1258 ;; flymake minor mode declarations
1259 (defvar flymake-mode-line nil)
1260
1261 (make-variable-buffer-local 'flymake-mode-line)
1262
1263 (defvar flymake-mode-line-e-w nil)
1264
1265 (make-variable-buffer-local 'flymake-mode-line-e-w)
1266
1267 (defvar flymake-mode-line-status nil)
1268
1269 (make-variable-buffer-local 'flymake-mode-line-status)
1270
1271 (defun flymake-report-status (e-w &optional status)
1272 "Show status in mode line."
1273 (when e-w
1274 (setq flymake-mode-line-e-w e-w))
1275 (when status
1276 (setq flymake-mode-line-status status))
1277 (let* ((mode-line " Flymake"))
1278 (when (> (length flymake-mode-line-e-w) 0)
1279 (setq mode-line (concat mode-line ":" flymake-mode-line-e-w)))
1280 (setq mode-line (concat mode-line flymake-mode-line-status))
1281 (setq flymake-mode-line mode-line)
1282 (force-mode-line-update)))
1283
1284 (defun flymake-display-warning (warning)
1285 "Display a warning to user."
1286 (message-box warning))
1287
1288 (defcustom flymake-gui-warnings-enabled t
1289 "Enables/disables GUI warnings."
1290 :group 'flymake
1291 :type 'boolean)
1292
1293 (defun flymake-report-fatal-status (status warning)
1294 "Display a warning and switch flymake mode off."
1295 (when flymake-gui-warnings-enabled
1296 (flymake-display-warning (format "Flymake: %s. Flymake will be switched OFF" warning))
1297 )
1298 (flymake-mode 0)
1299 (flymake-log 0 "switched OFF Flymake mode for buffer %s due to fatal status %s, warning %s"
1300 (buffer-name) status warning))
1301
1302 (defcustom flymake-start-syntax-check-on-find-file t
1303 "Start syntax check on find file."
1304 :group 'flymake
1305 :type 'boolean)
1306
1307 ;;;###autoload
1308 (define-minor-mode flymake-mode
1309 "Minor mode to do on-the-fly syntax checking.
1310 When called interactively, toggles the minor mode.
1311 With arg, turn Flymake mode on if and only if arg is positive."
1312 :group 'flymake :lighter flymake-mode-line
1313 (cond
1314
1315 ;; Turning the mode ON.
1316 (flymake-mode
1317 (if (not (flymake-can-syntax-check-file buffer-file-name))
1318 (flymake-log 2 "flymake cannot check syntax in buffer %s" (buffer-name))
1319 (add-hook 'after-change-functions 'flymake-after-change-function nil t)
1320 (add-hook 'after-save-hook 'flymake-after-save-hook nil t)
1321 (add-hook 'kill-buffer-hook 'flymake-kill-buffer-hook nil t)
1322 ;;+(add-hook 'find-file-hook 'flymake-find-file-hook)
1323
1324 (flymake-report-status "" "")
1325
1326 (setq flymake-timer
1327 (run-at-time nil 1 'flymake-on-timer-event (current-buffer)))
1328
1329 (when flymake-start-syntax-check-on-find-file
1330 (flymake-start-syntax-check))))
1331
1332 ;; Turning the mode OFF.
1333 (t
1334 (remove-hook 'after-change-functions 'flymake-after-change-function t)
1335 (remove-hook 'after-save-hook 'flymake-after-save-hook t)
1336 (remove-hook 'kill-buffer-hook 'flymake-kill-buffer-hook t)
1337 ;;+(remove-hook 'find-file-hook (function flymake-find-file-hook) t)
1338
1339 (flymake-delete-own-overlays)
1340
1341 (when flymake-timer
1342 (cancel-timer flymake-timer)
1343 (setq flymake-timer nil))
1344
1345 (setq flymake-is-running nil))))
1346
1347 ;;;###autoload
1348 (defun flymake-mode-on ()
1349 "Turn flymake mode on."
1350 (flymake-mode 1)
1351 (flymake-log 1 "flymake mode turned ON for buffer %s" (buffer-name)))
1352
1353 ;;;###autoload
1354 (defun flymake-mode-off ()
1355 "Turn flymake mode off."
1356 (flymake-mode 0)
1357 (flymake-log 1 "flymake mode turned OFF for buffer %s" (buffer-name)))
1358
1359 (defcustom flymake-start-syntax-check-on-newline t
1360 "Start syntax check if newline char was added/removed from the buffer."
1361 :group 'flymake
1362 :type 'boolean)
1363
1364 (defun flymake-after-change-function (start stop len)
1365 "Start syntax check for current buffer if it isn't already running."
1366 ;;+(flymake-log 0 "setting change time to %s" (flymake-float-time))
1367 (let((new-text (buffer-substring start stop)))
1368 (when (and flymake-start-syntax-check-on-newline (equal new-text "\n"))
1369 (flymake-log 3 "starting syntax check as new-line has been seen")
1370 (flymake-start-syntax-check))
1371 (setq flymake-last-change-time (flymake-float-time))))
1372
1373 (defun flymake-after-save-hook ()
1374 (if (local-variable-p 'flymake-mode (current-buffer)) ; (???) other way to determine whether flymake is active in buffer being saved?
1375 (progn
1376 (flymake-log 3 "starting syntax check as buffer was saved")
1377 (flymake-start-syntax-check)))) ; no more mode 3. cannot start check if mode 3 (to temp copies) is active - (???)
1378
1379 (defun flymake-kill-buffer-hook ()
1380 (when flymake-timer
1381 (cancel-timer flymake-timer)
1382 (setq flymake-timer nil)))
1383
1384 (defun flymake-find-file-hook ()
1385 ;;+(when flymake-start-syntax-check-on-find-file
1386 ;;+ (flymake-log 3 "starting syntax check on file open")
1387 ;;+ (flymake-start-syntax-check)
1388 ;;+)
1389 (when (and (not (local-variable-p 'flymake-mode (current-buffer)))
1390 (flymake-can-syntax-check-file buffer-file-name))
1391 (flymake-mode)
1392 (flymake-log 3 "automatically turned ON flymake mode")))
1393
1394 (defun flymake-get-first-err-line-no (err-info-list)
1395 "Return first line with error."
1396 (when err-info-list
1397 (flymake-er-get-line (car err-info-list))))
1398
1399 (defun flymake-get-last-err-line-no (err-info-list)
1400 "Return last line with error."
1401 (when err-info-list
1402 (flymake-er-get-line (nth (1- (length err-info-list)) err-info-list))))
1403
1404 (defun flymake-get-next-err-line-no (err-info-list line-no)
1405 "Return next line with error."
1406 (when err-info-list
1407 (let* ((count (length err-info-list))
1408 (idx 0))
1409 (while (and (< idx count) (>= line-no (flymake-er-get-line (nth idx err-info-list))))
1410 (setq idx (1+ idx)))
1411 (if (< idx count)
1412 (flymake-er-get-line (nth idx err-info-list))))))
1413
1414 (defun flymake-get-prev-err-line-no (err-info-list line-no)
1415 "Return previous line with error."
1416 (when err-info-list
1417 (let* ((count (length err-info-list)))
1418 (while (and (> count 0) (<= line-no (flymake-er-get-line (nth (1- count) err-info-list))))
1419 (setq count (1- count)))
1420 (if (> count 0)
1421 (flymake-er-get-line (nth (1- count) err-info-list))))))
1422
1423 (defun flymake-skip-whitespace ()
1424 "Move forward until non-whitespace is reached."
1425 (while (looking-at "[ \t]")
1426 (forward-char)))
1427
1428 (defun flymake-goto-line (line-no)
1429 "Go to line LINE-NO, then skip whitespace."
1430 (goto-line line-no)
1431 (flymake-skip-whitespace))
1432
1433 (defun flymake-goto-next-error ()
1434 "Go to next error in err ring."
1435 (interactive)
1436 (let ((line-no (flymake-get-next-err-line-no flymake-err-info (flymake-current-line-no))))
1437 (when (not line-no)
1438 (setq line-no (flymake-get-first-err-line-no flymake-err-info))
1439 (flymake-log 1 "passed end of file"))
1440 (if line-no
1441 (flymake-goto-line line-no)
1442 (flymake-log 1 "no errors in current buffer"))))
1443
1444 (defun flymake-goto-prev-error ()
1445 "Go to previous error in err ring."
1446 (interactive)
1447 (let ((line-no (flymake-get-prev-err-line-no flymake-err-info (flymake-current-line-no))))
1448 (when (not line-no)
1449 (setq line-no (flymake-get-last-err-line-no flymake-err-info))
1450 (flymake-log 1 "passed beginning of file"))
1451 (if line-no
1452 (flymake-goto-line line-no)
1453 (flymake-log 1 "no errors in current buffer"))))
1454
1455 (defun flymake-patch-err-text (string)
1456 (if (string-match "^[\n\t :0-9]*\\(.*\\)$" string)
1457 (match-string 1 string)
1458 string))
1459
1460 ;;;; general init-cleanup and helper routines
1461 (defun flymake-create-temp-inplace (file-name prefix)
1462 (unless (stringp file-name)
1463 (error "Invalid file-name"))
1464 (or prefix
1465 (setq prefix "flymake"))
1466 (let* ((temp-name (concat (file-name-sans-extension file-name)
1467 "_" prefix
1468 (and (file-name-extension file-name)
1469 (concat "." (file-name-extension file-name))))))
1470 (flymake-log 3 "create-temp-inplace: file=%s temp=%s" file-name temp-name)
1471 temp-name))
1472
1473 (defun flymake-create-temp-with-folder-structure (file-name prefix)
1474 (unless (stringp file-name)
1475 (error "Invalid file-name"))
1476
1477 (let* ((dir (file-name-directory file-name))
1478 ;; Not sure what this slash-pos is all about, but I guess it's just
1479 ;; trying to remove the leading / of absolute file names.
1480 (slash-pos (string-match "/" dir))
1481 (temp-dir (expand-file-name (substring dir (1+ slash-pos))
1482 (flymake-get-temp-dir))))
1483
1484 (file-truename (expand-file-name (file-name-nondirectory file-name)
1485 temp-dir))))
1486
1487 (defun flymake-delete-temp-directory (dir-name)
1488 "Attempt to delete temp dir created by `flymake-create-temp-with-folder-structure', do not fail on error."
1489 (let* ((temp-dir (flymake-get-temp-dir))
1490 (suffix (substring dir-name (1+ (length temp-dir)))))
1491
1492 (while (> (length suffix) 0)
1493 (setq suffix (directory-file-name suffix))
1494 ;;+(flymake-log 0 "suffix=%s" suffix)
1495 (flymake-safe-delete-directory
1496 (file-truename (expand-file-name suffix temp-dir)))
1497 (setq suffix (file-name-directory suffix)))))
1498
1499 (defvar flymake-temp-source-file-name nil)
1500 (make-variable-buffer-local 'flymake-temp-source-file-name)
1501
1502 (defvar flymake-master-file-name nil)
1503 (make-variable-buffer-local 'flymake-master-file-name)
1504
1505 (defvar flymake-temp-master-file-name nil)
1506 (make-variable-buffer-local 'flymake-temp-master-file-name)
1507
1508 (defvar flymake-base-dir nil)
1509 (make-variable-buffer-local 'flymake-base-dir)
1510
1511 (defun flymake-init-create-temp-buffer-copy (create-temp-f)
1512 "Make a temporary copy of the current buffer, save its name in buffer data and return the name."
1513 (let* ((source-file-name buffer-file-name)
1514 (temp-source-file-name (funcall create-temp-f source-file-name "flymake")))
1515
1516 (flymake-save-buffer-in-file temp-source-file-name)
1517 (setq flymake-temp-source-file-name temp-source-file-name)
1518 temp-source-file-name))
1519
1520 (defun flymake-simple-cleanup ()
1521 "Do cleanup after `flymake-init-create-temp-buffer-copy'.
1522 Delete temp file."
1523 (flymake-safe-delete-file flymake-temp-source-file-name)
1524 (setq flymake-last-change-time nil))
1525
1526 (defun flymake-get-real-file-name (file-name-from-err-msg)
1527 "Translate file name from error message to \"real\" file name.
1528 Return full-name. Names are real, not patched."
1529 (let* ((real-name nil)
1530 (source-file-name buffer-file-name)
1531 (master-file-name flymake-master-file-name)
1532 (temp-source-file-name flymake-temp-source-file-name)
1533 (temp-master-file-name flymake-temp-master-file-name)
1534 (base-dirs
1535 (list flymake-base-dir
1536 (file-name-directory source-file-name)
1537 (if master-file-name (file-name-directory master-file-name))))
1538 (files (list (list source-file-name source-file-name)
1539 (list temp-source-file-name source-file-name)
1540 (list master-file-name master-file-name)
1541 (list temp-master-file-name master-file-name))))
1542
1543 (when (equal 0 (length file-name-from-err-msg))
1544 (setq file-name-from-err-msg source-file-name))
1545
1546 (setq real-name (flymake-get-full-patched-file-name file-name-from-err-msg base-dirs files))
1547 ;; if real-name is nil, than file name from err msg is none of the files we've patched
1548 (if (not real-name)
1549 (setq real-name (flymake-get-full-nonpatched-file-name file-name-from-err-msg base-dirs)))
1550 (if (not real-name)
1551 (setq real-name file-name-from-err-msg))
1552 (setq real-name (flymake-fix-file-name real-name))
1553 (flymake-log 3 "get-real-file-name: file-name=%s real-name=%s" file-name-from-err-msg real-name)
1554 real-name))
1555
1556 (defun flymake-get-full-patched-file-name (file-name-from-err-msg base-dirs files)
1557 (let* ((base-dirs-count (length base-dirs))
1558 (file-count (length files))
1559 (real-name nil))
1560
1561 (while (and (not real-name) (> base-dirs-count 0))
1562 (setq file-count (length files))
1563 (while (and (not real-name) (> file-count 0))
1564 (let* ((this-dir (nth (1- base-dirs-count) base-dirs))
1565 (this-file (nth 0 (nth (1- file-count) files)))
1566 (this-real-name (nth 1 (nth (1- file-count) files))))
1567 ;;+(flymake-log 0 "this-dir=%s this-file=%s this-real=%s msg-file=%s" this-dir this-file this-real-name file-name-from-err-msg)
1568 (when (and this-dir this-file (flymake-same-files
1569 (expand-file-name file-name-from-err-msg this-dir)
1570 this-file))
1571 (setq real-name this-real-name)))
1572 (setq file-count (1- file-count)))
1573 (setq base-dirs-count (1- base-dirs-count)))
1574 real-name))
1575
1576 (defun flymake-get-full-nonpatched-file-name (file-name-from-err-msg base-dirs)
1577 (let* ((real-name nil))
1578 (if (file-name-absolute-p file-name-from-err-msg)
1579 (setq real-name file-name-from-err-msg)
1580 (let* ((base-dirs-count (length base-dirs)))
1581 (while (and (not real-name) (> base-dirs-count 0))
1582 (let* ((full-name (expand-file-name file-name-from-err-msg
1583 (nth (1- base-dirs-count) base-dirs))))
1584 (if (file-exists-p full-name)
1585 (setq real-name full-name))
1586 (setq base-dirs-count (1- base-dirs-count))))))
1587 real-name))
1588
1589 (defun flymake-init-find-buildfile-dir (source-file-name buildfile-name)
1590 "Find buildfile, store its dir in buffer data and return its dir, if found."
1591 (let* ((buildfile-dir
1592 (flymake-find-buildfile buildfile-name
1593 (file-name-directory source-file-name))))
1594 (if buildfile-dir
1595 (setq flymake-base-dir buildfile-dir)
1596 (flymake-log 1 "no buildfile (%s) for %s" buildfile-name source-file-name)
1597 (flymake-report-fatal-status
1598 "NOMK" (format "No buildfile (%s) found for %s"
1599 buildfile-name source-file-name)))))
1600
1601 (defun flymake-init-create-temp-source-and-master-buffer-copy (get-incl-dirs-f create-temp-f master-file-masks include-regexp)
1602 "Find master file (or buffer), create it's copy along with a copy of the source file."
1603 (let* ((source-file-name buffer-file-name)
1604 (temp-source-file-name (flymake-init-create-temp-buffer-copy create-temp-f))
1605 (master-and-temp-master (flymake-create-master-file
1606 source-file-name temp-source-file-name
1607 get-incl-dirs-f create-temp-f
1608 master-file-masks include-regexp)))
1609
1610 (if (not master-and-temp-master)
1611 (progn
1612 (flymake-log 1 "cannot find master file for %s" source-file-name)
1613 (flymake-report-status "!" "") ; NOMASTER
1614 nil)
1615 (setq flymake-master-file-name (nth 0 master-and-temp-master))
1616 (setq flymake-temp-master-file-name (nth 1 master-and-temp-master)))))
1617
1618 (defun flymake-master-cleanup ()
1619 (flymake-simple-cleanup)
1620 (flymake-safe-delete-file flymake-temp-master-file-name))
1621
1622 ;;;; make-specific init-cleanup routines
1623 (defun flymake-get-syntax-check-program-args (source-file-name base-dir use-relative-base-dir use-relative-source get-cmd-line-f)
1624 "Create a command line for syntax check using GET-CMD-LINE-F."
1625 (funcall get-cmd-line-f
1626 (if use-relative-source
1627 (file-relative-name source-file-name base-dir)
1628 source-file-name)
1629 (if use-relative-base-dir
1630 (file-relative-name base-dir
1631 (file-name-directory source-file-name))
1632 base-dir)))
1633
1634 (defun flymake-get-make-cmdline (source base-dir)
1635 (list "make"
1636 (list "-s"
1637 "-C"
1638 base-dir
1639 (concat "CHK_SOURCES=" source)
1640 "SYNTAX_CHECK_MODE=1"
1641 "check-syntax")))
1642
1643 (defun flymake-get-ant-cmdline (source base-dir)
1644 (list "ant"
1645 (list "-buildfile"
1646 (concat base-dir "/" "build.xml")
1647 (concat "-DCHK_SOURCES=" source)
1648 "check-syntax")))
1649
1650 (defun flymake-simple-make-init-impl (create-temp-f use-relative-base-dir use-relative-source build-file-name get-cmdline-f)
1651 "Create syntax check command line for a directly checked source file.
1652 Use CREATE-TEMP-F for creating temp copy."
1653 (let* ((args nil)
1654 (source-file-name buffer-file-name)
1655 (buildfile-dir (flymake-init-find-buildfile-dir source-file-name build-file-name)))
1656 (if buildfile-dir
1657 (let* ((temp-source-file-name (flymake-init-create-temp-buffer-copy create-temp-f)))
1658 (setq args (flymake-get-syntax-check-program-args temp-source-file-name buildfile-dir
1659 use-relative-base-dir use-relative-source
1660 get-cmdline-f))))
1661 args))
1662
1663 (defun flymake-simple-make-init ()
1664 (flymake-simple-make-init-impl 'flymake-create-temp-inplace t t "Makefile" 'flymake-get-make-cmdline))
1665
1666 (defun flymake-master-make-init (get-incl-dirs-f master-file-masks include-regexp)
1667 "Create make command line for a source file checked via master file compilation."
1668 (let* ((make-args nil)
1669 (temp-master-file-name (flymake-init-create-temp-source-and-master-buffer-copy
1670 get-incl-dirs-f 'flymake-create-temp-inplace
1671 master-file-masks include-regexp)))
1672 (when temp-master-file-name
1673 (let* ((buildfile-dir (flymake-init-find-buildfile-dir temp-master-file-name "Makefile")))
1674 (if buildfile-dir
1675 (setq make-args (flymake-get-syntax-check-program-args
1676 temp-master-file-name buildfile-dir nil nil 'flymake-get-make-cmdline)))))
1677 make-args))
1678
1679 (defun flymake-find-make-buildfile (source-dir)
1680 (flymake-find-buildfile "Makefile" source-dir))
1681
1682 ;;;; .h/make specific
1683 (defun flymake-master-make-header-init ()
1684 (flymake-master-make-init 'flymake-get-include-dirs
1685 '("\\.cpp\\'" "\\.c\\'")
1686 "[ \t]*#[ \t]*include[ \t]*\"\\([[:word:]0-9/\\_.]*%s\\)\""))
1687
1688 ;;;; .java/make specific
1689 (defun flymake-simple-make-java-init ()
1690 (flymake-simple-make-init-impl 'flymake-create-temp-with-folder-structure nil nil "Makefile" 'flymake-get-make-cmdline))
1691
1692 (defun flymake-simple-ant-java-init ()
1693 (flymake-simple-make-init-impl 'flymake-create-temp-with-folder-structure nil nil "build.xml" 'flymake-get-ant-cmdline))
1694
1695 (defun flymake-simple-java-cleanup ()
1696 "Cleanup after `flymake-simple-make-java-init' -- delete temp file and dirs."
1697 (flymake-safe-delete-file flymake-temp-source-file-name)
1698 (when flymake-temp-source-file-name
1699 (flymake-delete-temp-directory
1700 (file-name-directory flymake-temp-source-file-name))))
1701
1702 ;;;; perl-specific init-cleanup routines
1703 (defun flymake-perl-init ()
1704 (let* ((temp-file (flymake-init-create-temp-buffer-copy
1705 'flymake-create-temp-inplace))
1706 (local-file (file-relative-name
1707 temp-file
1708 (file-name-directory buffer-file-name))))
1709 (list "perl" (list "-wc " local-file))))
1710
1711 ;;;; tex-specific init-cleanup routines
1712 (defun flymake-get-tex-args (file-name)
1713 ;;(list "latex" (list "-c-style-errors" file-name))
1714 (list "texify" (list "--pdf" "--tex-option=-c-style-errors" file-name)))
1715
1716 (defun flymake-simple-tex-init ()
1717 (flymake-get-tex-args (flymake-init-create-temp-buffer-copy 'flymake-create-temp-inplace)))
1718
1719 (defun flymake-master-tex-init ()
1720 (let* ((temp-master-file-name (flymake-init-create-temp-source-and-master-buffer-copy
1721 'flymake-get-include-dirs-dot 'flymake-create-temp-inplace
1722 '("\\.tex\\'")
1723 "[ \t]*\\input[ \t]*{\\(.*%s\\)}")))
1724 (when temp-master-file-name
1725 (flymake-get-tex-args temp-master-file-name))))
1726
1727 (defun flymake-get-include-dirs-dot (base-dir)
1728 '("."))
1729
1730 ;;;; xml-specific init-cleanup routines
1731 (defun flymake-xml-init ()
1732 (list "xml" (list "val" (flymake-init-create-temp-buffer-copy 'flymake-create-temp-inplace))))
1733
1734 (provide 'flymake)
1735
1736 ;; arch-tag: 8f0d6090-061d-4cac-8862-7c151c4a02dd
1737 ;;; flymake.el ends here