1 ;;; syntax.el --- Helper functions to find syntactic context
3 ;; Copyright (C) 2000 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
24 ;; The main exported function is `syntax-ppss'. You might also need
25 ;; to call `syntax-ppss-after-change-function' or to add it to
26 ;; after-change-functions'(although this is automatically done by
27 ;; syntax-ppss when needed, but that might fail if syntax-ppss is
28 ;; called in a context where after-change-functions is temporarily
33 ;; - do something about the case where the syntax-table is changed.
34 ;; This typically happens with tex-mode and its `$' operator.
35 ;; - move font-lock-syntactic-keywords in here. Then again, maybe not.
36 ;; - new functions `syntax-state', ... to replace uses of parse-partial-state
37 ;; with something higher-level (similar to syntax-ppss-context).
38 ;; - interaction with mmm-mode.
39 ;; - what to do when the buffer is narrowed ?
43 ;; Note: PPSS stands for `parse-partial-sexp state'
45 (eval-when-compile (require 'cl
))
47 (defsubst syntax-ppss-depth
(ppss)
50 (defsubst syntax-ppss-context
(ppss)
52 ((nth 3 ppss
) 'string
)
53 ((nth 4 ppss
) 'comment
)
56 (defvar syntax-ppss-max-span
20000
57 "Threshold below which cache info is deemed unnecessary.
58 We try to make sure that cache entries are at least this far apart
59 from each other, to avoid keeping too much useless info.")
61 (defvar syntax-begin-function nil
62 "Function to move back outside of any comment/string/paren.
63 This function should move the cursor back to some syntactically safe
64 point (where the PPSS is equivalent to nil).")
66 (defvar syntax-ppss-cache nil
67 "List of (POS . PPSS) pairs, in decreasing POS order.")
68 (make-variable-buffer-local 'syntax-ppss-cache
)
69 (defvar syntax-ppss-last nil
70 "Cache of (LAST-POS . LAST-PPSS).")
71 (make-variable-buffer-local 'syntax-ppss-last
)
73 (defun syntax-ppss-after-change-function (beg &rest ignored
)
74 ;; Flush invalid cache entries.
75 (while (and syntax-ppss-cache
(> (caar syntax-ppss-cache
) beg
))
76 (setq syntax-ppss-cache
(cdr syntax-ppss-cache
)))
77 ;; Throw away `last' value if made invalid.
78 (when (< beg
(or (car syntax-ppss-last
) 0))
79 (if (< beg
(or (car (nth 10 syntax-ppss-last
))
80 (nth 9 syntax-ppss-last
)
81 (nth 2 syntax-ppss-last
)
83 (setq syntax-ppss-last nil
)
84 (setcar syntax-ppss-last nil
)))
85 ;; Unregister if there's no cache left. Sadly this doesn't work
86 ;; because `after-change-functions' is temporarily bound to nil here.
87 ;; (unless syntax-ppss-cache
88 ;; (remove-hook 'after-change-functions
89 ;; 'syntax-ppss-after-change-function t))
92 (defvar syntax-ppss-stats
93 [(0 .
0.0) (0 .
0.0) (0 .
0.0) (0 .
0.0) (0 .
0.0) (1 .
2500.0)])
94 (defun syntax-ppss-stats ()
97 (cons (car x
) (truncate (/ (cdr x
) (car x
))))
102 (defun syntax-ppss (&optional pos
)
103 "Parse-Partial-Sexp State at POS.
104 The returned value is the same as `parse-partial-sexp' except that
105 the 2nd and 6th values of the returned state cannot be relied upon.
107 If the caller knows the PPSS of a nearby position, she can pass it
108 in OLP-PPSS (with or without its corresponding OLD-POS) to try and
109 avoid a more expansive scan.
110 Point is at POS when this function returns."
112 (unless pos
(setq pos
(point)))
114 (let ((old-ppss (cdr syntax-ppss-last
))
115 (old-pos (car syntax-ppss-last
))
117 (pt-min (point-min)))
118 (if (and old-pos
(> old-pos pos
)) (setq old-pos nil
))
119 ;; Use the OLD-POS if usable and close. Don't update the `last' cache.
120 (if (and old-pos
(< (- pos old-pos
)
121 ;; The time to find PPSS using syntax-begin-function
122 ;; is assumed to be about 2 * distance.
123 (* 2 (/ (cdr (aref syntax-ppss-stats
5))
124 (1+ (car (aref syntax-ppss-stats
5)))))))
126 (incf (car (aref syntax-ppss-stats
0)))
127 (incf (cdr (aref syntax-ppss-stats
0)) (- pos old-pos
))
128 (parse-partial-sexp old-pos pos nil nil old-ppss
))
131 ;; Use OLD-PPSS if possible and close enough.
132 ((and (not old-pos
) old-ppss
133 ;; BEWARE! We rely on the undocumented 9th field.
134 ;; The 9th field currently contains the list of positions
135 ;; of open-parens of the enclosing parens. I.e. those positions
136 ;; are outside of any string/comment and the first of those is
137 ;; outside of any paren (i.e. corresponds to a nil ppss).
138 ;; If this list is empty but we are in a string or comment,
139 ;; then the 8th field contains a similar "toplevel" position.
140 ;; If `pt-min' is too far from `pos', we could try to use
141 ;; other positions in (nth 9 old-ppss), but that doesn't seem
142 ;; to happen in practice and it would complicate this code
143 ;; (and the after-change-function code even more). But maybe it
144 ;; would be useful in "degenerate" cases such as when the whole
145 ;; file is wrapped in a set of parenthesis.
146 (setq pt-min
(or (car (nth 9 old-ppss
))
149 (<= pt-min pos
) (< (- pos pt-min
) syntax-ppss-max-span
))
150 (incf (car (aref syntax-ppss-stats
1)))
151 (incf (cdr (aref syntax-ppss-stats
1)) (- pos pt-min
))
152 (setq ppss
(parse-partial-sexp pt-min pos
)))
153 ;; The OLD-* data can't be used. Consult the cache.
155 (let ((cache-pred nil
)
156 (cache syntax-ppss-cache
)
158 ;; I differentiate between PT-MIN and PT-BEST because I feel
159 ;; like it might be important to ensure that the cache is only
160 ;; filled with 100% sure data (whereas syntax-begin-function
161 ;; might return incorrect data). Maybe that's just stupid.
162 (pt-best (point-min))
164 ;; look for a usable cache entry.
165 (while (and cache
(< pos
(caar cache
)))
166 (setq cache-pred cache
)
167 (setq cache
(cdr cache
)))
168 (if cache
(setq pt-min
(caar cache
) ppss
(cdar cache
)))
170 ;; Setup the after-change function if necessary.
171 (unless (or syntax-ppss-cache syntax-ppss-last
)
172 (add-hook 'after-change-functions
173 'syntax-ppss-after-change-function nil t
))
175 ;; Use the best of OLD-POS and CACHE.
176 (if (or (not old-pos
) (< old-pos pt-min
))
177 (setq pt-best pt-min ppss-best ppss
)
178 (incf (car (aref syntax-ppss-stats
4)))
179 (incf (cdr (aref syntax-ppss-stats
4)) (- pos old-pos
))
180 (setq pt-best old-pos ppss-best old-ppss
))
182 ;; Use the `syntax-begin-function' if available.
183 ;; We could try using that function earlier, but:
184 ;; - The result might not be 100% reliable, so it's better to use
185 ;; the cache if available.
186 ;; - The function might be slow.
187 ;; - If this function almost always finds a safe nearby spot,
188 ;; the cache won't be populated, so consulting it is cheap.
189 (unless (or syntax-begin-function
190 (not (boundp 'font-lock-beginning-of-syntax-function
))
191 (not font-lock-beginning-of-syntax-function
))
192 (set (make-local-variable 'syntax-begin-function
)
193 font-lock-beginning-of-syntax-function
))
194 (when (and syntax-begin-function
195 (progn (goto-char pos
)
196 (funcall syntax-begin-function
)
197 ;; Make sure it's better.
199 ;; Simple sanity check.
200 (not (memq (get-text-property (point) 'face
)
201 '(font-lock-string-face font-lock-comment-face
202 font-lock-doc-face
))))
203 (incf (car (aref syntax-ppss-stats
5)))
204 (incf (cdr (aref syntax-ppss-stats
5)) (- pos
(point)))
205 (setq pt-best
(point) ppss-best nil
))
208 ;; Quick case when we found a nearby pos.
209 ((< (- pos pt-best
) syntax-ppss-max-span
)
210 (incf (car (aref syntax-ppss-stats
2)))
211 (incf (cdr (aref syntax-ppss-stats
2)) (- pos pt-best
))
212 (setq ppss
(parse-partial-sexp pt-best pos nil nil ppss-best
)))
213 ;; Slow case: compute the state from some known position and
214 ;; populate the cache so we won't need to do it again soon.
216 (incf (car (aref syntax-ppss-stats
3)))
217 (incf (cdr (aref syntax-ppss-stats
3)) (- pos pt-min
))
219 ;; If `pt-min' is too far, add a few intermediate entries.
220 (while (> (- pos pt-min
) (* 2 syntax-ppss-max-span
))
221 (setq ppss
(parse-partial-sexp
222 pt-min
(setq pt-min
(/ (+ pt-min pos
) 2))
224 (let ((pair (cons pt-min ppss
)))
226 (push pair
(cdr cache-pred
))
227 (push pair syntax-ppss-cache
))))
229 ;; Compute the actual return value.
230 (setq ppss
(parse-partial-sexp pt-min pos nil nil ppss
))
233 ;; (let ((real-ppss (parse-partial-sexp (point-min) pos)))
234 ;; (setcar (last ppss 4) 0)
235 ;; (setcar (last real-ppss 4) 0)
236 ;; (setcar (last ppss 8) nil)
237 ;; (setcar (last real-ppss 8) nil)
238 ;; (unless (equal ppss real-ppss)
239 ;; (message "!!Syntax: %s != %s" ppss real-ppss)
240 ;; (setq ppss real-ppss)))
242 ;; Store it in the cache.
243 (let ((pair (cons pos ppss
)))
245 (if (> (- (caar cache-pred
) pos
) syntax-ppss-max-span
)
246 (push pair
(cdr cache-pred
))
247 (setcar cache-pred pair
))
248 (if (or (null syntax-ppss-cache
)
249 (> (- (caar syntax-ppss-cache
) pos
)
250 syntax-ppss-max-span
))
251 (push pair syntax-ppss-cache
)
252 (setcar syntax-ppss-cache pair
)))))))))
254 (setq syntax-ppss-last
(cons pos ppss
))
257 ;; Debugging functions
259 (defun syntax-ppss-debug ()
262 (dolist (x (append syntax-ppss-cache
(list (cons (point-min) nil
))))
263 (when pt
(push (- pt
(car x
)) min-diffs
))
267 ;; XEmacs compatibility functions
269 ;; (defun buffer-syntactic-context (&optional buffer)
270 ;; "Syntactic context at point in BUFFER.
271 ;; Either of `string', `comment' or `nil'.
272 ;; This is an XEmacs compatibility function."
273 ;; (with-current-buffer (or buffer (current-buffer))
274 ;; (syntax-ppss-context (syntax-ppss))))
276 ;; (defun buffer-syntactic-context-depth (&optional buffer)
277 ;; "Syntactic parenthesis depth at point in BUFFER.
278 ;; This is an XEmacs compatibility function."
279 ;; (with-current-buffer (or buffer (current-buffer))
280 ;; (syntax-ppss-depth (syntax-ppss))))
282 (defun syntax-after (pos)
283 "Return the syntax of the char after POS."
284 (unless (or (< pos
(point-min)) (>= pos
(point-max)))
285 (let ((st (if parse-sexp-lookup-properties
286 (get-char-property pos
'syntax-table
))))
288 (aref (or st
(syntax-table)) (char-after pos
))))))
291 ;;; syntax.el ends here