(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / jit-lock.el
blobba2eed9f17ed89ca4a358c0ee7bee4ef720305d9
1 ;;; jit-lock.el --- just-in-time fontification
3 ;; Copyright (C) 1998, 2000, 2001, 2004 Free Software Foundation, Inc.
5 ;; Author: Gerd Moellmann <gerd@gnu.org>
6 ;; Keywords: faces files
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;; Just-in-time fontification, triggered by C redisplay code.
29 ;;; Code:
32 (eval-when-compile
33 (defmacro with-buffer-unmodified (&rest body)
34 "Eval BODY, preserving the current buffer's modified state."
35 (declare (debug t))
36 (let ((modified (make-symbol "modified")))
37 `(let ((,modified (buffer-modified-p)))
38 (unwind-protect
39 (progn ,@body)
40 (unless ,modified
41 (restore-buffer-modified-p nil))))))
43 (defmacro with-buffer-prepared-for-jit-lock (&rest body)
44 "Execute BODY in current buffer, overriding several variables.
45 Preserves the `buffer-modified-p' state of the current buffer."
46 (declare (debug t))
47 `(with-buffer-unmodified
48 (let ((buffer-undo-list t)
49 (inhibit-read-only t)
50 (inhibit-point-motion-hooks t)
51 (inhibit-modification-hooks t)
52 deactivate-mark
53 buffer-file-name
54 buffer-file-truename)
55 ,@body))))
59 ;;; Customization.
61 (defgroup jit-lock nil
62 "Font Lock support mode to fontify just-in-time."
63 :version "21.1"
64 :group 'font-lock)
66 (defcustom jit-lock-chunk-size 500
67 "*Jit-lock chunks of this many characters, or smaller."
68 :type 'integer
69 :group 'jit-lock)
72 (defcustom jit-lock-stealth-time 16
73 "*Time in seconds to wait before beginning stealth fontification.
74 Stealth fontification occurs if there is no input within this time.
75 If nil, stealth fontification is never performed.
77 The value of this variable is used when JIT Lock mode is turned on."
78 :type '(choice (const :tag "never" nil)
79 (number :tag "seconds"))
80 :group 'jit-lock)
83 (defcustom jit-lock-stealth-nice 0.5
84 "*Time in seconds to pause between chunks of stealth fontification.
85 Each iteration of stealth fontification is separated by this amount of time,
86 thus reducing the demand that stealth fontification makes on the system.
87 If nil, means stealth fontification is never paused.
88 To reduce machine load during stealth fontification, at the cost of stealth
89 taking longer to fontify, you could increase the value of this variable.
90 See also `jit-lock-stealth-load'."
91 :type '(choice (const :tag "never" nil)
92 (number :tag "seconds"))
93 :group 'jit-lock)
96 (defcustom jit-lock-stealth-load
97 (if (condition-case nil (load-average) (error)) 200)
98 "*Load in percentage above which stealth fontification is suspended.
99 Stealth fontification pauses when the system short-term load average (as
100 returned by the function `load-average' if supported) goes above this level,
101 thus reducing the demand that stealth fontification makes on the system.
102 If nil, means stealth fontification is never suspended.
103 To reduce machine load during stealth fontification, at the cost of stealth
104 taking longer to fontify, you could reduce the value of this variable.
105 See also `jit-lock-stealth-nice'."
106 :type (if (condition-case nil (load-average) (error))
107 '(choice (const :tag "never" nil)
108 (integer :tag "load"))
109 '(const :format "%t: unsupported\n" nil))
110 :group 'jit-lock)
113 (defcustom jit-lock-stealth-verbose nil
114 "*If non-nil, means stealth fontification should show status messages."
115 :type 'boolean
116 :group 'jit-lock)
119 (defvaralias 'jit-lock-defer-contextually 'jit-lock-contextually)
120 (defcustom jit-lock-contextually 'syntax-driven
121 "*If non-nil, means fontification should be syntactically true.
122 If nil, means fontification occurs only on those lines modified. This
123 means where modification on a line causes syntactic change on subsequent lines,
124 those subsequent lines are not refontified to reflect their new context.
125 If t, means fontification occurs on those lines modified and all
126 subsequent lines. This means those subsequent lines are refontified to reflect
127 their new syntactic context, after `jit-lock-context-time' seconds.
128 If any other value, e.g., `syntax-driven', means syntactically true
129 fontification occurs only if syntactic fontification is performed using the
130 buffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil.
132 The value of this variable is used when JIT Lock mode is turned on."
133 :type '(choice (const :tag "never" nil)
134 (const :tag "always" t)
135 (other :tag "syntax-driven" syntax-driven))
136 :group 'jit-lock)
138 (defcustom jit-lock-context-time 0.5
139 "Idle time after which text is contextually refontified, if applicable."
140 :type '(number :tag "seconds")
141 :group 'jit-lock)
143 (defcustom jit-lock-defer-time nil ;; 0.25
144 "Idle time after which deferred fontification should take place.
145 If nil, fontification is not deferred."
146 :group 'jit-lock
147 :type '(choice (const :tag "never" nil)
148 (number :tag "seconds")))
150 ;;; Variables that are not customizable.
152 (defvar jit-lock-mode nil
153 "Non-nil means Just-in-time Lock mode is active.")
154 (make-variable-buffer-local 'jit-lock-mode)
156 (defvar jit-lock-functions nil
157 "Functions to do the actual fontification.
158 They are called with two arguments: the START and END of the region to fontify.")
159 (make-variable-buffer-local 'jit-lock-functions)
161 (defvar jit-lock-context-unfontify-pos nil
162 "Consider text after this position as contextually unfontified.
163 If nil, contextual fontification is disabled.")
164 (make-variable-buffer-local 'jit-lock-context-unfontify-pos)
167 (defvar jit-lock-stealth-timer nil
168 "Timer for stealth fontification in Just-in-time Lock mode.")
169 (defvar jit-lock-context-timer nil
170 "Timer for context fontification in Just-in-time Lock mode.")
171 (defvar jit-lock-defer-timer nil
172 "Timer for deferred fontification in Just-in-time Lock mode.")
174 (defvar jit-lock-defer-buffers nil
175 "List of buffers with pending deferred fontification.")
177 ;;; JIT lock mode
179 (defun jit-lock-mode (arg)
180 "Toggle Just-in-time Lock mode.
181 Turn Just-in-time Lock mode on if and only if ARG is non-nil.
182 Enable it automatically by customizing group `font-lock'.
184 When Just-in-time Lock mode is enabled, fontification is different in the
185 following ways:
187 - Demand-driven buffer fontification triggered by Emacs C code.
188 This means initial fontification of the whole buffer does not occur.
189 Instead, fontification occurs when necessary, such as when scrolling
190 through the buffer would otherwise reveal unfontified areas. This is
191 useful if buffer fontification is too slow for large buffers.
193 - Stealthy buffer fontification if `jit-lock-stealth-time' is non-nil.
194 This means remaining unfontified areas of buffers are fontified if Emacs has
195 been idle for `jit-lock-stealth-time' seconds, while Emacs remains idle.
196 This is useful if any buffer has any deferred fontification.
198 - Deferred context fontification if `jit-lock-contextually' is
199 non-nil. This means fontification updates the buffer corresponding to
200 true syntactic context, after `jit-lock-context-time' seconds of Emacs
201 idle time, while Emacs remains idle. Otherwise, fontification occurs
202 on modified lines only, and subsequent lines can remain fontified
203 corresponding to previous syntactic contexts. This is useful where
204 strings or comments span lines.
206 Stealth fontification only occurs while the system remains unloaded.
207 If the system load rises above `jit-lock-stealth-load' percent, stealth
208 fontification is suspended. Stealth fontification intensity is controlled via
209 the variable `jit-lock-stealth-nice'."
210 (setq jit-lock-mode arg)
211 (cond (;; Turn Just-in-time Lock mode on.
212 jit-lock-mode
214 ;; Mark the buffer for refontification.
215 (jit-lock-refontify)
217 ;; Install an idle timer for stealth fontification.
218 (when (and jit-lock-stealth-time (null jit-lock-stealth-timer))
219 (setq jit-lock-stealth-timer
220 (run-with-idle-timer jit-lock-stealth-time t
221 'jit-lock-stealth-fontify)))
223 ;; Init deferred fontification timer.
224 (when (and jit-lock-defer-time (null jit-lock-defer-timer))
225 (setq jit-lock-defer-timer
226 (run-with-idle-timer jit-lock-defer-time t
227 'jit-lock-deferred-fontify)))
229 ;; Initialize contextual fontification if requested.
230 (when (eq jit-lock-contextually t)
231 (unless jit-lock-context-timer
232 (setq jit-lock-context-timer
233 (run-with-idle-timer jit-lock-context-time t
234 'jit-lock-context-fontify)))
235 (setq jit-lock-context-unfontify-pos
236 (or jit-lock-context-unfontify-pos (point-max))))
238 ;; Setup our hooks.
239 (add-hook 'after-change-functions 'jit-lock-after-change nil t)
240 (add-hook 'fontification-functions 'jit-lock-function))
242 ;; Turn Just-in-time Lock mode off.
244 ;; Cancel our idle timers.
245 (when (and (or jit-lock-stealth-timer jit-lock-defer-timer
246 jit-lock-context-timer)
247 ;; Only if there's no other buffer using them.
248 (not (catch 'found
249 (dolist (buf (buffer-list))
250 (with-current-buffer buf
251 (when jit-lock-mode (throw 'found t)))))))
252 (when jit-lock-stealth-timer
253 (cancel-timer jit-lock-stealth-timer)
254 (setq jit-lock-stealth-timer nil))
255 (when jit-lock-context-timer
256 (cancel-timer jit-lock-context-timer)
257 (setq jit-lock-context-timer nil))
258 (when jit-lock-defer-timer
259 (cancel-timer jit-lock-defer-timer)
260 (setq jit-lock-defer-timer nil)))
262 ;; Remove hooks.
263 (remove-hook 'after-change-functions 'jit-lock-after-change t)
264 (remove-hook 'fontification-functions 'jit-lock-function))))
266 ;;;###autoload
267 (defun jit-lock-register (fun &optional contextual)
268 "Register FUN as a fontification function to be called in this buffer.
269 FUN will be called with two arguments START and END indicating the region
270 that needs to be (re)fontified.
271 If non-nil, CONTEXTUAL means that a contextual fontification would be useful."
272 (add-hook 'jit-lock-functions fun nil t)
273 (when (and contextual jit-lock-contextually)
274 (set (make-local-variable 'jit-lock-contextually) t))
275 (jit-lock-mode t))
277 (defun jit-lock-unregister (fun)
278 "Unregister FUN as a fontification function.
279 Only applies to the current buffer."
280 (remove-hook 'jit-lock-functions fun t)
281 (unless jit-lock-functions (jit-lock-mode nil)))
283 ;; This function is used to prevent font-lock-fontify-buffer from
284 ;; fontifying eagerly the whole buffer. This is important for
285 ;; things like CWarn mode which adds/removes a few keywords and
286 ;; does a refontify (which takes ages on large files).
287 (defun jit-lock-refontify (&optional beg end)
288 "Force refontification of the region BEG..END (default whole buffer)."
289 (with-buffer-prepared-for-jit-lock
290 (save-restriction
291 (widen)
292 (put-text-property (or beg (point-min)) (or end (point-max))
293 'fontified nil))))
295 ;;; On demand fontification.
297 (defun jit-lock-function (start)
298 "Fontify current buffer starting at position START.
299 This function is added to `fontification-functions' when `jit-lock-mode'
300 is active."
301 (when (and jit-lock-mode (not (memory-full-p)))
302 (if (null jit-lock-defer-time)
303 ;; No deferral.
304 (jit-lock-fontify-now start (+ start jit-lock-chunk-size))
305 ;; Record the buffer for later fontification.
306 (unless (memq (current-buffer) jit-lock-defer-buffers)
307 (push (current-buffer) jit-lock-defer-buffers))
308 ;; Mark the area as defer-fontified so that the redisplay engine
309 ;; is happy and so that the idle timer can find the places to fontify.
310 (with-buffer-prepared-for-jit-lock
311 (put-text-property start
312 (next-single-property-change
313 start 'fontified nil
314 (min (point-max) (+ start jit-lock-chunk-size)))
315 'fontified 'defer)))))
317 (defun jit-lock-fontify-now (&optional start end)
318 "Fontify current buffer from START to END.
319 Defaults to the whole buffer. END can be out of bounds."
320 (with-buffer-prepared-for-jit-lock
321 (save-excursion
322 (unless start (setq start (point-min)))
323 (setq end (if end (min end (point-max)) (point-max)))
324 ;; This did bind `font-lock-beginning-of-syntax-function' to
325 ;; nil at some point, for an unknown reason. Don't do this; it
326 ;; can make highlighting slow due to expensive calls to
327 ;; `parse-partial-sexp' in function
328 ;; `font-lock-fontify-syntactically-region'. Example: paging
329 ;; from the end of a buffer to its start, can do repeated
330 ;; `parse-partial-sexp' starting from `point-min', which can
331 ;; take a long time in a large buffer.
332 (let (next)
333 (save-match-data
334 ;; Fontify chunks beginning at START. The end of a
335 ;; chunk is either `end', or the start of a region
336 ;; before `end' that has already been fontified.
337 (while start
338 ;; Determine the end of this chunk.
339 (setq next (or (text-property-any start end 'fontified t)
340 end))
342 ;; Decide which range of text should be fontified.
343 ;; The problem is that START and NEXT may be in the
344 ;; middle of something matched by a font-lock regexp.
345 ;; Until someone has a better idea, let's start
346 ;; at the start of the line containing START and
347 ;; stop at the start of the line following NEXT.
348 (goto-char next) (setq next (line-beginning-position 2))
349 (goto-char start) (setq start (line-beginning-position))
351 ;; Fontify the chunk, and mark it as fontified.
352 ;; We mark it first, to make sure that we don't indefinitely
353 ;; re-execute this fontification if an error occurs.
354 (put-text-property start next 'fontified t)
355 (condition-case err
356 (run-hook-with-args 'jit-lock-functions start next)
357 ;; If the user quits (which shouldn't happen in normal on-the-fly
358 ;; jit-locking), make sure the fontification will be performed
359 ;; before displaying the block again.
360 (quit (put-text-property start next 'fontified nil)
361 (funcall 'signal (car err) (cdr err))))
363 ;; Find the start of the next chunk, if any.
364 (setq start (text-property-any next end 'fontified nil))))))))
367 ;;; Stealth fontification.
369 (defsubst jit-lock-stealth-chunk-start (around)
370 "Return the start of the next chunk to fontify around position AROUND..
371 Value is nil if there is nothing more to fontify."
372 (if (zerop (buffer-size))
374 (save-restriction
375 (widen)
376 (let* ((next (text-property-not-all around (point-max) 'fontified t))
377 (prev (previous-single-property-change around 'fontified))
378 (prop (get-text-property (max (point-min) (1- around))
379 'fontified))
380 (start (cond
381 ((null prev)
382 ;; There is no property change between AROUND
383 ;; and the start of the buffer. If PROP is
384 ;; non-nil, everything in front of AROUND is
385 ;; fontified, otherwise nothing is fontified.
386 (if (eq prop t)
388 (max (point-min)
389 (- around (/ jit-lock-chunk-size 2)))))
390 ((eq prop t)
391 ;; PREV is the start of a region of fontified
392 ;; text containing AROUND. Start fontifying a
393 ;; chunk size before the end of the unfontified
394 ;; region in front of that.
395 (max (or (previous-single-property-change prev 'fontified)
396 (point-min))
397 (- prev jit-lock-chunk-size)))
399 ;; PREV is the start of a region of unfontified
400 ;; text containing AROUND. Start at PREV or
401 ;; chunk size in front of AROUND, whichever is
402 ;; nearer.
403 (max prev (- around jit-lock-chunk-size)))))
404 (result (cond ((null start) next)
405 ((null next) start)
406 ((< (- around start) (- next around)) start)
407 (t next))))
408 result))))
411 (defun jit-lock-stealth-fontify ()
412 "Fontify buffers stealthily.
413 This functions is called after Emacs has been idle for
414 `jit-lock-stealth-time' seconds."
415 ;; I used to check `inhibit-read-only' here, but I can't remember why. -stef
416 (unless (or executing-kbd-macro
417 (window-minibuffer-p (selected-window)))
418 (let ((buffers (buffer-list))
419 (outer-buffer (current-buffer))
420 minibuffer-auto-raise
421 message-log-max)
422 (with-local-quit
423 (while (and buffers (not (input-pending-p)))
424 (with-current-buffer (pop buffers)
425 (when jit-lock-mode
426 ;; This is funny. Calling sit-for with 3rd arg non-nil
427 ;; so that it doesn't redisplay, internally calls
428 ;; wait_reading_process_input also with a parameter
429 ;; saying "don't redisplay." Since this function here
430 ;; is called periodically, this effectively leads to
431 ;; process output not being redisplayed at all because
432 ;; redisplay_internal is never called. (That didn't
433 ;; work in the old redisplay either.) So, we learn that
434 ;; we mustn't call sit-for that way here. But then, we
435 ;; have to be cautious not to call sit-for in a widened
436 ;; buffer, since this could display hidden parts of that
437 ;; buffer. This explains the seemingly weird use of
438 ;; save-restriction/widen here.
440 (with-temp-message (if jit-lock-stealth-verbose
441 (concat "JIT stealth lock "
442 (buffer-name)))
444 ;; In the following code, the `sit-for' calls cause a
445 ;; redisplay, so it's required that the
446 ;; buffer-modified flag of a buffer that is displayed
447 ;; has the right value---otherwise the mode line of
448 ;; an unmodified buffer would show a `*'.
449 (let (start
450 (nice (or jit-lock-stealth-nice 0))
451 (point (point-min)))
452 (while (and (setq start
453 (jit-lock-stealth-chunk-start point))
454 ;; In case sit-for runs any timers,
455 ;; give them the expected current buffer.
456 (with-current-buffer outer-buffer
457 (sit-for nice)))
459 ;; fontify a block.
460 (jit-lock-fontify-now start (+ start jit-lock-chunk-size))
461 ;; If stealth jit-locking is done backwards, this leads to
462 ;; excessive O(n^2) refontification. -stef
463 ;; (when (>= jit-lock-context-unfontify-pos start)
464 ;; (setq jit-lock-context-unfontify-pos end))
466 ;; Wait a little if load is too high.
467 (when (and jit-lock-stealth-load
468 (> (car (load-average)) jit-lock-stealth-load))
469 ;; In case sit-for runs any timers,
470 ;; give them the expected current buffer.
471 (with-current-buffer outer-buffer
472 (sit-for (or jit-lock-stealth-time 30))))))))))))))
476 ;;; Deferred fontification.
478 (defun jit-lock-deferred-fontify ()
479 "Fontify what was deferred."
480 (when jit-lock-defer-buffers
481 ;; Mark the deferred regions back to `fontified = nil'
482 (dolist (buffer jit-lock-defer-buffers)
483 (when (buffer-live-p buffer)
484 (with-current-buffer buffer
485 ;; (message "Jit-Defer %s" (buffer-name))
486 (with-buffer-prepared-for-jit-lock
487 (let ((pos (point-min)))
488 (while
489 (progn
490 (when (eq (get-text-property pos 'fontified) 'defer)
491 (put-text-property
492 pos (setq pos (next-single-property-change
493 pos 'fontified nil (point-max)))
494 'fontified nil))
495 (setq pos (next-single-property-change pos 'fontified)))))))))
496 (setq jit-lock-defer-buffers nil)
497 ;; Force fontification of the visible parts.
498 (let ((jit-lock-defer-time nil))
499 ;; (message "Jit-Defer Now")
500 (sit-for 0)
501 ;; (message "Jit-Defer Done")
505 (defun jit-lock-context-fontify ()
506 "Refresh fontification to take new context into account."
507 (dolist (buffer (buffer-list))
508 (with-current-buffer buffer
509 (when jit-lock-context-unfontify-pos
510 ;; (message "Jit-Context %s" (buffer-name))
511 (save-restriction
512 (widen)
513 (when (and (>= jit-lock-context-unfontify-pos (point-min))
514 (< jit-lock-context-unfontify-pos (point-max)))
515 ;; If we're in text that matches a complex multi-line
516 ;; font-lock pattern, make sure the whole text will be
517 ;; redisplayed eventually.
518 ;; Despite its name, we treat jit-lock-defer-multiline here
519 ;; rather than in jit-lock-defer since it has to do with multiple
520 ;; lines, i.e. with context.
521 (when (get-text-property jit-lock-context-unfontify-pos
522 'jit-lock-defer-multiline)
523 (setq jit-lock-context-unfontify-pos
524 (or (previous-single-property-change
525 jit-lock-context-unfontify-pos
526 'jit-lock-defer-multiline)
527 (point-min))))
528 (with-buffer-prepared-for-jit-lock
529 ;; Force contextual refontification.
530 (remove-text-properties
531 jit-lock-context-unfontify-pos (point-max)
532 '(fontified nil jit-lock-defer-multiline nil)))
533 (setq jit-lock-context-unfontify-pos (point-max))))))))
535 (defun jit-lock-after-change (start end old-len)
536 "Mark the rest of the buffer as not fontified after a change.
537 Installed on `after-change-functions'.
538 START and END are the start and end of the changed text. OLD-LEN
539 is the pre-change length.
540 This function ensures that lines following the change will be refontified
541 in case the syntax of those lines has changed. Refontification
542 will take place when text is fontified stealthily."
543 (when (and jit-lock-mode (not (memory-full-p)))
544 (save-excursion
545 (with-buffer-prepared-for-jit-lock
546 ;; It's important that the `fontified' property be set from the
547 ;; beginning of the line, else font-lock will properly change the
548 ;; text's face, but the display will have been done already and will
549 ;; be inconsistent with the buffer's content.
550 (goto-char start)
551 (setq start (line-beginning-position))
553 ;; If we're in text that matches a multi-line font-lock pattern,
554 ;; make sure the whole text will be redisplayed.
555 ;; I'm not sure this is ever necessary and/or sufficient. -stef
556 (when (get-text-property start 'font-lock-multiline)
557 (setq start (or (previous-single-property-change
558 start 'font-lock-multiline)
559 (point-min))))
561 ;; Make sure we change at least one char (in case of deletions).
562 (setq end (min (max end (1+ start)) (point-max)))
563 ;; Request refontification.
564 (put-text-property start end 'fontified nil))
565 ;; Mark the change for deferred contextual refontification.
566 (when jit-lock-context-unfontify-pos
567 (setq jit-lock-context-unfontify-pos
568 (min jit-lock-context-unfontify-pos start))))))
570 (provide 'jit-lock)
572 ;;; arch-tag: 56b5de6e-f581-453b-bb97-49c39372ff9e
573 ;;; jit-lock.el ends here