Mercurial > emacs
annotate lisp/emacs-lisp/syntax.el @ 88301:770117b2791f
(rmail-header-hide-headers): Simplify.
(rmail-header-get-limit): Wrap in a save-excursion.
(rmail-header-display-state): Renamed from rmail-header-display-mode.
author | Henrik Enberg <henrik.enberg@telia.com> |
---|---|
date | Mon, 30 Jan 2006 11:30:45 +0000 |
parents | d7ddb3e565de |
children |
rev | line source |
---|---|
45078 | 1 ;;; syntax.el --- helper functions to find syntactic context |
39756 | 2 |
88155 | 3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, |
4 ;; 2005 Free Software Foundation, Inc. | |
39756 | 5 |
45078 | 6 ;; Maintainer: FSF |
7 ;; Keywords: internal | |
8 | |
39756 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
88155 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
39756 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; The main exported function is `syntax-ppss'. You might also need | |
88155 | 29 ;; to call `syntax-ppss-flush-cache' or to add it to |
39756 | 30 ;; after-change-functions'(although this is automatically done by |
31 ;; syntax-ppss when needed, but that might fail if syntax-ppss is | |
32 ;; called in a context where after-change-functions is temporarily | |
33 ;; let-bound to nil). | |
34 | |
35 ;;; Todo: | |
36 | |
37 ;; - do something about the case where the syntax-table is changed. | |
38 ;; This typically happens with tex-mode and its `$' operator. | |
39 ;; - move font-lock-syntactic-keywords in here. Then again, maybe not. | |
40 ;; - new functions `syntax-state', ... to replace uses of parse-partial-state | |
41 ;; with something higher-level (similar to syntax-ppss-context). | |
42 ;; - interaction with mmm-mode. | |
43 | |
44 ;;; Code: | |
45 | |
46 ;; Note: PPSS stands for `parse-partial-sexp state' | |
47 | |
48 (eval-when-compile (require 'cl)) | |
49 | |
88155 | 50 (defvar font-lock-beginning-of-syntax-function) |
51 | |
39756 | 52 (defsubst syntax-ppss-depth (ppss) |
53 (nth 0 ppss)) | |
54 | |
55 (defsubst syntax-ppss-context (ppss) | |
56 (cond | |
57 ((nth 3 ppss) 'string) | |
58 ((nth 4 ppss) 'comment) | |
59 (t nil))) | |
60 | |
61 (defvar syntax-ppss-max-span 20000 | |
62 "Threshold below which cache info is deemed unnecessary. | |
63 We try to make sure that cache entries are at least this far apart | |
64 from each other, to avoid keeping too much useless info.") | |
65 | |
66 (defvar syntax-begin-function nil | |
67 "Function to move back outside of any comment/string/paren. | |
68 This function should move the cursor back to some syntactically safe | |
69 point (where the PPSS is equivalent to nil).") | |
70 | |
71 (defvar syntax-ppss-cache nil | |
72 "List of (POS . PPSS) pairs, in decreasing POS order.") | |
73 (make-variable-buffer-local 'syntax-ppss-cache) | |
74 (defvar syntax-ppss-last nil | |
75 "Cache of (LAST-POS . LAST-PPSS).") | |
76 (make-variable-buffer-local 'syntax-ppss-last) | |
77 | |
88155 | 78 (defalias 'syntax-ppss-after-change-function 'syntax-ppss-flush-cache) |
79 (defun syntax-ppss-flush-cache (beg &rest ignored) | |
80 "Flush the cache of `syntax-ppss' starting at position BEG." | |
39756 | 81 ;; Flush invalid cache entries. |
82 (while (and syntax-ppss-cache (> (caar syntax-ppss-cache) beg)) | |
83 (setq syntax-ppss-cache (cdr syntax-ppss-cache))) | |
84 ;; Throw away `last' value if made invalid. | |
85 (when (< beg (or (car syntax-ppss-last) 0)) | |
88155 | 86 ;; If syntax-begin-function jumped to BEG, then the old state at BEG can |
87 ;; depend on the text after BEG (which is presumably changed). So if | |
88 ;; BEG=(car (nth 10 syntax-ppss-last)) don't reuse that data because the | |
89 ;; assumed nil state at BEG may not be valid any more. | |
90 (if (<= beg (or (car (nth 10 syntax-ppss-last)) | |
91 (nth 9 syntax-ppss-last) | |
92 (nth 3 syntax-ppss-last) | |
93 0)) | |
39756 | 94 (setq syntax-ppss-last nil) |
95 (setcar syntax-ppss-last nil))) | |
96 ;; Unregister if there's no cache left. Sadly this doesn't work | |
97 ;; because `after-change-functions' is temporarily bound to nil here. | |
98 ;; (unless syntax-ppss-cache | |
99 ;; (remove-hook 'after-change-functions | |
100 ;; 'syntax-ppss-after-change-function t)) | |
101 ) | |
102 | |
103 (defvar syntax-ppss-stats | |
104 [(0 . 0.0) (0 . 0.0) (0 . 0.0) (0 . 0.0) (0 . 0.0) (1 . 2500.0)]) | |
105 (defun syntax-ppss-stats () | |
40396
894b9bc4ca7a
(syntax-ppss-stats): Be more robust when dividing by 0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39889
diff
changeset
|
106 (mapcar (lambda (x) |
894b9bc4ca7a
(syntax-ppss-stats): Be more robust when dividing by 0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39889
diff
changeset
|
107 (condition-case nil |
894b9bc4ca7a
(syntax-ppss-stats): Be more robust when dividing by 0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39889
diff
changeset
|
108 (cons (car x) (truncate (/ (cdr x) (car x)))) |
894b9bc4ca7a
(syntax-ppss-stats): Be more robust when dividing by 0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39889
diff
changeset
|
109 (error nil))) |
39756 | 110 syntax-ppss-stats)) |
111 | |
112 (defun syntax-ppss (&optional pos) | |
113 "Parse-Partial-Sexp State at POS. | |
114 The returned value is the same as `parse-partial-sexp' except that | |
115 the 2nd and 6th values of the returned state cannot be relied upon. | |
116 Point is at POS when this function returns." | |
117 ;; Default values. | |
118 (unless pos (setq pos (point))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47356
diff
changeset
|
119 ;; |
39756 | 120 (let ((old-ppss (cdr syntax-ppss-last)) |
121 (old-pos (car syntax-ppss-last)) | |
122 (ppss nil) | |
123 (pt-min (point-min))) | |
124 (if (and old-pos (> old-pos pos)) (setq old-pos nil)) | |
125 ;; Use the OLD-POS if usable and close. Don't update the `last' cache. | |
88155 | 126 (condition-case nil |
127 (if (and old-pos (< (- pos old-pos) | |
128 ;; The time to use syntax-begin-function and | |
129 ;; find PPSS is assumed to be about 2 * distance. | |
130 (* 2 (/ (cdr (aref syntax-ppss-stats 5)) | |
131 (1+ (car (aref syntax-ppss-stats 5))))))) | |
132 (progn | |
133 (incf (car (aref syntax-ppss-stats 0))) | |
134 (incf (cdr (aref syntax-ppss-stats 0)) (- pos old-pos)) | |
135 (parse-partial-sexp old-pos pos nil nil old-ppss)) | |
39756 | 136 |
137 (cond | |
88155 | 138 ;; Use OLD-PPSS if possible and close enough. |
139 ((and (not old-pos) old-ppss | |
140 ;; BEWARE! We rely on the undocumented 9th field. The 9th | |
141 ;; field currently contains the list of positions of | |
142 ;; open-parens of the enclosing parens. I.e. those | |
143 ;; positions are outside of any string/comment | |
144 ;; and the first of those is outside of any paren | |
145 ;; (i.e. corresponds to a nil ppss). If this list is empty | |
146 ;; but we are in a string or comment, then the 8th field | |
147 ;; contains a similar "toplevel" position. If `pt-min' is | |
148 ;; too far from `pos', we could try to use other positions | |
149 ;; in (nth 9 old-ppss), but that doesn't seem to happen in | |
150 ;; practice and it would complicate this code (and the | |
151 ;; after-change-function code even more). But maybe it | |
152 ;; would be useful in "degenerate" cases such as when the | |
153 ;; whole file is wrapped in a set of parenthesis. | |
154 (setq pt-min (or (car (nth 9 old-ppss)) | |
155 (nth 8 old-ppss) | |
156 (nth 2 old-ppss))) | |
157 (<= pt-min pos) (< (- pos pt-min) syntax-ppss-max-span)) | |
158 (incf (car (aref syntax-ppss-stats 1))) | |
159 (incf (cdr (aref syntax-ppss-stats 1)) (- pos pt-min)) | |
160 (setq ppss (parse-partial-sexp pt-min pos))) | |
161 ;; The OLD-* data can't be used. Consult the cache. | |
39756 | 162 (t |
88155 | 163 (let ((cache-pred nil) |
164 (cache syntax-ppss-cache) | |
165 (pt-min (point-min)) | |
166 ;; I differentiate between PT-MIN and PT-BEST because | |
167 ;; I feel like it might be important to ensure that the | |
168 ;; cache is only filled with 100% sure data (whereas | |
169 ;; syntax-begin-function might return incorrect data). | |
170 ;; Maybe that's just stupid. | |
171 (pt-best (point-min)) | |
172 (ppss-best nil)) | |
173 ;; look for a usable cache entry. | |
174 (while (and cache (< pos (caar cache))) | |
175 (setq cache-pred cache) | |
176 (setq cache (cdr cache))) | |
177 (if cache (setq pt-min (caar cache) ppss (cdar cache))) | |
39756 | 178 |
88155 | 179 ;; Setup the after-change function if necessary. |
180 (unless (or syntax-ppss-cache syntax-ppss-last) | |
181 (add-hook 'after-change-functions | |
182 'syntax-ppss-flush-cache nil t)) | |
39756 | 183 |
88155 | 184 ;; Use the best of OLD-POS and CACHE. |
185 (if (or (not old-pos) (< old-pos pt-min)) | |
186 (setq pt-best pt-min ppss-best ppss) | |
187 (incf (car (aref syntax-ppss-stats 4))) | |
188 (incf (cdr (aref syntax-ppss-stats 4)) (- pos old-pos)) | |
189 (setq pt-best old-pos ppss-best old-ppss)) | |
39756 | 190 |
88155 | 191 ;; Use the `syntax-begin-function' if available. |
192 ;; We could try using that function earlier, but: | |
193 ;; - The result might not be 100% reliable, so it's better to use | |
194 ;; the cache if available. | |
195 ;; - The function might be slow. | |
196 ;; - If this function almost always finds a safe nearby spot, | |
197 ;; the cache won't be populated, so consulting it is cheap. | |
198 (when (and (not syntax-begin-function) | |
199 (boundp 'font-lock-beginning-of-syntax-function) | |
200 font-lock-beginning-of-syntax-function) | |
201 (set (make-local-variable 'syntax-begin-function) | |
202 font-lock-beginning-of-syntax-function)) | |
203 (when (and syntax-begin-function | |
204 (progn (goto-char pos) | |
205 (funcall syntax-begin-function) | |
206 ;; Make sure it's better. | |
207 (> (point) pt-best)) | |
208 ;; Simple sanity check. | |
209 (not (memq (get-text-property (point) 'face) | |
210 '(font-lock-string-face font-lock-doc-face | |
211 font-lock-comment-face)))) | |
212 (incf (car (aref syntax-ppss-stats 5))) | |
213 (incf (cdr (aref syntax-ppss-stats 5)) (- pos (point))) | |
214 (setq pt-best (point) ppss-best nil)) | |
215 | |
216 (cond | |
217 ;; Quick case when we found a nearby pos. | |
218 ((< (- pos pt-best) syntax-ppss-max-span) | |
219 (incf (car (aref syntax-ppss-stats 2))) | |
220 (incf (cdr (aref syntax-ppss-stats 2)) (- pos pt-best)) | |
221 (setq ppss (parse-partial-sexp pt-best pos nil nil ppss-best))) | |
222 ;; Slow case: compute the state from some known position and | |
223 ;; populate the cache so we won't need to do it again soon. | |
224 (t | |
225 (incf (car (aref syntax-ppss-stats 3))) | |
226 (incf (cdr (aref syntax-ppss-stats 3)) (- pos pt-min)) | |
39756 | 227 |
88155 | 228 ;; If `pt-min' is too far, add a few intermediate entries. |
229 (while (> (- pos pt-min) (* 2 syntax-ppss-max-span)) | |
230 (setq ppss (parse-partial-sexp | |
231 pt-min (setq pt-min (/ (+ pt-min pos) 2)) | |
232 nil nil ppss)) | |
233 (let ((pair (cons pt-min ppss))) | |
234 (if cache-pred | |
235 (push pair (cdr cache-pred)) | |
236 (push pair syntax-ppss-cache)))) | |
237 | |
238 ;; Compute the actual return value. | |
239 (setq ppss (parse-partial-sexp pt-min pos nil nil ppss)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47356
diff
changeset
|
240 |
88155 | 241 ;; Debugging check. |
242 ;; (let ((real-ppss (parse-partial-sexp (point-min) pos))) | |
243 ;; (setcar (last ppss 4) 0) | |
244 ;; (setcar (last real-ppss 4) 0) | |
245 ;; (setcar (last ppss 8) nil) | |
246 ;; (setcar (last real-ppss 8) nil) | |
247 ;; (unless (equal ppss real-ppss) | |
248 ;; (message "!!Syntax: %s != %s" ppss real-ppss) | |
249 ;; (setq ppss real-ppss))) | |
250 | |
251 ;; Store it in the cache. | |
252 (let ((pair (cons pos ppss))) | |
253 (if cache-pred | |
254 (if (> (- (caar cache-pred) pos) syntax-ppss-max-span) | |
255 (push pair (cdr cache-pred)) | |
256 (setcar cache-pred pair)) | |
257 (if (or (null syntax-ppss-cache) | |
258 (> (- (caar syntax-ppss-cache) pos) | |
259 syntax-ppss-max-span)) | |
260 (push pair syntax-ppss-cache) | |
261 (setcar syntax-ppss-cache pair))))))))) | |
262 | |
263 (setq syntax-ppss-last (cons pos ppss)) | |
264 ppss) | |
265 (args-out-of-range | |
266 ;; If the buffer is more narrowed than when we built the cache, | |
267 ;; we may end up calling parse-partial-sexp with a position before | |
268 ;; point-min. In that case, just parse from point-min assuming | |
269 ;; a nil state. | |
270 (parse-partial-sexp (point-min) pos))))) | |
39756 | 271 |
272 ;; Debugging functions | |
273 | |
274 (defun syntax-ppss-debug () | |
275 (let ((pt nil) | |
276 (min-diffs nil)) | |
277 (dolist (x (append syntax-ppss-cache (list (cons (point-min) nil)))) | |
278 (when pt (push (- pt (car x)) min-diffs)) | |
279 (setq pt (car x))) | |
280 min-diffs)) | |
281 | |
282 ;; XEmacs compatibility functions | |
283 | |
284 ;; (defun buffer-syntactic-context (&optional buffer) | |
285 ;; "Syntactic context at point in BUFFER. | |
286 ;; Either of `string', `comment' or `nil'. | |
287 ;; This is an XEmacs compatibility function." | |
288 ;; (with-current-buffer (or buffer (current-buffer)) | |
289 ;; (syntax-ppss-context (syntax-ppss)))) | |
290 | |
291 ;; (defun buffer-syntactic-context-depth (&optional buffer) | |
292 ;; "Syntactic parenthesis depth at point in BUFFER. | |
293 ;; This is an XEmacs compatibility function." | |
294 ;; (with-current-buffer (or buffer (current-buffer)) | |
295 ;; (syntax-ppss-depth (syntax-ppss)))) | |
296 | |
297 (provide 'syntax) | |
88155 | 298 |
299 ;; arch-tag: 302f1eeb-e77c-4680-a8c5-c543e01161a5 | |
39756 | 300 ;;; syntax.el ends here |