]> code.delx.au - gnu-emacs-elpa/blob - context-coloring.el
Refactor defun / defadvice name handling.
[gnu-emacs-elpa] / context-coloring.el
1 ;;; context-coloring.el --- Highlight by scope -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 2014-2015 Free Software Foundation, Inc.
4
5 ;; Author: Jackson Ray Hamilton <jackson@jacksonrayhamilton.com>
6 ;; Version: 6.3.0
7 ;; Keywords: convenience faces tools
8 ;; Package-Requires: ((emacs "24") (js2-mode "20150126"))
9 ;; URL: https://github.com/jacksonrayhamilton/context-coloring
10
11 ;; This file is part of GNU Emacs.
12
13 ;; This program is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;; Highlights code by scope. Top-level scopes are one color, second-level
29 ;; scopes are another color, and so on. Variables retain the color of the scope
30 ;; in which they are defined. A variable defined in an outer scope referenced
31 ;; by an inner scope is colored the same as the outer scope.
32
33 ;; By default, comments and strings are still highlighted syntactically.
34
35 ;;; Code:
36
37 (require 'js2-mode)
38
39
40 ;;; Utilities
41
42 (defun context-coloring-join (strings delimiter)
43 "Join a list of STRINGS with the string DELIMITER."
44 (mapconcat #'identity strings delimiter))
45
46 (defsubst context-coloring-trim-right (string)
47 "Remove leading whitespace from STRING."
48 (if (string-match "[ \t\n\r]+\\'" string)
49 (replace-match "" t t string)
50 string))
51
52 (defsubst context-coloring-trim-left (string)
53 "Remove trailing whitespace from STRING."
54 (if (string-match "\\`[ \t\n\r]+" string)
55 (replace-match "" t t string)
56 string))
57
58 (defsubst context-coloring-trim (string)
59 "Remove leading and trailing whitespace from STRING."
60 (context-coloring-trim-left (context-coloring-trim-right string)))
61
62
63 ;;; Faces
64
65 (defun context-coloring-defface (level tty light dark)
66 "Define a face for LEVEL with colors for TTY, LIGHT and DARK
67 backgrounds."
68 (let ((face (intern (format "context-coloring-level-%s-face" level)))
69 (doc (format "Context coloring face, level %s." level)))
70 (custom-declare-face
71 face
72 `((((type tty)) (:foreground ,tty))
73 (((background light)) (:foreground ,light))
74 (((background dark)) (:foreground ,dark)))
75 doc
76 :group 'context-coloring)))
77
78 (defun context-coloring-defface-neutral (level)
79 "Define a face for LEVEL with the default neutral colors."
80 (context-coloring-defface level nil "#3f3f3f" "#cdcdcd"))
81
82 (context-coloring-defface 0 nil "#000000" "#ffffff")
83 (context-coloring-defface 1 "yellow" "#008b8b" "#00ffff")
84 (context-coloring-defface 2 "green" "#0000ff" "#87cefa")
85 (context-coloring-defface 3 "cyan" "#483d8b" "#b0c4de")
86 (context-coloring-defface 4 "blue" "#a020f0" "#eedd82")
87 (context-coloring-defface 5 "magenta" "#a0522d" "#98fb98")
88 (context-coloring-defface 6 "red" "#228b22" "#7fffd4")
89 (context-coloring-defface-neutral 7)
90
91 (defvar context-coloring-maximum-face nil
92 "Index of the highest face available for coloring.")
93
94 (defvar context-coloring-original-maximum-face nil
95 "Fallback value for `context-coloring-maximum-face' when all
96 themes have been disabled.")
97
98 (setq context-coloring-maximum-face 7)
99
100 (setq context-coloring-original-maximum-face
101 context-coloring-maximum-face)
102
103 ;; Theme authors can have up to 26 levels: 1 (0th) for globals, 24 (1st-24th)
104 ;; for nested levels, and 1 (25th) for infinity.
105 (dotimes (number 18)
106 (context-coloring-defface-neutral (+ number context-coloring-maximum-face 1)))
107
108
109 ;;; Face functions
110
111 (defsubst context-coloring-level-face (level)
112 "Return the symbol for a face with LEVEL."
113 ;; `concat' is faster than `format' here.
114 (intern-soft
115 (concat "context-coloring-level-" (number-to-string level) "-face")))
116
117 (defsubst context-coloring-bounded-level-face (level)
118 "Return the symbol for a face with LEVEL, bounded by
119 `context-coloring-maximum-face'."
120 (context-coloring-level-face (min level context-coloring-maximum-face)))
121
122
123 ;;; Change detection
124
125 (defvar-local context-coloring-changed-p nil
126 "Indication that the buffer has changed recently, which implies
127 that it should be colored again by
128 `context-coloring-colorize-idle-timer' if that timer is being
129 used.")
130
131 (defvar-local context-coloring-changed-start nil
132 "Beginning of last text that changed.")
133
134 (defvar-local context-coloring-changed-end nil
135 "End of last text that changed.")
136
137 (defvar-local context-coloring-changed-length nil
138 "Length of last text that changed.")
139
140 (defun context-coloring-change-function (start end length)
141 "Register a change so that a buffer can be colorized soon.
142
143 START, END and LENGTH are recorded for later use."
144 ;; Tokenization is obsolete if there was a change.
145 (context-coloring-cancel-scopification)
146 (setq context-coloring-changed-start start)
147 (setq context-coloring-changed-end end)
148 (setq context-coloring-changed-length length)
149 (setq context-coloring-changed-p t))
150
151 (defun context-coloring-maybe-colorize (buffer)
152 "Colorize the current buffer if it is BUFFER and has changed."
153 (when (and (eq buffer (current-buffer))
154 context-coloring-changed-p)
155 (context-coloring-colorize)
156 (setq context-coloring-changed-p nil)
157 (setq context-coloring-changed-start nil)
158 (setq context-coloring-changed-end nil)
159 (setq context-coloring-changed-length nil)))
160
161 (defvar-local context-coloring-colorize-idle-timer nil
162 "The currently-running idle timer.")
163
164 (defcustom context-coloring-default-delay 0.25
165 "Default (sometimes overridden) delay between a buffer update
166 and colorization.
167
168 Increase this if your machine is high-performing. Decrease it if
169 it ain't.
170
171 Supported modes: `js-mode', `js3-mode'"
172 :group 'context-coloring)
173
174 (make-obsolete-variable
175 'context-coloring-delay
176 'context-coloring-default-delay
177 "6.4.0")
178
179 (defun context-coloring-setup-idle-change-detection ()
180 "Setup idle change detection."
181 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
182 (add-hook
183 'after-change-functions #'context-coloring-change-function nil t)
184 (add-hook
185 'kill-buffer-hook #'context-coloring-teardown-idle-change-detection nil t)
186 (setq context-coloring-colorize-idle-timer
187 (run-with-idle-timer
188 (or (plist-get dispatch :delay) context-coloring-default-delay)
189 t
190 #'context-coloring-maybe-colorize
191 (current-buffer)))))
192
193 (defun context-coloring-teardown-idle-change-detection ()
194 "Teardown idle change detection."
195 (context-coloring-cancel-scopification)
196 (when context-coloring-colorize-idle-timer
197 (cancel-timer context-coloring-colorize-idle-timer))
198 (remove-hook
199 'kill-buffer-hook #'context-coloring-teardown-idle-change-detection t)
200 (remove-hook
201 'after-change-functions #'context-coloring-change-function t))
202
203
204 ;;; Colorization utilities
205
206 (defsubst context-coloring-colorize-region (start end level)
207 "Color characters from the 1-indexed START point (inclusive) to
208 the END point (exclusive) with the face corresponding to LEVEL."
209 (add-text-properties
210 start
211 end
212 `(face ,(context-coloring-bounded-level-face level))))
213
214 (make-obsolete-variable
215 'context-coloring-comments-and-strings
216 "use `context-coloring-syntactic-comments' and
217 `context-coloring-syntactic-strings' instead."
218 "6.1.0")
219
220 (defcustom context-coloring-syntactic-comments t
221 "If non-nil, also color comments using `font-lock'."
222 :group 'context-coloring)
223
224 (defcustom context-coloring-syntactic-strings t
225 "If non-nil, also color strings using `font-lock'."
226 :group 'context-coloring)
227
228 (defun context-coloring-font-lock-syntactic-comment-function (state)
229 "Tell `font-lock' to color a comment but not a string according
230 to STATE."
231 (if (nth 3 state) nil font-lock-comment-face))
232
233 (defun context-coloring-font-lock-syntactic-string-function (state)
234 "Tell `font-lock' to color a string but not a comment according
235 to STATE."
236 (if (nth 3 state) font-lock-string-face nil))
237
238 (defsubst context-coloring-colorize-comments-and-strings (&optional min max)
239 "Color the current buffer's comments or strings if
240 `context-coloring-syntactic-comments' or
241 `context-coloring-syntactic-strings' are non-nil. MIN defaults
242 to the beginning of the buffer and MAX defaults to the end."
243 (when (or context-coloring-syntactic-comments
244 context-coloring-syntactic-strings)
245 (let ((min (or min (point-min)))
246 (max (or max (point-max)))
247 (font-lock-syntactic-face-function
248 (cond
249 ((and context-coloring-syntactic-comments
250 (not context-coloring-syntactic-strings))
251 #'context-coloring-font-lock-syntactic-comment-function)
252 ((and context-coloring-syntactic-strings
253 (not context-coloring-syntactic-comments))
254 #'context-coloring-font-lock-syntactic-string-function)
255 (t
256 font-lock-syntactic-face-function))))
257 (save-excursion
258 (font-lock-fontify-syntactically-region min max)
259 ;; TODO: Make configurable at the dispatch level.
260 (when (eq major-mode 'emacs-lisp-mode)
261 (font-lock-fontify-keywords-region min max))))))
262
263
264 ;;; js2-mode colorization
265
266 (defvar-local context-coloring-js2-scope-level-hash-table nil
267 "Associate `js2-scope' structures and with their scope
268 levels.")
269
270 (defcustom context-coloring-js-block-scopes nil
271 "If non-nil, also color block scopes in the scope hierarchy in JavaScript.
272
273 The block-scoped `let' and `const' are introduced in ES6. Enable
274 this for ES6 code; disable it elsewhere.
275
276 Supported modes: `js2-mode'"
277 :group 'context-coloring)
278
279 (defsubst context-coloring-js2-scope-level (scope)
280 "Return the level of SCOPE."
281 (cond ((gethash scope context-coloring-js2-scope-level-hash-table))
282 (t
283 (let ((level 0)
284 (current-scope scope)
285 enclosing-scope)
286 (while (and current-scope
287 (js2-node-parent current-scope)
288 (setq enclosing-scope
289 (js2-node-get-enclosing-scope current-scope)))
290 (when (or context-coloring-js-block-scopes
291 (let ((type (js2-scope-type current-scope)))
292 (or (= type js2-SCRIPT)
293 (= type js2-FUNCTION)
294 (= type js2-CATCH))))
295 (setq level (+ level 1)))
296 (setq current-scope enclosing-scope))
297 (puthash scope level context-coloring-js2-scope-level-hash-table)))))
298
299 (defsubst context-coloring-js2-local-name-node-p (node)
300 "Determine if NODE is a `js2-name-node' representing a local
301 variable."
302 (and (js2-name-node-p node)
303 (let ((parent (js2-node-parent node)))
304 (not (or (and (js2-object-prop-node-p parent)
305 (eq node (js2-object-prop-node-left parent)))
306 (and (js2-prop-get-node-p parent)
307 ;; For nested property lookup, the node on the left is a
308 ;; `js2-prop-get-node', so this always works.
309 (eq node (js2-prop-get-node-right parent))))))))
310
311 (defvar-local context-coloring-point-max nil
312 "Cached value of `point-max'.")
313
314 (defsubst context-coloring-js2-colorize-node (node level)
315 "Color NODE with the color for LEVEL."
316 (let ((start (js2-node-abs-pos node)))
317 (context-coloring-colorize-region
318 start
319 (min
320 ;; End
321 (+ start (js2-node-len node))
322 ;; Somes nodes (like the ast when there is an unterminated multiline
323 ;; comment) will stretch to the value of `point-max'.
324 context-coloring-point-max)
325 level)))
326
327 (defun context-coloring-js2-colorize ()
328 "Color the current buffer using the abstract syntax tree
329 generated by `js2-mode'."
330 ;; Reset the hash table; the old one could be obsolete.
331 (setq context-coloring-js2-scope-level-hash-table (make-hash-table :test #'eq))
332 (setq context-coloring-point-max (point-max))
333 (with-silent-modifications
334 (js2-visit-ast
335 js2-mode-ast
336 (lambda (node end-p)
337 (when (null end-p)
338 (cond
339 ((js2-scope-p node)
340 (context-coloring-js2-colorize-node
341 node
342 (context-coloring-js2-scope-level node)))
343 ((context-coloring-js2-local-name-node-p node)
344 (let* ((enclosing-scope (js2-node-get-enclosing-scope node))
345 (defining-scope (js2-get-defining-scope
346 enclosing-scope
347 (js2-name-node-name node))))
348 ;; The tree seems to be walked lexically, so an entire scope will
349 ;; be colored, including its name nodes, before they are reached.
350 ;; Coloring the nodes defined in that scope would be redundant, so
351 ;; don't do it.
352 (when (not (eq defining-scope enclosing-scope))
353 (context-coloring-js2-colorize-node
354 node
355 (context-coloring-js2-scope-level defining-scope))))))
356 ;; The `t' indicates to search children.
357 t)))
358 (context-coloring-colorize-comments-and-strings)))
359
360
361 ;;; Emacs Lisp colorization
362
363 (defsubst context-coloring-forward-sws ()
364 "Move forward through whitespace and comments."
365 (while (forward-comment 1)))
366
367 (defsubst context-coloring-elisp-forward-sws ()
368 "Move forward through whitespace and comments, colorizing
369 comments along the way."
370 (let ((start (point)))
371 (context-coloring-forward-sws)
372 (context-coloring-colorize-comments-and-strings start (point))))
373
374 (defsubst context-coloring-elisp-forward-sexp ()
375 "Like `forward-sexp', but colorize comments and strings along
376 the way."
377 (let ((start (point)))
378 (forward-sexp)
379 (context-coloring-elisp-colorize-comments-and-strings-in-region
380 start (point))))
381
382 (defsubst context-coloring-get-syntax-code ()
383 "Get the syntax code at point."
384 (syntax-class
385 ;; Faster version of `syntax-after':
386 (aref (syntax-table) (char-after (point)))))
387
388 (defsubst context-coloring-exact-regexp (word)
389 "Create a regexp matching exactly WORD."
390 (concat "\\`" (regexp-quote word) "\\'"))
391
392 (defsubst context-coloring-exact-or-regexp (words)
393 "Create a regexp matching any exact word in WORDS."
394 (context-coloring-join
395 (mapcar #'context-coloring-exact-regexp words) "\\|"))
396
397 (defconst context-coloring-elisp-defun-regexp
398 (context-coloring-exact-or-regexp
399 '("defun" "defun*" "defsubst" "defmacro"
400 "cl-defun" "cl-defsubst" "cl-defmacro")))
401
402 (defconst context-coloring-elisp-condition-case-regexp
403 (context-coloring-exact-or-regexp
404 '("condition-case"
405 "condition-case-unless-debug")))
406
407 (defconst context-coloring-elisp-dolist-regexp
408 (context-coloring-exact-or-regexp
409 '("dolist" "dotimes")))
410
411 (defconst context-coloring-elisp-ignored-word-regexp
412 (context-coloring-join (list "\\`[-+]?[0-9]"
413 "\\`[&:].+"
414 (context-coloring-exact-or-regexp
415 '("t" "nil" "." "?")))
416 "\\|")
417 "Match words that might be considered symbols but can't be
418 bound as variables.")
419
420 (defconst context-coloring-WORD-CODE 2)
421 (defconst context-coloring-SYMBOL-CODE 3)
422 (defconst context-coloring-OPEN-PARENTHESIS-CODE 4)
423 (defconst context-coloring-CLOSE-PARENTHESIS-CODE 5)
424 (defconst context-coloring-EXPRESSION-PREFIX-CODE 6)
425 (defconst context-coloring-STRING-QUOTE-CODE 7)
426 (defconst context-coloring-ESCAPE-CODE 9)
427 (defconst context-coloring-COMMENT-START-CODE 11)
428 (defconst context-coloring-COMMENT-END-CODE 12)
429
430 (defconst context-coloring-OCTOTHORPE-CHAR (string-to-char "#"))
431 (defconst context-coloring-APOSTROPHE-CHAR (string-to-char "'"))
432 (defconst context-coloring-OPEN-PARENTHESIS-CHAR (string-to-char "("))
433 (defconst context-coloring-COMMA-CHAR (string-to-char ","))
434 (defconst context-coloring-AT-CHAR (string-to-char "@"))
435 (defconst context-coloring-BACKTICK-CHAR (string-to-char "`"))
436
437 (defsubst context-coloring-elisp-identifier-p (syntax-code)
438 "Check if SYNTAX-CODE is an elisp identifier constituent."
439 (or (= syntax-code context-coloring-WORD-CODE)
440 (= syntax-code context-coloring-SYMBOL-CODE)))
441
442 (defvar context-coloring-parse-interruptable-p t
443 "Set this to nil to force parse to continue until finished.")
444
445 (defconst context-coloring-elisp-sexps-per-pause 1000
446 "Pause after this many iterations to check for user input.
447 If user input is pending, stop the parse. This makes for a
448 smoother user experience for large files.")
449
450 (defvar context-coloring-elisp-sexp-count 0
451 "Current number of sexps leading up to the next pause.")
452
453 (defsubst context-coloring-elisp-increment-sexp-count ()
454 "Maybe check if the current parse should be interrupted as a
455 result of pending user input."
456 (setq context-coloring-elisp-sexp-count
457 (1+ context-coloring-elisp-sexp-count))
458 (when (and (zerop (% context-coloring-elisp-sexp-count
459 context-coloring-elisp-sexps-per-pause))
460 context-coloring-parse-interruptable-p
461 (input-pending-p))
462 (throw 'interrupted t)))
463
464 (defvar context-coloring-elisp-scope-stack '()
465 "List of scopes in the current parse.")
466
467 (defsubst context-coloring-elisp-make-scope (level)
468 "Make a scope object for LEVEL."
469 (list
470 :level level
471 :variables '()))
472
473 (defsubst context-coloring-elisp-scope-get-level (scope)
474 "Get the level of SCOPE object."
475 (plist-get scope :level))
476
477 (defsubst context-coloring-elisp-scope-add-variable (scope variable)
478 "Add to SCOPE a VARIABLE."
479 (plist-put scope :variables (cons variable (plist-get scope :variables))))
480
481 (defsubst context-coloring-elisp-scope-has-variable (scope variable)
482 "Check if SCOPE has VARIABLE."
483 (member variable (plist-get scope :variables)))
484
485 (defsubst context-coloring-elisp-get-variable-level (variable)
486 "Search up the scope chain for the first instance of VARIABLE
487 and return its level, or 0 (global) if it isn't found."
488 (let* ((scope-stack context-coloring-elisp-scope-stack)
489 scope
490 level)
491 (while (and scope-stack (not level))
492 (setq scope (car scope-stack))
493 (cond
494 ((context-coloring-elisp-scope-has-variable scope variable)
495 (setq level (context-coloring-elisp-scope-get-level scope)))
496 (t
497 (setq scope-stack (cdr scope-stack)))))
498 ;; Assume a global variable.
499 (or level 0)))
500
501 (defsubst context-coloring-elisp-get-current-scope-level ()
502 "Get the nesting level of the current scope."
503 (cond
504 ((car context-coloring-elisp-scope-stack)
505 (context-coloring-elisp-scope-get-level (car context-coloring-elisp-scope-stack)))
506 (t
507 0)))
508
509 (defsubst context-coloring-elisp-push-scope ()
510 "Add a new scope to the bottom of the scope chain."
511 (push (context-coloring-elisp-make-scope
512 (1+ (context-coloring-elisp-get-current-scope-level)))
513 context-coloring-elisp-scope-stack))
514
515 (defsubst context-coloring-elisp-pop-scope ()
516 "Remove the scope on the bottom of the scope chain."
517 (pop context-coloring-elisp-scope-stack))
518
519 (defsubst context-coloring-elisp-add-variable (variable)
520 "Add VARIABLE to the current scope."
521 (context-coloring-elisp-scope-add-variable
522 (car context-coloring-elisp-scope-stack)
523 variable))
524
525 (defsubst context-coloring-elisp-parse-bindable (callback)
526 "Parse the symbol at point, and if the symbol can be bound,
527 invoke CALLBACK with it."
528 (let* ((arg-string (buffer-substring-no-properties
529 (point)
530 (progn (context-coloring-elisp-forward-sexp)
531 (point)))))
532 (when (not (string-match-p
533 context-coloring-elisp-ignored-word-regexp
534 arg-string))
535 (funcall callback arg-string))))
536
537 (defun context-coloring-elisp-parse-let-varlist (type)
538 "Parse the list of variable initializers at point. If TYPE is
539 `let', all the variables are bound after all their initializers
540 are parsed; if TYPE is `let*', each variable is bound immediately
541 after its own initializer is parsed."
542 (let ((varlist '())
543 syntax-code)
544 ;; Enter.
545 (forward-char)
546 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
547 context-coloring-CLOSE-PARENTHESIS-CODE)
548 (cond
549 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
550 (forward-char)
551 (context-coloring-elisp-forward-sws)
552 (setq syntax-code (context-coloring-get-syntax-code))
553 (when (context-coloring-elisp-identifier-p syntax-code)
554 (context-coloring-elisp-parse-bindable
555 (lambda (var)
556 (push var varlist)))
557 (context-coloring-elisp-forward-sws)
558 (setq syntax-code (context-coloring-get-syntax-code))
559 (when (/= syntax-code context-coloring-CLOSE-PARENTHESIS-CODE)
560 (context-coloring-elisp-colorize-sexp)))
561 (context-coloring-elisp-forward-sws)
562 ;; Skip past the closing parenthesis.
563 (forward-char))
564 ((context-coloring-elisp-identifier-p syntax-code)
565 (context-coloring-elisp-parse-bindable
566 (lambda (var)
567 (push var varlist))))
568 (t
569 ;; Ignore artifacts.
570 (context-coloring-elisp-forward-sexp)))
571 (when (eq type 'let*)
572 (context-coloring-elisp-add-variable (pop varlist)))
573 (context-coloring-elisp-forward-sws))
574 (when (eq type 'let)
575 (while varlist
576 (context-coloring-elisp-add-variable (pop varlist))))
577 ;; Exit.
578 (forward-char)))
579
580 (defun context-coloring-elisp-parse-arglist ()
581 "Parse the list of function arguments at point."
582 (let (syntax-code)
583 ;; Enter.
584 (forward-char)
585 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
586 context-coloring-CLOSE-PARENTHESIS-CODE)
587 (cond
588 ((context-coloring-elisp-identifier-p syntax-code)
589 (context-coloring-elisp-parse-bindable
590 (lambda (arg)
591 (context-coloring-elisp-add-variable arg))))
592 (t
593 ;; Ignore artifacts.
594 (context-coloring-elisp-forward-sexp)))
595 (context-coloring-elisp-forward-sws))
596 ;; Exit.
597 (forward-char)))
598
599 (defun context-coloring-elisp-skip-callee-name ()
600 "Skip past the opening parenthesis and name of a function."
601 ;; Enter.
602 (forward-char)
603 (context-coloring-elisp-forward-sws)
604 ;; Skip past the function name.
605 (forward-sexp)
606 (context-coloring-elisp-forward-sws))
607
608 (defun context-coloring-elisp-colorize-scope (callback)
609 "Color the whole scope at point with its one color. Handle a
610 header in CALLBACK."
611 (let ((start (point))
612 (end (progn (forward-sexp)
613 (point))))
614 (context-coloring-elisp-push-scope)
615 ;; Splash the whole thing in one color.
616 (context-coloring-colorize-region
617 start
618 end
619 (context-coloring-elisp-get-current-scope-level))
620 ;; Even if the parse is interrupted, this region should still be colored
621 ;; syntactically.
622 (context-coloring-elisp-colorize-comments-and-strings-in-region
623 start
624 end)
625 (goto-char start)
626 (context-coloring-elisp-skip-callee-name)
627 (funcall callback)
628 (context-coloring-elisp-colorize-region (point) (1- end))
629 ;; Exit.
630 (forward-char)
631 (context-coloring-elisp-pop-scope)))
632
633 (defun context-coloring-elisp-parse-header (callback start)
634 "Parse a function header at point with CALLBACK. If there is
635 no header, skip past the sexp at START."
636 (cond
637 ((= (context-coloring-get-syntax-code) context-coloring-OPEN-PARENTHESIS-CODE)
638 (funcall callback))
639 (t
640 ;; Skip it.
641 (goto-char start)
642 (context-coloring-elisp-forward-sexp))))
643
644 (defun context-coloring-elisp-colorize-defun-like (callback)
645 "Color the defun-like function at point, parsing the header
646 with CALLBACK."
647 (let ((start (point)))
648 (context-coloring-elisp-colorize-scope
649 (lambda ()
650 (cond
651 ((context-coloring-elisp-identifier-p (context-coloring-get-syntax-code))
652 ;; Color the defun's name with the top-level color.
653 (context-coloring-colorize-region
654 (point)
655 (progn (forward-sexp)
656 (point))
657 0)
658 (context-coloring-elisp-forward-sws)
659 (context-coloring-elisp-parse-header callback start))
660 (t
661 ;; Skip it.
662 (goto-char start)
663 (context-coloring-elisp-forward-sexp)))))))
664
665 (defun context-coloring-elisp-colorize-defun ()
666 "Color the `defun' at point."
667 (context-coloring-elisp-colorize-defun-like
668 'context-coloring-elisp-parse-arglist))
669
670 (defun context-coloring-elisp-colorize-defadvice ()
671 "Color the `defadvice' at point."
672 (context-coloring-elisp-colorize-defun-like
673 (lambda ()
674 (let (syntax-code)
675 ;; Enter.
676 (forward-char)
677 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
678 context-coloring-CLOSE-PARENTHESIS-CODE)
679 (cond
680 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
681 (context-coloring-elisp-parse-arglist))
682 (t
683 ;; Ignore artifacts.
684 (context-coloring-elisp-forward-sexp)))
685 (context-coloring-elisp-forward-sws))
686 ;; Exit.
687 (forward-char)))))
688
689 (defun context-coloring-elisp-colorize-lambda-like (callback)
690 "Color the lambda-like function at point, parsing the header
691 with CALLBACK."
692 (let ((start (point)))
693 (context-coloring-elisp-colorize-scope
694 (lambda ()
695 (context-coloring-elisp-parse-header callback start)))))
696
697 (defun context-coloring-elisp-colorize-lambda ()
698 "Color the `lambda' at point."
699 (context-coloring-elisp-colorize-lambda-like
700 'context-coloring-elisp-parse-arglist))
701
702 (defun context-coloring-elisp-colorize-let ()
703 "Color the `let' at point."
704 (context-coloring-elisp-colorize-lambda-like
705 (lambda ()
706 (context-coloring-elisp-parse-let-varlist 'let))))
707
708 (defun context-coloring-elisp-colorize-let* ()
709 "Color the `let*' at point."
710 (context-coloring-elisp-colorize-lambda-like
711 (lambda ()
712 (context-coloring-elisp-parse-let-varlist 'let*))))
713
714 (defun context-coloring-elisp-colorize-cond ()
715 "Color the `cond' at point."
716 (let (syntax-code)
717 (context-coloring-elisp-skip-callee-name)
718 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
719 context-coloring-CLOSE-PARENTHESIS-CODE)
720 (cond
721 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
722 ;; Colorize inside the parens.
723 (let ((start (point)))
724 (forward-sexp)
725 (context-coloring-elisp-colorize-region
726 (1+ start) (1- (point)))
727 ;; Exit.
728 (forward-char)))
729 (t
730 ;; Ignore artifacts.
731 (context-coloring-elisp-forward-sexp)))
732 (context-coloring-elisp-forward-sws))
733 ;; Exit.
734 (forward-char)))
735
736 (defun context-coloring-elisp-colorize-condition-case ()
737 "Color the `condition-case' at point."
738 (let (syntax-code
739 variable
740 case-pos
741 case-end)
742 (context-coloring-elisp-colorize-scope
743 (lambda ()
744 (setq syntax-code (context-coloring-get-syntax-code))
745 ;; Gracefully ignore missing variables.
746 (when (context-coloring-elisp-identifier-p syntax-code)
747 (context-coloring-elisp-parse-bindable
748 (lambda (parsed-variable)
749 (setq variable parsed-variable)))
750 (context-coloring-elisp-forward-sws))
751 (context-coloring-elisp-colorize-sexp)
752 (context-coloring-elisp-forward-sws)
753 ;; Parse the handlers with the error variable in scope.
754 (when variable
755 (context-coloring-elisp-add-variable variable))
756 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
757 context-coloring-CLOSE-PARENTHESIS-CODE)
758 (cond
759 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
760 (setq case-pos (point))
761 (context-coloring-elisp-forward-sexp)
762 (setq case-end (point))
763 (goto-char case-pos)
764 ;; Enter.
765 (forward-char)
766 (context-coloring-elisp-forward-sws)
767 (setq syntax-code (context-coloring-get-syntax-code))
768 (when (/= syntax-code context-coloring-CLOSE-PARENTHESIS-CODE)
769 ;; Skip the condition name(s).
770 (context-coloring-elisp-forward-sexp)
771 ;; Color the remaining portion of the handler.
772 (context-coloring-elisp-colorize-region
773 (point)
774 (1- case-end)))
775 ;; Exit.
776 (forward-char))
777 (t
778 ;; Ignore artifacts.
779 (context-coloring-elisp-forward-sexp)))
780 (context-coloring-elisp-forward-sws))))))
781
782 (defun context-coloring-elisp-colorize-dolist ()
783 "Color the `dolist' at point."
784 (let (syntax-code
785 (index 0))
786 (context-coloring-elisp-colorize-scope
787 (lambda ()
788 (setq syntax-code (context-coloring-get-syntax-code))
789 (when (= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
790 (forward-char)
791 (context-coloring-elisp-forward-sws)
792 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
793 context-coloring-CLOSE-PARENTHESIS-CODE)
794 (cond
795 ((and
796 (or (= index 0) (= index 2))
797 (context-coloring-elisp-identifier-p syntax-code))
798 ;; Add the first or third name to the scope.
799 (context-coloring-elisp-parse-bindable
800 (lambda (variable)
801 (context-coloring-elisp-add-variable variable))))
802 (t
803 ;; Color artifacts.
804 (context-coloring-elisp-colorize-sexp)))
805 (context-coloring-elisp-forward-sws)
806 (setq index (1+ index)))
807 ;; Exit.
808 (forward-char))))))
809
810 (defun context-coloring-elisp-colorize-quote ()
811 "Color the `quote' at point."
812 (let* ((start (point))
813 (end (progn (forward-sexp)
814 (point))))
815 (context-coloring-colorize-region
816 start
817 end
818 (context-coloring-elisp-get-current-scope-level))
819 (context-coloring-elisp-colorize-comments-and-strings-in-region start end)))
820
821 (defun context-coloring-elisp-colorize-parenthesized-sexp ()
822 "Color the sexp enclosed by parenthesis at point."
823 (context-coloring-elisp-increment-sexp-count)
824 (let* ((start (point))
825 (end (progn (forward-sexp)
826 (point)))
827 (syntax-code (progn (goto-char start)
828 (forward-char)
829 ;; Coloring is unnecessary here, it'll happen
830 ;; presently.
831 (context-coloring-forward-sws)
832 (context-coloring-get-syntax-code))))
833 ;; Figure out if the sexp is a special form.
834 (cond
835 ((when (context-coloring-elisp-identifier-p syntax-code)
836 (let ((name-string (buffer-substring-no-properties
837 (point)
838 (progn (forward-sexp)
839 (point)))))
840 (cond
841 ((string-match-p context-coloring-elisp-defun-regexp name-string)
842 (goto-char start)
843 (context-coloring-elisp-colorize-defun)
844 t)
845 ((string-equal "let" name-string)
846 (goto-char start)
847 (context-coloring-elisp-colorize-let)
848 t)
849 ((string-equal "let*" name-string)
850 (goto-char start)
851 (context-coloring-elisp-colorize-let*)
852 t)
853 ((string-equal "lambda" name-string)
854 (goto-char start)
855 (context-coloring-elisp-colorize-lambda)
856 t)
857 ((string-equal "cond" name-string)
858 (goto-char start)
859 (context-coloring-elisp-colorize-cond)
860 t)
861 ((string-match-p context-coloring-elisp-condition-case-regexp name-string)
862 (goto-char start)
863 (context-coloring-elisp-colorize-condition-case)
864 t)
865 ((string-match-p context-coloring-elisp-dolist-regexp name-string)
866 (goto-char start)
867 (context-coloring-elisp-colorize-dolist)
868 t)
869 ((string-equal "defadvice" name-string)
870 (goto-char start)
871 (context-coloring-elisp-colorize-defadvice)
872 t)
873 ((string-equal "quote" name-string)
874 (goto-char start)
875 (context-coloring-elisp-colorize-quote)
876 t)
877 ((string-equal "backquote" name-string)
878 (goto-char start)
879 (context-coloring-elisp-colorize-backquote)
880 t)
881 (t
882 nil)))))
883 ;; Not a special form; just colorize the remaining region.
884 (t
885 (context-coloring-colorize-region
886 start
887 end
888 (context-coloring-elisp-get-current-scope-level))
889 (context-coloring-elisp-colorize-region (point) (1- end))
890 (forward-char)))))
891
892 (defun context-coloring-elisp-colorize-symbol ()
893 "Color the symbol at point."
894 (context-coloring-elisp-increment-sexp-count)
895 (let* ((symbol-pos (point))
896 (symbol-end (progn (forward-sexp)
897 (point)))
898 (symbol-string (buffer-substring-no-properties
899 symbol-pos
900 symbol-end)))
901 (cond
902 ((string-match-p context-coloring-elisp-ignored-word-regexp symbol-string))
903 (t
904 (context-coloring-colorize-region
905 symbol-pos
906 symbol-end
907 (context-coloring-elisp-get-variable-level
908 symbol-string))))))
909
910 (defun context-coloring-elisp-colorize-backquote-form ()
911 "Color the backquote form at point."
912 (let ((start (point))
913 (end (progn (forward-sexp)
914 (point)))
915 char)
916 (goto-char start)
917 (while (> end (progn (forward-char)
918 (point)))
919 (setq char (char-after))
920 (when (= char context-coloring-COMMA-CHAR)
921 (forward-char)
922 (when (= (char-after) context-coloring-AT-CHAR)
923 ;; If we don't do this "@" could be interpreted as a symbol.
924 (forward-char))
925 (context-coloring-elisp-forward-sws)
926 (context-coloring-elisp-colorize-sexp)))
927 ;; We could probably do this as part of the above loop but it'd be
928 ;; repetitive.
929 (context-coloring-elisp-colorize-comments-and-strings-in-region
930 start end)))
931
932 (defun context-coloring-elisp-colorize-backquote ()
933 "Color the `backquote' at point."
934 (context-coloring-elisp-skip-callee-name)
935 (context-coloring-elisp-colorize-backquote-form)
936 ;; Exit.
937 (forward-char))
938
939 (defun context-coloring-elisp-colorize-expression-prefix ()
940 "Color the expression prefix and the following expression at
941 point. It could be a quoted or backquoted expression."
942 (context-coloring-elisp-increment-sexp-count)
943 (cond
944 ((/= (char-after) context-coloring-BACKTICK-CHAR)
945 (context-coloring-elisp-forward-sexp))
946 (t
947 (context-coloring-elisp-colorize-backquote-form))))
948
949 (defun context-coloring-elisp-colorize-comment ()
950 "Color the comment at point."
951 (context-coloring-elisp-increment-sexp-count)
952 (context-coloring-elisp-forward-sws))
953
954 (defun context-coloring-elisp-colorize-string ()
955 "Color the string at point."
956 (context-coloring-elisp-increment-sexp-count)
957 (let ((start (point)))
958 (forward-sexp)
959 (context-coloring-colorize-comments-and-strings start (point))))
960
961 ;; Elisp has whitespace, words, symbols, open/close parenthesis, expression
962 ;; prefix, string quote, comment starters/enders and escape syntax classes only.
963
964 (defun context-coloring-elisp-colorize-sexp ()
965 "Color the sexp at point."
966 (let ((syntax-code (context-coloring-get-syntax-code)))
967 (cond
968 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
969 (context-coloring-elisp-colorize-parenthesized-sexp))
970 ((context-coloring-elisp-identifier-p syntax-code)
971 (context-coloring-elisp-colorize-symbol))
972 ((= syntax-code context-coloring-EXPRESSION-PREFIX-CODE)
973 (context-coloring-elisp-colorize-expression-prefix))
974 ((= syntax-code context-coloring-STRING-QUOTE-CODE)
975 (context-coloring-elisp-colorize-string))
976 ((= syntax-code context-coloring-ESCAPE-CODE)
977 (forward-char 2)))))
978
979 (defun context-coloring-elisp-colorize-comments-and-strings-in-region (start end)
980 "Color comments and strings between START and END."
981 (let (syntax-code)
982 (goto-char start)
983 (while (> end (progn (skip-syntax-forward "^\"<\\" end)
984 (point)))
985 (setq syntax-code (context-coloring-get-syntax-code))
986 (cond
987 ((= syntax-code context-coloring-STRING-QUOTE-CODE)
988 (context-coloring-elisp-colorize-string))
989 ((= syntax-code context-coloring-COMMENT-START-CODE)
990 (context-coloring-elisp-colorize-comment))
991 ((= syntax-code context-coloring-ESCAPE-CODE)
992 (forward-char 2))))))
993
994 (defun context-coloring-elisp-colorize-region (start end)
995 "Color everything between START and END."
996 (let (syntax-code)
997 (goto-char start)
998 (while (> end (progn (skip-syntax-forward "^w_('\"<\\" end)
999 (point)))
1000 (setq syntax-code (context-coloring-get-syntax-code))
1001 (cond
1002 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
1003 (context-coloring-elisp-colorize-parenthesized-sexp))
1004 ((context-coloring-elisp-identifier-p syntax-code)
1005 (context-coloring-elisp-colorize-symbol))
1006 ((= syntax-code context-coloring-EXPRESSION-PREFIX-CODE)
1007 (context-coloring-elisp-colorize-expression-prefix))
1008 ((= syntax-code context-coloring-STRING-QUOTE-CODE)
1009 (context-coloring-elisp-colorize-string))
1010 ((= syntax-code context-coloring-COMMENT-START-CODE)
1011 (context-coloring-elisp-colorize-comment))
1012 ((= syntax-code context-coloring-ESCAPE-CODE)
1013 (forward-char 2))))))
1014
1015 (defun context-coloring-elisp-colorize-region-initially (start end)
1016 "Begin coloring everything between START and END."
1017 (setq context-coloring-elisp-sexp-count 0)
1018 (setq context-coloring-elisp-scope-stack '())
1019 (let ((inhibit-point-motion-hooks t)
1020 (case-fold-search nil)
1021 ;; This is a recursive-descent parser, so give it a big stack.
1022 (max-lisp-eval-depth (max max-lisp-eval-depth 3000))
1023 (max-specpdl-size (max max-specpdl-size 3000)))
1024 (context-coloring-elisp-colorize-region start end)))
1025
1026 (defun context-coloring-elisp-colorize ()
1027 "Color the current buffer, parsing elisp to determine its
1028 scopes and variables."
1029 (interactive)
1030 (with-silent-modifications
1031 (save-excursion
1032 (condition-case nil
1033 (cond
1034 ;; Just colorize the changed region.
1035 (context-coloring-changed-p
1036 (let* (;; Prevent `beginning-of-defun' from making poor assumptions.
1037 (open-paren-in-column-0-is-defun-start nil)
1038 ;; Seek the beginning and end of the previous and next
1039 ;; offscreen defuns, so just enough is colored.
1040 (start (progn (goto-char context-coloring-changed-start)
1041 (while (and (< (point-min) (point))
1042 (pos-visible-in-window-p))
1043 (end-of-line 0))
1044 (beginning-of-defun)
1045 (point)))
1046 (end (progn (goto-char context-coloring-changed-end)
1047 (while (and (> (point-max) (point))
1048 (pos-visible-in-window-p))
1049 (forward-line 1))
1050 (end-of-defun)
1051 (point))))
1052 (context-coloring-elisp-colorize-region-initially start end)))
1053 (t
1054 (context-coloring-elisp-colorize-region-initially (point-min) (point-max))))
1055 ;; Scan errors can happen virtually anywhere if parenthesis are
1056 ;; unbalanced. Just swallow them. (`progn' for test coverage.)
1057 (scan-error (progn))))))
1058
1059
1060 ;;; Shell command scopification / colorization
1061
1062 (defun context-coloring-apply-tokens (tokens)
1063 "Process a string of TOKENS to apply context-based coloring to
1064 the current buffer. Tokens are 3 integers: start, end, level. A
1065 new token occurrs after every 3rd element, and the elements are
1066 separated by commas."
1067 (let* ((tokens (mapcar #'string-to-number (split-string tokens ","))))
1068 (while tokens
1069 (context-coloring-colorize-region
1070 (pop tokens)
1071 (pop tokens)
1072 (pop tokens))))
1073 (context-coloring-colorize-comments-and-strings))
1074
1075 (defun context-coloring-parse-array (array)
1076 "Parse ARRAY as a flat JSON array of numbers and use the tokens
1077 to colorize the buffer."
1078 (let* ((braceless (substring-no-properties (context-coloring-trim array) 1 -1)))
1079 (when (> (length braceless) 0)
1080 (with-silent-modifications
1081 (context-coloring-apply-tokens braceless)))))
1082
1083 (defvar-local context-coloring-scopifier-cancel-function nil
1084 "Kills the current scopification process.")
1085
1086 (defvar-local context-coloring-scopifier-process nil
1087 "The single scopifier process that can be running.")
1088
1089 (defun context-coloring-cancel-scopification ()
1090 "Stop the currently-running scopifier from scopifying."
1091 (when context-coloring-scopifier-cancel-function
1092 (funcall context-coloring-scopifier-cancel-function)
1093 (setq context-coloring-scopifier-cancel-function nil))
1094 (when (not (null context-coloring-scopifier-process))
1095 (delete-process context-coloring-scopifier-process)
1096 (setq context-coloring-scopifier-process nil)))
1097
1098 (defun context-coloring-shell-command (command callback)
1099 "Invoke COMMAND, read its response asynchronously and invoke
1100 CALLBACK with its output. Return the command process."
1101 (let ((process (start-process-shell-command "context-coloring-process" nil command))
1102 (output ""))
1103 ;; The process may produce output in multiple chunks. This filter
1104 ;; accumulates the chunks into a message.
1105 (set-process-filter
1106 process
1107 (lambda (_process chunk)
1108 (setq output (concat output chunk))))
1109 ;; When the process's message is complete, this sentinel parses it as JSON
1110 ;; and applies the tokens to the buffer.
1111 (set-process-sentinel
1112 process
1113 (lambda (_process event)
1114 (when (equal "finished\n" event)
1115 (funcall callback output))))
1116 process))
1117
1118 (defun context-coloring-scopify-shell-command (command callback)
1119 "Invoke a scopifier via COMMAND, read its response
1120 asynchronously and invoke CALLBACK with its output."
1121 ;; Prior running tokenization is implicitly obsolete if this function is
1122 ;; called.
1123 (context-coloring-cancel-scopification)
1124 ;; Start the process.
1125 (setq context-coloring-scopifier-process
1126 (context-coloring-shell-command command callback)))
1127
1128 (defun context-coloring-send-buffer-to-scopifier ()
1129 "Give the scopifier process its input so it can begin
1130 scopifying."
1131 (process-send-region
1132 context-coloring-scopifier-process
1133 (point-min) (point-max))
1134 (process-send-eof
1135 context-coloring-scopifier-process))
1136
1137 (defun context-coloring-start-scopifier-server (command host port callback)
1138 "Connect to or start a scopifier server with COMMAND, HOST and PORT.
1139 Invoke CALLBACK with a network stream when the server is ready
1140 for connections."
1141 (let* ((connect
1142 (lambda ()
1143 (let ((stream (open-network-stream "context-coloring-stream" nil host port)))
1144 (funcall callback stream)))))
1145 ;; Try to connect in case a server is running, otherwise start one.
1146 (condition-case nil
1147 (progn
1148 (funcall connect))
1149 (error
1150 (let ((server (start-process-shell-command
1151 "context-coloring-scopifier-server" nil
1152 (context-coloring-join
1153 (list command
1154 "--server"
1155 "--host" host
1156 "--port" (number-to-string port))
1157 " ")))
1158 (output ""))
1159 ;; Connect as soon as the "listening" message is printed.
1160 (set-process-filter
1161 server
1162 (lambda (_process chunk)
1163 (setq output (concat output chunk))
1164 (when (string-match-p (format "^Scopifier listening at %s:%s$" host port) output)
1165 (funcall connect)))))))))
1166
1167 (defun context-coloring-send-buffer-to-scopifier-server (command host port callback)
1168 "Send the current buffer to the scopifier server running with
1169 COMMAND, HOST and PORT. Invoke CALLBACK with the server's
1170 response (a stringified JSON array)."
1171 (context-coloring-start-scopifier-server
1172 command host port
1173 (lambda (process)
1174 (let* ((body (buffer-substring-no-properties (point-min) (point-max)))
1175 (header (concat "POST / HTTP/1.0\r\n"
1176 "Host: localhost\r\n"
1177 "Content-Type: application/x-www-form-urlencoded"
1178 "; charset=UTF8\r\n"
1179 (format "Content-Length: %d\r\n" (length body))
1180 "\r\n"))
1181 (output "")
1182 (active t))
1183 (set-process-filter
1184 process
1185 (lambda (_process chunk)
1186 (setq output (concat output chunk))))
1187 (set-process-sentinel
1188 process
1189 (lambda (_process event)
1190 (when (and (equal "connection broken by remote peer\n" event)
1191 active)
1192 ;; Strip the response headers.
1193 (string-match "\r\n\r\n" output)
1194 (setq output (substring-no-properties output (match-end 0)))
1195 (funcall callback output))))
1196 (process-send-string process (concat header body "\r\n"))
1197 (setq context-coloring-scopifier-cancel-function
1198 (lambda ()
1199 "Cancel this scopification."
1200 (setq active nil)))))))
1201
1202 (defun context-coloring-scopify-and-colorize-server (command host port &optional callback)
1203 "Color the current buffer via the server started with COMMAND,
1204 HOST and PORT. Invoke CALLBACK when complete."
1205 (let ((buffer (current-buffer)))
1206 (context-coloring-send-buffer-to-scopifier-server
1207 command host port
1208 (lambda (output)
1209 (with-current-buffer buffer
1210 (context-coloring-parse-array output))
1211 (when callback (funcall callback))))))
1212
1213 (defun context-coloring-scopify-and-colorize (command &optional callback)
1214 "Color the current buffer via COMMAND. Invoke CALLBACK when
1215 complete."
1216 (let ((buffer (current-buffer)))
1217 (context-coloring-scopify-shell-command
1218 command
1219 (lambda (output)
1220 (with-current-buffer buffer
1221 (context-coloring-parse-array output))
1222 (setq context-coloring-scopifier-process nil)
1223 (when callback (funcall callback)))))
1224 (context-coloring-send-buffer-to-scopifier))
1225
1226
1227 ;;; Dispatch
1228
1229 (defvar context-coloring-dispatch-hash-table (make-hash-table :test #'eq)
1230 "Map dispatch strategy names to their corresponding property
1231 lists, which contain details about the strategies.")
1232
1233 (defvar context-coloring-mode-hash-table (make-hash-table :test #'eq)
1234 "Map major mode names to dispatch property lists.")
1235
1236 (defun context-coloring-get-dispatch-for-mode (mode)
1237 "Return the dispatch for MODE (or a derivative mode)."
1238 (let ((parent mode)
1239 dispatch)
1240 (while (and parent
1241 (not (setq dispatch (gethash parent context-coloring-mode-hash-table)))
1242 (setq parent (get parent 'derived-mode-parent))))
1243 dispatch))
1244
1245 (defun context-coloring-define-dispatch (symbol &rest properties)
1246 "Define a new dispatch named SYMBOL with PROPERTIES.
1247
1248 A \"dispatch\" is a property list describing a strategy for
1249 coloring a buffer. There are three possible strategies: Parse
1250 and color in a single function (`:colorizer'), parse with a shell
1251 command that returns scope data (`:command'), or parse with a
1252 server that returns scope data (`:command', `:host' and `:port').
1253 In the latter two cases, the scope data will be used to
1254 automatically color the buffer.
1255
1256 PROPERTIES must include `:modes' and one of `:colorizer',
1257 `:scopifier' or `:command'.
1258
1259 `:modes' - List of major modes this dispatch is valid for.
1260
1261 `:colorizer' - Symbol referring to a function that parses and
1262 colors the buffer.
1263
1264 `:executable' - Optional name of an executable required by
1265 `:command'.
1266
1267 `:command' - Shell command to execute with the current buffer
1268 sent via stdin, and with a flat JSON array of start, end and
1269 level data returned via stdout.
1270
1271 `:host' - Hostname of the scopifier server, e.g. \"localhost\".
1272
1273 `:port' - Port number of the scopifier server, e.g. 80, 1337.
1274
1275 `:delay' - Delay between buffer update and colorization, to
1276 override `context-coloring-default-delay'.
1277
1278 `:version' - Minimum required version that should be printed when
1279 executing `:command' with a \"--version\" flag. The version
1280 should be numeric, e.g. \"2\", \"19700101\", \"1.2.3\",
1281 \"v1.2.3\" etc.
1282
1283 `:setup' - Arbitrary code to set up this dispatch when
1284 `context-coloring-mode' is enabled.
1285
1286 `:teardown' - Arbitrary code to tear down this dispatch when
1287 `context-coloring-mode' is disabled."
1288 (let ((modes (plist-get properties :modes))
1289 (colorizer (plist-get properties :colorizer))
1290 (command (plist-get properties :command)))
1291 (when (null modes)
1292 (error "No mode defined for dispatch"))
1293 (when (not (or colorizer
1294 command))
1295 (error "No colorizer or command defined for dispatch"))
1296 (puthash symbol properties context-coloring-dispatch-hash-table)
1297 (dolist (mode modes)
1298 (puthash mode properties context-coloring-mode-hash-table))))
1299
1300
1301 ;;; Colorization
1302
1303 (defvar context-coloring-colorize-hook nil
1304 "Hooks to run after coloring a buffer.")
1305
1306 (defun context-coloring-colorize (&optional callback)
1307 "Color the current buffer by function context.
1308
1309 Invoke CALLBACK when complete; see `context-coloring-dispatch'."
1310 (interactive)
1311 (context-coloring-dispatch
1312 (lambda ()
1313 (when callback (funcall callback))
1314 (run-hooks 'context-coloring-colorize-hook))))
1315
1316
1317 ;;; Versioning
1318
1319 (defun context-coloring-parse-version (string)
1320 "Extract segments of a version STRING into a list. \"v1.0.0\"
1321 produces (1 0 0), \"19700101\" produces (19700101), etc."
1322 (let (version)
1323 (while (string-match "[0-9]+" string)
1324 (setq version (append version
1325 (list (string-to-number (match-string 0 string)))))
1326 (setq string (substring string (match-end 0))))
1327 version))
1328
1329 (defun context-coloring-check-version (expected actual)
1330 "Check that version EXPECTED is less than or equal to ACTUAL."
1331 (let ((expected (context-coloring-parse-version expected))
1332 (actual (context-coloring-parse-version actual))
1333 (continue t)
1334 (acceptable t))
1335 (while (and continue expected)
1336 (let ((an-expected (car expected))
1337 (an-actual (car actual)))
1338 (cond
1339 ((> an-actual an-expected)
1340 (setq acceptable t)
1341 (setq continue nil))
1342 ((< an-actual an-expected)
1343 (setq acceptable nil)
1344 (setq continue nil))))
1345 (setq expected (cdr expected))
1346 (setq actual (cdr actual)))
1347 acceptable))
1348
1349 (defvar context-coloring-check-scopifier-version-hook nil
1350 "Hooks to run after checking the scopifier version.")
1351
1352 (defun context-coloring-check-scopifier-version (&optional callback)
1353 "Asynchronously invoke CALLBACK with a predicate indicating
1354 whether the current scopifier version satisfies the minimum
1355 version number required for the current major mode."
1356 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
1357 (when dispatch
1358 (let ((version (plist-get dispatch :version))
1359 (command (plist-get dispatch :command)))
1360 (context-coloring-shell-command
1361 (context-coloring-join (list command "--version") " ")
1362 (lambda (output)
1363 (cond
1364 ((context-coloring-check-version version output)
1365 (when callback (funcall callback t)))
1366 (t
1367 (when callback (funcall callback nil))))
1368 (run-hooks 'context-coloring-check-scopifier-version-hook)))))))
1369
1370
1371 ;;; Themes
1372
1373 (defvar context-coloring-theme-hash-table (make-hash-table :test #'eq)
1374 "Map theme names to theme properties.")
1375
1376 (defun context-coloring-theme-p (theme)
1377 "Return t if THEME is defined, nil otherwise."
1378 (and (gethash theme context-coloring-theme-hash-table)))
1379
1380 (defconst context-coloring-level-face-regexp
1381 "context-coloring-level-\\([[:digit:]]+\\)-face"
1382 "Extract a level from a face.")
1383
1384 (defvar context-coloring-originally-set-theme-hash-table
1385 (make-hash-table :test #'eq)
1386 "Cache custom themes who originally set their own
1387 `context-coloring-level-N-face' faces.")
1388
1389 (defun context-coloring-theme-originally-set-p (theme)
1390 "Return t if there is a `context-coloring-level-N-face'
1391 originally set for THEME, nil otherwise."
1392 (let (originally-set)
1393 (cond
1394 ;; `setq' might return a non-nil value for the sake of this `cond'.
1395 ((setq
1396 originally-set
1397 (gethash
1398 theme
1399 context-coloring-originally-set-theme-hash-table))
1400 (eq originally-set 'yes))
1401 (t
1402 (let* ((settings (get theme 'theme-settings))
1403 (tail settings)
1404 found)
1405 (while (and tail (not found))
1406 (and (eq (nth 0 (car tail)) 'theme-face)
1407 (string-match
1408 context-coloring-level-face-regexp
1409 (symbol-name (nth 1 (car tail))))
1410 (setq found t))
1411 (setq tail (cdr tail)))
1412 found)))))
1413
1414 (defun context-coloring-cache-originally-set (theme originally-set)
1415 "Remember if THEME had colors originally set for it. If
1416 ORIGINALLY-SET is non-nil, it did, otherwise it didn't."
1417 ;; Caching whether a theme was originally set is kind of dirty, but we have to
1418 ;; do it to remember the past state of the theme. There are probably some
1419 ;; edge cases where caching will be an issue, but they are probably rare.
1420 (puthash
1421 theme
1422 (if originally-set 'yes 'no)
1423 context-coloring-originally-set-theme-hash-table))
1424
1425 (defun context-coloring-warn-theme-originally-set (theme)
1426 "Warn the user that the colors for THEME are already originally
1427 set."
1428 (warn "Context coloring colors for theme `%s' are already defined" theme))
1429
1430 (defun context-coloring-theme-highest-level (theme)
1431 "Return the highest level N of a face like
1432 `context-coloring-level-N-face' set for THEME, or `-1' if there
1433 is none."
1434 (let* ((settings (get theme 'theme-settings))
1435 (tail settings)
1436 face-string
1437 number
1438 (found -1))
1439 (while tail
1440 (and (eq (nth 0 (car tail)) 'theme-face)
1441 (setq face-string (symbol-name (nth 1 (car tail))))
1442 (string-match
1443 context-coloring-level-face-regexp
1444 face-string)
1445 (setq number (string-to-number
1446 (substring face-string
1447 (match-beginning 1)
1448 (match-end 1))))
1449 (> number found)
1450 (setq found number))
1451 (setq tail (cdr tail)))
1452 found))
1453
1454 (defun context-coloring-apply-theme (theme)
1455 "Apply THEME's properties to its respective custom theme,
1456 which must already exist and which *should* already be enabled."
1457 (let* ((properties (gethash theme context-coloring-theme-hash-table))
1458 (colors (plist-get properties :colors))
1459 (level -1))
1460 ;; Only clobber when we have to.
1461 (when (custom-theme-enabled-p theme)
1462 (setq context-coloring-maximum-face (- (length colors) 1)))
1463 (apply
1464 #'custom-theme-set-faces
1465 theme
1466 (mapcar
1467 (lambda (color)
1468 (setq level (+ level 1))
1469 `(,(context-coloring-level-face level) ((t (:foreground ,color)))))
1470 colors))))
1471
1472 (defun context-coloring-define-theme (theme &rest properties)
1473 "Define a context theme named THEME for coloring scope levels.
1474
1475 PROPERTIES is a property list specifiying the following details:
1476
1477 `:aliases': List of symbols of other custom themes that these
1478 colors are applicable to.
1479
1480 `:colors': List of colors that this context theme uses.
1481
1482 `:override': If non-nil, this context theme is intentionally
1483 overriding colors set by a custom theme. Don't set this non-nil
1484 unless there is a custom theme you want to use which sets
1485 `context-coloring-level-N-face' faces that you want to replace.
1486
1487 `:recede': If non-nil, this context theme should not apply its
1488 colors if a custom theme already sets
1489 `context-coloring-level-N-face' faces. This option is
1490 optimistic; set this non-nil if you would rather confer the duty
1491 of picking colors to a custom theme author (if / when he ever
1492 gets around to it).
1493
1494 By default, context themes will always override custom themes,
1495 even if those custom themes set `context-coloring-level-N-face'
1496 faces. If a context theme does override a custom theme, a
1497 warning will be raised, at which point you may want to enable the
1498 `:override' option, or just delete your context theme and opt to
1499 use your custom theme's author's colors instead.
1500
1501 Context themes only work for the custom theme with the highest
1502 precedence, i.e. the car of `custom-enabled-themes'."
1503 (let ((aliases (plist-get properties :aliases))
1504 (override (plist-get properties :override))
1505 (recede (plist-get properties :recede)))
1506 (dolist (name (append `(,theme) aliases))
1507 (puthash name properties context-coloring-theme-hash-table)
1508 (when (custom-theme-p name)
1509 (let ((originally-set (context-coloring-theme-originally-set-p name)))
1510 (context-coloring-cache-originally-set name originally-set)
1511 ;; In the particular case when you innocently define colors that a
1512 ;; custom theme originally set, warn. Arguably this only has to be
1513 ;; done at enable time, but it is probably more useful to do it at
1514 ;; definition time for prompter feedback.
1515 (when (and originally-set
1516 (not recede)
1517 (not override))
1518 (context-coloring-warn-theme-originally-set name))
1519 ;; Set (or overwrite) colors.
1520 (when (not (and originally-set
1521 recede))
1522 (context-coloring-apply-theme name)))))))
1523
1524 (defun context-coloring-enable-theme (theme)
1525 "Apply THEME if its colors are not already set, else just set
1526 `context-coloring-maximum-face' to the correct value for THEME."
1527 (let* ((properties (gethash theme context-coloring-theme-hash-table))
1528 (recede (plist-get properties :recede))
1529 (override (plist-get properties :override)))
1530 (cond
1531 (recede
1532 (let ((highest-level (context-coloring-theme-highest-level theme)))
1533 (cond
1534 ;; This can be true whether originally set by a custom theme or by a
1535 ;; context theme.
1536 ((> highest-level -1)
1537 (setq context-coloring-maximum-face highest-level))
1538 ;; It is possible that the corresponding custom theme did not exist at
1539 ;; the time of defining this context theme, and in that case the above
1540 ;; condition proves the custom theme did not originally set any faces,
1541 ;; so we have license to apply the context theme for the first time
1542 ;; here.
1543 (t
1544 (context-coloring-apply-theme theme)))))
1545 (t
1546 (let ((originally-set (context-coloring-theme-originally-set-p theme)))
1547 ;; Cache now in case the context theme was defined after the custom
1548 ;; theme.
1549 (context-coloring-cache-originally-set theme originally-set)
1550 (when (and originally-set
1551 (not override))
1552 (context-coloring-warn-theme-originally-set theme))
1553 (context-coloring-apply-theme theme))))))
1554
1555 (defadvice enable-theme (after context-coloring-enable-theme (theme) activate)
1556 "Enable colors for context themes just-in-time."
1557 (when (and (not (eq theme 'user)) ; Called internally by `enable-theme'.
1558 (custom-theme-p theme) ; Guard against non-existent themes.
1559 (context-coloring-theme-p theme))
1560 (when (= (length custom-enabled-themes) 1)
1561 ;; Cache because we can't reliably figure it out in reverse.
1562 (setq context-coloring-original-maximum-face
1563 context-coloring-maximum-face))
1564 (context-coloring-enable-theme theme)))
1565
1566 (defadvice disable-theme (after context-coloring-disable-theme (theme) activate)
1567 "Update `context-coloring-maximum-face'."
1568 (when (custom-theme-p theme) ; Guard against non-existent themes.
1569 (let ((enabled-theme (car custom-enabled-themes)))
1570 (cond
1571 ((context-coloring-theme-p enabled-theme)
1572 (context-coloring-enable-theme enabled-theme))
1573 (t
1574 ;; Assume we are back to no theme; act as if nothing ever happened.
1575 ;; This is still prone to intervention, but rather extraordinarily.
1576 (setq context-coloring-maximum-face
1577 context-coloring-original-maximum-face))))))
1578
1579 (context-coloring-define-theme
1580 'ample
1581 :recede t
1582 :colors '("#bdbdb3"
1583 "#baba36"
1584 "#6aaf50"
1585 "#5180b3"
1586 "#ab75c3"
1587 "#cd7542"
1588 "#df9522"
1589 "#454545"))
1590
1591 (context-coloring-define-theme
1592 'anti-zenburn
1593 :recede t
1594 :colors '("#232333"
1595 "#6c1f1c"
1596 "#401440"
1597 "#0f2050"
1598 "#205070"
1599 "#336c6c"
1600 "#23733c"
1601 "#6b400c"
1602 "#603a60"
1603 "#2f4070"
1604 "#235c5c"))
1605
1606 (context-coloring-define-theme
1607 'grandshell
1608 :recede t
1609 :colors '("#bebebe"
1610 "#5af2ee"
1611 "#b2baf6"
1612 "#f09fff"
1613 "#efc334"
1614 "#f6df92"
1615 "#acfb5a"
1616 "#888888"))
1617
1618 (context-coloring-define-theme
1619 'leuven
1620 :recede t
1621 :colors '("#333333"
1622 "#0000ff"
1623 "#6434a3"
1624 "#ba36a5"
1625 "#d0372d"
1626 "#036a07"
1627 "#006699"
1628 "#006fe0"
1629 "#808080"))
1630
1631 (context-coloring-define-theme
1632 'monokai
1633 :recede t
1634 :colors '("#f8f8f2"
1635 "#66d9ef"
1636 "#a1efe4"
1637 "#a6e22e"
1638 "#e6db74"
1639 "#fd971f"
1640 "#f92672"
1641 "#fd5ff0"
1642 "#ae81ff"))
1643
1644 (context-coloring-define-theme
1645 'solarized
1646 :recede t
1647 :aliases '(solarized-light
1648 solarized-dark
1649 sanityinc-solarized-light
1650 sanityinc-solarized-dark)
1651 :colors '("#839496"
1652 "#268bd2"
1653 "#2aa198"
1654 "#859900"
1655 "#b58900"
1656 "#cb4b16"
1657 "#dc322f"
1658 "#d33682"
1659 "#6c71c4"
1660 "#69b7f0"
1661 "#69cabf"
1662 "#b4c342"
1663 "#deb542"
1664 "#f2804f"
1665 "#ff6e64"
1666 "#f771ac"
1667 "#9ea0e5"))
1668
1669 (context-coloring-define-theme
1670 'spacegray
1671 :recede t
1672 :colors '("#ffffff"
1673 "#89aaeb"
1674 "#c189eb"
1675 "#bf616a"
1676 "#dca432"
1677 "#ebcb8b"
1678 "#b4eb89"
1679 "#89ebca"))
1680
1681 (context-coloring-define-theme
1682 'tango
1683 :recede t
1684 :colors '("#2e3436"
1685 "#346604"
1686 "#204a87"
1687 "#5c3566"
1688 "#a40000"
1689 "#b35000"
1690 "#c4a000"
1691 "#8ae234"
1692 "#8cc4ff"
1693 "#ad7fa8"
1694 "#ef2929"
1695 "#fcaf3e"
1696 "#fce94f"))
1697
1698 (context-coloring-define-theme
1699 'zenburn
1700 :recede t
1701 :colors '("#dcdccc"
1702 "#93e0e3"
1703 "#bfebbf"
1704 "#f0dfaf"
1705 "#dfaf8f"
1706 "#cc9393"
1707 "#dc8cc3"
1708 "#94bff3"
1709 "#9fc59f"
1710 "#d0bf8f"
1711 "#dca3a3"))
1712
1713
1714 ;;; Built-in dispatches
1715
1716 (context-coloring-define-dispatch
1717 'javascript-node
1718 :modes '(js-mode js3-mode)
1719 :executable "scopifier"
1720 :command "scopifier"
1721 :version "v1.2.1"
1722 :host "localhost"
1723 :port 6969)
1724
1725 (context-coloring-define-dispatch
1726 'javascript-js2
1727 :modes '(js2-mode)
1728 :colorizer #'context-coloring-js2-colorize
1729 :setup
1730 (lambda ()
1731 (add-hook 'js2-post-parse-callbacks #'context-coloring-colorize nil t))
1732 :teardown
1733 (lambda ()
1734 (remove-hook 'js2-post-parse-callbacks #'context-coloring-colorize t)))
1735
1736 (context-coloring-define-dispatch
1737 'emacs-lisp
1738 :modes '(emacs-lisp-mode)
1739 :colorizer #'context-coloring-elisp-colorize
1740 :delay 0.016 ;; Thanks to lazy colorization this can be 60 frames per second.
1741 :setup #'context-coloring-setup-idle-change-detection
1742 :teardown #'context-coloring-teardown-idle-change-detection)
1743
1744 (defun context-coloring-dispatch (&optional callback)
1745 "Determine the optimal track for scopification / coloring of
1746 the current buffer, then execute it.
1747
1748 Invoke CALLBACK when complete. It is invoked synchronously for
1749 elisp tracks, and asynchronously for shell command tracks."
1750 (let* ((dispatch (context-coloring-get-dispatch-for-mode major-mode))
1751 (colorizer (plist-get dispatch :colorizer))
1752 (command (plist-get dispatch :command))
1753 (host (plist-get dispatch :host))
1754 (port (plist-get dispatch :port))
1755 interrupted-p)
1756 (cond
1757 (colorizer
1758 (setq interrupted-p
1759 (catch 'interrupted
1760 (funcall colorizer)))
1761 (when (and (not interrupted-p)
1762 callback)
1763 (funcall callback)))
1764 (command
1765 (cond
1766 ((and host port)
1767 (context-coloring-scopify-and-colorize-server command host port callback))
1768 (t
1769 (context-coloring-scopify-and-colorize command callback)))))))
1770
1771
1772 ;;; Minor mode
1773
1774 ;;;###autoload
1775 (define-minor-mode context-coloring-mode
1776 "Toggle contextual code coloring.
1777 With a prefix argument ARG, enable Context Coloring mode if ARG
1778 is positive, and disable it otherwise. If called from Lisp,
1779 enable the mode if ARG is omitted or nil.
1780
1781 Context Coloring mode is a buffer-local minor mode. When
1782 enabled, code is colored by scope. Scopes are colored
1783 hierarchically. Variables referenced from nested scopes retain
1784 the color of their defining scopes. Certain syntax, like
1785 comments and strings, is still colored with `font-lock'.
1786
1787 The entire buffer is colored initially. Changes to the buffer
1788 trigger recoloring.
1789
1790 Certain custom themes have predefined colors from their palettes
1791 to use for coloring. See `context-coloring-theme-hash-table' for
1792 the supported themes. If the currently-enabled custom theme is
1793 not among these, you can define colors for it with
1794 `context-coloring-define-theme', which see.
1795
1796 New language / major mode support can be added with
1797 `context-coloring-define-dispatch', which see.
1798
1799 Feature inspired by Douglas Crockford."
1800 nil " Context" nil
1801 (cond
1802 (context-coloring-mode
1803 ;; Font lock is incompatible with this mode; the converse is also true.
1804 (font-lock-mode 0)
1805 (jit-lock-mode nil)
1806 ;; ...but we do use font-lock functions here.
1807 (font-lock-set-defaults)
1808 ;; Safely change the value of this function as necessary.
1809 (make-local-variable 'font-lock-syntactic-face-function)
1810 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
1811 (cond
1812 (dispatch
1813 (let ((command (plist-get dispatch :command))
1814 (version (plist-get dispatch :version))
1815 (executable (plist-get dispatch :executable))
1816 (setup (plist-get dispatch :setup))
1817 (colorize-initially-p t))
1818 (when command
1819 ;; Shell commands recolor on change, idly.
1820 (cond
1821 ((and executable
1822 (null (executable-find executable)))
1823 (message "Executable \"%s\" not found" executable)
1824 (setq colorize-initially-p nil))
1825 (version
1826 (context-coloring-check-scopifier-version
1827 (lambda (sufficient-p)
1828 (cond
1829 (sufficient-p
1830 (context-coloring-setup-idle-change-detection)
1831 (context-coloring-colorize))
1832 (t
1833 (message "Update to the minimum version of \"%s\" (%s)"
1834 executable version)))))
1835 (setq colorize-initially-p nil))
1836 (t
1837 (context-coloring-setup-idle-change-detection))))
1838 (when setup
1839 (funcall setup))
1840 ;; Colorize once initially.
1841 (when colorize-initially-p
1842 (let ((context-coloring-parse-interruptable-p nil))
1843 (context-coloring-colorize)))))
1844 (t
1845 (message "Context coloring is not available for this major mode")))))
1846 (t
1847 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
1848 (when dispatch
1849 (let ((command (plist-get dispatch :command))
1850 (teardown (plist-get dispatch :teardown)))
1851 (when command
1852 (context-coloring-teardown-idle-change-detection))
1853 (when teardown
1854 (funcall teardown)))))
1855 (font-lock-mode)
1856 (jit-lock-mode t))))
1857
1858 (provide 'context-coloring)
1859
1860 ;;; context-coloring.el ends here