Remove CVS merge cookie left in.
[emacs.git] / lisp / jit-lock.el
blobe4323a0bdde27fc8d9bf568689f9fbcd674884e0
1 ;;; jit-lock.el --- just-in-time fontification.
3 ;; Copyright (C) 1998 Free Software Foundation, Inc.
5 ;; Author: Gerd Moellmann <gerd@gnu.org>
6 ;; Keywords: faces files
7 ;; Version: 1.0
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;; Just-in-time fontification, triggered by C redisplay code.
30 ;;; Code:
33 (eval-when-compile
34 (defmacro with-buffer-unmodified (&rest body)
35 "Eval BODY, preserving the current buffer's modified state."
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 `(with-buffer-unmodified
47 (let ((buffer-undo-list t)
48 (inhibit-read-only t)
49 (inhibit-point-motion-hooks t)
50 (inhibit-modification-hooks t)
51 deactivate-mark
52 buffer-file-name
53 buffer-file-truename)
54 ,@body))))
58 ;;; Customization.
60 (defcustom jit-lock-chunk-size 500
61 "*Jit-lock chunks of this many characters, or smaller."
62 :type 'integer
63 :group 'jit-lock)
66 (defcustom jit-lock-stealth-time 3
67 "*Time in seconds to wait before beginning stealth fontification.
68 Stealth fontification occurs if there is no input within this time.
69 If nil, means stealth fontification is never performed.
71 The value of this variable is used when JIT Lock mode is turned on."
72 :type '(choice (const :tag "never" nil)
73 (number :tag "seconds"))
74 :group 'jit-lock)
77 (defcustom jit-lock-stealth-nice 0.125
78 "*Time in seconds to pause between chunks of stealth fontification.
79 Each iteration of stealth fontification is separated by this amount of time,
80 thus reducing the demand that stealth fontification makes on the system.
81 If nil, means stealth fontification is never paused.
82 To reduce machine load during stealth fontification, at the cost of stealth
83 taking longer to fontify, you could increase the value of this variable.
84 See also `jit-lock-stealth-load'."
85 :type '(choice (const :tag "never" nil)
86 (number :tag "seconds"))
87 :group 'jit-lock)
90 (defcustom jit-lock-stealth-load
91 (if (condition-case nil (load-average) (error)) 200)
92 "*Load in percentage above which stealth fontification is suspended.
93 Stealth fontification pauses when the system short-term load average (as
94 returned by the function `load-average' if supported) goes above this level,
95 thus reducing the demand that stealth fontification makes on the system.
96 If nil, means stealth fontification is never suspended.
97 To reduce machine load during stealth fontification, at the cost of stealth
98 taking longer to fontify, you could reduce the value of this variable.
99 See also `jit-lock-stealth-nice'."
100 :type (if (condition-case nil (load-average) (error))
101 '(choice (const :tag "never" nil)
102 (integer :tag "load"))
103 '(const :format "%t: unsupported\n" nil))
104 :group 'jit-lock)
107 (defcustom jit-lock-stealth-verbose nil
108 "*If non-nil, means stealth fontification should show status messages."
109 :type 'boolean
110 :group 'jit-lock)
113 (defcustom jit-lock-defer-contextually 'syntax-driven
114 "*If non-nil, means deferred fontification should be syntactically true.
115 If nil, means deferred fontification occurs only on those lines modified. This
116 means where modification on a line causes syntactic change on subsequent lines,
117 those subsequent lines are not refontified to reflect their new context.
118 If t, means deferred fontification occurs on those lines modified and all
119 subsequent lines. This means those subsequent lines are refontified to reflect
120 their new syntactic context, either immediately or when scrolling into them.
121 If any other value, e.g., `syntax-driven', means deferred syntactically true
122 fontification occurs only if syntactic fontification is performed using the
123 buffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil.
125 The value of this variable is used when JIT Lock mode is turned on."
126 :type '(choice (const :tag "never" nil)
127 (const :tag "always" t)
128 (other :tag "syntax-driven" syntax-driven))
129 :group 'jit-lock)
133 ;;; Variables that are not customizable.
135 (defvar jit-lock-mode nil
136 "Non-nil means Just-in-time Lock mode is active.")
137 (make-variable-buffer-local 'jit-lock-mode)
139 (defvar jit-lock-functions nil
140 "Functions to do the actual fontification.
141 They are called with two arguments: the START and END of the region to fontify.")
142 (make-variable-buffer-local 'jit-lock-functions)
144 (defvar jit-lock-first-unfontify-pos nil
145 "Consider text after this position as contextually unfontified.
146 If nil, contextual fontification is disabled.")
147 (make-variable-buffer-local 'jit-lock-first-unfontify-pos)
150 (defvar jit-lock-stealth-timer nil
151 "Timer for stealth fontification in Just-in-time Lock mode.")
153 ;;; JIT lock mode
155 (defun jit-lock-mode (arg)
156 "Toggle Just-in-time Lock mode.
157 Turn Just-in-time Lock mode on if and only if ARG is non-nil.
158 Enable it automatically by customizing group `font-lock'.
160 When Just-in-time Lock mode is enabled, fontification is different in the
161 following ways:
163 - Demand-driven buffer fontification triggered by Emacs C code.
164 This means initial fontification of the whole buffer does not occur.
165 Instead, fontification occurs when necessary, such as when scrolling
166 through the buffer would otherwise reveal unfontified areas. This is
167 useful if buffer fontification is too slow for large buffers.
169 - Stealthy buffer fontification if `jit-lock-stealth-time' is non-nil.
170 This means remaining unfontified areas of buffers are fontified if Emacs has
171 been idle for `jit-lock-stealth-time' seconds, while Emacs remains idle.
172 This is useful if any buffer has any deferred fontification.
174 - Deferred context fontification if `jit-lock-defer-contextually' is
175 non-nil. This means fontification updates the buffer corresponding to
176 true syntactic context, after `jit-lock-stealth-time' seconds of Emacs
177 idle time, while Emacs remains idle. Otherwise, fontification occurs
178 on modified lines only, and subsequent lines can remain fontified
179 corresponding to previous syntactic contexts. This is useful where
180 strings or comments span lines.
182 Stealth fontification only occurs while the system remains unloaded.
183 If the system load rises above `jit-lock-stealth-load' percent, stealth
184 fontification is suspended. Stealth fontification intensity is controlled via
185 the variable `jit-lock-stealth-nice'."
186 (setq jit-lock-mode arg)
187 (cond (;; Turn Just-in-time Lock mode on.
188 jit-lock-mode
190 ;; Mark the buffer for refontification
191 (jit-lock-refontify)
193 ;; Install an idle timer for stealth fontification.
194 (when (and jit-lock-stealth-time (null jit-lock-stealth-timer))
195 (setq jit-lock-stealth-timer
196 (run-with-idle-timer jit-lock-stealth-time
197 jit-lock-stealth-time
198 'jit-lock-stealth-fontify)))
200 ;; Initialize deferred contextual fontification if requested.
201 (when (eq jit-lock-defer-contextually t)
202 (setq jit-lock-first-unfontify-pos
203 (or jit-lock-first-unfontify-pos (point-max))))
205 ;; Setup our hooks.
206 (add-hook 'after-change-functions 'jit-lock-after-change nil t)
207 (add-hook 'fontification-functions 'jit-lock-function))
209 ;; Turn Just-in-time Lock mode off.
211 ;; Cancel our idle timer.
212 (when jit-lock-stealth-timer
213 (cancel-timer jit-lock-stealth-timer)
214 (setq jit-lock-stealth-timer nil))
216 ;; Remove hooks.
217 (remove-hook 'after-change-functions 'jit-lock-after-change t)
218 (remove-hook 'fontification-functions 'jit-lock-function))))
220 ;;;###autoload
221 (defun jit-lock-register (fun &optional contextual)
222 "Register FUN as a fontification function to be called in this buffer.
223 FUN will be called with two arguments START and END indicating the region
224 that needs to be (re)fontified.
225 If non-nil, CONTEXTUAL means that a contextual fontification would be useful."
226 (add-hook 'jit-lock-functions fun nil t)
227 (when (and contextual jit-lock-defer-contextually)
228 (set (make-local-variable 'jit-lock-defer-contextually) t))
229 (jit-lock-mode t))
231 (defun jit-lock-unregister (fun)
232 "Unregister FUN as a fontification function.
233 Only applies to the current buffer."
234 (remove-hook 'jit-lock-functions fun t)
235 (unless jit-lock-functions (jit-lock-mode nil)))
237 ;; This function is used to prevent font-lock-fontify-buffer from
238 ;; fontifying eagerly the whole buffer. This is important for
239 ;; things like CWarn mode which adds/removes a few keywords and
240 ;; does a refontify (which takes ages on large files).
241 (defalias 'jit-lock-fontify-buffer 'jit-lock-refontify)
242 (defun jit-lock-refontify (&optional beg end)
243 "Force refontification of the region BEG..END (default whole buffer)."
244 (with-buffer-prepared-for-jit-lock
245 (save-restriction
246 (widen)
247 (add-text-properties (or beg (point-min)) (or end (point-max))
248 '(fontified nil)))))
250 ;;; On demand fontification.
252 (defun jit-lock-function (start)
253 "Fontify current buffer starting at position START.
254 This function is added to `fontification-functions' when `jit-lock-mode'
255 is active."
256 (when jit-lock-mode
257 (jit-lock-fontify-now start (+ start jit-lock-chunk-size))))
260 (defun jit-lock-fontify-now (&optional start end)
261 "Fontify current buffer from START to END.
262 Defaults to the whole buffer. END can be out of bounds."
263 (with-buffer-prepared-for-jit-lock
264 (save-excursion
265 (save-restriction
266 (widen)
267 (unless start (setq start (point-min)))
268 (setq end (if end (min end (point-max)) (point-max)))
269 (let ((font-lock-beginning-of-syntax-function nil)
270 next)
271 (save-match-data
272 ;; Fontify chunks beginning at START. The end of a
273 ;; chunk is either `end', or the start of a region
274 ;; before `end' that has already been fontified.
275 (while start
276 ;; Determine the end of this chunk.
277 (setq next (or (text-property-any start end 'fontified t)
278 end))
280 ;; Decide which range of text should be fontified.
281 ;; The problem is that START and NEXT may be in the
282 ;; middle of something matched by a font-lock regexp.
283 ;; Until someone has a better idea, let's start
284 ;; at the start of the line containing START and
285 ;; stop at the start of the line following NEXT.
286 (goto-char next) (setq next (line-beginning-position 2))
287 (goto-char start) (setq start (line-beginning-position))
289 ;; Fontify the chunk, and mark it as fontified.
290 ;; We mark it first, to make sure that we don't indefinitely
291 ;; re-execute this fontification if an error occurs.
292 (add-text-properties start next '(fontified t))
293 (run-hook-with-args 'jit-lock-functions start next)
295 ;; Find the start of the next chunk, if any.
296 (setq start (text-property-any next end 'fontified nil)))))))))
299 ;;; Stealth fontification.
301 (defsubst jit-lock-stealth-chunk-start (around)
302 "Return the start of the next chunk to fontify around position AROUND..
303 Value is nil if there is nothing more to fontify."
304 (if (zerop (buffer-size))
306 (save-restriction
307 (widen)
308 (let* ((next (text-property-any around (point-max) 'fontified nil))
309 (prev (previous-single-property-change around 'fontified))
310 (prop (get-text-property (max (point-min) (1- around))
311 'fontified))
312 (start (cond
313 ((null prev)
314 ;; There is no property change between AROUND
315 ;; and the start of the buffer. If PROP is
316 ;; non-nil, everything in front of AROUND is
317 ;; fontified, otherwise nothing is fontified.
318 (if prop
320 (max (point-min)
321 (- around (/ jit-lock-chunk-size 2)))))
322 (prop
323 ;; PREV is the start of a region of fontified
324 ;; text containing AROUND. Start fontifying a
325 ;; chunk size before the end of the unfontified
326 ;; region in front of that.
327 (max (or (previous-single-property-change prev 'fontified)
328 (point-min))
329 (- prev jit-lock-chunk-size)))
331 ;; PREV is the start of a region of unfontified
332 ;; text containing AROUND. Start at PREV or
333 ;; chunk size in front of AROUND, whichever is
334 ;; nearer.
335 (max prev (- around jit-lock-chunk-size)))))
336 (result (cond ((null start) next)
337 ((null next) start)
338 ((< (- around start) (- next around)) start)
339 (t next))))
340 result))))
343 (defun jit-lock-stealth-fontify ()
344 "Fontify buffers stealthily.
345 This functions is called after Emacs has been idle for
346 `jit-lock-stealth-time' seconds."
347 (unless (or executing-kbd-macro
348 (window-minibuffer-p (selected-window)))
349 (let ((buffers (buffer-list))
350 minibuffer-auto-raise
351 message-log-max)
352 (while (and buffers (not (input-pending-p)))
353 (let ((buffer (car buffers)))
354 (setq buffers (cdr buffers))
356 (with-current-buffer buffer
357 (when jit-lock-mode
358 ;; This is funny. Calling sit-for with 3rd arg non-nil
359 ;; so that it doesn't redisplay, internally calls
360 ;; wait_reading_process_input also with a parameter
361 ;; saying "don't redisplay." Since this function here
362 ;; is called periodically, this effectively leads to
363 ;; process output not being redisplayed at all because
364 ;; redisplay_internal is never called. (That didn't
365 ;; work in the old redisplay either.) So, we learn that
366 ;; we mustn't call sit-for that way here. But then, we
367 ;; have to be cautious not to call sit-for in a widened
368 ;; buffer, since this could display hidden parts of that
369 ;; buffer. This explains the seemingly weird use of
370 ;; save-restriction/widen here.
372 (with-temp-message (if jit-lock-stealth-verbose
373 (concat "JIT stealth lock "
374 (buffer-name)))
376 ;; Perform deferred unfontification, if any.
377 (when jit-lock-first-unfontify-pos
378 (save-restriction
379 (widen)
380 (when (and (>= jit-lock-first-unfontify-pos (point-min))
381 (< jit-lock-first-unfontify-pos (point-max)))
382 (with-buffer-prepared-for-jit-lock
383 (put-text-property jit-lock-first-unfontify-pos
384 (point-max) 'fontified nil))
385 (setq jit-lock-first-unfontify-pos (point-max)))))
387 ;; In the following code, the `sit-for' calls cause a
388 ;; redisplay, so it's required that the
389 ;; buffer-modified flag of a buffer that is displayed
390 ;; has the right value---otherwise the mode line of
391 ;; an unmodified buffer would show a `*'.
392 (let (start
393 (nice (or jit-lock-stealth-nice 0))
394 (point (point)))
395 (while (and (setq start
396 (jit-lock-stealth-chunk-start point))
397 (sit-for nice))
399 ;; Wait a little if load is too high.
400 (when (and jit-lock-stealth-load
401 (> (car (load-average)) jit-lock-stealth-load))
402 (sit-for (or jit-lock-stealth-time 30)))
404 ;; Unless there's input pending now, fontify.
405 (unless (input-pending-p)
406 (jit-lock-fontify-now
407 start (+ start jit-lock-chunk-size)))))))))))))
411 ;;; Deferred fontification.
413 (defun jit-lock-after-change (start end old-len)
414 "Mark the rest of the buffer as not fontified after a change.
415 Installed on `after-change-functions'.
416 START and END are the start and end of the changed text. OLD-LEN
417 is the pre-change length.
418 This function ensures that lines following the change will be refontified
419 in case the syntax of those lines has changed. Refontification
420 will take place when text is fontified stealthily."
421 (when jit-lock-mode
422 (save-excursion
423 (with-buffer-prepared-for-jit-lock
424 ;; It's important that the `fontified' property be set from the
425 ;; beginning of the line, else font-lock will properly change the
426 ;; text's face, but the display will have been done already and will
427 ;; be inconsistent with the buffer's content.
428 (goto-char start)
429 (setq start (line-beginning-position))
430 ;; Make sure we change at least one char (in case of deletions).
431 (setq end (min (max end (1+ start)) (point-max)))
432 ;; Request refontification.
433 (put-text-property start end 'fontified nil))
434 ;; Mark the change for deferred contextual refontification.
435 (when jit-lock-first-unfontify-pos
436 (setq jit-lock-first-unfontify-pos
437 (min jit-lock-first-unfontify-pos start))))))
439 (provide 'jit-lock)
441 ;; jit-lock.el ends here