]> code.delx.au - gnu-emacs/blob - src/search.c
Added code for automatically saving and restoring the match data
[gnu-emacs] / src / search.c
1 /* String search routines for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include <config.h>
22 #include "lisp.h"
23 #include "syntax.h"
24 #include "buffer.h"
25 #include "region-cache.h"
26 #include "commands.h"
27 #include "blockinput.h"
28
29 #include <sys/types.h>
30 #include "regex.h"
31
32 #define REGEXP_CACHE_SIZE 5
33
34 /* If the regexp is non-nil, then the buffer contains the compiled form
35 of that regexp, suitable for searching. */
36 struct regexp_cache {
37 struct regexp_cache *next;
38 Lisp_Object regexp;
39 struct re_pattern_buffer buf;
40 char fastmap[0400];
41 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
42 char posix;
43 };
44
45 /* The instances of that struct. */
46 struct regexp_cache searchbufs[REGEXP_CACHE_SIZE];
47
48 /* The head of the linked list; points to the most recently used buffer. */
49 struct regexp_cache *searchbuf_head;
50
51
52 /* Every call to re_match, etc., must pass &search_regs as the regs
53 argument unless you can show it is unnecessary (i.e., if re_match
54 is certainly going to be called again before region-around-match
55 can be called).
56
57 Since the registers are now dynamically allocated, we need to make
58 sure not to refer to the Nth register before checking that it has
59 been allocated by checking search_regs.num_regs.
60
61 The regex code keeps track of whether it has allocated the search
62 buffer using bits in the re_pattern_buffer. This means that whenever
63 you compile a new pattern, it completely forgets whether it has
64 allocated any registers, and will allocate new registers the next
65 time you call a searching or matching function. Therefore, we need
66 to call re_set_registers after compiling a new pattern or after
67 setting the match registers, so that the regex functions will be
68 able to free or re-allocate it properly. */
69 static struct re_registers search_regs;
70
71 /* The buffer in which the last search was performed, or
72 Qt if the last search was done in a string;
73 Qnil if no searching has been done yet. */
74 static Lisp_Object last_thing_searched;
75
76 /* error condition signalled when regexp compile_pattern fails */
77
78 Lisp_Object Qinvalid_regexp;
79
80 static void set_search_regs ();
81
82 static int search_buffer ();
83
84 static void
85 matcher_overflow ()
86 {
87 error ("Stack overflow in regexp matcher");
88 }
89
90 #ifdef __STDC__
91 #define CONST const
92 #else
93 #define CONST
94 #endif
95
96 /* Compile a regexp and signal a Lisp error if anything goes wrong.
97 PATTERN is the pattern to compile.
98 CP is the place to put the result.
99 TRANSLATE is a translation table for ignoring case, or NULL for none.
100 REGP is the structure that says where to store the "register"
101 values that will result from matching this pattern.
102 If it is 0, we should compile the pattern not to record any
103 subexpression bounds.
104 POSIX is nonzero if we want full backtracking (POSIX style)
105 for this pattern. 0 means backtrack only enough to get a valid match. */
106
107 static void
108 compile_pattern_1 (cp, pattern, translate, regp, posix)
109 struct regexp_cache *cp;
110 Lisp_Object pattern;
111 char *translate;
112 struct re_registers *regp;
113 int posix;
114 {
115 CONST char *val;
116 reg_syntax_t old;
117
118 cp->regexp = Qnil;
119 cp->buf.translate = translate;
120 cp->posix = posix;
121 BLOCK_INPUT;
122 old = re_set_syntax (RE_SYNTAX_EMACS
123 | (posix ? 0 : RE_NO_POSIX_BACKTRACKING));
124 val = (CONST char *) re_compile_pattern ((char *) XSTRING (pattern)->data,
125 XSTRING (pattern)->size, &cp->buf);
126 re_set_syntax (old);
127 UNBLOCK_INPUT;
128 if (val)
129 Fsignal (Qinvalid_regexp, Fcons (build_string (val), Qnil));
130
131 cp->regexp = Fcopy_sequence (pattern);
132
133 /* Advise the searching functions about the space we have allocated
134 for register data. */
135 BLOCK_INPUT;
136 if (regp)
137 re_set_registers (&cp->buf, regp, regp->num_regs, regp->start, regp->end);
138 UNBLOCK_INPUT;
139 }
140
141 /* Compile a regexp if necessary, but first check to see if there's one in
142 the cache.
143 PATTERN is the pattern to compile.
144 TRANSLATE is a translation table for ignoring case, or NULL for none.
145 REGP is the structure that says where to store the "register"
146 values that will result from matching this pattern.
147 If it is 0, we should compile the pattern not to record any
148 subexpression bounds.
149 POSIX is nonzero if we want full backtracking (POSIX style)
150 for this pattern. 0 means backtrack only enough to get a valid match. */
151
152 struct re_pattern_buffer *
153 compile_pattern (pattern, regp, translate, posix)
154 Lisp_Object pattern;
155 struct re_registers *regp;
156 char *translate;
157 int posix;
158 {
159 struct regexp_cache *cp, **cpp;
160
161 for (cpp = &searchbuf_head; ; cpp = &cp->next)
162 {
163 cp = *cpp;
164 if (!NILP (Fstring_equal (cp->regexp, pattern))
165 && cp->buf.translate == translate
166 && cp->posix == posix)
167 break;
168
169 /* If we're at the end of the cache, compile into the last cell. */
170 if (cp->next == 0)
171 {
172 compile_pattern_1 (cp, pattern, translate, regp, posix);
173 break;
174 }
175 }
176
177 /* When we get here, cp (aka *cpp) contains the compiled pattern,
178 either because we found it in the cache or because we just compiled it.
179 Move it to the front of the queue to mark it as most recently used. */
180 *cpp = cp->next;
181 cp->next = searchbuf_head;
182 searchbuf_head = cp;
183
184 return &cp->buf;
185 }
186
187 /* Error condition used for failing searches */
188 Lisp_Object Qsearch_failed;
189
190 Lisp_Object
191 signal_failure (arg)
192 Lisp_Object arg;
193 {
194 Fsignal (Qsearch_failed, Fcons (arg, Qnil));
195 return Qnil;
196 }
197 \f
198 static Lisp_Object
199 looking_at_1 (string, posix)
200 Lisp_Object string;
201 int posix;
202 {
203 Lisp_Object val;
204 unsigned char *p1, *p2;
205 int s1, s2;
206 register int i;
207 struct re_pattern_buffer *bufp;
208
209 if (running_asynch_code)
210 save_search_regs ();
211
212 CHECK_STRING (string, 0);
213 bufp = compile_pattern (string, &search_regs,
214 (!NILP (current_buffer->case_fold_search)
215 ? DOWNCASE_TABLE : 0),
216 posix);
217
218 immediate_quit = 1;
219 QUIT; /* Do a pending quit right away, to avoid paradoxical behavior */
220
221 /* Get pointers and sizes of the two strings
222 that make up the visible portion of the buffer. */
223
224 p1 = BEGV_ADDR;
225 s1 = GPT - BEGV;
226 p2 = GAP_END_ADDR;
227 s2 = ZV - GPT;
228 if (s1 < 0)
229 {
230 p2 = p1;
231 s2 = ZV - BEGV;
232 s1 = 0;
233 }
234 if (s2 < 0)
235 {
236 s1 = ZV - BEGV;
237 s2 = 0;
238 }
239
240 i = re_match_2 (bufp, (char *) p1, s1, (char *) p2, s2,
241 point - BEGV, &search_regs,
242 ZV - BEGV);
243 if (i == -2)
244 matcher_overflow ();
245
246 val = (0 <= i ? Qt : Qnil);
247 for (i = 0; i < search_regs.num_regs; i++)
248 if (search_regs.start[i] >= 0)
249 {
250 search_regs.start[i] += BEGV;
251 search_regs.end[i] += BEGV;
252 }
253 XSETBUFFER (last_thing_searched, current_buffer);
254 immediate_quit = 0;
255 return val;
256 }
257
258 DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0,
259 "Return t if text after point matches regular expression PAT.\n\
260 This function modifies the match data that `match-beginning',\n\
261 `match-end' and `match-data' access; save and restore the match\n\
262 data if you want to preserve them.")
263 (string)
264 Lisp_Object string;
265 {
266 return looking_at_1 (string, 0);
267 }
268
269 DEFUN ("posix-looking-at", Fposix_looking_at, Sposix_looking_at, 1, 1, 0,
270 "Return t if text after point matches regular expression PAT.\n\
271 Find the longest match, in accord with Posix regular expression rules.\n\
272 This function modifies the match data that `match-beginning',\n\
273 `match-end' and `match-data' access; save and restore the match\n\
274 data if you want to preserve them.")
275 (string)
276 Lisp_Object string;
277 {
278 return looking_at_1 (string, 1);
279 }
280 \f
281 static Lisp_Object
282 string_match_1 (regexp, string, start, posix)
283 Lisp_Object regexp, string, start;
284 int posix;
285 {
286 int val;
287 int s;
288 struct re_pattern_buffer *bufp;
289
290 if (running_asynch_code)
291 save_search_regs ();
292
293 CHECK_STRING (regexp, 0);
294 CHECK_STRING (string, 1);
295
296 if (NILP (start))
297 s = 0;
298 else
299 {
300 int len = XSTRING (string)->size;
301
302 CHECK_NUMBER (start, 2);
303 s = XINT (start);
304 if (s < 0 && -s <= len)
305 s = len + s;
306 else if (0 > s || s > len)
307 args_out_of_range (string, start);
308 }
309
310 bufp = compile_pattern (regexp, &search_regs,
311 (!NILP (current_buffer->case_fold_search)
312 ? DOWNCASE_TABLE : 0),
313 0);
314 immediate_quit = 1;
315 val = re_search (bufp, (char *) XSTRING (string)->data,
316 XSTRING (string)->size, s, XSTRING (string)->size - s,
317 &search_regs);
318 immediate_quit = 0;
319 last_thing_searched = Qt;
320 if (val == -2)
321 matcher_overflow ();
322 if (val < 0) return Qnil;
323 return make_number (val);
324 }
325
326 DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0,
327 "Return index of start of first match for REGEXP in STRING, or nil.\n\
328 If third arg START is non-nil, start search at that index in STRING.\n\
329 For index of first char beyond the match, do (match-end 0).\n\
330 `match-end' and `match-beginning' also give indices of substrings\n\
331 matched by parenthesis constructs in the pattern.")
332 (regexp, string, start)
333 Lisp_Object regexp, string, start;
334 {
335 return string_match_1 (regexp, string, start, 0);
336 }
337
338 DEFUN ("posix-string-match", Fposix_string_match, Sposix_string_match, 2, 3, 0,
339 "Return index of start of first match for REGEXP in STRING, or nil.\n\
340 Find the longest match, in accord with Posix regular expression rules.\n\
341 If third arg START is non-nil, start search at that index in STRING.\n\
342 For index of first char beyond the match, do (match-end 0).\n\
343 `match-end' and `match-beginning' also give indices of substrings\n\
344 matched by parenthesis constructs in the pattern.")
345 (regexp, string, start)
346 Lisp_Object regexp, string, start;
347 {
348 return string_match_1 (regexp, string, start, 1);
349 }
350
351 /* Match REGEXP against STRING, searching all of STRING,
352 and return the index of the match, or negative on failure.
353 This does not clobber the match data. */
354
355 int
356 fast_string_match (regexp, string)
357 Lisp_Object regexp, string;
358 {
359 int val;
360 struct re_pattern_buffer *bufp;
361
362 bufp = compile_pattern (regexp, 0, 0, 0);
363 immediate_quit = 1;
364 val = re_search (bufp, (char *) XSTRING (string)->data,
365 XSTRING (string)->size, 0, XSTRING (string)->size,
366 0);
367 immediate_quit = 0;
368 return val;
369 }
370 \f
371 /* max and min. */
372
373 static int
374 max (a, b)
375 int a, b;
376 {
377 return ((a > b) ? a : b);
378 }
379
380 static int
381 min (a, b)
382 int a, b;
383 {
384 return ((a < b) ? a : b);
385 }
386
387 \f
388 /* The newline cache: remembering which sections of text have no newlines. */
389
390 /* If the user has requested newline caching, make sure it's on.
391 Otherwise, make sure it's off.
392 This is our cheezy way of associating an action with the change of
393 state of a buffer-local variable. */
394 static void
395 newline_cache_on_off (buf)
396 struct buffer *buf;
397 {
398 if (NILP (buf->cache_long_line_scans))
399 {
400 /* It should be off. */
401 if (buf->newline_cache)
402 {
403 free_region_cache (buf->newline_cache);
404 buf->newline_cache = 0;
405 }
406 }
407 else
408 {
409 /* It should be on. */
410 if (buf->newline_cache == 0)
411 buf->newline_cache = new_region_cache ();
412 }
413 }
414
415 \f
416 /* Search for COUNT instances of the character TARGET between START and END.
417
418 If COUNT is positive, search forwards; END must be >= START.
419 If COUNT is negative, search backwards for the -COUNTth instance;
420 END must be <= START.
421 If COUNT is zero, do anything you please; run rogue, for all I care.
422
423 If END is zero, use BEGV or ZV instead, as appropriate for the
424 direction indicated by COUNT.
425
426 If we find COUNT instances, set *SHORTAGE to zero, and return the
427 position after the COUNTth match. Note that for reverse motion
428 this is not the same as the usual convention for Emacs motion commands.
429
430 If we don't find COUNT instances before reaching END, set *SHORTAGE
431 to the number of TARGETs left unfound, and return END.
432
433 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
434 except when inside redisplay. */
435
436 scan_buffer (target, start, end, count, shortage, allow_quit)
437 register int target;
438 int start, end;
439 int count;
440 int *shortage;
441 int allow_quit;
442 {
443 struct region_cache *newline_cache;
444 int direction;
445
446 if (count > 0)
447 {
448 direction = 1;
449 if (! end) end = ZV;
450 }
451 else
452 {
453 direction = -1;
454 if (! end) end = BEGV;
455 }
456
457 newline_cache_on_off (current_buffer);
458 newline_cache = current_buffer->newline_cache;
459
460 if (shortage != 0)
461 *shortage = 0;
462
463 immediate_quit = allow_quit;
464
465 if (count > 0)
466 while (start != end)
467 {
468 /* Our innermost scanning loop is very simple; it doesn't know
469 about gaps, buffer ends, or the newline cache. ceiling is
470 the position of the last character before the next such
471 obstacle --- the last character the dumb search loop should
472 examine. */
473 register int ceiling = end - 1;
474
475 /* If we're looking for a newline, consult the newline cache
476 to see where we can avoid some scanning. */
477 if (target == '\n' && newline_cache)
478 {
479 int next_change;
480 immediate_quit = 0;
481 while (region_cache_forward
482 (current_buffer, newline_cache, start, &next_change))
483 start = next_change;
484 immediate_quit = allow_quit;
485
486 /* start should never be after end. */
487 if (start >= end)
488 start = end - 1;
489
490 /* Now the text after start is an unknown region, and
491 next_change is the position of the next known region. */
492 ceiling = min (next_change - 1, ceiling);
493 }
494
495 /* The dumb loop can only scan text stored in contiguous
496 bytes. BUFFER_CEILING_OF returns the last character
497 position that is contiguous, so the ceiling is the
498 position after that. */
499 ceiling = min (BUFFER_CEILING_OF (start), ceiling);
500
501 {
502 /* The termination address of the dumb loop. */
503 register unsigned char *ceiling_addr = &FETCH_CHAR (ceiling) + 1;
504 register unsigned char *cursor = &FETCH_CHAR (start);
505 unsigned char *base = cursor;
506
507 while (cursor < ceiling_addr)
508 {
509 unsigned char *scan_start = cursor;
510
511 /* The dumb loop. */
512 while (*cursor != target && ++cursor < ceiling_addr)
513 ;
514
515 /* If we're looking for newlines, cache the fact that
516 the region from start to cursor is free of them. */
517 if (target == '\n' && newline_cache)
518 know_region_cache (current_buffer, newline_cache,
519 start + scan_start - base,
520 start + cursor - base);
521
522 /* Did we find the target character? */
523 if (cursor < ceiling_addr)
524 {
525 if (--count == 0)
526 {
527 immediate_quit = 0;
528 return (start + cursor - base + 1);
529 }
530 cursor++;
531 }
532 }
533
534 start += cursor - base;
535 }
536 }
537 else
538 while (start > end)
539 {
540 /* The last character to check before the next obstacle. */
541 register int ceiling = end;
542
543 /* Consult the newline cache, if appropriate. */
544 if (target == '\n' && newline_cache)
545 {
546 int next_change;
547 immediate_quit = 0;
548 while (region_cache_backward
549 (current_buffer, newline_cache, start, &next_change))
550 start = next_change;
551 immediate_quit = allow_quit;
552
553 /* Start should never be at or before end. */
554 if (start <= end)
555 start = end + 1;
556
557 /* Now the text before start is an unknown region, and
558 next_change is the position of the next known region. */
559 ceiling = max (next_change, ceiling);
560 }
561
562 /* Stop scanning before the gap. */
563 ceiling = max (BUFFER_FLOOR_OF (start - 1), ceiling);
564
565 {
566 /* The termination address of the dumb loop. */
567 register unsigned char *ceiling_addr = &FETCH_CHAR (ceiling);
568 register unsigned char *cursor = &FETCH_CHAR (start - 1);
569 unsigned char *base = cursor;
570
571 while (cursor >= ceiling_addr)
572 {
573 unsigned char *scan_start = cursor;
574
575 while (*cursor != target && --cursor >= ceiling_addr)
576 ;
577
578 /* If we're looking for newlines, cache the fact that
579 the region from after the cursor to start is free of them. */
580 if (target == '\n' && newline_cache)
581 know_region_cache (current_buffer, newline_cache,
582 start + cursor - base,
583 start + scan_start - base);
584
585 /* Did we find the target character? */
586 if (cursor >= ceiling_addr)
587 {
588 if (++count >= 0)
589 {
590 immediate_quit = 0;
591 return (start + cursor - base);
592 }
593 cursor--;
594 }
595 }
596
597 start += cursor - base;
598 }
599 }
600
601 immediate_quit = 0;
602 if (shortage != 0)
603 *shortage = count * direction;
604 return start;
605 }
606
607 int
608 find_next_newline_no_quit (from, cnt)
609 register int from, cnt;
610 {
611 return scan_buffer ('\n', from, 0, cnt, (int *) 0, 0);
612 }
613
614 int
615 find_next_newline (from, cnt)
616 register int from, cnt;
617 {
618 return scan_buffer ('\n', from, 0, cnt, (int *) 0, 1);
619 }
620
621
622 /* Like find_next_newline, but returns position before the newline,
623 not after, and only search up to TO. This isn't just
624 find_next_newline (...)-1, because you might hit TO. */
625 int
626 find_before_next_newline (from, to, cnt)
627 int from, to, cnt;
628 {
629 int shortage;
630 int pos = scan_buffer ('\n', from, to, cnt, &shortage, 1);
631
632 if (shortage == 0)
633 pos--;
634
635 return pos;
636 }
637 \f
638 Lisp_Object skip_chars ();
639
640 DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0,
641 "Move point forward, stopping before a char not in STRING, or at pos LIM.\n\
642 STRING is like the inside of a `[...]' in a regular expression\n\
643 except that `]' is never special and `\\' quotes `^', `-' or `\\'.\n\
644 Thus, with arg \"a-zA-Z\", this skips letters stopping before first nonletter.\n\
645 With arg \"^a-zA-Z\", skips nonletters stopping before first letter.\n\
646 Returns the distance traveled, either zero or positive.")
647 (string, lim)
648 Lisp_Object string, lim;
649 {
650 return skip_chars (1, 0, string, lim);
651 }
652
653 DEFUN ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0,
654 "Move point backward, stopping after a char not in STRING, or at pos LIM.\n\
655 See `skip-chars-forward' for details.\n\
656 Returns the distance traveled, either zero or negative.")
657 (string, lim)
658 Lisp_Object string, lim;
659 {
660 return skip_chars (0, 0, string, lim);
661 }
662
663 DEFUN ("skip-syntax-forward", Fskip_syntax_forward, Sskip_syntax_forward, 1, 2, 0,
664 "Move point forward across chars in specified syntax classes.\n\
665 SYNTAX is a string of syntax code characters.\n\
666 Stop before a char whose syntax is not in SYNTAX, or at position LIM.\n\
667 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.\n\
668 This function returns the distance traveled, either zero or positive.")
669 (syntax, lim)
670 Lisp_Object syntax, lim;
671 {
672 return skip_chars (1, 1, syntax, lim);
673 }
674
675 DEFUN ("skip-syntax-backward", Fskip_syntax_backward, Sskip_syntax_backward, 1, 2, 0,
676 "Move point backward across chars in specified syntax classes.\n\
677 SYNTAX is a string of syntax code characters.\n\
678 Stop on reaching a char whose syntax is not in SYNTAX, or at position LIM.\n\
679 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.\n\
680 This function returns the distance traveled, either zero or negative.")
681 (syntax, lim)
682 Lisp_Object syntax, lim;
683 {
684 return skip_chars (0, 1, syntax, lim);
685 }
686
687 Lisp_Object
688 skip_chars (forwardp, syntaxp, string, lim)
689 int forwardp, syntaxp;
690 Lisp_Object string, lim;
691 {
692 register unsigned char *p, *pend;
693 register unsigned char c;
694 unsigned char fastmap[0400];
695 int negate = 0;
696 register int i;
697
698 CHECK_STRING (string, 0);
699
700 if (NILP (lim))
701 XSETINT (lim, forwardp ? ZV : BEGV);
702 else
703 CHECK_NUMBER_COERCE_MARKER (lim, 1);
704
705 /* In any case, don't allow scan outside bounds of buffer. */
706 /* jla turned this off, for no known reason.
707 bfox turned the ZV part on, and rms turned the
708 BEGV part back on. */
709 if (XINT (lim) > ZV)
710 XSETFASTINT (lim, ZV);
711 if (XINT (lim) < BEGV)
712 XSETFASTINT (lim, BEGV);
713
714 p = XSTRING (string)->data;
715 pend = p + XSTRING (string)->size;
716 bzero (fastmap, sizeof fastmap);
717
718 if (p != pend && *p == '^')
719 {
720 negate = 1; p++;
721 }
722
723 /* Find the characters specified and set their elements of fastmap.
724 If syntaxp, each character counts as itself.
725 Otherwise, handle backslashes and ranges specially */
726
727 while (p != pend)
728 {
729 c = *p++;
730 if (syntaxp)
731 fastmap[c] = 1;
732 else
733 {
734 if (c == '\\')
735 {
736 if (p == pend) break;
737 c = *p++;
738 }
739 if (p != pend && *p == '-')
740 {
741 p++;
742 if (p == pend) break;
743 while (c <= *p)
744 {
745 fastmap[c] = 1;
746 c++;
747 }
748 p++;
749 }
750 else
751 fastmap[c] = 1;
752 }
753 }
754
755 if (syntaxp && fastmap['-'] != 0)
756 fastmap[' '] = 1;
757
758 /* If ^ was the first character, complement the fastmap. */
759
760 if (negate)
761 for (i = 0; i < sizeof fastmap; i++)
762 fastmap[i] ^= 1;
763
764 {
765 int start_point = point;
766
767 immediate_quit = 1;
768 if (syntaxp)
769 {
770
771 if (forwardp)
772 {
773 while (point < XINT (lim)
774 && fastmap[(unsigned char) syntax_code_spec[(int) SYNTAX (FETCH_CHAR (point))]])
775 SET_PT (point + 1);
776 }
777 else
778 {
779 while (point > XINT (lim)
780 && fastmap[(unsigned char) syntax_code_spec[(int) SYNTAX (FETCH_CHAR (point - 1))]])
781 SET_PT (point - 1);
782 }
783 }
784 else
785 {
786 if (forwardp)
787 {
788 while (point < XINT (lim) && fastmap[FETCH_CHAR (point)])
789 SET_PT (point + 1);
790 }
791 else
792 {
793 while (point > XINT (lim) && fastmap[FETCH_CHAR (point - 1)])
794 SET_PT (point - 1);
795 }
796 }
797 immediate_quit = 0;
798
799 return make_number (point - start_point);
800 }
801 }
802 \f
803 /* Subroutines of Lisp buffer search functions. */
804
805 static Lisp_Object
806 search_command (string, bound, noerror, count, direction, RE, posix)
807 Lisp_Object string, bound, noerror, count;
808 int direction;
809 int RE;
810 int posix;
811 {
812 register int np;
813 int lim;
814 int n = direction;
815
816 if (!NILP (count))
817 {
818 CHECK_NUMBER (count, 3);
819 n *= XINT (count);
820 }
821
822 CHECK_STRING (string, 0);
823 if (NILP (bound))
824 lim = n > 0 ? ZV : BEGV;
825 else
826 {
827 CHECK_NUMBER_COERCE_MARKER (bound, 1);
828 lim = XINT (bound);
829 if (n > 0 ? lim < point : lim > point)
830 error ("Invalid search bound (wrong side of point)");
831 if (lim > ZV)
832 lim = ZV;
833 if (lim < BEGV)
834 lim = BEGV;
835 }
836
837 np = search_buffer (string, point, lim, n, RE,
838 (!NILP (current_buffer->case_fold_search)
839 ? XSTRING (current_buffer->case_canon_table)->data : 0),
840 (!NILP (current_buffer->case_fold_search)
841 ? XSTRING (current_buffer->case_eqv_table)->data : 0),
842 posix);
843 if (np <= 0)
844 {
845 if (NILP (noerror))
846 return signal_failure (string);
847 if (!EQ (noerror, Qt))
848 {
849 if (lim < BEGV || lim > ZV)
850 abort ();
851 SET_PT (lim);
852 return Qnil;
853 #if 0 /* This would be clean, but maybe programs depend on
854 a value of nil here. */
855 np = lim;
856 #endif
857 }
858 else
859 return Qnil;
860 }
861
862 if (np < BEGV || np > ZV)
863 abort ();
864
865 SET_PT (np);
866
867 return make_number (np);
868 }
869 \f
870 static int
871 trivial_regexp_p (regexp)
872 Lisp_Object regexp;
873 {
874 int len = XSTRING (regexp)->size;
875 unsigned char *s = XSTRING (regexp)->data;
876 unsigned char c;
877 while (--len >= 0)
878 {
879 switch (*s++)
880 {
881 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
882 return 0;
883 case '\\':
884 if (--len < 0)
885 return 0;
886 switch (*s++)
887 {
888 case '|': case '(': case ')': case '`': case '\'': case 'b':
889 case 'B': case '<': case '>': case 'w': case 'W': case 's':
890 case 'S': case '1': case '2': case '3': case '4': case '5':
891 case '6': case '7': case '8': case '9':
892 return 0;
893 }
894 }
895 }
896 return 1;
897 }
898
899 /* Search for the n'th occurrence of STRING in the current buffer,
900 starting at position POS and stopping at position LIM,
901 treating STRING as a literal string if RE is false or as
902 a regular expression if RE is true.
903
904 If N is positive, searching is forward and LIM must be greater than POS.
905 If N is negative, searching is backward and LIM must be less than POS.
906
907 Returns -x if only N-x occurrences found (x > 0),
908 or else the position at the beginning of the Nth occurrence
909 (if searching backward) or the end (if searching forward).
910
911 POSIX is nonzero if we want full backtracking (POSIX style)
912 for this pattern. 0 means backtrack only enough to get a valid match. */
913
914 static int
915 search_buffer (string, pos, lim, n, RE, trt, inverse_trt, posix)
916 Lisp_Object string;
917 int pos;
918 int lim;
919 int n;
920 int RE;
921 register unsigned char *trt;
922 register unsigned char *inverse_trt;
923 int posix;
924 {
925 int len = XSTRING (string)->size;
926 unsigned char *base_pat = XSTRING (string)->data;
927 register int *BM_tab;
928 int *BM_tab_base;
929 register int direction = ((n > 0) ? 1 : -1);
930 register int dirlen;
931 int infinity, limit, k, stride_for_teases;
932 register unsigned char *pat, *cursor, *p_limit;
933 register int i, j;
934 unsigned char *p1, *p2;
935 int s1, s2;
936
937 if (running_asynch_code)
938 save_search_regs ();
939
940 /* Null string is found at starting position. */
941 if (len == 0)
942 {
943 set_search_regs (pos, 0);
944 return pos;
945 }
946
947 /* Searching 0 times means don't move. */
948 if (n == 0)
949 return pos;
950
951 if (RE && !trivial_regexp_p (string))
952 {
953 struct re_pattern_buffer *bufp;
954
955 bufp = compile_pattern (string, &search_regs, (char *) trt, posix);
956
957 immediate_quit = 1; /* Quit immediately if user types ^G,
958 because letting this function finish
959 can take too long. */
960 QUIT; /* Do a pending quit right away,
961 to avoid paradoxical behavior */
962 /* Get pointers and sizes of the two strings
963 that make up the visible portion of the buffer. */
964
965 p1 = BEGV_ADDR;
966 s1 = GPT - BEGV;
967 p2 = GAP_END_ADDR;
968 s2 = ZV - GPT;
969 if (s1 < 0)
970 {
971 p2 = p1;
972 s2 = ZV - BEGV;
973 s1 = 0;
974 }
975 if (s2 < 0)
976 {
977 s1 = ZV - BEGV;
978 s2 = 0;
979 }
980 while (n < 0)
981 {
982 int val;
983 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
984 pos - BEGV, lim - pos, &search_regs,
985 /* Don't allow match past current point */
986 pos - BEGV);
987 if (val == -2)
988 {
989 matcher_overflow ();
990 }
991 if (val >= 0)
992 {
993 j = BEGV;
994 for (i = 0; i < search_regs.num_regs; i++)
995 if (search_regs.start[i] >= 0)
996 {
997 search_regs.start[i] += j;
998 search_regs.end[i] += j;
999 }
1000 XSETBUFFER (last_thing_searched, current_buffer);
1001 /* Set pos to the new position. */
1002 pos = search_regs.start[0];
1003 }
1004 else
1005 {
1006 immediate_quit = 0;
1007 return (n);
1008 }
1009 n++;
1010 }
1011 while (n > 0)
1012 {
1013 int val;
1014 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
1015 pos - BEGV, lim - pos, &search_regs,
1016 lim - BEGV);
1017 if (val == -2)
1018 {
1019 matcher_overflow ();
1020 }
1021 if (val >= 0)
1022 {
1023 j = BEGV;
1024 for (i = 0; i < search_regs.num_regs; i++)
1025 if (search_regs.start[i] >= 0)
1026 {
1027 search_regs.start[i] += j;
1028 search_regs.end[i] += j;
1029 }
1030 XSETBUFFER (last_thing_searched, current_buffer);
1031 pos = search_regs.end[0];
1032 }
1033 else
1034 {
1035 immediate_quit = 0;
1036 return (0 - n);
1037 }
1038 n--;
1039 }
1040 immediate_quit = 0;
1041 return (pos);
1042 }
1043 else /* non-RE case */
1044 {
1045 #ifdef C_ALLOCA
1046 int BM_tab_space[0400];
1047 BM_tab = &BM_tab_space[0];
1048 #else
1049 BM_tab = (int *) alloca (0400 * sizeof (int));
1050 #endif
1051 {
1052 unsigned char *patbuf = (unsigned char *) alloca (len);
1053 pat = patbuf;
1054 while (--len >= 0)
1055 {
1056 /* If we got here and the RE flag is set, it's because we're
1057 dealing with a regexp known to be trivial, so the backslash
1058 just quotes the next character. */
1059 if (RE && *base_pat == '\\')
1060 {
1061 len--;
1062 base_pat++;
1063 }
1064 *pat++ = (trt ? trt[*base_pat++] : *base_pat++);
1065 }
1066 len = pat - patbuf;
1067 pat = base_pat = patbuf;
1068 }
1069 /* The general approach is that we are going to maintain that we know */
1070 /* the first (closest to the present position, in whatever direction */
1071 /* we're searching) character that could possibly be the last */
1072 /* (furthest from present position) character of a valid match. We */
1073 /* advance the state of our knowledge by looking at that character */
1074 /* and seeing whether it indeed matches the last character of the */
1075 /* pattern. If it does, we take a closer look. If it does not, we */
1076 /* move our pointer (to putative last characters) as far as is */
1077 /* logically possible. This amount of movement, which I call a */
1078 /* stride, will be the length of the pattern if the actual character */
1079 /* appears nowhere in the pattern, otherwise it will be the distance */
1080 /* from the last occurrence of that character to the end of the */
1081 /* pattern. */
1082 /* As a coding trick, an enormous stride is coded into the table for */
1083 /* characters that match the last character. This allows use of only */
1084 /* a single test, a test for having gone past the end of the */
1085 /* permissible match region, to test for both possible matches (when */
1086 /* the stride goes past the end immediately) and failure to */
1087 /* match (where you get nudged past the end one stride at a time). */
1088
1089 /* Here we make a "mickey mouse" BM table. The stride of the search */
1090 /* is determined only by the last character of the putative match. */
1091 /* If that character does not match, we will stride the proper */
1092 /* distance to propose a match that superimposes it on the last */
1093 /* instance of a character that matches it (per trt), or misses */
1094 /* it entirely if there is none. */
1095
1096 dirlen = len * direction;
1097 infinity = dirlen - (lim + pos + len + len) * direction;
1098 if (direction < 0)
1099 pat = (base_pat += len - 1);
1100 BM_tab_base = BM_tab;
1101 BM_tab += 0400;
1102 j = dirlen; /* to get it in a register */
1103 /* A character that does not appear in the pattern induces a */
1104 /* stride equal to the pattern length. */
1105 while (BM_tab_base != BM_tab)
1106 {
1107 *--BM_tab = j;
1108 *--BM_tab = j;
1109 *--BM_tab = j;
1110 *--BM_tab = j;
1111 }
1112 i = 0;
1113 while (i != infinity)
1114 {
1115 j = pat[i]; i += direction;
1116 if (i == dirlen) i = infinity;
1117 if ((int) trt)
1118 {
1119 k = (j = trt[j]);
1120 if (i == infinity)
1121 stride_for_teases = BM_tab[j];
1122 BM_tab[j] = dirlen - i;
1123 /* A translation table is accompanied by its inverse -- see */
1124 /* comment following downcase_table for details */
1125 while ((j = inverse_trt[j]) != k)
1126 BM_tab[j] = dirlen - i;
1127 }
1128 else
1129 {
1130 if (i == infinity)
1131 stride_for_teases = BM_tab[j];
1132 BM_tab[j] = dirlen - i;
1133 }
1134 /* stride_for_teases tells how much to stride if we get a */
1135 /* match on the far character but are subsequently */
1136 /* disappointed, by recording what the stride would have been */
1137 /* for that character if the last character had been */
1138 /* different. */
1139 }
1140 infinity = dirlen - infinity;
1141 pos += dirlen - ((direction > 0) ? direction : 0);
1142 /* loop invariant - pos points at where last char (first char if reverse)
1143 of pattern would align in a possible match. */
1144 while (n != 0)
1145 {
1146 /* It's been reported that some (broken) compiler thinks that
1147 Boolean expressions in an arithmetic context are unsigned.
1148 Using an explicit ?1:0 prevents this. */
1149 if ((lim - pos - ((direction > 0) ? 1 : 0)) * direction < 0)
1150 return (n * (0 - direction));
1151 /* First we do the part we can by pointers (maybe nothing) */
1152 QUIT;
1153 pat = base_pat;
1154 limit = pos - dirlen + direction;
1155 limit = ((direction > 0)
1156 ? BUFFER_CEILING_OF (limit)
1157 : BUFFER_FLOOR_OF (limit));
1158 /* LIMIT is now the last (not beyond-last!) value
1159 POS can take on without hitting edge of buffer or the gap. */
1160 limit = ((direction > 0)
1161 ? min (lim - 1, min (limit, pos + 20000))
1162 : max (lim, max (limit, pos - 20000)));
1163 if ((limit - pos) * direction > 20)
1164 {
1165 p_limit = &FETCH_CHAR (limit);
1166 p2 = (cursor = &FETCH_CHAR (pos));
1167 /* In this loop, pos + cursor - p2 is the surrogate for pos */
1168 while (1) /* use one cursor setting as long as i can */
1169 {
1170 if (direction > 0) /* worth duplicating */
1171 {
1172 /* Use signed comparison if appropriate
1173 to make cursor+infinity sure to be > p_limit.
1174 Assuming that the buffer lies in a range of addresses
1175 that are all "positive" (as ints) or all "negative",
1176 either kind of comparison will work as long
1177 as we don't step by infinity. So pick the kind
1178 that works when we do step by infinity. */
1179 if ((int) (p_limit + infinity) > (int) p_limit)
1180 while ((int) cursor <= (int) p_limit)
1181 cursor += BM_tab[*cursor];
1182 else
1183 while ((unsigned int) cursor <= (unsigned int) p_limit)
1184 cursor += BM_tab[*cursor];
1185 }
1186 else
1187 {
1188 if ((int) (p_limit + infinity) < (int) p_limit)
1189 while ((int) cursor >= (int) p_limit)
1190 cursor += BM_tab[*cursor];
1191 else
1192 while ((unsigned int) cursor >= (unsigned int) p_limit)
1193 cursor += BM_tab[*cursor];
1194 }
1195 /* If you are here, cursor is beyond the end of the searched region. */
1196 /* This can happen if you match on the far character of the pattern, */
1197 /* because the "stride" of that character is infinity, a number able */
1198 /* to throw you well beyond the end of the search. It can also */
1199 /* happen if you fail to match within the permitted region and would */
1200 /* otherwise try a character beyond that region */
1201 if ((cursor - p_limit) * direction <= len)
1202 break; /* a small overrun is genuine */
1203 cursor -= infinity; /* large overrun = hit */
1204 i = dirlen - direction;
1205 if ((int) trt)
1206 {
1207 while ((i -= direction) + direction != 0)
1208 if (pat[i] != trt[*(cursor -= direction)])
1209 break;
1210 }
1211 else
1212 {
1213 while ((i -= direction) + direction != 0)
1214 if (pat[i] != *(cursor -= direction))
1215 break;
1216 }
1217 cursor += dirlen - i - direction; /* fix cursor */
1218 if (i + direction == 0)
1219 {
1220 cursor -= direction;
1221
1222 set_search_regs (pos + cursor - p2 + ((direction > 0)
1223 ? 1 - len : 0),
1224 len);
1225
1226 if ((n -= direction) != 0)
1227 cursor += dirlen; /* to resume search */
1228 else
1229 return ((direction > 0)
1230 ? search_regs.end[0] : search_regs.start[0]);
1231 }
1232 else
1233 cursor += stride_for_teases; /* <sigh> we lose - */
1234 }
1235 pos += cursor - p2;
1236 }
1237 else
1238 /* Now we'll pick up a clump that has to be done the hard */
1239 /* way because it covers a discontinuity */
1240 {
1241 limit = ((direction > 0)
1242 ? BUFFER_CEILING_OF (pos - dirlen + 1)
1243 : BUFFER_FLOOR_OF (pos - dirlen - 1));
1244 limit = ((direction > 0)
1245 ? min (limit + len, lim - 1)
1246 : max (limit - len, lim));
1247 /* LIMIT is now the last value POS can have
1248 and still be valid for a possible match. */
1249 while (1)
1250 {
1251 /* This loop can be coded for space rather than */
1252 /* speed because it will usually run only once. */
1253 /* (the reach is at most len + 21, and typically */
1254 /* does not exceed len) */
1255 while ((limit - pos) * direction >= 0)
1256 pos += BM_tab[FETCH_CHAR(pos)];
1257 /* now run the same tests to distinguish going off the */
1258 /* end, a match or a phony match. */
1259 if ((pos - limit) * direction <= len)
1260 break; /* ran off the end */
1261 /* Found what might be a match.
1262 Set POS back to last (first if reverse) char pos. */
1263 pos -= infinity;
1264 i = dirlen - direction;
1265 while ((i -= direction) + direction != 0)
1266 {
1267 pos -= direction;
1268 if (pat[i] != (((int) trt)
1269 ? trt[FETCH_CHAR(pos)]
1270 : FETCH_CHAR (pos)))
1271 break;
1272 }
1273 /* Above loop has moved POS part or all the way
1274 back to the first char pos (last char pos if reverse).
1275 Set it once again at the last (first if reverse) char. */
1276 pos += dirlen - i- direction;
1277 if (i + direction == 0)
1278 {
1279 pos -= direction;
1280
1281 set_search_regs (pos + ((direction > 0) ? 1 - len : 0),
1282 len);
1283
1284 if ((n -= direction) != 0)
1285 pos += dirlen; /* to resume search */
1286 else
1287 return ((direction > 0)
1288 ? search_regs.end[0] : search_regs.start[0]);
1289 }
1290 else
1291 pos += stride_for_teases;
1292 }
1293 }
1294 /* We have done one clump. Can we continue? */
1295 if ((lim - pos) * direction < 0)
1296 return ((0 - n) * direction);
1297 }
1298 return pos;
1299 }
1300 }
1301
1302 /* Record beginning BEG and end BEG + LEN
1303 for a match just found in the current buffer. */
1304
1305 static void
1306 set_search_regs (beg, len)
1307 int beg, len;
1308 {
1309 /* Make sure we have registers in which to store
1310 the match position. */
1311 if (search_regs.num_regs == 0)
1312 {
1313 regoff_t *starts, *ends;
1314
1315 starts = (regoff_t *) xmalloc (2 * sizeof (regoff_t));
1316 ends = (regoff_t *) xmalloc (2 * sizeof (regoff_t));
1317 search_regs.num_regs = 2;
1318 }
1319
1320 search_regs.start[0] = beg;
1321 search_regs.end[0] = beg + len;
1322 XSETBUFFER (last_thing_searched, current_buffer);
1323 }
1324 \f
1325 /* Given a string of words separated by word delimiters,
1326 compute a regexp that matches those exact words
1327 separated by arbitrary punctuation. */
1328
1329 static Lisp_Object
1330 wordify (string)
1331 Lisp_Object string;
1332 {
1333 register unsigned char *p, *o;
1334 register int i, len, punct_count = 0, word_count = 0;
1335 Lisp_Object val;
1336
1337 CHECK_STRING (string, 0);
1338 p = XSTRING (string)->data;
1339 len = XSTRING (string)->size;
1340
1341 for (i = 0; i < len; i++)
1342 if (SYNTAX (p[i]) != Sword)
1343 {
1344 punct_count++;
1345 if (i > 0 && SYNTAX (p[i-1]) == Sword) word_count++;
1346 }
1347 if (SYNTAX (p[len-1]) == Sword) word_count++;
1348 if (!word_count) return build_string ("");
1349
1350 val = make_string (p, len - punct_count + 5 * (word_count - 1) + 4);
1351
1352 o = XSTRING (val)->data;
1353 *o++ = '\\';
1354 *o++ = 'b';
1355
1356 for (i = 0; i < len; i++)
1357 if (SYNTAX (p[i]) == Sword)
1358 *o++ = p[i];
1359 else if (i > 0 && SYNTAX (p[i-1]) == Sword && --word_count)
1360 {
1361 *o++ = '\\';
1362 *o++ = 'W';
1363 *o++ = '\\';
1364 *o++ = 'W';
1365 *o++ = '*';
1366 }
1367
1368 *o++ = '\\';
1369 *o++ = 'b';
1370
1371 return val;
1372 }
1373 \f
1374 DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4,
1375 "sSearch backward: ",
1376 "Search backward from point for STRING.\n\
1377 Set point to the beginning of the occurrence found, and return point.\n\
1378 An optional second argument bounds the search; it is a buffer position.\n\
1379 The match found must not extend before that position.\n\
1380 Optional third argument, if t, means if fail just return nil (no error).\n\
1381 If not nil and not t, position at limit of search and return nil.\n\
1382 Optional fourth argument is repeat count--search for successive occurrences.\n\
1383 See also the functions `match-beginning', `match-end' and `replace-match'.")
1384 (string, bound, noerror, count)
1385 Lisp_Object string, bound, noerror, count;
1386 {
1387 return search_command (string, bound, noerror, count, -1, 0, 0);
1388 }
1389
1390 DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "sSearch: ",
1391 "Search forward from point for STRING.\n\
1392 Set point to the end of the occurrence found, and return point.\n\
1393 An optional second argument bounds the search; it is a buffer position.\n\
1394 The match found must not extend after that position. nil is equivalent\n\
1395 to (point-max).\n\
1396 Optional third argument, if t, means if fail just return nil (no error).\n\
1397 If not nil and not t, move to limit of search and return nil.\n\
1398 Optional fourth argument is repeat count--search for successive occurrences.\n\
1399 See also the functions `match-beginning', `match-end' and `replace-match'.")
1400 (string, bound, noerror, count)
1401 Lisp_Object string, bound, noerror, count;
1402 {
1403 return search_command (string, bound, noerror, count, 1, 0, 0);
1404 }
1405
1406 DEFUN ("word-search-backward", Fword_search_backward, Sword_search_backward, 1, 4,
1407 "sWord search backward: ",
1408 "Search backward from point for STRING, ignoring differences in punctuation.\n\
1409 Set point to the beginning of the occurrence found, and return point.\n\
1410 An optional second argument bounds the search; it is a buffer position.\n\
1411 The match found must not extend before that position.\n\
1412 Optional third argument, if t, means if fail just return nil (no error).\n\
1413 If not nil and not t, move to limit of search and return nil.\n\
1414 Optional fourth argument is repeat count--search for successive occurrences.")
1415 (string, bound, noerror, count)
1416 Lisp_Object string, bound, noerror, count;
1417 {
1418 return search_command (wordify (string), bound, noerror, count, -1, 1, 0);
1419 }
1420
1421 DEFUN ("word-search-forward", Fword_search_forward, Sword_search_forward, 1, 4,
1422 "sWord search: ",
1423 "Search forward from point for STRING, ignoring differences in punctuation.\n\
1424 Set point to the end of the occurrence found, and return point.\n\
1425 An optional second argument bounds the search; it is a buffer position.\n\
1426 The match found must not extend after that position.\n\
1427 Optional third argument, if t, means if fail just return nil (no error).\n\
1428 If not nil and not t, move to limit of search and return nil.\n\
1429 Optional fourth argument is repeat count--search for successive occurrences.")
1430 (string, bound, noerror, count)
1431 Lisp_Object string, bound, noerror, count;
1432 {
1433 return search_command (wordify (string), bound, noerror, count, 1, 1, 0);
1434 }
1435
1436 DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4,
1437 "sRE search backward: ",
1438 "Search backward from point for match for regular expression REGEXP.\n\
1439 Set point to the beginning of the match, and return point.\n\
1440 The match found is the one starting last in the buffer\n\
1441 and yet ending before the origin of the search.\n\
1442 An optional second argument bounds the search; it is a buffer position.\n\
1443 The match found must start at or after that position.\n\
1444 Optional third argument, if t, means if fail just return nil (no error).\n\
1445 If not nil and not t, move to limit of search and return nil.\n\
1446 Optional fourth argument is repeat count--search for successive occurrences.\n\
1447 See also the functions `match-beginning', `match-end' and `replace-match'.")
1448 (regexp, bound, noerror, count)
1449 Lisp_Object regexp, bound, noerror, count;
1450 {
1451 return search_command (regexp, bound, noerror, count, -1, 1, 0);
1452 }
1453
1454 DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4,
1455 "sRE search: ",
1456 "Search forward from point for regular expression REGEXP.\n\
1457 Set point to the end of the occurrence found, and return point.\n\
1458 An optional second argument bounds the search; it is a buffer position.\n\
1459 The match found must not extend after that position.\n\
1460 Optional third argument, if t, means if fail just return nil (no error).\n\
1461 If not nil and not t, move to limit of search and return nil.\n\
1462 Optional fourth argument is repeat count--search for successive occurrences.\n\
1463 See also the functions `match-beginning', `match-end' and `replace-match'.")
1464 (regexp, bound, noerror, count)
1465 Lisp_Object regexp, bound, noerror, count;
1466 {
1467 return search_command (regexp, bound, noerror, count, 1, 1, 0);
1468 }
1469
1470 DEFUN ("posix-search-backward", Fposix_search_backward, Sposix_search_backward, 1, 4,
1471 "sPosix search backward: ",
1472 "Search backward from point for match for regular expression REGEXP.\n\
1473 Find the longest match in accord with Posix regular expression rules.\n\
1474 Set point to the beginning of the match, and return point.\n\
1475 The match found is the one starting last in the buffer\n\
1476 and yet ending before the origin of the search.\n\
1477 An optional second argument bounds the search; it is a buffer position.\n\
1478 The match found must start at or after that position.\n\
1479 Optional third argument, if t, means if fail just return nil (no error).\n\
1480 If not nil and not t, move to limit of search and return nil.\n\
1481 Optional fourth argument is repeat count--search for successive occurrences.\n\
1482 See also the functions `match-beginning', `match-end' and `replace-match'.")
1483 (regexp, bound, noerror, count)
1484 Lisp_Object regexp, bound, noerror, count;
1485 {
1486 return search_command (regexp, bound, noerror, count, -1, 1, 1);
1487 }
1488
1489 DEFUN ("posix-search-forward", Fposix_search_forward, Sposix_search_forward, 1, 4,
1490 "sPosix search: ",
1491 "Search forward from point for regular expression REGEXP.\n\
1492 Find the longest match in accord with Posix regular expression rules.\n\
1493 Set point to the end of the occurrence found, and return point.\n\
1494 An optional second argument bounds the search; it is a buffer position.\n\
1495 The match found must not extend after that position.\n\
1496 Optional third argument, if t, means if fail just return nil (no error).\n\
1497 If not nil and not t, move to limit of search and return nil.\n\
1498 Optional fourth argument is repeat count--search for successive occurrences.\n\
1499 See also the functions `match-beginning', `match-end' and `replace-match'.")
1500 (regexp, bound, noerror, count)
1501 Lisp_Object regexp, bound, noerror, count;
1502 {
1503 return search_command (regexp, bound, noerror, count, 1, 1, 1);
1504 }
1505 \f
1506 DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 4, 0,
1507 "Replace text matched by last search with NEWTEXT.\n\
1508 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.\n\
1509 Otherwise maybe capitalize the whole text, or maybe just word initials,\n\
1510 based on the replaced text.\n\
1511 If the replaced text has only capital letters\n\
1512 and has at least one multiletter word, convert NEWTEXT to all caps.\n\
1513 If the replaced text has at least one word starting with a capital letter,\n\
1514 then capitalize each word in NEWTEXT.\n\n\
1515 If third arg LITERAL is non-nil, insert NEWTEXT literally.\n\
1516 Otherwise treat `\\' as special:\n\
1517 `\\&' in NEWTEXT means substitute original matched text.\n\
1518 `\\N' means substitute what matched the Nth `\\(...\\)'.\n\
1519 If Nth parens didn't match, substitute nothing.\n\
1520 `\\\\' means insert one `\\'.\n\
1521 FIXEDCASE and LITERAL are optional arguments.\n\
1522 Leaves point at end of replacement text.\n\
1523 \n\
1524 The optional fourth argument STRING can be a string to modify.\n\
1525 In that case, this function creates and returns a new string\n\
1526 which is made by replacing the part of STRING that was matched.")
1527 (newtext, fixedcase, literal, string)
1528 Lisp_Object newtext, fixedcase, literal, string;
1529 {
1530 enum { nochange, all_caps, cap_initial } case_action;
1531 register int pos, last;
1532 int some_multiletter_word;
1533 int some_lowercase;
1534 int some_uppercase;
1535 int some_nonuppercase_initial;
1536 register int c, prevc;
1537 int inslen;
1538
1539 CHECK_STRING (newtext, 0);
1540
1541 if (! NILP (string))
1542 CHECK_STRING (string, 4);
1543
1544 case_action = nochange; /* We tried an initialization */
1545 /* but some C compilers blew it */
1546
1547 if (search_regs.num_regs <= 0)
1548 error ("replace-match called before any match found");
1549
1550 if (NILP (string))
1551 {
1552 if (search_regs.start[0] < BEGV
1553 || search_regs.start[0] > search_regs.end[0]
1554 || search_regs.end[0] > ZV)
1555 args_out_of_range (make_number (search_regs.start[0]),
1556 make_number (search_regs.end[0]));
1557 }
1558 else
1559 {
1560 if (search_regs.start[0] < 0
1561 || search_regs.start[0] > search_regs.end[0]
1562 || search_regs.end[0] > XSTRING (string)->size)
1563 args_out_of_range (make_number (search_regs.start[0]),
1564 make_number (search_regs.end[0]));
1565 }
1566
1567 if (NILP (fixedcase))
1568 {
1569 /* Decide how to casify by examining the matched text. */
1570
1571 last = search_regs.end[0];
1572 prevc = '\n';
1573 case_action = all_caps;
1574
1575 /* some_multiletter_word is set nonzero if any original word
1576 is more than one letter long. */
1577 some_multiletter_word = 0;
1578 some_lowercase = 0;
1579 some_nonuppercase_initial = 0;
1580 some_uppercase = 0;
1581
1582 for (pos = search_regs.start[0]; pos < last; pos++)
1583 {
1584 if (NILP (string))
1585 c = FETCH_CHAR (pos);
1586 else
1587 c = XSTRING (string)->data[pos];
1588
1589 if (LOWERCASEP (c))
1590 {
1591 /* Cannot be all caps if any original char is lower case */
1592
1593 some_lowercase = 1;
1594 if (SYNTAX (prevc) != Sword)
1595 some_nonuppercase_initial = 1;
1596 else
1597 some_multiletter_word = 1;
1598 }
1599 else if (!NOCASEP (c))
1600 {
1601 some_uppercase = 1;
1602 if (SYNTAX (prevc) != Sword)
1603 ;
1604 else
1605 some_multiletter_word = 1;
1606 }
1607 else
1608 {
1609 /* If the initial is a caseless word constituent,
1610 treat that like a lowercase initial. */
1611 if (SYNTAX (prevc) != Sword)
1612 some_nonuppercase_initial = 1;
1613 }
1614
1615 prevc = c;
1616 }
1617
1618 /* Convert to all caps if the old text is all caps
1619 and has at least one multiletter word. */
1620 if (! some_lowercase && some_multiletter_word)
1621 case_action = all_caps;
1622 /* Capitalize each word, if the old text has all capitalized words. */
1623 else if (!some_nonuppercase_initial && some_multiletter_word)
1624 case_action = cap_initial;
1625 else if (!some_nonuppercase_initial && some_uppercase)
1626 /* Should x -> yz, operating on X, give Yz or YZ?
1627 We'll assume the latter. */
1628 case_action = all_caps;
1629 else
1630 case_action = nochange;
1631 }
1632
1633 /* Do replacement in a string. */
1634 if (!NILP (string))
1635 {
1636 Lisp_Object before, after;
1637
1638 before = Fsubstring (string, make_number (0),
1639 make_number (search_regs.start[0]));
1640 after = Fsubstring (string, make_number (search_regs.end[0]), Qnil);
1641
1642 /* Do case substitution into NEWTEXT if desired. */
1643 if (NILP (literal))
1644 {
1645 int lastpos = -1;
1646 /* We build up the substituted string in ACCUM. */
1647 Lisp_Object accum;
1648 Lisp_Object middle;
1649
1650 accum = Qnil;
1651
1652 for (pos = 0; pos < XSTRING (newtext)->size; pos++)
1653 {
1654 int substart = -1;
1655 int subend;
1656
1657 c = XSTRING (newtext)->data[pos];
1658 if (c == '\\')
1659 {
1660 c = XSTRING (newtext)->data[++pos];
1661 if (c == '&')
1662 {
1663 substart = search_regs.start[0];
1664 subend = search_regs.end[0];
1665 }
1666 else if (c >= '1' && c <= '9' && c <= search_regs.num_regs + '0')
1667 {
1668 if (search_regs.start[c - '0'] >= 1)
1669 {
1670 substart = search_regs.start[c - '0'];
1671 subend = search_regs.end[c - '0'];
1672 }
1673 }
1674 }
1675 if (substart >= 0)
1676 {
1677 if (pos - 1 != lastpos + 1)
1678 middle = Fsubstring (newtext, lastpos + 1, pos - 1);
1679 else
1680 middle = Qnil;
1681 accum = concat3 (accum, middle,
1682 Fsubstring (string, make_number (substart),
1683 make_number (subend)));
1684 lastpos = pos;
1685 }
1686 }
1687
1688 if (pos != lastpos + 1)
1689 middle = Fsubstring (newtext, lastpos + 1, pos);
1690 else
1691 middle = Qnil;
1692
1693 newtext = concat2 (accum, middle);
1694 }
1695
1696 if (case_action == all_caps)
1697 newtext = Fupcase (newtext);
1698 else if (case_action == cap_initial)
1699 newtext = upcase_initials (newtext);
1700
1701 return concat3 (before, newtext, after);
1702 }
1703
1704 /* We insert the replacement text before the old text, and then
1705 delete the original text. This means that markers at the
1706 beginning or end of the original will float to the corresponding
1707 position in the replacement. */
1708 SET_PT (search_regs.start[0]);
1709 if (!NILP (literal))
1710 Finsert_and_inherit (1, &newtext);
1711 else
1712 {
1713 struct gcpro gcpro1;
1714 GCPRO1 (newtext);
1715
1716 for (pos = 0; pos < XSTRING (newtext)->size; pos++)
1717 {
1718 int offset = point - search_regs.start[0];
1719
1720 c = XSTRING (newtext)->data[pos];
1721 if (c == '\\')
1722 {
1723 c = XSTRING (newtext)->data[++pos];
1724 if (c == '&')
1725 Finsert_buffer_substring
1726 (Fcurrent_buffer (),
1727 make_number (search_regs.start[0] + offset),
1728 make_number (search_regs.end[0] + offset));
1729 else if (c >= '1' && c <= '9' && c <= search_regs.num_regs + '0')
1730 {
1731 if (search_regs.start[c - '0'] >= 1)
1732 Finsert_buffer_substring
1733 (Fcurrent_buffer (),
1734 make_number (search_regs.start[c - '0'] + offset),
1735 make_number (search_regs.end[c - '0'] + offset));
1736 }
1737 else
1738 insert_char (c);
1739 }
1740 else
1741 insert_char (c);
1742 }
1743 UNGCPRO;
1744 }
1745
1746 inslen = point - (search_regs.start[0]);
1747 del_range (search_regs.start[0] + inslen, search_regs.end[0] + inslen);
1748
1749 if (case_action == all_caps)
1750 Fupcase_region (make_number (point - inslen), make_number (point));
1751 else if (case_action == cap_initial)
1752 upcase_initials_region (make_number (point - inslen), make_number (point));
1753 return Qnil;
1754 }
1755 \f
1756 static Lisp_Object
1757 match_limit (num, beginningp)
1758 Lisp_Object num;
1759 int beginningp;
1760 {
1761 register int n;
1762
1763 CHECK_NUMBER (num, 0);
1764 n = XINT (num);
1765 if (n < 0 || n >= search_regs.num_regs)
1766 args_out_of_range (num, make_number (search_regs.num_regs));
1767 if (search_regs.num_regs <= 0
1768 || search_regs.start[n] < 0)
1769 return Qnil;
1770 return (make_number ((beginningp) ? search_regs.start[n]
1771 : search_regs.end[n]));
1772 }
1773
1774 DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0,
1775 "Return position of start of text matched by last search.\n\
1776 NUM specifies which parenthesized expression in the last regexp.\n\
1777 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.\n\
1778 Zero means the entire text matched by the whole regexp or whole string.")
1779 (num)
1780 Lisp_Object num;
1781 {
1782 return match_limit (num, 1);
1783 }
1784
1785 DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0,
1786 "Return position of end of text matched by last search.\n\
1787 ARG, a number, specifies which parenthesized expression in the last regexp.\n\
1788 Value is nil if ARGth pair didn't match, or there were less than ARG pairs.\n\
1789 Zero means the entire text matched by the whole regexp or whole string.")
1790 (num)
1791 Lisp_Object num;
1792 {
1793 return match_limit (num, 0);
1794 }
1795
1796 DEFUN ("match-data", Fmatch_data, Smatch_data, 0, 0, 0,
1797 "Return a list containing all info on what the last search matched.\n\
1798 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.\n\
1799 All the elements are markers or nil (nil if the Nth pair didn't match)\n\
1800 if the last match was on a buffer; integers or nil if a string was matched.\n\
1801 Use `store-match-data' to reinstate the data in this list.")
1802 ()
1803 {
1804 Lisp_Object *data;
1805 int i, len;
1806
1807 if (NILP (last_thing_searched))
1808 error ("match-data called before any match found");
1809
1810 data = (Lisp_Object *) alloca ((2 * search_regs.num_regs)
1811 * sizeof (Lisp_Object));
1812
1813 len = -1;
1814 for (i = 0; i < search_regs.num_regs; i++)
1815 {
1816 int start = search_regs.start[i];
1817 if (start >= 0)
1818 {
1819 if (EQ (last_thing_searched, Qt))
1820 {
1821 XSETFASTINT (data[2 * i], start);
1822 XSETFASTINT (data[2 * i + 1], search_regs.end[i]);
1823 }
1824 else if (BUFFERP (last_thing_searched))
1825 {
1826 data[2 * i] = Fmake_marker ();
1827 Fset_marker (data[2 * i],
1828 make_number (start),
1829 last_thing_searched);
1830 data[2 * i + 1] = Fmake_marker ();
1831 Fset_marker (data[2 * i + 1],
1832 make_number (search_regs.end[i]),
1833 last_thing_searched);
1834 }
1835 else
1836 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
1837 abort ();
1838
1839 len = i;
1840 }
1841 else
1842 data[2 * i] = data [2 * i + 1] = Qnil;
1843 }
1844 return Flist (2 * len + 2, data);
1845 }
1846
1847
1848 DEFUN ("store-match-data", Fstore_match_data, Sstore_match_data, 1, 1, 0,
1849 "Set internal data on last search match from elements of LIST.\n\
1850 LIST should have been created by calling `match-data' previously.")
1851 (list)
1852 register Lisp_Object list;
1853 {
1854 register int i;
1855 register Lisp_Object marker;
1856
1857 if (running_asynch_code)
1858 save_search_regs ();
1859
1860 if (!CONSP (list) && !NILP (list))
1861 list = wrong_type_argument (Qconsp, list);
1862
1863 /* Unless we find a marker with a buffer in LIST, assume that this
1864 match data came from a string. */
1865 last_thing_searched = Qt;
1866
1867 /* Allocate registers if they don't already exist. */
1868 {
1869 int length = XFASTINT (Flength (list)) / 2;
1870
1871 if (length > search_regs.num_regs)
1872 {
1873 if (search_regs.num_regs == 0)
1874 {
1875 search_regs.start
1876 = (regoff_t *) xmalloc (length * sizeof (regoff_t));
1877 search_regs.end
1878 = (regoff_t *) xmalloc (length * sizeof (regoff_t));
1879 }
1880 else
1881 {
1882 search_regs.start
1883 = (regoff_t *) xrealloc (search_regs.start,
1884 length * sizeof (regoff_t));
1885 search_regs.end
1886 = (regoff_t *) xrealloc (search_regs.end,
1887 length * sizeof (regoff_t));
1888 }
1889
1890 search_regs.num_regs = length;
1891 }
1892 }
1893
1894 for (i = 0; i < search_regs.num_regs; i++)
1895 {
1896 marker = Fcar (list);
1897 if (NILP (marker))
1898 {
1899 search_regs.start[i] = -1;
1900 list = Fcdr (list);
1901 }
1902 else
1903 {
1904 if (MARKERP (marker))
1905 {
1906 if (XMARKER (marker)->buffer == 0)
1907 XSETFASTINT (marker, 0);
1908 else
1909 XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer);
1910 }
1911
1912 CHECK_NUMBER_COERCE_MARKER (marker, 0);
1913 search_regs.start[i] = XINT (marker);
1914 list = Fcdr (list);
1915
1916 marker = Fcar (list);
1917 if (MARKERP (marker) && XMARKER (marker)->buffer == 0)
1918 XSETFASTINT (marker, 0);
1919
1920 CHECK_NUMBER_COERCE_MARKER (marker, 0);
1921 search_regs.end[i] = XINT (marker);
1922 }
1923 list = Fcdr (list);
1924 }
1925
1926 return Qnil;
1927 }
1928
1929 /* If non-zero the match data have been saved in saved_search_regs
1930 during the execution of a sentinel or filter. */
1931 static int search_regs_saved = 0;
1932 static struct re_registers saved_search_regs;
1933
1934 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
1935 if asynchronous code (filter or sentinel) is running. */
1936 static void
1937 save_search_regs ()
1938 {
1939 if (!search_regs_saved)
1940 {
1941 saved_search_regs.num_regs = search_regs.num_regs;
1942 saved_search_regs.start = search_regs.start;
1943 saved_search_regs.end = search_regs.end;
1944 search_regs.num_regs = 0;
1945
1946 search_regs_saved = 1;
1947 }
1948 }
1949
1950 /* Called upon exit from filters and sentinels. */
1951 void
1952 restore_match_data ()
1953 {
1954 if (search_regs_saved)
1955 {
1956 if (search_regs.num_regs > 0)
1957 {
1958 xfree (search_regs.start);
1959 xfree (search_regs.end);
1960 }
1961 search_regs.num_regs = saved_search_regs.num_regs;
1962 search_regs.start = saved_search_regs.start;
1963 search_regs.end = saved_search_regs.end;
1964
1965 search_regs_saved = 0;
1966 }
1967 }
1968
1969 /* Quote a string to inactivate reg-expr chars */
1970
1971 DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0,
1972 "Return a regexp string which matches exactly STRING and nothing else.")
1973 (str)
1974 Lisp_Object str;
1975 {
1976 register unsigned char *in, *out, *end;
1977 register unsigned char *temp;
1978
1979 CHECK_STRING (str, 0);
1980
1981 temp = (unsigned char *) alloca (XSTRING (str)->size * 2);
1982
1983 /* Now copy the data into the new string, inserting escapes. */
1984
1985 in = XSTRING (str)->data;
1986 end = in + XSTRING (str)->size;
1987 out = temp;
1988
1989 for (; in != end; in++)
1990 {
1991 if (*in == '[' || *in == ']'
1992 || *in == '*' || *in == '.' || *in == '\\'
1993 || *in == '?' || *in == '+'
1994 || *in == '^' || *in == '$')
1995 *out++ = '\\';
1996 *out++ = *in;
1997 }
1998
1999 return make_string (temp, out - temp);
2000 }
2001 \f
2002 syms_of_search ()
2003 {
2004 register int i;
2005
2006 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
2007 {
2008 searchbufs[i].buf.allocated = 100;
2009 searchbufs[i].buf.buffer = (unsigned char *) malloc (100);
2010 searchbufs[i].buf.fastmap = searchbufs[i].fastmap;
2011 searchbufs[i].regexp = Qnil;
2012 staticpro (&searchbufs[i].regexp);
2013 searchbufs[i].next = (i == REGEXP_CACHE_SIZE-1 ? 0 : &searchbufs[i+1]);
2014 }
2015 searchbuf_head = &searchbufs[0];
2016
2017 Qsearch_failed = intern ("search-failed");
2018 staticpro (&Qsearch_failed);
2019 Qinvalid_regexp = intern ("invalid-regexp");
2020 staticpro (&Qinvalid_regexp);
2021
2022 Fput (Qsearch_failed, Qerror_conditions,
2023 Fcons (Qsearch_failed, Fcons (Qerror, Qnil)));
2024 Fput (Qsearch_failed, Qerror_message,
2025 build_string ("Search failed"));
2026
2027 Fput (Qinvalid_regexp, Qerror_conditions,
2028 Fcons (Qinvalid_regexp, Fcons (Qerror, Qnil)));
2029 Fput (Qinvalid_regexp, Qerror_message,
2030 build_string ("Invalid regexp"));
2031
2032 last_thing_searched = Qnil;
2033 staticpro (&last_thing_searched);
2034
2035 defsubr (&Slooking_at);
2036 defsubr (&Sposix_looking_at);
2037 defsubr (&Sstring_match);
2038 defsubr (&Sposix_string_match);
2039 defsubr (&Sskip_chars_forward);
2040 defsubr (&Sskip_chars_backward);
2041 defsubr (&Sskip_syntax_forward);
2042 defsubr (&Sskip_syntax_backward);
2043 defsubr (&Ssearch_forward);
2044 defsubr (&Ssearch_backward);
2045 defsubr (&Sword_search_forward);
2046 defsubr (&Sword_search_backward);
2047 defsubr (&Sre_search_forward);
2048 defsubr (&Sre_search_backward);
2049 defsubr (&Sposix_search_forward);
2050 defsubr (&Sposix_search_backward);
2051 defsubr (&Sreplace_match);
2052 defsubr (&Smatch_beginning);
2053 defsubr (&Smatch_end);
2054 defsubr (&Smatch_data);
2055 defsubr (&Sstore_match_data);
2056 defsubr (&Sregexp_quote);
2057 }