]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/regexp-opt.el
512f86b24d03a4aac62d745ada8d9155a6672327
[gnu-emacs] / lisp / emacs-lisp / regexp-opt.el
1 ;;; regexp-opt.el --- generate efficient regexps to match strings
2
3 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
4 ;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 ;; Author: Simon Marshall <simon@gnu.org>
7 ;; Maintainer: FSF
8 ;; Keywords: strings, regexps, extensions
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
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
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; The "opt" in "regexp-opt" stands for "optim\\(al\\|i[sz]e\\)".
28 ;;
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:
31 ;;
32 ;; (regexp-opt strings)
33 ;;
34 ;; is equivalent to, but more efficient than, the regexp generated by:
35 ;;
36 ;; (mapconcat 'regexp-quote strings "\\|")
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 ;;
48 ;; Searching using the above example `regexp-opt' regexp takes approximately
49 ;; two-thirds of the time taken using the equivalent `mapconcat' regexp.
50
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 ;;
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
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.
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.
84 \f
85 ;;; Code:
86
87 ;;;###autoload
88 (defun regexp-opt (strings &optional paren)
89 "Return a regexp to match a string in the list STRINGS.
90 Each string should be unique in STRINGS and should not contain any regexps,
91 quoted or not. If optional PAREN is non-nil, ensure that the returned regexp
92 is enclosed by at least one regexp grouping construct.
93 The returned regexp is typically more efficient than the equivalent regexp:
94
95 (let ((open (if PAREN \"\\\\(\" \"\")) (close (if PAREN \"\\\\)\" \"\")))
96 (concat open (mapconcat 'regexp-quote STRINGS \"\\\\|\") close))
97
98 If PAREN is `words', then the resulting regexp is additionally surrounded
99 by \\=\\< and \\>."
100 (save-match-data
101 ;; Recurse on the sorted list.
102 (let* ((max-lisp-eval-depth 10000)
103 (max-specpdl-size 10000)
104 (completion-ignore-case nil)
105 (completion-regexp-list nil)
106 (words (eq paren 'words))
107 (open (cond ((stringp paren) paren) (paren "\\(")))
108 (sorted-strings (delete-dups
109 (sort (copy-sequence strings) 'string-lessp)))
110 (re (regexp-opt-group sorted-strings (or open t) (not open))))
111 (if words (concat "\\<" re "\\>") re))))
112
113 ;;;###autoload
114 (defun regexp-opt-depth (regexp)
115 "Return the depth of REGEXP.
116 This means the number of non-shy regexp grouping constructs
117 \(parenthesized expressions) in REGEXP."
118 (save-match-data
119 ;; Hack to signal an error if REGEXP does not have balanced parentheses.
120 (string-match regexp "")
121 ;; Count the number of open parentheses in REGEXP.
122 (let ((count 0) start last)
123 (while (string-match "\\\\(\\(\\?:\\)?" regexp start)
124 (setq start (match-end 0)) ; Start of next search.
125 (when (and (not (match-beginning 1))
126 (subregexp-context-p regexp (match-beginning 0) last))
127 ;; It's not a shy group and it's not inside brackets or after
128 ;; a backslash: it's really a group-open marker.
129 (setq last start) ; Speed up next regexp-opt-re-context-p.
130 (setq count (1+ count))))
131 count)))
132 \f
133 ;;; Workhorse functions.
134
135 (eval-when-compile
136 (require 'cl))
137
138 (defun regexp-opt-group (strings &optional paren lax)
139 "Return a regexp to match a string in the sorted list STRINGS.
140 If PAREN non-nil, output regexp parentheses around returned regexp.
141 If LAX non-nil, don't output parentheses if it doesn't require them.
142 Merges keywords to avoid backtracking in Emacs' regexp matcher."
143 ;; The basic idea is to find the shortest common prefix or suffix, remove it
144 ;; and recurse. If there is no prefix, we divide the list into two so that
145 ;; \(at least) one half will have at least a one-character common prefix.
146
147 ;; Also we delay the addition of grouping parenthesis as long as possible
148 ;; until we're sure we need them, and try to remove one-character sequences
149 ;; so we can use character sets rather than grouping parenthesis.
150 (let* ((open-group (cond ((stringp paren) paren) (paren "\\(?:") (t "")))
151 (close-group (if paren "\\)" ""))
152 (open-charset (if lax "" open-group))
153 (close-charset (if lax "" close-group)))
154 (cond
155 ;;
156 ;; If there are no strings, just return the empty string.
157 ((= (length strings) 0)
158 "")
159 ;;
160 ;; If there is only one string, just return it.
161 ((= (length strings) 1)
162 (if (= (length (car strings)) 1)
163 (concat open-charset (regexp-quote (car strings)) close-charset)
164 (concat open-group (regexp-quote (car strings)) close-group)))
165 ;;
166 ;; If there is an empty string, remove it and recurse on the rest.
167 ((= (length (car strings)) 0)
168 (concat open-charset
169 (regexp-opt-group (cdr strings) t t) "?"
170 close-charset))
171 ;;
172 ;; If there are several one-char strings, use charsets
173 ((and (= (length (car strings)) 1)
174 (let ((strs (cdr strings)))
175 (while (and strs (/= (length (car strs)) 1))
176 (pop strs))
177 strs))
178 (let (letters rest)
179 ;; Collect one-char strings
180 (dolist (s strings)
181 (if (= (length s) 1) (push (string-to-char s) letters) (push s rest)))
182
183 (if rest
184 ;; several one-char strings: take them and recurse
185 ;; on the rest (first so as to match the longest).
186 (concat open-group
187 (regexp-opt-group (nreverse rest))
188 "\\|" (regexp-opt-charset letters)
189 close-group)
190 ;; all are one-char strings: just return a character set.
191 (concat open-charset
192 (regexp-opt-charset letters)
193 close-charset))))
194 ;;
195 ;; We have a list of different length strings.
196 (t
197 (let ((prefix (try-completion "" strings)))
198 (if (> (length prefix) 0)
199 ;; common prefix: take it and recurse on the suffixes.
200 (let* ((n (length prefix))
201 (suffixes (mapcar (lambda (s) (substring s n)) strings)))
202 (concat open-group
203 (regexp-quote prefix)
204 (regexp-opt-group suffixes t t)
205 close-group))
206
207 (let* ((sgnirts (mapcar (lambda (s)
208 (concat (nreverse (string-to-list s))))
209 strings))
210 (xiffus (try-completion "" sgnirts)))
211 (if (> (length xiffus) 0)
212 ;; common suffix: take it and recurse on the prefixes.
213 (let* ((n (- (length xiffus)))
214 (prefixes
215 ;; Sorting is necessary in cases such as ("ad" "d").
216 (sort (mapcar (lambda (s) (substring s 0 n)) strings)
217 'string-lessp)))
218 (concat open-group
219 (regexp-opt-group prefixes t t)
220 (regexp-quote
221 (concat (nreverse (string-to-list xiffus))))
222 close-group))
223
224 ;; Otherwise, divide the list into those that start with a
225 ;; particular letter and those that do not, and recurse on them.
226 (let* ((char (substring-no-properties (car strings) 0 1))
227 (half1 (all-completions char strings))
228 (half2 (nthcdr (length half1) strings)))
229 (concat open-group
230 (regexp-opt-group half1)
231 "\\|" (regexp-opt-group half2)
232 close-group))))))))))
233
234
235 (defun regexp-opt-charset (chars)
236 "Return a regexp to match a character in CHARS."
237 ;; The basic idea is to find character ranges. Also we take care in the
238 ;; position of character set meta characters in the character set regexp.
239 ;;
240 (let* ((charmap (make-char-table 'case-table))
241 (start -1) (end -2)
242 (charset "")
243 (bracket "") (dash "") (caret ""))
244 ;;
245 ;; Make a character map but extract character set meta characters.
246 (dolist (char chars)
247 (case char
248 (?\]
249 (setq bracket "]"))
250 (?^
251 (setq caret "^"))
252 (?-
253 (setq dash "-"))
254 (otherwise
255 (aset charmap char t))))
256 ;;
257 ;; Make a character set from the map using ranges where applicable.
258 (map-char-table
259 (lambda (c v)
260 (when v
261 (if (consp c)
262 (if (= (1- (car c)) end) (setq end (cdr c))
263 (if (> end (+ start 2))
264 (setq charset (format "%s%c-%c" charset start end))
265 (while (>= end start)
266 (setq charset (format "%s%c" charset start))
267 (incf start)))
268 (setq start (car c) end (cdr c)))
269 (if (= (1- c) end) (setq end c)
270 (if (> end (+ start 2))
271 (setq charset (format "%s%c-%c" charset start end))
272 (while (>= end start)
273 (setq charset (format "%s%c" charset start))
274 (incf start)))
275 (setq start c end c)))))
276 charmap)
277 (when (>= end start)
278 (if (> end (+ start 2))
279 (setq charset (format "%s%c-%c" charset start end))
280 (while (>= end start)
281 (setq charset (format "%s%c" charset start))
282 (incf start))))
283 ;;
284 ;; Make sure a caret is not first and a dash is first or last.
285 (if (and (string-equal charset "") (string-equal bracket ""))
286 (concat "[" dash caret "]")
287 (concat "[" bracket charset caret dash "]"))))
288
289 (provide 'regexp-opt)
290
291 ;; arch-tag: 6c5a66f4-29af-4fd6-8c3b-4b554d5b4370
292 ;;; regexp-opt.el ends here