* term/xterm.el (xterm--query): Stop after first matching handler. (Bug#14615)
[bpt/emacs.git] / lisp / progmodes / glasses.el
CommitLineData
efd68b8a
GM
1;;; glasses.el --- make cantReadThis readable
2
ab422c4d 3;; Copyright (C) 1999-2013 Free Software Foundation, Inc.
efd68b8a 4
7aee34d3
GM
5;; Author: Milan Zamazal <pdm@zamazal.org>
6;; Maintainer: Milan Zamazal <pdm@zamazal.org>
efd68b8a
GM
7;; Keywords: tools
8
9;; This file is part of GNU Emacs.
10
b1fc2b50 11;; GNU Emacs is free software: you can redistribute it and/or modify
efd68b8a 12;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
efd68b8a
GM
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
b1fc2b50 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
efd68b8a
GM
23
24;;; Commentary:
25
26;; This file defines a minor mode for making unreadableIdentifiersLikeThis
27;; readable. In some environments, for instance Java, it is common to use such
28;; unreadable identifiers. It is not good to use underscores in identifiers of
29;; your own project in such an environment to make your sources more readable,
30;; since it introduces undesirable confusion, which is worse than the
31;; unreadability. Fortunately, you use Emacs for the subproject, so the
32;; problem can be solved some way.
33;;
34;; This file defines the `glasses-mode' minor mode, which displays underscores
35;; between all the pairs of lower and upper English letters. (This only
36;; displays underscores, the text is not changed actually.) Alternatively, you
37;; can say you want the capitals in some given face (e.g. bold).
38;;
39;; The mode does something usable, though not perfect. Improvement suggestions
40;; from Emacs experts are welcome.
41;;
42;; If you like in-identifier separators different from underscores, change the
43;; value of the variable `glasses-separator' appropriately. See also the
44;; variables `glasses-face' and `glasses-convert-on-write-p'. You can also use
45;; the command `M-x customize-group RET glasses RET'.
46;;
47;; If you set any of the variables `glasses-separator' or `glasses-face' after
170c1b26 48;; glasses.el is loaded in a different way than through customize, you
efd68b8a
GM
49;; should call the function `glasses-set-overlay-properties' afterwards.
50
51;;; Code:
52
53
efd68b8a
GM
54;;; User variables
55
56
57(defgroup glasses nil
170c1b26 58 "Make unreadable code likeThis(one) readable."
c17c99ad 59 :version "21.1"
efd68b8a
GM
60 :group 'tools)
61
62
63(defcustom glasses-separator "_"
c57a573f 64 "String to be displayed as a visual separator in identifiers.
08108577
EZ
65It is used both for adding missing separators and for replacing separators
66defined by `glasses-original-separator'. If you don't want to add missing
67separators, set `glasses-separator' to an empty string. If you don't want to
68replace existent separators, set `glasses-original-separator' to an empty
69string."
efd68b8a
GM
70 :group 'glasses
71 :type 'string
72 :set 'glasses-custom-set
73 :initialize 'custom-initialize-default)
74
75
08108577 76(defcustom glasses-original-separator "_"
fb7ada5f 77 "String to be displayed as `glasses-separator' in separator positions.
08108577
EZ
78For instance, if you set it to \"_\" and set `glasses-separator' to \"-\",
79underscore separators are displayed as hyphens.
80If `glasses-original-separator' is an empty string, no such display change is
81performed."
82 :group 'glasses
83 :type 'string
84 :set 'glasses-custom-set
85 :initialize 'custom-initialize-default
86 :version "22.1")
87
88
efd68b8a 89(defcustom glasses-face nil
c57a573f 90 "Face to be put on capitals of an identifier looked through glasses.
efd68b8a
GM
91If it is nil, no face is placed at the capitalized letter.
92
93For example, you can set `glasses-separator' to an empty string and
94`glasses-face' to `bold'. Then unreadable identifiers will have no separators,
95but will have their capitals in bold."
96 :group 'glasses
deefca64 97 :type '(choice (const :tag "None" nil) face)
efd68b8a
GM
98 :set 'glasses-custom-set
99 :initialize 'custom-initialize-default)
100
101
170c1b26 102(defcustom glasses-separate-parentheses-p t
c57a573f 103 "If non-nil, ensure space between an identifier and an opening parenthesis."
170c1b26
GM
104 :group 'glasses
105 :type 'boolean)
106
014d32b1
JB
107(defcustom glasses-separate-parentheses-exceptions
108 '("^#[\t ]*define[\t ]*[A-Za-z0-9_-]* ?($")
109 "List of regexp that are exceptions for `glasses-separate-parentheses-p'.
110They are matched to the current line truncated to the point where the
111parenthesis expression starts."
112 :group 'glasses
113 :type '(repeat regexp))
170c1b26 114
9c1d5ac5
MZ
115(defcustom glasses-separate-capital-groups t
116 "If non-nil, try to separate groups of capital letters.
117When the value is non-nil, HTMLSomething and IPv6 are displayed
118as HTML_Something and I_Pv6 respectively. Set the value to nil
119if you prefer to display them unchanged."
120 :group 'glasses
121 :type 'boolean
122 :version "24.1")
123
170c1b26 124(defcustom glasses-uncapitalize-p nil
c57a573f 125 "If non-nil, downcase embedded capital letters in identifiers.
170c1b26
GM
126Only identifiers starting with lower case letters are affected, letters inside
127other identifiers are unchanged."
128 :group 'glasses
129 :type 'boolean
130 :set 'glasses-custom-set
131 :initialize 'custom-initialize-default)
132
133
134(defcustom glasses-uncapitalize-regexp "[a-z]"
c57a573f 135 "Regexp matching beginnings of words to be uncapitalized.
170c1b26
GM
136Only words starting with this regexp are uncapitalized.
137The regexp is case sensitive.
138It has any effect only when `glasses-uncapitalize-p' is non-nil."
139 :group 'glasses
140 :type 'regexp
141 :set 'glasses-custom-set
142 :initialize 'custom-initialize-default)
143
144
efd68b8a 145(defcustom glasses-convert-on-write-p nil
c57a573f 146 "If non-nil, remove separators when writing glasses buffer to a file.
efd68b8a
GM
147If you are confused by glasses so much, that you write the separators into code
148during coding, set this variable to t. The separators will be removed on each
149file write then.
150
151Note the removal action does not try to be much clever, so it can remove real
152separators too."
153 :group 'glasses
154 :type 'boolean)
155
156
157(defun glasses-custom-set (symbol value)
158 "Set value of the variable SYMBOL to VALUE and update overlay categories.
159Used in :set parameter of some customized glasses variables."
c17c99ad 160 (set-default symbol value)
efd68b8a
GM
161 (glasses-set-overlay-properties))
162
163
164;;; Utility functions
165
014d32b1
JB
166(defun glasses-parenthesis-exception-p (beg end)
167 "Tell if (BEG, END) is an exception to `glasses-separate-parentheses-p'.
168See `glasses-separate-parentheses-exceptions'."
169 (save-match-data
170 (let ((str (buffer-substring beg end)))
171 (catch 'match
172 (dolist (re glasses-separate-parentheses-exceptions)
173 (and (string-match re str) (throw 'match t)))))))
efd68b8a
GM
174
175(defun glasses-set-overlay-properties ()
176 "Set properties of glasses overlays.
177Consider current setting of user variables."
178 ;; In-identifier overlay
179 (put 'glasses 'evaporate t)
180 (put 'glasses 'before-string glasses-separator)
181 (put 'glasses 'face glasses-face)
182 ;; Beg-identifier overlay
183 (put 'glasses-init 'evaporate t)
170c1b26
GM
184 (put 'glasses-init 'face glasses-face)
185 ;; Parenthesis overlay
186 (put 'glasses-parenthesis 'evaporate t)
187 (put 'glasses-parenthesis 'before-string " "))
efd68b8a
GM
188
189(glasses-set-overlay-properties)
190
191
192(defun glasses-overlay-p (overlay)
193 "Return whether OVERLAY is an overlay of glasses mode."
170c1b26
GM
194 (memq (overlay-get overlay 'category)
195 '(glasses glasses-init glasses-parenthesis)))
efd68b8a
GM
196
197
170c1b26
GM
198(defun glasses-make-overlay (beg end &optional category)
199 "Create and return readability overlay over the region from BEG to END.
200CATEGORY is the overlay category. If it is nil, use the `glasses' category."
efd68b8a 201 (let ((overlay (make-overlay beg end)))
170c1b26
GM
202 (overlay-put overlay 'category (or category 'glasses))
203 overlay))
efd68b8a
GM
204
205
206(defun glasses-make-readable (beg end)
207 "Make identifiers in the region from BEG to END readable."
208 (let ((case-fold-search nil))
209 (save-excursion
210 (save-match-data
211 ;; Face only
212 (goto-char beg)
213 (while (re-search-forward
214 "\\<\\([A-Z]\\)[a-zA-Z]*\\([a-z][A-Z]\\|[A-Z][a-z]\\)"
215 end t)
170c1b26
GM
216 (glasses-make-overlay (match-beginning 1) (match-end 1)
217 'glasses-init))
efd68b8a 218 ;; Face + separator
170c1b26 219 (goto-char beg)
9c1d5ac5
MZ
220 (while (re-search-forward
221 (if glasses-separate-capital-groups
222 "[a-z]\\([A-Z]\\)\\|[A-Z]\\([A-Z]\\)[a-z]"
223 "[a-z]\\([A-Z]\\)")
224 end t)
170c1b26
GM
225 (let* ((n (if (match-string 1) 1 2))
226 (o (glasses-make-overlay (match-beginning n) (match-end n))))
227 (goto-char (match-beginning n))
228 (when (and glasses-uncapitalize-p
15cca6c4
GM
229 (save-match-data
230 (looking-at "[A-Z]\\($\\|[^A-Z]\\)"))
170c1b26
GM
231 (save-excursion
232 (save-match-data
233 (re-search-backward "\\<.")
234 (looking-at glasses-uncapitalize-regexp))))
235 (overlay-put o 'invisible t)
236 (overlay-put o 'after-string (downcase (match-string n))))))
debe6451 237 ;; Separator change
08108577
EZ
238 (when (and (not (string= glasses-original-separator glasses-separator))
239 (not (string= glasses-original-separator "")))
debe6451 240 (goto-char beg)
08108577
EZ
241 (let ((original-regexp (regexp-quote glasses-original-separator)))
242 (while (re-search-forward
243 (format "[a-zA-Z0-9]\\(\\(%s\\)+\\)[a-zA-Z0-9]"
244 original-regexp)
245 end t)
246 (goto-char (match-beginning 1))
247 (while (looking-at original-regexp)
248 (let ((o (glasses-make-overlay (point) (1+ (point)))))
249 ;; `concat' ensures the character properties won't merge
250 (overlay-put o 'display (concat glasses-separator)))
251 (goto-char (match-end 0))))))
170c1b26
GM
252 ;; Parentheses
253 (when glasses-separate-parentheses-p
254 (goto-char beg)
7aee34d3 255 (while (re-search-forward "[a-zA-Z]_*\\(\(\\)" end t)
014d32b1
JB
256 (unless (glasses-parenthesis-exception-p (point-at-bol) (match-end 1))
257 (glasses-make-overlay (match-beginning 1) (match-end 1)
258 'glasses-parenthesis))))))))
efd68b8a
GM
259
260
261(defun glasses-make-unreadable (beg end)
262 "Return identifiers in the region from BEG to END to their unreadable state."
263 (dolist (o (overlays-in beg end))
264 (when (glasses-overlay-p o)
265 (delete-overlay o))))
266
267
268(defun glasses-convert-to-unreadable ()
269 "Convert current buffer to unreadable identifiers and return nil.
270This function modifies buffer contents, it removes all the separators,
271recognized according to the current value of the variable `glasses-separator'."
014d32b1 272 (when glasses-convert-on-write-p
971c5b28
GM
273 (let ((case-fold-search nil)
274 (separator (regexp-quote glasses-separator)))
efd68b8a 275 (save-excursion
014d32b1 276 (unless (string= glasses-separator "")
08108577 277 (goto-char (point-min))
014d32b1
JB
278 (while (re-search-forward
279 (format "[a-z]\\(%s\\)[A-Z]\\|[A-Z]\\(%s\\)[A-Z][a-z]"
280 separator separator)
281 nil t)
282 (let ((n (if (match-string 1) 1 2)))
283 (replace-match "" t nil nil n)
284 (goto-char (match-end n))))
285 (unless (string= glasses-separator glasses-original-separator)
286 (goto-char (point-min))
287 (while (re-search-forward (format "[a-zA-Z0-9]\\(%s+\\)[a-zA-Z0-9]"
288 separator)
289 nil t)
290 (replace-match glasses-original-separator nil nil nil 1)
291 (goto-char (match-beginning 1)))))
170c1b26
GM
292 (when glasses-separate-parentheses-p
293 (goto-char (point-min))
a21822f8 294 (while (re-search-forward "[a-zA-Z]_*\\( \\)\(" nil t)
014d32b1
JB
295 (unless (glasses-parenthesis-exception-p (point-at-bol) (1+ (match-end 1)))
296 (replace-match "" t nil nil 1)))))))
efd68b8a
GM
297 ;; nil must be returned to allow use in write file hooks
298 nil)
299
300
e02f48d7 301(defun glasses-change (beg end &optional _old-len)
efd68b8a
GM
302 "After-change function updating glass overlays."
303 (let ((beg-line (save-excursion (goto-char beg) (line-beginning-position)))
304 (end-line (save-excursion (goto-char end) (line-end-position))))
305 (glasses-make-unreadable beg-line end-line)
306 (glasses-make-readable beg-line end-line)))
307
308
309;;; Minor mode definition
310
311
efd68b8a 312;;;###autoload
5610cefd 313(define-minor-mode glasses-mode
efd68b8a 314 "Minor mode for making identifiers likeThis readable.
e1ac4066
GM
315With a prefix argument ARG, enable the mode if ARG is positive,
316and disable it otherwise. If called from Lisp, enable the mode
317if ARG is omitted or nil. When this mode is active, it tries to
318add virtual separators (like underscores) at places they belong to."
3b614b81 319 :group 'glasses :lighter " o^o"
5610cefd
GM
320 (save-excursion
321 (save-restriction
322 (widen)
323 ;; We erase all the overlays anyway, to avoid dual sight in some
324 ;; circumstances
325 (glasses-make-unreadable (point-min) (point-max))
326 (if glasses-mode
327 (progn
328 (jit-lock-register 'glasses-change)
329 (add-hook 'local-write-file-hooks
330 'glasses-convert-to-unreadable nil t))
331 (jit-lock-unregister 'glasses-change)
332 (remove-hook 'local-write-file-hooks
333 'glasses-convert-to-unreadable t)))))
efd68b8a
GM
334
335
336;;; Announce
337
338(provide 'glasses)
339
340
341;;; glasses.el ends here