Minor checkdoc simplifications.
[bpt/emacs.git] / lisp / emacs-lisp / regexp-opt.el
CommitLineData
55535639 1;;; regexp-opt.el --- generate efficient regexps to match strings
56329bc5 2
d59c3137 3;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
114f9c96 4;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
56329bc5 5
5762abec 6;; Author: Simon Marshall <simon@gnu.org>
fcc31755 7;; Maintainer: FSF
370893a1 8;; Keywords: strings, regexps, extensions
56329bc5
RS
9
10;; This file is part of GNU Emacs.
11
d6cba7ae 12;; GNU Emacs is free software: you can redistribute it and/or modify
56329bc5 13;; it under the terms of the GNU General Public License as published by
d6cba7ae
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
56329bc5
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
d6cba7ae 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
56329bc5
RS
24
25;;; Commentary:
26
b02b54a8 27;; The "opt" in "regexp-opt" stands for "optim\\(al\\|i[sz]e\\)".
56329bc5 28;;
25544ce1
SM
29;; This package generates a regexp from a given list of strings (which matches
30;; one of those strings) so that the regexp generated by:
56329bc5 31;;
25544ce1
SM
32;; (regexp-opt strings)
33;;
34;; is equivalent to, but more efficient than, the regexp generated by:
35;;
36;; (mapconcat 'regexp-quote strings "\\|")
56329bc5
RS
37;;
38;; For example:
39;;
40;; (let ((strings '("cond" "if" "when" "unless" "while"
41;; "let" "let*" "progn" "prog1" "prog2"
42;; "save-restriction" "save-excursion" "save-window-excursion"
43;; "save-current-buffer" "save-match-data"
44;; "catch" "throw" "unwind-protect" "condition-case")))
45;; (concat "(" (regexp-opt strings t) "\\>"))
46;; => "(\\(c\\(atch\\|ond\\(ition-case\\)?\\)\\|if\\|let\\*?\\|prog[12n]\\|save-\\(current-buffer\\|excursion\\|match-data\\|restriction\\|window-excursion\\)\\|throw\\|un\\(less\\|wind-protect\\)\\|wh\\(en\\|ile\\)\\)\\>"
47;;
25544ce1
SM
48;; Searching using the above example `regexp-opt' regexp takes approximately
49;; two-thirds of the time taken using the equivalent `mapconcat' regexp.
50
56329bc5
RS
51;; Since this package was written to produce efficient regexps, not regexps
52;; efficiently, it is probably not a good idea to in-line too many calls in
53;; your code, unless you use the following trick with `eval-when-compile':
54;;
55;; (defvar definition-regexp
56;; (eval-when-compile
57;; (concat "^("
58;; (regexp-opt '("defun" "defsubst" "defmacro" "defalias"
59;; "defvar" "defconst") t)
60;; "\\>")))
61;;
62;; The `byte-compile' code will be as if you had defined the variable thus:
63;;
64;; (defvar definition-regexp
65;; "^(\\(def\\(alias\\|const\\|macro\\|subst\\|un\\|var\\)\\)\\>")
66;;
25544ce1
SM
67;; Note that if you use this trick for all instances of `regexp-opt' and
68;; `regexp-opt-depth' in your code, regexp-opt.el would only have to be loaded
69;; at compile time. But note also that using this trick means that should
70;; regexp-opt.el be changed, perhaps to fix a bug or to add a feature to
71;; improve the efficiency of `regexp-opt' regexps, you would have to recompile
72;; your code for such changes to have effect in your code.
73
74;; Originally written for font-lock.el, from an idea from Stig's hl319.el, with
b02b54a8
GM
75;; thanks for ideas also to Michael Ernst, Bob Glickstein, Dan Nicolaescu and
76;; Stefan Monnier.
77;; No doubt `regexp-opt' doesn't always produce optimal regexps, so code, ideas
78;; or any other information to improve things are welcome.
c0056275
SM
79;;
80;; One possible improvement would be to compile '("aa" "ab" "ba" "bb")
81;; into "[ab][ab]" rather than "a[ab]\\|b[ab]". I'm not sure it's worth
82;; it but if someone knows how to do it without going through too many
83;; contortions, I'm all ears.
56329bc5 84\f
c0056275 85;;; Code:
56329bc5
RS
86
87;;;###autoload
88(defun regexp-opt (strings &optional paren)
784c9f3c 89 "Return a regexp to match a string in the list STRINGS.
582305b0
RS
90Each string should be unique in STRINGS and should not contain any regexps,
91quoted or not. If optional PAREN is non-nil, ensure that the returned regexp
92is enclosed by at least one regexp grouping construct.
56329bc5
RS
93The returned regexp is typically more efficient than the equivalent regexp:
94
908bb42f
SM
95 (let ((open (if PAREN \"\\\\(\" \"\")) (close (if PAREN \"\\\\)\" \"\")))
96 (concat open (mapconcat 'regexp-quote STRINGS \"\\\\|\") close))
97
98If PAREN is `words', then the resulting regexp is additionally surrounded
07ff7702
MB
99by \\=\\< and \\>.
100If PAREN is `symbols', then the resulting regexp is additionally surrounded
101by \\=\\_< and \\_>."
56329bc5
RS
102 (save-match-data
103 ;; Recurse on the sorted list.
dbf3ef78
CY
104 (let* ((max-lisp-eval-depth 10000)
105 (max-specpdl-size 10000)
908bb42f 106 (completion-ignore-case nil)
08cf00d8 107 (completion-regexp-list nil)
908bb42f 108 (open (cond ((stringp paren) paren) (paren "\\(")))
22864a48
SM
109 (sorted-strings (delete-dups
110 (sort (copy-sequence strings) 'string-lessp)))
9cc236e0 111 (re (regexp-opt-group sorted-strings (or open t) (not open))))
07ff7702
MB
112 (cond ((eq paren 'words)
113 (concat "\\<" re "\\>"))
114 ((eq paren 'symbols)
115 (concat "\\_<" re "\\_>"))
116 (t re)))))
56329bc5
RS
117
118;;;###autoload
119(defun regexp-opt-depth (regexp)
120 "Return the depth of REGEXP.
22864a48 121This means the number of non-shy regexp grouping constructs
8665b2b6 122\(parenthesized expressions) in REGEXP."
56329bc5
RS
123 (save-match-data
124 ;; Hack to signal an error if REGEXP does not have balanced parentheses.
125 (string-match regexp "")
126 ;; Count the number of open parentheses in REGEXP.
22864a48 127 (let ((count 0) start last)
cf38dd42 128 (while (string-match "\\\\(\\(\\?[0-9]*:\\)?" regexp start)
22864a48
SM
129 (setq start (match-end 0)) ; Start of next search.
130 (when (and (not (match-beginning 1))
131 (subregexp-context-p regexp (match-beginning 0) last))
132 ;; It's not a shy group and it's not inside brackets or after
133 ;; a backslash: it's really a group-open marker.
134 (setq last start) ; Speed up next regexp-opt-re-context-p.
135 (setq count (1+ count))))
56329bc5
RS
136 count)))
137\f
138;;; Workhorse functions.
139
140(eval-when-compile
141 (require 'cl))
142
56329bc5 143(defun regexp-opt-group (strings &optional paren lax)
a7769c30
SM
144 "Return a regexp to match a string in the sorted list STRINGS.
145If PAREN non-nil, output regexp parentheses around returned regexp.
146If LAX non-nil, don't output parentheses if it doesn't require them.
147Merges keywords to avoid backtracking in Emacs' regexp matcher."
94abe30b
SM
148 ;; The basic idea is to find the shortest common prefix or suffix, remove it
149 ;; and recurse. If there is no prefix, we divide the list into two so that
150 ;; \(at least) one half will have at least a one-character common prefix.
151
152 ;; Also we delay the addition of grouping parenthesis as long as possible
153 ;; until we're sure we need them, and try to remove one-character sequences
154 ;; so we can use character sets rather than grouping parenthesis.
c0056275 155 (let* ((open-group (cond ((stringp paren) paren) (paren "\\(?:") (t "")))
56329bc5
RS
156 (close-group (if paren "\\)" ""))
157 (open-charset (if lax "" open-group))
c0056275 158 (close-charset (if lax "" close-group)))
56329bc5 159 (cond
b02b54a8
GM
160 ;;
161 ;; If there are no strings, just return the empty string.
162 ((= (length strings) 0)
163 "")
164 ;;
56329bc5
RS
165 ;; If there is only one string, just return it.
166 ((= (length strings) 1)
167 (if (= (length (car strings)) 1)
168 (concat open-charset (regexp-quote (car strings)) close-charset)
169 (concat open-group (regexp-quote (car strings)) close-group)))
170 ;;
171 ;; If there is an empty string, remove it and recurse on the rest.
172 ((= (length (car strings)) 0)
173 (concat open-charset
174 (regexp-opt-group (cdr strings) t t) "?"
175 close-charset))
176 ;;
c0056275
SM
177 ;; If there are several one-char strings, use charsets
178 ((and (= (length (car strings)) 1)
179 (let ((strs (cdr strings)))
180 (while (and strs (/= (length (car strs)) 1))
181 (pop strs))
182 strs))
183 (let (letters rest)
184 ;; Collect one-char strings
185 (dolist (s strings)
5cda4b07 186 (if (= (length s) 1) (push (string-to-char s) letters) (push s rest)))
c0056275
SM
187
188 (if rest
189 ;; several one-char strings: take them and recurse
190 ;; on the rest (first so as to match the longest).
191 (concat open-group
192 (regexp-opt-group (nreverse rest))
193 "\\|" (regexp-opt-charset letters)
194 close-group)
195 ;; all are one-char strings: just return a character set.
196 (concat open-charset
197 (regexp-opt-charset letters)
198 close-charset))))
56329bc5
RS
199 ;;
200 ;; We have a list of different length strings.
201 (t
91fc05b1 202 (let ((prefix (try-completion "" strings)))
c0056275
SM
203 (if (> (length prefix) 0)
204 ;; common prefix: take it and recurse on the suffixes.
205 (let* ((n (length prefix))
206 (suffixes (mapcar (lambda (s) (substring s n)) strings)))
bba6564c 207 (concat open-group
c0056275
SM
208 (regexp-quote prefix)
209 (regexp-opt-group suffixes t t)
bba6564c 210 close-group))
c0056275
SM
211
212 (let* ((sgnirts (mapcar (lambda (s)
213 (concat (nreverse (string-to-list s))))
214 strings))
91fc05b1 215 (xiffus (try-completion "" sgnirts)))
c0056275
SM
216 (if (> (length xiffus) 0)
217 ;; common suffix: take it and recurse on the prefixes.
218 (let* ((n (- (length xiffus)))
7e1d6bdb
SM
219 (prefixes
220 ;; Sorting is necessary in cases such as ("ad" "d").
221 (sort (mapcar (lambda (s) (substring s 0 n)) strings)
222 'string-lessp)))
bba6564c 223 (concat open-group
c0056275
SM
224 (regexp-opt-group prefixes t t)
225 (regexp-quote
226 (concat (nreverse (string-to-list xiffus))))
bba6564c 227 close-group))
a1506d29 228
c0056275
SM
229 ;; Otherwise, divide the list into those that start with a
230 ;; particular letter and those that do not, and recurse on them.
75407435 231 (let* ((char (substring-no-properties (car strings) 0 1))
91fc05b1 232 (half1 (all-completions char strings))
94abe30b 233 (half2 (nthcdr (length half1) strings)))
c0056275
SM
234 (concat open-group
235 (regexp-opt-group half1)
236 "\\|" (regexp-opt-group half2)
237 close-group))))))))))
238
56329bc5
RS
239
240(defun regexp-opt-charset (chars)
a7769c30 241 "Return a regexp to match a character in CHARS."
56329bc5
RS
242 ;; The basic idea is to find character ranges. Also we take care in the
243 ;; position of character set meta characters in the character set regexp.
244 ;;
5cda4b07
SM
245 (let* ((charmap (make-char-table 'case-table))
246 (start -1) (end -2)
56329bc5
RS
247 (charset "")
248 (bracket "") (dash "") (caret ""))
249 ;;
250 ;; Make a character map but extract character set meta characters.
5cda4b07 251 (dolist (char chars)
25544ce1
SM
252 (case char
253 (?\]
254 (setq bracket "]"))
255 (?^
256 (setq caret "^"))
257 (?-
258 (setq dash "-"))
259 (otherwise
260 (aset charmap char t))))
56329bc5
RS
261 ;;
262 ;; Make a character set from the map using ranges where applicable.
5cda4b07
SM
263 (map-char-table
264 (lambda (c v)
265 (when v
6466bb34
KH
266 (if (consp c)
267 (if (= (1- (car c)) end) (setq end (cdr c))
268 (if (> end (+ start 2))
269 (setq charset (format "%s%c-%c" charset start end))
270 (while (>= end start)
271 (setq charset (format "%s%c" charset start))
272 (incf start)))
273 (setq start (car c) end (cdr c)))
274 (if (= (1- c) end) (setq end c)
275 (if (> end (+ start 2))
5cda4b07
SM
276 (setq charset (format "%s%c-%c" charset start end))
277 (while (>= end start)
278 (setq charset (format "%s%c" charset start))
279 (incf start)))
6466bb34 280 (setq start c end c)))))
5cda4b07
SM
281 charmap)
282 (when (>= end start)
283 (if (> end (+ start 2))
284 (setq charset (format "%s%c-%c" charset start end))
285 (while (>= end start)
286 (setq charset (format "%s%c" charset start))
287 (incf start))))
56329bc5
RS
288 ;;
289 ;; Make sure a caret is not first and a dash is first or last.
290 (if (and (string-equal charset "") (string-equal bracket ""))
291 (concat "[" dash caret "]")
292 (concat "[" bracket charset caret dash "]"))))
293
294(provide 'regexp-opt)
295
22864a48 296;; arch-tag: 6c5a66f4-29af-4fd6-8c3b-4b554d5b4370
56329bc5 297;;; regexp-opt.el ends here