Mercurial > vim
annotate src/regexp.c @ 3839:8115f449a574 v7.3.677
updated for version 7.3.677
Problem: buf_spname() is used inconsistently.
Solution: Make the return type a char_u pointer. Check the size of the
returned string.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 03 Oct 2012 18:25:00 +0200 |
parents | 59130cd78dfc |
children | 80b041b994d1 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * Handling of regular expressions: vim_regcomp(), vim_regexec(), vim_regsub() | |
4 * | |
5 * NOTICE: | |
6 * | |
7 * This is NOT the original regular expression code as written by Henry | |
8 * Spencer. This code has been modified specifically for use with the VIM | |
9 * editor, and should not be used separately from Vim. If you want a good | |
10 * regular expression library, get the original code. The copyright notice | |
11 * that follows is from the original. | |
12 * | |
13 * END NOTICE | |
14 * | |
15 * Copyright (c) 1986 by University of Toronto. | |
16 * Written by Henry Spencer. Not derived from licensed software. | |
17 * | |
18 * Permission is granted to anyone to use this software for any | |
19 * purpose on any computer system, and to redistribute it freely, | |
20 * subject to the following restrictions: | |
21 * | |
22 * 1. The author is not responsible for the consequences of use of | |
23 * this software, no matter how awful, even if they arise | |
24 * from defects in it. | |
25 * | |
26 * 2. The origin of this software must not be misrepresented, either | |
27 * by explicit claim or by omission. | |
28 * | |
29 * 3. Altered versions must be plainly marked as such, and must not | |
30 * be misrepresented as being the original software. | |
31 * | |
32 * Beware that some of this code is subtly aware of the way operator | |
33 * precedence is structured in regular expressions. Serious changes in | |
34 * regular-expression syntax might require a total rethink. | |
35 * | |
24 | 36 * Changes have been made by Tony Andrews, Olaf 'Rhialto' Seibert, Robert |
37 * Webb, Ciaran McCreesh and Bram Moolenaar. | |
7 | 38 * Named character class support added by Walter Briscoe (1998 Jul 01) |
39 */ | |
40 | |
41 #include "vim.h" | |
42 | |
43 #undef DEBUG | |
44 | |
45 /* | |
46 * The "internal use only" fields in regexp.h are present to pass info from | |
47 * compile to execute that permits the execute phase to run lots faster on | |
48 * simple cases. They are: | |
49 * | |
50 * regstart char that must begin a match; NUL if none obvious; Can be a | |
51 * multi-byte character. | |
52 * reganch is the match anchored (at beginning-of-line only)? | |
53 * regmust string (pointer into program) that match must include, or NULL | |
54 * regmlen length of regmust string | |
55 * regflags RF_ values or'ed together | |
56 * | |
57 * Regstart and reganch permit very fast decisions on suitable starting points | |
58 * for a match, cutting down the work a lot. Regmust permits fast rejection | |
59 * of lines that cannot possibly match. The regmust tests are costly enough | |
60 * that vim_regcomp() supplies a regmust only if the r.e. contains something | |
61 * potentially expensive (at present, the only such thing detected is * or + | |
62 * at the start of the r.e., which can involve a lot of backup). Regmlen is | |
63 * supplied because the test in vim_regexec() needs it and vim_regcomp() is | |
64 * computing it anyway. | |
65 */ | |
66 | |
67 /* | |
68 * Structure for regexp "program". This is essentially a linear encoding | |
69 * of a nondeterministic finite-state machine (aka syntax charts or | |
70 * "railroad normal form" in parsing technology). Each node is an opcode | |
71 * plus a "next" pointer, possibly plus an operand. "Next" pointers of | |
72 * all nodes except BRANCH and BRACES_COMPLEX implement concatenation; a "next" | |
73 * pointer with a BRANCH on both ends of it is connecting two alternatives. | |
74 * (Here we have one of the subtle syntax dependencies: an individual BRANCH | |
75 * (as opposed to a collection of them) is never concatenated with anything | |
76 * because of operator precedence). The "next" pointer of a BRACES_COMPLEX | |
167 | 77 * node points to the node after the stuff to be repeated. |
78 * The operand of some types of node is a literal string; for others, it is a | |
79 * node leading into a sub-FSM. In particular, the operand of a BRANCH node | |
80 * is the first node of the branch. | |
81 * (NB this is *not* a tree structure: the tail of the branch connects to the | |
82 * thing following the set of BRANCHes.) | |
7 | 83 * |
84 * pattern is coded like: | |
85 * | |
86 * +-----------------+ | |
87 * | V | |
88 * <aa>\|<bb> BRANCH <aa> BRANCH <bb> --> END | |
89 * | ^ | ^ | |
90 * +------+ +----------+ | |
91 * | |
92 * | |
93 * +------------------+ | |
94 * V | | |
95 * <aa>* BRANCH BRANCH <aa> --> BACK BRANCH --> NOTHING --> END | |
96 * | | ^ ^ | |
97 * | +---------------+ | | |
98 * +---------------------------------------------+ | |
99 * | |
100 * | |
167 | 101 * +----------------------+ |
102 * V | | |
233 | 103 * <aa>\+ BRANCH <aa> --> BRANCH --> BACK BRANCH --> NOTHING --> END |
856 | 104 * | | ^ ^ |
105 * | +-----------+ | | |
179 | 106 * +--------------------------------------------------+ |
167 | 107 * |
108 * | |
7 | 109 * +-------------------------+ |
110 * V | | |
111 * <aa>\{} BRANCH BRACE_LIMITS --> BRACE_COMPLEX <aa> --> BACK END | |
112 * | | ^ | |
113 * | +----------------+ | |
114 * +-----------------------------------------------+ | |
115 * | |
116 * | |
117 * <aa>\@!<bb> BRANCH NOMATCH <aa> --> END <bb> --> END | |
118 * | | ^ ^ | |
119 * | +----------------+ | | |
120 * +--------------------------------+ | |
121 * | |
122 * +---------+ | |
123 * | V | |
124 * \z[abc] BRANCH BRANCH a BRANCH b BRANCH c BRANCH NOTHING --> END | |
125 * | | | | ^ ^ | |
126 * | | | +-----+ | | |
127 * | | +----------------+ | | |
128 * | +---------------------------+ | | |
129 * +------------------------------------------------------+ | |
130 * | |
1209 | 131 * They all start with a BRANCH for "\|" alternatives, even when there is only |
7 | 132 * one alternative. |
133 */ | |
134 | |
135 /* | |
136 * The opcodes are: | |
137 */ | |
138 | |
139 /* definition number opnd? meaning */ | |
140 #define END 0 /* End of program or NOMATCH operand. */ | |
141 #define BOL 1 /* Match "" at beginning of line. */ | |
142 #define EOL 2 /* Match "" at end of line. */ | |
143 #define BRANCH 3 /* node Match this alternative, or the | |
144 * next... */ | |
145 #define BACK 4 /* Match "", "next" ptr points backward. */ | |
146 #define EXACTLY 5 /* str Match this string. */ | |
147 #define NOTHING 6 /* Match empty string. */ | |
148 #define STAR 7 /* node Match this (simple) thing 0 or more | |
149 * times. */ | |
150 #define PLUS 8 /* node Match this (simple) thing 1 or more | |
151 * times. */ | |
152 #define MATCH 9 /* node match the operand zero-width */ | |
153 #define NOMATCH 10 /* node check for no match with operand */ | |
154 #define BEHIND 11 /* node look behind for a match with operand */ | |
155 #define NOBEHIND 12 /* node look behind for no match with operand */ | |
156 #define SUBPAT 13 /* node match the operand here */ | |
157 #define BRACE_SIMPLE 14 /* node Match this (simple) thing between m and | |
158 * n times (\{m,n\}). */ | |
159 #define BOW 15 /* Match "" after [^a-zA-Z0-9_] */ | |
160 #define EOW 16 /* Match "" at [^a-zA-Z0-9_] */ | |
161 #define BRACE_LIMITS 17 /* nr nr define the min & max for BRACE_SIMPLE | |
162 * and BRACE_COMPLEX. */ | |
163 #define NEWL 18 /* Match line-break */ | |
164 #define BHPOS 19 /* End position for BEHIND or NOBEHIND */ | |
165 | |
166 | |
167 /* character classes: 20-48 normal, 50-78 include a line-break */ | |
168 #define ADD_NL 30 | |
169 #define FIRST_NL ANY + ADD_NL | |
170 #define ANY 20 /* Match any one character. */ | |
171 #define ANYOF 21 /* str Match any character in this string. */ | |
172 #define ANYBUT 22 /* str Match any character not in this | |
173 * string. */ | |
174 #define IDENT 23 /* Match identifier char */ | |
175 #define SIDENT 24 /* Match identifier char but no digit */ | |
176 #define KWORD 25 /* Match keyword char */ | |
177 #define SKWORD 26 /* Match word char but no digit */ | |
178 #define FNAME 27 /* Match file name char */ | |
179 #define SFNAME 28 /* Match file name char but no digit */ | |
180 #define PRINT 29 /* Match printable char */ | |
181 #define SPRINT 30 /* Match printable char but no digit */ | |
182 #define WHITE 31 /* Match whitespace char */ | |
183 #define NWHITE 32 /* Match non-whitespace char */ | |
184 #define DIGIT 33 /* Match digit char */ | |
185 #define NDIGIT 34 /* Match non-digit char */ | |
186 #define HEX 35 /* Match hex char */ | |
187 #define NHEX 36 /* Match non-hex char */ | |
188 #define OCTAL 37 /* Match octal char */ | |
189 #define NOCTAL 38 /* Match non-octal char */ | |
190 #define WORD 39 /* Match word char */ | |
191 #define NWORD 40 /* Match non-word char */ | |
192 #define HEAD 41 /* Match head char */ | |
193 #define NHEAD 42 /* Match non-head char */ | |
194 #define ALPHA 43 /* Match alpha char */ | |
195 #define NALPHA 44 /* Match non-alpha char */ | |
196 #define LOWER 45 /* Match lowercase char */ | |
197 #define NLOWER 46 /* Match non-lowercase char */ | |
198 #define UPPER 47 /* Match uppercase char */ | |
199 #define NUPPER 48 /* Match non-uppercase char */ | |
200 #define LAST_NL NUPPER + ADD_NL | |
201 #define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL) | |
202 | |
203 #define MOPEN 80 /* -89 Mark this point in input as start of | |
204 * \( subexpr. MOPEN + 0 marks start of | |
205 * match. */ | |
206 #define MCLOSE 90 /* -99 Analogous to MOPEN. MCLOSE + 0 marks | |
207 * end of match. */ | |
208 #define BACKREF 100 /* -109 node Match same string again \1-\9 */ | |
209 | |
210 #ifdef FEAT_SYN_HL | |
211 # define ZOPEN 110 /* -119 Mark this point in input as start of | |
212 * \z( subexpr. */ | |
213 # define ZCLOSE 120 /* -129 Analogous to ZOPEN. */ | |
214 # define ZREF 130 /* -139 node Match external submatch \z1-\z9 */ | |
215 #endif | |
216 | |
217 #define BRACE_COMPLEX 140 /* -149 node Match nodes between m & n times */ | |
218 | |
219 #define NOPEN 150 /* Mark this point in input as start of | |
220 \%( subexpr. */ | |
221 #define NCLOSE 151 /* Analogous to NOPEN. */ | |
222 | |
223 #define MULTIBYTECODE 200 /* mbc Match one multi-byte character */ | |
224 #define RE_BOF 201 /* Match "" at beginning of file. */ | |
225 #define RE_EOF 202 /* Match "" at end of file. */ | |
226 #define CURSOR 203 /* Match location of cursor. */ | |
227 | |
228 #define RE_LNUM 204 /* nr cmp Match line number */ | |
229 #define RE_COL 205 /* nr cmp Match column number */ | |
230 #define RE_VCOL 206 /* nr cmp Match virtual column number */ | |
231 | |
639 | 232 #define RE_MARK 207 /* mark cmp Match mark position */ |
233 #define RE_VISUAL 208 /* Match Visual area */ | |
234 | |
7 | 235 /* |
236 * Magic characters have a special meaning, they don't match literally. | |
237 * Magic characters are negative. This separates them from literal characters | |
238 * (possibly multi-byte). Only ASCII characters can be Magic. | |
239 */ | |
240 #define Magic(x) ((int)(x) - 256) | |
241 #define un_Magic(x) ((x) + 256) | |
242 #define is_Magic(x) ((x) < 0) | |
243 | |
244 static int no_Magic __ARGS((int x)); | |
245 static int toggle_Magic __ARGS((int x)); | |
246 | |
247 static int | |
248 no_Magic(x) | |
249 int x; | |
250 { | |
251 if (is_Magic(x)) | |
252 return un_Magic(x); | |
253 return x; | |
254 } | |
255 | |
256 static int | |
257 toggle_Magic(x) | |
258 int x; | |
259 { | |
260 if (is_Magic(x)) | |
261 return un_Magic(x); | |
262 return Magic(x); | |
263 } | |
264 | |
265 /* | |
266 * The first byte of the regexp internal "program" is actually this magic | |
267 * number; the start node begins in the second byte. It's used to catch the | |
268 * most severe mutilation of the program by the caller. | |
269 */ | |
270 | |
271 #define REGMAGIC 0234 | |
272 | |
273 /* | |
274 * Opcode notes: | |
275 * | |
276 * BRANCH The set of branches constituting a single choice are hooked | |
277 * together with their "next" pointers, since precedence prevents | |
278 * anything being concatenated to any individual branch. The | |
279 * "next" pointer of the last BRANCH in a choice points to the | |
280 * thing following the whole choice. This is also where the | |
281 * final "next" pointer of each individual branch points; each | |
282 * branch starts with the operand node of a BRANCH node. | |
283 * | |
284 * BACK Normal "next" pointers all implicitly point forward; BACK | |
285 * exists to make loop structures possible. | |
286 * | |
287 * STAR,PLUS '=', and complex '*' and '+', are implemented as circular | |
288 * BRANCH structures using BACK. Simple cases (one character | |
289 * per match) are implemented with STAR and PLUS for speed | |
290 * and to minimize recursive plunges. | |
291 * | |
292 * BRACE_LIMITS This is always followed by a BRACE_SIMPLE or BRACE_COMPLEX | |
293 * node, and defines the min and max limits to be used for that | |
294 * node. | |
295 * | |
296 * MOPEN,MCLOSE ...are numbered at compile time. | |
297 * ZOPEN,ZCLOSE ...ditto | |
298 */ | |
299 | |
300 /* | |
301 * A node is one char of opcode followed by two chars of "next" pointer. | |
302 * "Next" pointers are stored as two 8-bit bytes, high order first. The | |
303 * value is a positive offset from the opcode of the node containing it. | |
304 * An operand, if any, simply follows the node. (Note that much of the | |
305 * code generation knows about this implicit relationship.) | |
306 * | |
307 * Using two bytes for the "next" pointer is vast overkill for most things, | |
308 * but allows patterns to get big without disasters. | |
309 */ | |
310 #define OP(p) ((int)*(p)) | |
311 #define NEXT(p) (((*((p) + 1) & 0377) << 8) + (*((p) + 2) & 0377)) | |
312 #define OPERAND(p) ((p) + 3) | |
313 /* Obtain an operand that was stored as four bytes, MSB first. */ | |
314 #define OPERAND_MIN(p) (((long)(p)[3] << 24) + ((long)(p)[4] << 16) \ | |
315 + ((long)(p)[5] << 8) + (long)(p)[6]) | |
316 /* Obtain a second operand stored as four bytes. */ | |
317 #define OPERAND_MAX(p) OPERAND_MIN((p) + 4) | |
318 /* Obtain a second single-byte operand stored after a four bytes operand. */ | |
319 #define OPERAND_CMP(p) (p)[7] | |
320 | |
321 /* | |
322 * Utility definitions. | |
323 */ | |
324 #define UCHARAT(p) ((int)*(char_u *)(p)) | |
325 | |
326 /* Used for an error (down from) vim_regcomp(): give the error message, set | |
327 * rc_did_emsg and return NULL */ | |
653 | 328 #define EMSG_RET_NULL(m) return (EMSG(m), rc_did_emsg = TRUE, (void *)NULL) |
329 #define EMSG_M_RET_NULL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, (void *)NULL) | |
308 | 330 #define EMSG_RET_FAIL(m) return (EMSG(m), rc_did_emsg = TRUE, FAIL) |
7 | 331 #define EMSG_ONE_RET_NULL EMSG_M_RET_NULL(_("E369: invalid item in %s%%[]"), reg_magic == MAGIC_ALL) |
332 | |
333 #define MAX_LIMIT (32767L << 16L) | |
334 | |
335 static int re_multi_type __ARGS((int)); | |
336 static int cstrncmp __ARGS((char_u *s1, char_u *s2, int *n)); | |
337 static char_u *cstrchr __ARGS((char_u *, int)); | |
338 | |
339 #ifdef DEBUG | |
340 static void regdump __ARGS((char_u *, regprog_T *)); | |
341 static char_u *regprop __ARGS((char_u *)); | |
342 #endif | |
343 | |
344 #define NOT_MULTI 0 | |
345 #define MULTI_ONE 1 | |
346 #define MULTI_MULT 2 | |
347 /* | |
348 * Return NOT_MULTI if c is not a "multi" operator. | |
349 * Return MULTI_ONE if c is a single "multi" operator. | |
350 * Return MULTI_MULT if c is a multi "multi" operator. | |
351 */ | |
352 static int | |
353 re_multi_type(c) | |
354 int c; | |
355 { | |
356 if (c == Magic('@') || c == Magic('=') || c == Magic('?')) | |
357 return MULTI_ONE; | |
358 if (c == Magic('*') || c == Magic('+') || c == Magic('{')) | |
359 return MULTI_MULT; | |
360 return NOT_MULTI; | |
361 } | |
362 | |
363 /* | |
364 * Flags to be passed up and down. | |
365 */ | |
366 #define HASWIDTH 0x1 /* Known never to match null string. */ | |
367 #define SIMPLE 0x2 /* Simple enough to be STAR/PLUS operand. */ | |
368 #define SPSTART 0x4 /* Starts with * or +. */ | |
369 #define HASNL 0x8 /* Contains some \n. */ | |
370 #define HASLOOKBH 0x10 /* Contains "\@<=" or "\@<!". */ | |
371 #define WORST 0 /* Worst case. */ | |
372 | |
373 /* | |
374 * When regcode is set to this value, code is not emitted and size is computed | |
375 * instead. | |
376 */ | |
377 #define JUST_CALC_SIZE ((char_u *) -1) | |
378 | |
359 | 379 static char_u *reg_prev_sub = NULL; |
380 | |
7 | 381 /* |
382 * REGEXP_INRANGE contains all characters which are always special in a [] | |
383 * range after '\'. | |
384 * REGEXP_ABBR contains all characters which act as abbreviations after '\'. | |
385 * These are: | |
386 * \n - New line (NL). | |
387 * \r - Carriage Return (CR). | |
388 * \t - Tab (TAB). | |
389 * \e - Escape (ESC). | |
390 * \b - Backspace (Ctrl_H). | |
24 | 391 * \d - Character code in decimal, eg \d123 |
392 * \o - Character code in octal, eg \o80 | |
393 * \x - Character code in hex, eg \x4a | |
394 * \u - Multibyte character code, eg \u20ac | |
395 * \U - Long multibyte character code, eg \U12345678 | |
7 | 396 */ |
397 static char_u REGEXP_INRANGE[] = "]^-n\\"; | |
24 | 398 static char_u REGEXP_ABBR[] = "nrtebdoxuU"; |
7 | 399 |
400 static int backslash_trans __ARGS((int c)); | |
167 | 401 static int get_char_class __ARGS((char_u **pp)); |
402 static int get_equi_class __ARGS((char_u **pp)); | |
403 static void reg_equi_class __ARGS((int c)); | |
404 static int get_coll_element __ARGS((char_u **pp)); | |
7 | 405 static char_u *skip_anyof __ARGS((char_u *p)); |
406 static void init_class_tab __ARGS((void)); | |
407 | |
408 /* | |
409 * Translate '\x' to its control character, except "\n", which is Magic. | |
410 */ | |
411 static int | |
412 backslash_trans(c) | |
413 int c; | |
414 { | |
415 switch (c) | |
416 { | |
417 case 'r': return CAR; | |
418 case 't': return TAB; | |
419 case 'e': return ESC; | |
420 case 'b': return BS; | |
421 } | |
422 return c; | |
423 } | |
424 | |
425 /* | |
167 | 426 * Check for a character class name "[:name:]". "pp" points to the '['. |
7 | 427 * Returns one of the CLASS_ items. CLASS_NONE means that no item was |
428 * recognized. Otherwise "pp" is advanced to after the item. | |
429 */ | |
430 static int | |
167 | 431 get_char_class(pp) |
7 | 432 char_u **pp; |
433 { | |
434 static const char *(class_names[]) = | |
435 { | |
436 "alnum:]", | |
437 #define CLASS_ALNUM 0 | |
438 "alpha:]", | |
439 #define CLASS_ALPHA 1 | |
440 "blank:]", | |
441 #define CLASS_BLANK 2 | |
442 "cntrl:]", | |
443 #define CLASS_CNTRL 3 | |
444 "digit:]", | |
445 #define CLASS_DIGIT 4 | |
446 "graph:]", | |
447 #define CLASS_GRAPH 5 | |
448 "lower:]", | |
449 #define CLASS_LOWER 6 | |
450 "print:]", | |
451 #define CLASS_PRINT 7 | |
452 "punct:]", | |
453 #define CLASS_PUNCT 8 | |
454 "space:]", | |
455 #define CLASS_SPACE 9 | |
456 "upper:]", | |
457 #define CLASS_UPPER 10 | |
458 "xdigit:]", | |
459 #define CLASS_XDIGIT 11 | |
460 "tab:]", | |
461 #define CLASS_TAB 12 | |
462 "return:]", | |
463 #define CLASS_RETURN 13 | |
464 "backspace:]", | |
465 #define CLASS_BACKSPACE 14 | |
466 "escape:]", | |
467 #define CLASS_ESCAPE 15 | |
468 }; | |
469 #define CLASS_NONE 99 | |
470 int i; | |
471 | |
472 if ((*pp)[1] == ':') | |
473 { | |
1877 | 474 for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i) |
7 | 475 if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0) |
476 { | |
477 *pp += STRLEN(class_names[i]) + 2; | |
478 return i; | |
479 } | |
480 } | |
481 return CLASS_NONE; | |
482 } | |
483 | |
484 /* | |
485 * Specific version of character class functions. | |
486 * Using a table to keep this fast. | |
487 */ | |
488 static short class_tab[256]; | |
489 | |
490 #define RI_DIGIT 0x01 | |
491 #define RI_HEX 0x02 | |
492 #define RI_OCTAL 0x04 | |
493 #define RI_WORD 0x08 | |
494 #define RI_HEAD 0x10 | |
495 #define RI_ALPHA 0x20 | |
496 #define RI_LOWER 0x40 | |
497 #define RI_UPPER 0x80 | |
498 #define RI_WHITE 0x100 | |
499 | |
500 static void | |
501 init_class_tab() | |
502 { | |
503 int i; | |
504 static int done = FALSE; | |
505 | |
506 if (done) | |
507 return; | |
508 | |
509 for (i = 0; i < 256; ++i) | |
510 { | |
511 if (i >= '0' && i <= '7') | |
512 class_tab[i] = RI_DIGIT + RI_HEX + RI_OCTAL + RI_WORD; | |
513 else if (i >= '8' && i <= '9') | |
514 class_tab[i] = RI_DIGIT + RI_HEX + RI_WORD; | |
515 else if (i >= 'a' && i <= 'f') | |
516 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
517 #ifdef EBCDIC | |
518 else if ((i >= 'g' && i <= 'i') || (i >= 'j' && i <= 'r') | |
519 || (i >= 's' && i <= 'z')) | |
520 #else | |
521 else if (i >= 'g' && i <= 'z') | |
522 #endif | |
523 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
524 else if (i >= 'A' && i <= 'F') | |
525 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
526 #ifdef EBCDIC | |
527 else if ((i >= 'G' && i <= 'I') || ( i >= 'J' && i <= 'R') | |
528 || (i >= 'S' && i <= 'Z')) | |
529 #else | |
530 else if (i >= 'G' && i <= 'Z') | |
531 #endif | |
532 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
533 else if (i == '_') | |
534 class_tab[i] = RI_WORD + RI_HEAD; | |
535 else | |
536 class_tab[i] = 0; | |
537 } | |
538 class_tab[' '] |= RI_WHITE; | |
539 class_tab['\t'] |= RI_WHITE; | |
540 done = TRUE; | |
541 } | |
542 | |
543 #ifdef FEAT_MBYTE | |
544 # define ri_digit(c) (c < 0x100 && (class_tab[c] & RI_DIGIT)) | |
545 # define ri_hex(c) (c < 0x100 && (class_tab[c] & RI_HEX)) | |
546 # define ri_octal(c) (c < 0x100 && (class_tab[c] & RI_OCTAL)) | |
547 # define ri_word(c) (c < 0x100 && (class_tab[c] & RI_WORD)) | |
548 # define ri_head(c) (c < 0x100 && (class_tab[c] & RI_HEAD)) | |
549 # define ri_alpha(c) (c < 0x100 && (class_tab[c] & RI_ALPHA)) | |
550 # define ri_lower(c) (c < 0x100 && (class_tab[c] & RI_LOWER)) | |
551 # define ri_upper(c) (c < 0x100 && (class_tab[c] & RI_UPPER)) | |
552 # define ri_white(c) (c < 0x100 && (class_tab[c] & RI_WHITE)) | |
553 #else | |
554 # define ri_digit(c) (class_tab[c] & RI_DIGIT) | |
555 # define ri_hex(c) (class_tab[c] & RI_HEX) | |
556 # define ri_octal(c) (class_tab[c] & RI_OCTAL) | |
557 # define ri_word(c) (class_tab[c] & RI_WORD) | |
558 # define ri_head(c) (class_tab[c] & RI_HEAD) | |
559 # define ri_alpha(c) (class_tab[c] & RI_ALPHA) | |
560 # define ri_lower(c) (class_tab[c] & RI_LOWER) | |
561 # define ri_upper(c) (class_tab[c] & RI_UPPER) | |
562 # define ri_white(c) (class_tab[c] & RI_WHITE) | |
563 #endif | |
564 | |
565 /* flags for regflags */ | |
566 #define RF_ICASE 1 /* ignore case */ | |
567 #define RF_NOICASE 2 /* don't ignore case */ | |
568 #define RF_HASNL 4 /* can match a NL */ | |
569 #define RF_ICOMBINE 8 /* ignore combining characters */ | |
570 #define RF_LOOKBH 16 /* uses "\@<=" or "\@<!" */ | |
571 | |
572 /* | |
573 * Global work variables for vim_regcomp(). | |
574 */ | |
575 | |
576 static char_u *regparse; /* Input-scan pointer. */ | |
577 static int prevchr_len; /* byte length of previous char */ | |
578 static int num_complex_braces; /* Complex \{...} count */ | |
579 static int regnpar; /* () count. */ | |
580 #ifdef FEAT_SYN_HL | |
581 static int regnzpar; /* \z() count. */ | |
582 static int re_has_z; /* \z item detected */ | |
583 #endif | |
584 static char_u *regcode; /* Code-emit pointer, or JUST_CALC_SIZE */ | |
585 static long regsize; /* Code size. */ | |
2010 | 586 static int reg_toolong; /* TRUE when offset out of range */ |
7 | 587 static char_u had_endbrace[NSUBEXP]; /* flags, TRUE if end of () found */ |
588 static unsigned regflags; /* RF_ flags for prog */ | |
589 static long brace_min[10]; /* Minimums for complex brace repeats */ | |
590 static long brace_max[10]; /* Maximums for complex brace repeats */ | |
591 static int brace_count[10]; /* Current counts for complex brace repeats */ | |
592 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
593 static int had_eol; /* TRUE when EOL found by vim_regcomp() */ | |
594 #endif | |
595 static int one_exactly = FALSE; /* only do one char for EXACTLY */ | |
596 | |
597 static int reg_magic; /* magicness of the pattern: */ | |
598 #define MAGIC_NONE 1 /* "\V" very unmagic */ | |
599 #define MAGIC_OFF 2 /* "\M" or 'magic' off */ | |
600 #define MAGIC_ON 3 /* "\m" or 'magic' */ | |
601 #define MAGIC_ALL 4 /* "\v" very magic */ | |
602 | |
603 static int reg_string; /* matching with a string instead of a buffer | |
604 line */ | |
481 | 605 static int reg_strict; /* "[abc" is illegal */ |
7 | 606 |
607 /* | |
608 * META contains all characters that may be magic, except '^' and '$'. | |
609 */ | |
610 | |
611 #ifdef EBCDIC | |
612 static char_u META[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~"; | |
613 #else | |
614 /* META[] is used often enough to justify turning it into a table. */ | |
615 static char_u META_flags[] = { | |
616 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
617 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
618 /* % & ( ) * + . */ | |
619 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, | |
620 /* 1 2 3 4 5 6 7 8 9 < = > ? */ | |
621 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, | |
622 /* @ A C D F H I K L M O */ | |
623 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, | |
624 /* P S U V W X Z [ _ */ | |
625 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, | |
626 /* a c d f h i k l m n o */ | |
627 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, | |
628 /* p s u v w x z { | ~ */ | |
629 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1 | |
630 }; | |
631 #endif | |
632 | |
633 static int curchr; | |
634 | |
635 /* arguments for reg() */ | |
636 #define REG_NOPAREN 0 /* toplevel reg() */ | |
637 #define REG_PAREN 1 /* \(\) */ | |
638 #define REG_ZPAREN 2 /* \z(\) */ | |
639 #define REG_NPAREN 3 /* \%(\) */ | |
640 | |
641 /* | |
642 * Forward declarations for vim_regcomp()'s friends. | |
643 */ | |
644 static void initchr __ARGS((char_u *)); | |
645 static int getchr __ARGS((void)); | |
646 static void skipchr_keepstart __ARGS((void)); | |
647 static int peekchr __ARGS((void)); | |
648 static void skipchr __ARGS((void)); | |
649 static void ungetchr __ARGS((void)); | |
24 | 650 static int gethexchrs __ARGS((int maxinputlen)); |
651 static int getoctchrs __ARGS((void)); | |
652 static int getdecchrs __ARGS((void)); | |
653 static int coll_get_char __ARGS((void)); | |
7 | 654 static void regcomp_start __ARGS((char_u *expr, int flags)); |
655 static char_u *reg __ARGS((int, int *)); | |
656 static char_u *regbranch __ARGS((int *flagp)); | |
657 static char_u *regconcat __ARGS((int *flagp)); | |
658 static char_u *regpiece __ARGS((int *)); | |
659 static char_u *regatom __ARGS((int *)); | |
660 static char_u *regnode __ARGS((int)); | |
714 | 661 #ifdef FEAT_MBYTE |
662 static int use_multibytecode __ARGS((int c)); | |
663 #endif | |
7 | 664 static int prog_magic_wrong __ARGS((void)); |
665 static char_u *regnext __ARGS((char_u *)); | |
666 static void regc __ARGS((int b)); | |
667 #ifdef FEAT_MBYTE | |
668 static void regmbc __ARGS((int c)); | |
2974 | 669 # define REGMBC(x) regmbc(x); |
670 # define CASEMBC(x) case x: | |
167 | 671 #else |
672 # define regmbc(c) regc(c) | |
2974 | 673 # define REGMBC(x) |
674 # define CASEMBC(x) | |
7 | 675 #endif |
676 static void reginsert __ARGS((int, char_u *)); | |
677 static void reginsert_limits __ARGS((int, long, long, char_u *)); | |
678 static char_u *re_put_long __ARGS((char_u *pr, long_u val)); | |
679 static int read_limits __ARGS((long *, long *)); | |
680 static void regtail __ARGS((char_u *, char_u *)); | |
681 static void regoptail __ARGS((char_u *, char_u *)); | |
682 | |
683 /* | |
684 * Return TRUE if compiled regular expression "prog" can match a line break. | |
685 */ | |
686 int | |
687 re_multiline(prog) | |
688 regprog_T *prog; | |
689 { | |
690 return (prog->regflags & RF_HASNL); | |
691 } | |
692 | |
693 /* | |
694 * Return TRUE if compiled regular expression "prog" looks before the start | |
695 * position (pattern contains "\@<=" or "\@<!"). | |
696 */ | |
697 int | |
698 re_lookbehind(prog) | |
699 regprog_T *prog; | |
700 { | |
701 return (prog->regflags & RF_LOOKBH); | |
702 } | |
703 | |
704 /* | |
167 | 705 * Check for an equivalence class name "[=a=]". "pp" points to the '['. |
706 * Returns a character representing the class. Zero means that no item was | |
707 * recognized. Otherwise "pp" is advanced to after the item. | |
708 */ | |
709 static int | |
710 get_equi_class(pp) | |
711 char_u **pp; | |
712 { | |
713 int c; | |
714 int l = 1; | |
715 char_u *p = *pp; | |
716 | |
717 if (p[1] == '=') | |
718 { | |
719 #ifdef FEAT_MBYTE | |
720 if (has_mbyte) | |
474 | 721 l = (*mb_ptr2len)(p + 2); |
167 | 722 #endif |
723 if (p[l + 2] == '=' && p[l + 3] == ']') | |
724 { | |
725 #ifdef FEAT_MBYTE | |
726 if (has_mbyte) | |
727 c = mb_ptr2char(p + 2); | |
728 else | |
729 #endif | |
730 c = p[2]; | |
731 *pp += l + 4; | |
732 return c; | |
733 } | |
734 } | |
735 return 0; | |
736 } | |
737 | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
738 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
739 /* |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
740 * Table for equivalence class "c". (IBM-1047) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
741 */ |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
742 char *EQUIVAL_CLASS_C[16] = { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
743 "A\x62\x63\x64\x65\x66\x67", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
744 "C\x68", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
745 "E\x71\x72\x73\x74", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
746 "I\x75\x76\x77\x78", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
747 "N\x69", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
748 "O\xEB\xEC\xED\xEE\xEF", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
749 "U\xFB\xFC\xFD\xFE", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
750 "Y\xBA", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
751 "a\x42\x43\x44\x45\x46\x47", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
752 "c\x48", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
753 "e\x51\x52\x53\x54", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
754 "i\x55\x56\x57\x58", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
755 "n\x49", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
756 "o\xCB\xCC\xCD\xCE\xCF", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
757 "u\xDB\xDC\xDD\xDE", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
758 "y\x8D\xDF", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
759 }; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
760 #endif |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
761 |
167 | 762 /* |
763 * Produce the bytes for equivalence class "c". | |
764 * Currently only handles latin1, latin9 and utf-8. | |
765 */ | |
766 static void | |
767 reg_equi_class(c) | |
768 int c; | |
769 { | |
770 #ifdef FEAT_MBYTE | |
771 if (enc_utf8 || STRCMP(p_enc, "latin1") == 0 | |
492 | 772 || STRCMP(p_enc, "iso-8859-15") == 0) |
167 | 773 #endif |
774 { | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
775 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
776 int i; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
777 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
778 /* This might be slower than switch/case below. */ |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
779 for (i = 0; i < 16; i++) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
780 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
781 if (vim_strchr(EQUIVAL_CLASS_C[i], c) != NULL) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
782 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
783 char *p = EQUIVAL_CLASS_C[i]; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
784 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
785 while (*p != 0) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
786 regmbc(*p++); |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
787 return; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
788 } |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
789 } |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
790 #else |
167 | 791 switch (c) |
792 { | |
236 | 793 case 'A': case '\300': case '\301': case '\302': |
2974 | 794 CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd) |
795 CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2) | |
236 | 796 case '\303': case '\304': case '\305': |
797 regmbc('A'); regmbc('\300'); regmbc('\301'); | |
798 regmbc('\302'); regmbc('\303'); regmbc('\304'); | |
799 regmbc('\305'); | |
2974 | 800 REGMBC(0x100) REGMBC(0x102) REGMBC(0x104) |
801 REGMBC(0x1cd) REGMBC(0x1de) REGMBC(0x1e0) | |
802 REGMBC(0x1ea2) | |
803 return; | |
804 case 'B': CASEMBC(0x1e02) CASEMBC(0x1e06) | |
805 regmbc('B'); REGMBC(0x1e02) REGMBC(0x1e06) | |
167 | 806 return; |
236 | 807 case 'C': case '\307': |
2974 | 808 CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c) |
236 | 809 regmbc('C'); regmbc('\307'); |
2974 | 810 REGMBC(0x106) REGMBC(0x108) REGMBC(0x10a) |
811 REGMBC(0x10c) | |
812 return; | |
813 case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a) | |
814 CASEMBC(0x1e0e) CASEMBC(0x1e10) | |
815 regmbc('D'); REGMBC(0x10e) REGMBC(0x110) | |
816 REGMBC(0x1e0a) REGMBC(0x1e0e) REGMBC(0x1e10) | |
167 | 817 return; |
236 | 818 case 'E': case '\310': case '\311': case '\312': case '\313': |
2974 | 819 CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118) |
820 CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc) | |
236 | 821 regmbc('E'); regmbc('\310'); regmbc('\311'); |
822 regmbc('\312'); regmbc('\313'); | |
2974 | 823 REGMBC(0x112) REGMBC(0x114) REGMBC(0x116) |
824 REGMBC(0x118) REGMBC(0x11a) REGMBC(0x1eba) | |
825 REGMBC(0x1ebc) | |
826 return; | |
827 case 'F': CASEMBC(0x1e1e) | |
828 regmbc('F'); REGMBC(0x1e1e) | |
829 return; | |
830 case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120) | |
831 CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4) | |
832 CASEMBC(0x1e20) | |
833 regmbc('G'); REGMBC(0x11c) REGMBC(0x11e) | |
834 REGMBC(0x120) REGMBC(0x122) REGMBC(0x1e4) | |
835 REGMBC(0x1e6) REGMBC(0x1f4) REGMBC(0x1e20) | |
836 return; | |
837 case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22) | |
838 CASEMBC(0x1e26) CASEMBC(0x1e28) | |
839 regmbc('H'); REGMBC(0x124) REGMBC(0x126) | |
840 REGMBC(0x1e22) REGMBC(0x1e26) REGMBC(0x1e28) | |
167 | 841 return; |
236 | 842 case 'I': case '\314': case '\315': case '\316': case '\317': |
2974 | 843 CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e) |
844 CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8) | |
236 | 845 regmbc('I'); regmbc('\314'); regmbc('\315'); |
846 regmbc('\316'); regmbc('\317'); | |
2974 | 847 REGMBC(0x128) REGMBC(0x12a) REGMBC(0x12c) |
848 REGMBC(0x12e) REGMBC(0x130) REGMBC(0x1cf) | |
849 REGMBC(0x1ec8) | |
850 return; | |
851 case 'J': CASEMBC(0x134) | |
852 regmbc('J'); REGMBC(0x134) | |
853 return; | |
854 case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30) | |
855 CASEMBC(0x1e34) | |
856 regmbc('K'); REGMBC(0x136) REGMBC(0x1e8) | |
857 REGMBC(0x1e30) REGMBC(0x1e34) | |
858 return; | |
859 case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d) | |
860 CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a) | |
861 regmbc('L'); REGMBC(0x139) REGMBC(0x13b) | |
862 REGMBC(0x13d) REGMBC(0x13f) REGMBC(0x141) | |
863 REGMBC(0x1e3a) | |
864 return; | |
865 case 'M': CASEMBC(0x1e3e) CASEMBC(0x1e40) | |
866 regmbc('M'); REGMBC(0x1e3e) REGMBC(0x1e40) | |
167 | 867 return; |
236 | 868 case 'N': case '\321': |
2974 | 869 CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44) |
870 CASEMBC(0x1e48) | |
236 | 871 regmbc('N'); regmbc('\321'); |
2974 | 872 REGMBC(0x143) REGMBC(0x145) REGMBC(0x147) |
873 REGMBC(0x1e44) REGMBC(0x1e48) | |
167 | 874 return; |
236 | 875 case 'O': case '\322': case '\323': case '\324': case '\325': |
2974 | 876 case '\326': case '\330': |
877 CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0) | |
878 CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece) | |
236 | 879 regmbc('O'); regmbc('\322'); regmbc('\323'); |
880 regmbc('\324'); regmbc('\325'); regmbc('\326'); | |
2974 | 881 regmbc('\330'); |
882 REGMBC(0x14c) REGMBC(0x14e) REGMBC(0x150) | |
883 REGMBC(0x1a0) REGMBC(0x1d1) REGMBC(0x1ea) | |
884 REGMBC(0x1ec) REGMBC(0x1ece) | |
885 return; | |
886 case 'P': case 0x1e54: case 0x1e56: | |
887 regmbc('P'); REGMBC(0x1e54) REGMBC(0x1e56) | |
888 return; | |
889 case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158) | |
890 CASEMBC(0x1e58) CASEMBC(0x1e5e) | |
891 regmbc('R'); REGMBC(0x154) REGMBC(0x156) REGMBC(0x158) | |
892 REGMBC(0x1e58) REGMBC(0x1e5e) | |
893 return; | |
894 case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e) | |
895 CASEMBC(0x160) CASEMBC(0x1e60) | |
896 regmbc('S'); REGMBC(0x15a) REGMBC(0x15c) | |
897 REGMBC(0x15e) REGMBC(0x160) REGMBC(0x1e60) | |
898 return; | |
899 case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166) | |
900 CASEMBC(0x1e6a) CASEMBC(0x1e6e) | |
901 regmbc('T'); REGMBC(0x162) REGMBC(0x164) | |
902 REGMBC(0x166) REGMBC(0x1e6a) REGMBC(0x1e6e) | |
167 | 903 return; |
236 | 904 case 'U': case '\331': case '\332': case '\333': case '\334': |
2974 | 905 CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e) |
906 CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3) | |
907 CASEMBC(0x1ee6) | |
236 | 908 regmbc('U'); regmbc('\331'); regmbc('\332'); |
909 regmbc('\333'); regmbc('\334'); | |
2974 | 910 REGMBC(0x168) REGMBC(0x16a) REGMBC(0x16c) |
911 REGMBC(0x16e) REGMBC(0x170) REGMBC(0x172) | |
912 REGMBC(0x1af) REGMBC(0x1d3) REGMBC(0x1ee6) | |
913 return; | |
914 case 'V': CASEMBC(0x1e7c) | |
915 regmbc('V'); REGMBC(0x1e7c) | |
916 return; | |
917 case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82) | |
918 CASEMBC(0x1e84) CASEMBC(0x1e86) | |
919 regmbc('W'); REGMBC(0x174) REGMBC(0x1e80) | |
920 REGMBC(0x1e82) REGMBC(0x1e84) REGMBC(0x1e86) | |
921 return; | |
922 case 'X': CASEMBC(0x1e8a) CASEMBC(0x1e8c) | |
923 regmbc('X'); REGMBC(0x1e8a) REGMBC(0x1e8c) | |
167 | 924 return; |
236 | 925 case 'Y': case '\335': |
2974 | 926 CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2) |
927 CASEMBC(0x1ef6) CASEMBC(0x1ef8) | |
236 | 928 regmbc('Y'); regmbc('\335'); |
2974 | 929 REGMBC(0x176) REGMBC(0x178) REGMBC(0x1e8e) |
930 REGMBC(0x1ef2) REGMBC(0x1ef6) REGMBC(0x1ef8) | |
931 return; | |
932 case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d) | |
933 CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94) | |
934 regmbc('Z'); REGMBC(0x179) REGMBC(0x17b) | |
935 REGMBC(0x17d) REGMBC(0x1b5) REGMBC(0x1e90) | |
936 REGMBC(0x1e94) | |
167 | 937 return; |
236 | 938 case 'a': case '\340': case '\341': case '\342': |
939 case '\343': case '\344': case '\345': | |
2974 | 940 CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce) |
941 CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3) | |
236 | 942 regmbc('a'); regmbc('\340'); regmbc('\341'); |
943 regmbc('\342'); regmbc('\343'); regmbc('\344'); | |
944 regmbc('\345'); | |
2974 | 945 REGMBC(0x101) REGMBC(0x103) REGMBC(0x105) |
946 REGMBC(0x1ce) REGMBC(0x1df) REGMBC(0x1e1) | |
947 REGMBC(0x1ea3) | |
948 return; | |
949 case 'b': CASEMBC(0x1e03) CASEMBC(0x1e07) | |
950 regmbc('b'); REGMBC(0x1e03) REGMBC(0x1e07) | |
167 | 951 return; |
236 | 952 case 'c': case '\347': |
2974 | 953 CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d) |
236 | 954 regmbc('c'); regmbc('\347'); |
2974 | 955 REGMBC(0x107) REGMBC(0x109) REGMBC(0x10b) |
956 REGMBC(0x10d) | |
957 return; | |
958 case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1d0b) | |
959 CASEMBC(0x1e11) | |
960 regmbc('d'); REGMBC(0x10f) REGMBC(0x111) | |
961 REGMBC(0x1e0b) REGMBC(0x01e0f) REGMBC(0x1e11) | |
167 | 962 return; |
236 | 963 case 'e': case '\350': case '\351': case '\352': case '\353': |
2974 | 964 CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119) |
965 CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd) | |
236 | 966 regmbc('e'); regmbc('\350'); regmbc('\351'); |
967 regmbc('\352'); regmbc('\353'); | |
2974 | 968 REGMBC(0x113) REGMBC(0x115) REGMBC(0x117) |
969 REGMBC(0x119) REGMBC(0x11b) REGMBC(0x1ebb) | |
970 REGMBC(0x1ebd) | |
971 return; | |
972 case 'f': CASEMBC(0x1e1f) | |
973 regmbc('f'); REGMBC(0x1e1f) | |
974 return; | |
975 case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121) | |
976 CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5) | |
977 CASEMBC(0x1e21) | |
978 regmbc('g'); REGMBC(0x11d) REGMBC(0x11f) | |
979 REGMBC(0x121) REGMBC(0x123) REGMBC(0x1e5) | |
980 REGMBC(0x1e7) REGMBC(0x1f5) REGMBC(0x1e21) | |
981 return; | |
982 case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23) | |
983 CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96) | |
984 regmbc('h'); REGMBC(0x125) REGMBC(0x127) | |
985 REGMBC(0x1e23) REGMBC(0x1e27) REGMBC(0x1e29) | |
986 REGMBC(0x1e96) | |
167 | 987 return; |
236 | 988 case 'i': case '\354': case '\355': case '\356': case '\357': |
2974 | 989 CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f) |
990 CASEMBC(0x1d0) CASEMBC(0x1ec9) | |
236 | 991 regmbc('i'); regmbc('\354'); regmbc('\355'); |
992 regmbc('\356'); regmbc('\357'); | |
2974 | 993 REGMBC(0x129) REGMBC(0x12b) REGMBC(0x12d) |
994 REGMBC(0x12f) REGMBC(0x1d0) REGMBC(0x1ec9) | |
995 return; | |
996 case 'j': CASEMBC(0x135) CASEMBC(0x1f0) | |
997 regmbc('j'); REGMBC(0x135) REGMBC(0x1f0) | |
998 return; | |
999 case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31) | |
1000 CASEMBC(0x1e35) | |
1001 regmbc('k'); REGMBC(0x137) REGMBC(0x1e9) | |
1002 REGMBC(0x1e31) REGMBC(0x1e35) | |
1003 return; | |
1004 case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e) | |
1005 CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b) | |
1006 regmbc('l'); REGMBC(0x13a) REGMBC(0x13c) | |
1007 REGMBC(0x13e) REGMBC(0x140) REGMBC(0x142) | |
1008 REGMBC(0x1e3b) | |
1009 return; | |
1010 case 'm': CASEMBC(0x1e3f) CASEMBC(0x1e41) | |
1011 regmbc('m'); REGMBC(0x1e3f) REGMBC(0x1e41) | |
167 | 1012 return; |
236 | 1013 case 'n': case '\361': |
2974 | 1014 CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149) |
1015 CASEMBC(0x1e45) CASEMBC(0x1e49) | |
236 | 1016 regmbc('n'); regmbc('\361'); |
2974 | 1017 REGMBC(0x144) REGMBC(0x146) REGMBC(0x148) |
1018 REGMBC(0x149) REGMBC(0x1e45) REGMBC(0x1e49) | |
167 | 1019 return; |
236 | 1020 case 'o': case '\362': case '\363': case '\364': case '\365': |
2974 | 1021 case '\366': case '\370': |
1022 CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1) | |
1023 CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf) | |
236 | 1024 regmbc('o'); regmbc('\362'); regmbc('\363'); |
1025 regmbc('\364'); regmbc('\365'); regmbc('\366'); | |
2974 | 1026 regmbc('\370'); |
1027 REGMBC(0x14d) REGMBC(0x14f) REGMBC(0x151) | |
1028 REGMBC(0x1a1) REGMBC(0x1d2) REGMBC(0x1eb) | |
1029 REGMBC(0x1ed) REGMBC(0x1ecf) | |
1030 return; | |
1031 case 'p': CASEMBC(0x1e55) CASEMBC(0x1e57) | |
1032 regmbc('p'); REGMBC(0x1e55) REGMBC(0x1e57) | |
1033 return; | |
1034 case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159) | |
1035 CASEMBC(0x1e59) CASEMBC(0x1e5f) | |
1036 regmbc('r'); REGMBC(0x155) REGMBC(0x157) REGMBC(0x159) | |
1037 REGMBC(0x1e59) REGMBC(0x1e5f) | |
1038 return; | |
1039 case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f) | |
1040 CASEMBC(0x161) CASEMBC(0x1e61) | |
1041 regmbc('s'); REGMBC(0x15b) REGMBC(0x15d) | |
1042 REGMBC(0x15f) REGMBC(0x161) REGMBC(0x1e61) | |
1043 return; | |
1044 case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167) | |
1045 CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97) | |
1046 regmbc('t'); REGMBC(0x163) REGMBC(0x165) REGMBC(0x167) | |
1047 REGMBC(0x1e6b) REGMBC(0x1e6f) REGMBC(0x1e97) | |
167 | 1048 return; |
236 | 1049 case 'u': case '\371': case '\372': case '\373': case '\374': |
2974 | 1050 CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f) |
1051 CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4) | |
1052 CASEMBC(0x1ee7) | |
236 | 1053 regmbc('u'); regmbc('\371'); regmbc('\372'); |
1054 regmbc('\373'); regmbc('\374'); | |
2974 | 1055 REGMBC(0x169) REGMBC(0x16b) REGMBC(0x16d) |
1056 REGMBC(0x16f) REGMBC(0x171) REGMBC(0x173) | |
1057 REGMBC(0x1b0) REGMBC(0x1d4) REGMBC(0x1ee7) | |
1058 return; | |
1059 case 'v': CASEMBC(0x1e7d) | |
1060 regmbc('v'); REGMBC(0x1e7d) | |
1061 return; | |
1062 case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83) | |
1063 CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98) | |
1064 regmbc('w'); REGMBC(0x175) REGMBC(0x1e81) | |
1065 REGMBC(0x1e83) REGMBC(0x1e85) REGMBC(0x1e87) | |
1066 REGMBC(0x1e98) | |
1067 return; | |
1068 case 'x': CASEMBC(0x1e8b) CASEMBC(0x1e8d) | |
1069 regmbc('x'); REGMBC(0x1e8b) REGMBC(0x1e8d) | |
167 | 1070 return; |
236 | 1071 case 'y': case '\375': case '\377': |
2974 | 1072 CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99) |
1073 CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9) | |
236 | 1074 regmbc('y'); regmbc('\375'); regmbc('\377'); |
2974 | 1075 REGMBC(0x177) REGMBC(0x1e8f) REGMBC(0x1e99) |
1076 REGMBC(0x1ef3) REGMBC(0x1ef7) REGMBC(0x1ef9) | |
1077 return; | |
1078 case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e) | |
1079 CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95) | |
1080 regmbc('z'); REGMBC(0x17a) REGMBC(0x17c) | |
1081 REGMBC(0x17e) REGMBC(0x1b6) REGMBC(0x1e91) | |
1082 REGMBC(0x1e95) | |
167 | 1083 return; |
1084 } | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
1085 #endif |
167 | 1086 } |
1087 regmbc(c); | |
1088 } | |
1089 | |
1090 /* | |
1091 * Check for a collating element "[.a.]". "pp" points to the '['. | |
1092 * Returns a character. Zero means that no item was recognized. Otherwise | |
1093 * "pp" is advanced to after the item. | |
1094 * Currently only single characters are recognized! | |
1095 */ | |
1096 static int | |
1097 get_coll_element(pp) | |
1098 char_u **pp; | |
1099 { | |
1100 int c; | |
1101 int l = 1; | |
1102 char_u *p = *pp; | |
1103 | |
1104 if (p[1] == '.') | |
1105 { | |
1106 #ifdef FEAT_MBYTE | |
1107 if (has_mbyte) | |
474 | 1108 l = (*mb_ptr2len)(p + 2); |
167 | 1109 #endif |
1110 if (p[l + 2] == '.' && p[l + 3] == ']') | |
1111 { | |
1112 #ifdef FEAT_MBYTE | |
1113 if (has_mbyte) | |
1114 c = mb_ptr2char(p + 2); | |
1115 else | |
1116 #endif | |
1117 c = p[2]; | |
1118 *pp += l + 4; | |
1119 return c; | |
1120 } | |
1121 } | |
1122 return 0; | |
1123 } | |
1124 | |
1125 | |
1126 /* | |
1127 * Skip over a "[]" range. | |
1128 * "p" must point to the character after the '['. | |
1129 * The returned pointer is on the matching ']', or the terminating NUL. | |
1130 */ | |
1131 static char_u * | |
1132 skip_anyof(p) | |
1133 char_u *p; | |
1134 { | |
1135 int cpo_lit; /* 'cpoptions' contains 'l' flag */ | |
1136 int cpo_bsl; /* 'cpoptions' contains '\' flag */ | |
1137 #ifdef FEAT_MBYTE | |
1138 int l; | |
1139 #endif | |
1140 | |
410 | 1141 cpo_lit = vim_strchr(p_cpo, CPO_LITERAL) != NULL; |
1142 cpo_bsl = vim_strchr(p_cpo, CPO_BACKSL) != NULL; | |
167 | 1143 |
1144 if (*p == '^') /* Complement of range. */ | |
1145 ++p; | |
1146 if (*p == ']' || *p == '-') | |
1147 ++p; | |
1148 while (*p != NUL && *p != ']') | |
1149 { | |
1150 #ifdef FEAT_MBYTE | |
474 | 1151 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
167 | 1152 p += l; |
1153 else | |
1154 #endif | |
1155 if (*p == '-') | |
1156 { | |
1157 ++p; | |
1158 if (*p != ']' && *p != NUL) | |
1159 mb_ptr_adv(p); | |
1160 } | |
1161 else if (*p == '\\' | |
1162 && !cpo_bsl | |
1163 && (vim_strchr(REGEXP_INRANGE, p[1]) != NULL | |
1164 || (!cpo_lit && vim_strchr(REGEXP_ABBR, p[1]) != NULL))) | |
1165 p += 2; | |
1166 else if (*p == '[') | |
1167 { | |
1168 if (get_char_class(&p) == CLASS_NONE | |
1169 && get_equi_class(&p) == 0 | |
1170 && get_coll_element(&p) == 0) | |
1171 ++p; /* It was not a class name */ | |
1172 } | |
1173 else | |
1174 ++p; | |
1175 } | |
1176 | |
1177 return p; | |
1178 } | |
1179 | |
1180 /* | |
7 | 1181 * Skip past regular expression. |
153 | 1182 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc). |
7 | 1183 * Take care of characters with a backslash in front of it. |
1184 * Skip strings inside [ and ]. | |
1185 * When "newp" is not NULL and "dirc" is '?', make an allocated copy of the | |
1186 * expression and change "\?" to "?". If "*newp" is not NULL the expression | |
1187 * is changed in-place. | |
1188 */ | |
1189 char_u * | |
1190 skip_regexp(startp, dirc, magic, newp) | |
1191 char_u *startp; | |
1192 int dirc; | |
1193 int magic; | |
1194 char_u **newp; | |
1195 { | |
1196 int mymagic; | |
1197 char_u *p = startp; | |
1198 | |
1199 if (magic) | |
1200 mymagic = MAGIC_ON; | |
1201 else | |
1202 mymagic = MAGIC_OFF; | |
1203 | |
39 | 1204 for (; p[0] != NUL; mb_ptr_adv(p)) |
7 | 1205 { |
1206 if (p[0] == dirc) /* found end of regexp */ | |
1207 break; | |
1208 if ((p[0] == '[' && mymagic >= MAGIC_ON) | |
1209 || (p[0] == '\\' && p[1] == '[' && mymagic <= MAGIC_OFF)) | |
1210 { | |
1211 p = skip_anyof(p + 1); | |
1212 if (p[0] == NUL) | |
1213 break; | |
1214 } | |
1215 else if (p[0] == '\\' && p[1] != NUL) | |
1216 { | |
1217 if (dirc == '?' && newp != NULL && p[1] == '?') | |
1218 { | |
1219 /* change "\?" to "?", make a copy first. */ | |
1220 if (*newp == NULL) | |
1221 { | |
1222 *newp = vim_strsave(startp); | |
1223 if (*newp != NULL) | |
1224 p = *newp + (p - startp); | |
1225 } | |
1226 if (*newp != NULL) | |
1621 | 1227 STRMOVE(p, p + 1); |
7 | 1228 else |
1229 ++p; | |
1230 } | |
1231 else | |
1232 ++p; /* skip next character */ | |
1233 if (*p == 'v') | |
1234 mymagic = MAGIC_ALL; | |
1235 else if (*p == 'V') | |
1236 mymagic = MAGIC_NONE; | |
1237 } | |
1238 } | |
1239 return p; | |
1240 } | |
1241 | |
1242 /* | |
41 | 1243 * vim_regcomp() - compile a regular expression into internal code |
1244 * Returns the program in allocated space. Returns NULL for an error. | |
7 | 1245 * |
1246 * We can't allocate space until we know how big the compiled form will be, | |
1247 * but we can't compile it (and thus know how big it is) until we've got a | |
1248 * place to put the code. So we cheat: we compile it twice, once with code | |
1249 * generation turned off and size counting turned on, and once "for real". | |
1250 * This also means that we don't allocate space until we are sure that the | |
1251 * thing really will compile successfully, and we never have to move the | |
1252 * code and thus invalidate pointers into it. (Note that it has to be in | |
1253 * one piece because vim_free() must be able to free it all.) | |
1254 * | |
1255 * Whether upper/lower case is to be ignored is decided when executing the | |
1256 * program, it does not matter here. | |
1257 * | |
1258 * Beware that the optimization-preparation code in here knows about some | |
1259 * of the structure of the compiled regexp. | |
1260 * "re_flags": RE_MAGIC and/or RE_STRING. | |
1261 */ | |
1262 regprog_T * | |
1263 vim_regcomp(expr, re_flags) | |
1264 char_u *expr; | |
1265 int re_flags; | |
1266 { | |
1267 regprog_T *r; | |
1268 char_u *scan; | |
1269 char_u *longest; | |
1270 int len; | |
1271 int flags; | |
1272 | |
1273 if (expr == NULL) | |
1274 EMSG_RET_NULL(_(e_null)); | |
1275 | |
1276 init_class_tab(); | |
1277 | |
1278 /* | |
1279 * First pass: determine size, legality. | |
1280 */ | |
1281 regcomp_start(expr, re_flags); | |
1282 regcode = JUST_CALC_SIZE; | |
1283 regc(REGMAGIC); | |
1284 if (reg(REG_NOPAREN, &flags) == NULL) | |
1285 return NULL; | |
1286 | |
1287 /* Small enough for pointer-storage convention? */ | |
1288 #ifdef SMALL_MALLOC /* 16 bit storage allocation */ | |
1289 if (regsize >= 65536L - 256L) | |
1290 EMSG_RET_NULL(_("E339: Pattern too long")); | |
1291 #endif | |
1292 | |
1293 /* Allocate space. */ | |
1294 r = (regprog_T *)lalloc(sizeof(regprog_T) + regsize, TRUE); | |
1295 if (r == NULL) | |
1296 return NULL; | |
1297 | |
1298 /* | |
1299 * Second pass: emit code. | |
1300 */ | |
1301 regcomp_start(expr, re_flags); | |
1302 regcode = r->program; | |
1303 regc(REGMAGIC); | |
2010 | 1304 if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong) |
7 | 1305 { |
1306 vim_free(r); | |
2010 | 1307 if (reg_toolong) |
1308 EMSG_RET_NULL(_("E339: Pattern too long")); | |
7 | 1309 return NULL; |
1310 } | |
1311 | |
1312 /* Dig out information for optimizations. */ | |
1313 r->regstart = NUL; /* Worst-case defaults. */ | |
1314 r->reganch = 0; | |
1315 r->regmust = NULL; | |
1316 r->regmlen = 0; | |
1317 r->regflags = regflags; | |
1318 if (flags & HASNL) | |
1319 r->regflags |= RF_HASNL; | |
1320 if (flags & HASLOOKBH) | |
1321 r->regflags |= RF_LOOKBH; | |
1322 #ifdef FEAT_SYN_HL | |
1323 /* Remember whether this pattern has any \z specials in it. */ | |
1324 r->reghasz = re_has_z; | |
1325 #endif | |
1326 scan = r->program + 1; /* First BRANCH. */ | |
1327 if (OP(regnext(scan)) == END) /* Only one top-level choice. */ | |
1328 { | |
1329 scan = OPERAND(scan); | |
1330 | |
1331 /* Starting-point info. */ | |
1332 if (OP(scan) == BOL || OP(scan) == RE_BOF) | |
1333 { | |
1334 r->reganch++; | |
1335 scan = regnext(scan); | |
1336 } | |
1337 | |
1338 if (OP(scan) == EXACTLY) | |
1339 { | |
1340 #ifdef FEAT_MBYTE | |
1341 if (has_mbyte) | |
1342 r->regstart = (*mb_ptr2char)(OPERAND(scan)); | |
1343 else | |
1344 #endif | |
1345 r->regstart = *OPERAND(scan); | |
1346 } | |
1347 else if ((OP(scan) == BOW | |
1348 || OP(scan) == EOW | |
1349 || OP(scan) == NOTHING | |
1350 || OP(scan) == MOPEN + 0 || OP(scan) == NOPEN | |
1351 || OP(scan) == MCLOSE + 0 || OP(scan) == NCLOSE) | |
1352 && OP(regnext(scan)) == EXACTLY) | |
1353 { | |
1354 #ifdef FEAT_MBYTE | |
1355 if (has_mbyte) | |
1356 r->regstart = (*mb_ptr2char)(OPERAND(regnext(scan))); | |
1357 else | |
1358 #endif | |
1359 r->regstart = *OPERAND(regnext(scan)); | |
1360 } | |
1361 | |
1362 /* | |
1363 * If there's something expensive in the r.e., find the longest | |
1364 * literal string that must appear and make it the regmust. Resolve | |
1365 * ties in favor of later strings, since the regstart check works | |
1366 * with the beginning of the r.e. and avoiding duplication | |
1367 * strengthens checking. Not a strong reason, but sufficient in the | |
1368 * absence of others. | |
1369 */ | |
1370 /* | |
1371 * When the r.e. starts with BOW, it is faster to look for a regmust | |
1372 * first. Used a lot for "#" and "*" commands. (Added by mool). | |
1373 */ | |
1374 if ((flags & SPSTART || OP(scan) == BOW || OP(scan) == EOW) | |
1375 && !(flags & HASNL)) | |
1376 { | |
1377 longest = NULL; | |
1378 len = 0; | |
1379 for (; scan != NULL; scan = regnext(scan)) | |
1380 if (OP(scan) == EXACTLY && STRLEN(OPERAND(scan)) >= (size_t)len) | |
1381 { | |
1382 longest = OPERAND(scan); | |
1383 len = (int)STRLEN(OPERAND(scan)); | |
1384 } | |
1385 r->regmust = longest; | |
1386 r->regmlen = len; | |
1387 } | |
1388 } | |
1389 #ifdef DEBUG | |
1390 regdump(expr, r); | |
1391 #endif | |
1392 return r; | |
1393 } | |
1394 | |
1395 /* | |
1396 * Setup to parse the regexp. Used once to get the length and once to do it. | |
1397 */ | |
1398 static void | |
1399 regcomp_start(expr, re_flags) | |
1400 char_u *expr; | |
1401 int re_flags; /* see vim_regcomp() */ | |
1402 { | |
1403 initchr(expr); | |
1404 if (re_flags & RE_MAGIC) | |
1405 reg_magic = MAGIC_ON; | |
1406 else | |
1407 reg_magic = MAGIC_OFF; | |
1408 reg_string = (re_flags & RE_STRING); | |
481 | 1409 reg_strict = (re_flags & RE_STRICT); |
7 | 1410 |
1411 num_complex_braces = 0; | |
1412 regnpar = 1; | |
1413 vim_memset(had_endbrace, 0, sizeof(had_endbrace)); | |
1414 #ifdef FEAT_SYN_HL | |
1415 regnzpar = 1; | |
1416 re_has_z = 0; | |
1417 #endif | |
1418 regsize = 0L; | |
2010 | 1419 reg_toolong = FALSE; |
7 | 1420 regflags = 0; |
1421 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1422 had_eol = FALSE; | |
1423 #endif | |
1424 } | |
1425 | |
1426 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1427 /* | |
1428 * Check if during the previous call to vim_regcomp the EOL item "$" has been | |
1429 * found. This is messy, but it works fine. | |
1430 */ | |
1431 int | |
1432 vim_regcomp_had_eol() | |
1433 { | |
1434 return had_eol; | |
1435 } | |
1436 #endif | |
1437 | |
1438 /* | |
1439 * reg - regular expression, i.e. main body or parenthesized thing | |
1440 * | |
1441 * Caller must absorb opening parenthesis. | |
1442 * | |
1443 * Combining parenthesis handling with the base level of regular expression | |
1444 * is a trifle forced, but the need to tie the tails of the branches to what | |
1445 * follows makes it hard to avoid. | |
1446 */ | |
1447 static char_u * | |
1448 reg(paren, flagp) | |
1449 int paren; /* REG_NOPAREN, REG_PAREN, REG_NPAREN or REG_ZPAREN */ | |
1450 int *flagp; | |
1451 { | |
1452 char_u *ret; | |
1453 char_u *br; | |
1454 char_u *ender; | |
1455 int parno = 0; | |
1456 int flags; | |
1457 | |
1458 *flagp = HASWIDTH; /* Tentatively. */ | |
1459 | |
1460 #ifdef FEAT_SYN_HL | |
1461 if (paren == REG_ZPAREN) | |
1462 { | |
1463 /* Make a ZOPEN node. */ | |
1464 if (regnzpar >= NSUBEXP) | |
1465 EMSG_RET_NULL(_("E50: Too many \\z(")); | |
1466 parno = regnzpar; | |
1467 regnzpar++; | |
1468 ret = regnode(ZOPEN + parno); | |
1469 } | |
1470 else | |
1471 #endif | |
1472 if (paren == REG_PAREN) | |
1473 { | |
1474 /* Make a MOPEN node. */ | |
1475 if (regnpar >= NSUBEXP) | |
1476 EMSG_M_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL); | |
1477 parno = regnpar; | |
1478 ++regnpar; | |
1479 ret = regnode(MOPEN + parno); | |
1480 } | |
1481 else if (paren == REG_NPAREN) | |
1482 { | |
1483 /* Make a NOPEN node. */ | |
1484 ret = regnode(NOPEN); | |
1485 } | |
1486 else | |
1487 ret = NULL; | |
1488 | |
1489 /* Pick up the branches, linking them together. */ | |
1490 br = regbranch(&flags); | |
1491 if (br == NULL) | |
1492 return NULL; | |
1493 if (ret != NULL) | |
1494 regtail(ret, br); /* [MZ]OPEN -> first. */ | |
1495 else | |
1496 ret = br; | |
1497 /* If one of the branches can be zero-width, the whole thing can. | |
1498 * If one of the branches has * at start or matches a line-break, the | |
1499 * whole thing can. */ | |
1500 if (!(flags & HASWIDTH)) | |
1501 *flagp &= ~HASWIDTH; | |
1502 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1503 while (peekchr() == Magic('|')) | |
1504 { | |
1505 skipchr(); | |
1506 br = regbranch(&flags); | |
2010 | 1507 if (br == NULL || reg_toolong) |
7 | 1508 return NULL; |
1509 regtail(ret, br); /* BRANCH -> BRANCH. */ | |
1510 if (!(flags & HASWIDTH)) | |
1511 *flagp &= ~HASWIDTH; | |
1512 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1513 } | |
1514 | |
1515 /* Make a closing node, and hook it on the end. */ | |
1516 ender = regnode( | |
1517 #ifdef FEAT_SYN_HL | |
1518 paren == REG_ZPAREN ? ZCLOSE + parno : | |
1519 #endif | |
1520 paren == REG_PAREN ? MCLOSE + parno : | |
1521 paren == REG_NPAREN ? NCLOSE : END); | |
1522 regtail(ret, ender); | |
1523 | |
1524 /* Hook the tails of the branches to the closing node. */ | |
1525 for (br = ret; br != NULL; br = regnext(br)) | |
1526 regoptail(br, ender); | |
1527 | |
1528 /* Check for proper termination. */ | |
1529 if (paren != REG_NOPAREN && getchr() != Magic(')')) | |
1530 { | |
1531 #ifdef FEAT_SYN_HL | |
1532 if (paren == REG_ZPAREN) | |
308 | 1533 EMSG_RET_NULL(_("E52: Unmatched \\z(")); |
7 | 1534 else |
1535 #endif | |
1536 if (paren == REG_NPAREN) | |
308 | 1537 EMSG_M_RET_NULL(_("E53: Unmatched %s%%("), reg_magic == MAGIC_ALL); |
7 | 1538 else |
308 | 1539 EMSG_M_RET_NULL(_("E54: Unmatched %s("), reg_magic == MAGIC_ALL); |
7 | 1540 } |
1541 else if (paren == REG_NOPAREN && peekchr() != NUL) | |
1542 { | |
1543 if (curchr == Magic(')')) | |
308 | 1544 EMSG_M_RET_NULL(_("E55: Unmatched %s)"), reg_magic == MAGIC_ALL); |
7 | 1545 else |
308 | 1546 EMSG_RET_NULL(_(e_trailing)); /* "Can't happen". */ |
7 | 1547 /* NOTREACHED */ |
1548 } | |
1549 /* | |
1550 * Here we set the flag allowing back references to this set of | |
1551 * parentheses. | |
1552 */ | |
1553 if (paren == REG_PAREN) | |
1554 had_endbrace[parno] = TRUE; /* have seen the close paren */ | |
1555 return ret; | |
1556 } | |
1557 | |
1558 /* | |
1468 | 1559 * Handle one alternative of an | operator. |
7 | 1560 * Implements the & operator. |
1561 */ | |
1562 static char_u * | |
1563 regbranch(flagp) | |
1564 int *flagp; | |
1565 { | |
1566 char_u *ret; | |
1567 char_u *chain = NULL; | |
1568 char_u *latest; | |
1569 int flags; | |
1570 | |
1571 *flagp = WORST | HASNL; /* Tentatively. */ | |
1572 | |
1573 ret = regnode(BRANCH); | |
1574 for (;;) | |
1575 { | |
1576 latest = regconcat(&flags); | |
1577 if (latest == NULL) | |
1578 return NULL; | |
1579 /* If one of the branches has width, the whole thing has. If one of | |
1580 * the branches anchors at start-of-line, the whole thing does. | |
1581 * If one of the branches uses look-behind, the whole thing does. */ | |
1582 *flagp |= flags & (HASWIDTH | SPSTART | HASLOOKBH); | |
1583 /* If one of the branches doesn't match a line-break, the whole thing | |
1584 * doesn't. */ | |
1585 *flagp &= ~HASNL | (flags & HASNL); | |
1586 if (chain != NULL) | |
1587 regtail(chain, latest); | |
1588 if (peekchr() != Magic('&')) | |
1589 break; | |
1590 skipchr(); | |
1591 regtail(latest, regnode(END)); /* operand ends */ | |
2010 | 1592 if (reg_toolong) |
1593 break; | |
7 | 1594 reginsert(MATCH, latest); |
1595 chain = latest; | |
1596 } | |
1597 | |
1598 return ret; | |
1599 } | |
1600 | |
1601 /* | |
1468 | 1602 * Handle one alternative of an | or & operator. |
7 | 1603 * Implements the concatenation operator. |
1604 */ | |
1605 static char_u * | |
1606 regconcat(flagp) | |
1607 int *flagp; | |
1608 { | |
1609 char_u *first = NULL; | |
1610 char_u *chain = NULL; | |
1611 char_u *latest; | |
1612 int flags; | |
1613 int cont = TRUE; | |
1614 | |
1615 *flagp = WORST; /* Tentatively. */ | |
1616 | |
1617 while (cont) | |
1618 { | |
1619 switch (peekchr()) | |
1620 { | |
1621 case NUL: | |
1622 case Magic('|'): | |
1623 case Magic('&'): | |
1624 case Magic(')'): | |
1625 cont = FALSE; | |
1626 break; | |
1627 case Magic('Z'): | |
1628 #ifdef FEAT_MBYTE | |
1629 regflags |= RF_ICOMBINE; | |
1630 #endif | |
1631 skipchr_keepstart(); | |
1632 break; | |
1633 case Magic('c'): | |
1634 regflags |= RF_ICASE; | |
1635 skipchr_keepstart(); | |
1636 break; | |
1637 case Magic('C'): | |
1638 regflags |= RF_NOICASE; | |
1639 skipchr_keepstart(); | |
1640 break; | |
1641 case Magic('v'): | |
1642 reg_magic = MAGIC_ALL; | |
1643 skipchr_keepstart(); | |
1644 curchr = -1; | |
1645 break; | |
1646 case Magic('m'): | |
1647 reg_magic = MAGIC_ON; | |
1648 skipchr_keepstart(); | |
1649 curchr = -1; | |
1650 break; | |
1651 case Magic('M'): | |
1652 reg_magic = MAGIC_OFF; | |
1653 skipchr_keepstart(); | |
1654 curchr = -1; | |
1655 break; | |
1656 case Magic('V'): | |
1657 reg_magic = MAGIC_NONE; | |
1658 skipchr_keepstart(); | |
1659 curchr = -1; | |
1660 break; | |
1661 default: | |
1662 latest = regpiece(&flags); | |
2010 | 1663 if (latest == NULL || reg_toolong) |
7 | 1664 return NULL; |
1665 *flagp |= flags & (HASWIDTH | HASNL | HASLOOKBH); | |
1666 if (chain == NULL) /* First piece. */ | |
1667 *flagp |= flags & SPSTART; | |
1668 else | |
1669 regtail(chain, latest); | |
1670 chain = latest; | |
1671 if (first == NULL) | |
1672 first = latest; | |
1673 break; | |
1674 } | |
1675 } | |
1676 if (first == NULL) /* Loop ran zero times. */ | |
1677 first = regnode(NOTHING); | |
1678 return first; | |
1679 } | |
1680 | |
1681 /* | |
1682 * regpiece - something followed by possible [*+=] | |
1683 * | |
1684 * Note that the branching code sequences used for = and the general cases | |
1685 * of * and + are somewhat optimized: they use the same NOTHING node as | |
1686 * both the endmarker for their branch list and the body of the last branch. | |
1687 * It might seem that this node could be dispensed with entirely, but the | |
1688 * endmarker role is not redundant. | |
1689 */ | |
1690 static char_u * | |
1691 regpiece(flagp) | |
1692 int *flagp; | |
1693 { | |
1694 char_u *ret; | |
1695 int op; | |
1696 char_u *next; | |
1697 int flags; | |
1698 long minval; | |
1699 long maxval; | |
1700 | |
1701 ret = regatom(&flags); | |
1702 if (ret == NULL) | |
1703 return NULL; | |
1704 | |
1705 op = peekchr(); | |
1706 if (re_multi_type(op) == NOT_MULTI) | |
1707 { | |
1708 *flagp = flags; | |
1709 return ret; | |
1710 } | |
1711 /* default flags */ | |
1712 *flagp = (WORST | SPSTART | (flags & (HASNL | HASLOOKBH))); | |
1713 | |
1714 skipchr(); | |
1715 switch (op) | |
1716 { | |
1717 case Magic('*'): | |
1718 if (flags & SIMPLE) | |
1719 reginsert(STAR, ret); | |
1720 else | |
1721 { | |
1722 /* Emit x* as (x&|), where & means "self". */ | |
1723 reginsert(BRANCH, ret); /* Either x */ | |
1724 regoptail(ret, regnode(BACK)); /* and loop */ | |
1725 regoptail(ret, ret); /* back */ | |
1726 regtail(ret, regnode(BRANCH)); /* or */ | |
1727 regtail(ret, regnode(NOTHING)); /* null. */ | |
1728 } | |
1729 break; | |
1730 | |
1731 case Magic('+'): | |
1732 if (flags & SIMPLE) | |
1733 reginsert(PLUS, ret); | |
1734 else | |
1735 { | |
1736 /* Emit x+ as x(&|), where & means "self". */ | |
1737 next = regnode(BRANCH); /* Either */ | |
1738 regtail(ret, next); | |
233 | 1739 regtail(regnode(BACK), ret); /* loop back */ |
7 | 1740 regtail(next, regnode(BRANCH)); /* or */ |
1741 regtail(ret, regnode(NOTHING)); /* null. */ | |
1742 } | |
1743 *flagp = (WORST | HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1744 break; | |
1745 | |
1746 case Magic('@'): | |
1747 { | |
1748 int lop = END; | |
1749 | |
1750 switch (no_Magic(getchr())) | |
1751 { | |
1752 case '=': lop = MATCH; break; /* \@= */ | |
1753 case '!': lop = NOMATCH; break; /* \@! */ | |
1754 case '>': lop = SUBPAT; break; /* \@> */ | |
1755 case '<': switch (no_Magic(getchr())) | |
1756 { | |
1757 case '=': lop = BEHIND; break; /* \@<= */ | |
1758 case '!': lop = NOBEHIND; break; /* \@<! */ | |
1759 } | |
1760 } | |
1761 if (lop == END) | |
1762 EMSG_M_RET_NULL(_("E59: invalid character after %s@"), | |
1763 reg_magic == MAGIC_ALL); | |
1764 /* Look behind must match with behind_pos. */ | |
1765 if (lop == BEHIND || lop == NOBEHIND) | |
1766 { | |
1767 regtail(ret, regnode(BHPOS)); | |
1768 *flagp |= HASLOOKBH; | |
1769 } | |
1770 regtail(ret, regnode(END)); /* operand ends */ | |
1771 reginsert(lop, ret); | |
1772 break; | |
1773 } | |
1774 | |
1775 case Magic('?'): | |
1776 case Magic('='): | |
1777 /* Emit x= as (x|) */ | |
1778 reginsert(BRANCH, ret); /* Either x */ | |
1779 regtail(ret, regnode(BRANCH)); /* or */ | |
1780 next = regnode(NOTHING); /* null. */ | |
1781 regtail(ret, next); | |
1782 regoptail(ret, next); | |
1783 break; | |
1784 | |
1785 case Magic('{'): | |
1786 if (!read_limits(&minval, &maxval)) | |
1787 return NULL; | |
1788 if (flags & SIMPLE) | |
1789 { | |
1790 reginsert(BRACE_SIMPLE, ret); | |
1791 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1792 } | |
1793 else | |
1794 { | |
1795 if (num_complex_braces >= 10) | |
1796 EMSG_M_RET_NULL(_("E60: Too many complex %s{...}s"), | |
1797 reg_magic == MAGIC_ALL); | |
1798 reginsert(BRACE_COMPLEX + num_complex_braces, ret); | |
1799 regoptail(ret, regnode(BACK)); | |
1800 regoptail(ret, ret); | |
1801 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1802 ++num_complex_braces; | |
1803 } | |
1804 if (minval > 0 && maxval > 0) | |
1805 *flagp = (HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1806 break; | |
1807 } | |
1808 if (re_multi_type(peekchr()) != NOT_MULTI) | |
1809 { | |
1810 /* Can't have a multi follow a multi. */ | |
1811 if (peekchr() == Magic('*')) | |
1812 sprintf((char *)IObuff, _("E61: Nested %s*"), | |
1813 reg_magic >= MAGIC_ON ? "" : "\\"); | |
1814 else | |
1815 sprintf((char *)IObuff, _("E62: Nested %s%c"), | |
1816 reg_magic == MAGIC_ALL ? "" : "\\", no_Magic(peekchr())); | |
1817 EMSG_RET_NULL(IObuff); | |
1818 } | |
1819 | |
1820 return ret; | |
1821 } | |
1822 | |
1823 /* | |
1824 * regatom - the lowest level | |
1825 * | |
1826 * Optimization: gobbles an entire sequence of ordinary characters so that | |
1827 * it can turn them into a single node, which is smaller to store and | |
1828 * faster to run. Don't do this when one_exactly is set. | |
1829 */ | |
1830 static char_u * | |
1831 regatom(flagp) | |
1832 int *flagp; | |
1833 { | |
1834 char_u *ret; | |
1835 int flags; | |
1836 int cpo_lit; /* 'cpoptions' contains 'l' flag */ | |
167 | 1837 int cpo_bsl; /* 'cpoptions' contains '\' flag */ |
7 | 1838 int c; |
1839 static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU"; | |
1840 static int classcodes[] = {ANY, IDENT, SIDENT, KWORD, SKWORD, | |
1841 FNAME, SFNAME, PRINT, SPRINT, | |
1842 WHITE, NWHITE, DIGIT, NDIGIT, | |
1843 HEX, NHEX, OCTAL, NOCTAL, | |
1844 WORD, NWORD, HEAD, NHEAD, | |
1845 ALPHA, NALPHA, LOWER, NLOWER, | |
1846 UPPER, NUPPER | |
1847 }; | |
1848 char_u *p; | |
1849 int extra = 0; | |
1850 | |
1851 *flagp = WORST; /* Tentatively. */ | |
410 | 1852 cpo_lit = vim_strchr(p_cpo, CPO_LITERAL) != NULL; |
1853 cpo_bsl = vim_strchr(p_cpo, CPO_BACKSL) != NULL; | |
7 | 1854 |
1855 c = getchr(); | |
1856 switch (c) | |
1857 { | |
1858 case Magic('^'): | |
1859 ret = regnode(BOL); | |
1860 break; | |
1861 | |
1862 case Magic('$'): | |
1863 ret = regnode(EOL); | |
1864 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1865 had_eol = TRUE; | |
1866 #endif | |
1867 break; | |
1868 | |
1869 case Magic('<'): | |
1870 ret = regnode(BOW); | |
1871 break; | |
1872 | |
1873 case Magic('>'): | |
1874 ret = regnode(EOW); | |
1875 break; | |
1876 | |
1877 case Magic('_'): | |
1878 c = no_Magic(getchr()); | |
1879 if (c == '^') /* "\_^" is start-of-line */ | |
1880 { | |
1881 ret = regnode(BOL); | |
1882 break; | |
1883 } | |
1884 if (c == '$') /* "\_$" is end-of-line */ | |
1885 { | |
1886 ret = regnode(EOL); | |
1887 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1888 had_eol = TRUE; | |
1889 #endif | |
1890 break; | |
1891 } | |
1892 | |
1893 extra = ADD_NL; | |
1894 *flagp |= HASNL; | |
1895 | |
1896 /* "\_[" is character range plus newline */ | |
1897 if (c == '[') | |
1898 goto collection; | |
1899 | |
1900 /* "\_x" is character class plus newline */ | |
1901 /*FALLTHROUGH*/ | |
1902 | |
1903 /* | |
1904 * Character classes. | |
1905 */ | |
1906 case Magic('.'): | |
1907 case Magic('i'): | |
1908 case Magic('I'): | |
1909 case Magic('k'): | |
1910 case Magic('K'): | |
1911 case Magic('f'): | |
1912 case Magic('F'): | |
1913 case Magic('p'): | |
1914 case Magic('P'): | |
1915 case Magic('s'): | |
1916 case Magic('S'): | |
1917 case Magic('d'): | |
1918 case Magic('D'): | |
1919 case Magic('x'): | |
1920 case Magic('X'): | |
1921 case Magic('o'): | |
1922 case Magic('O'): | |
1923 case Magic('w'): | |
1924 case Magic('W'): | |
1925 case Magic('h'): | |
1926 case Magic('H'): | |
1927 case Magic('a'): | |
1928 case Magic('A'): | |
1929 case Magic('l'): | |
1930 case Magic('L'): | |
1931 case Magic('u'): | |
1932 case Magic('U'): | |
1933 p = vim_strchr(classchars, no_Magic(c)); | |
1934 if (p == NULL) | |
1935 EMSG_RET_NULL(_("E63: invalid use of \\_")); | |
714 | 1936 #ifdef FEAT_MBYTE |
1937 /* When '.' is followed by a composing char ignore the dot, so that | |
1938 * the composing char is matched here. */ | |
1939 if (enc_utf8 && c == Magic('.') && utf_iscomposing(peekchr())) | |
1940 { | |
1941 c = getchr(); | |
1942 goto do_multibyte; | |
1943 } | |
1944 #endif | |
7 | 1945 ret = regnode(classcodes[p - classchars] + extra); |
1946 *flagp |= HASWIDTH | SIMPLE; | |
1947 break; | |
1948 | |
1949 case Magic('n'): | |
1950 if (reg_string) | |
1951 { | |
1952 /* In a string "\n" matches a newline character. */ | |
1953 ret = regnode(EXACTLY); | |
1954 regc(NL); | |
1955 regc(NUL); | |
1956 *flagp |= HASWIDTH | SIMPLE; | |
1957 } | |
1958 else | |
1959 { | |
1960 /* In buffer text "\n" matches the end of a line. */ | |
1961 ret = regnode(NEWL); | |
1962 *flagp |= HASWIDTH | HASNL; | |
1963 } | |
1964 break; | |
1965 | |
1966 case Magic('('): | |
1967 if (one_exactly) | |
1968 EMSG_ONE_RET_NULL; | |
1969 ret = reg(REG_PAREN, &flags); | |
1970 if (ret == NULL) | |
1971 return NULL; | |
1972 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
1973 break; | |
1974 | |
1975 case NUL: | |
1976 case Magic('|'): | |
1977 case Magic('&'): | |
1978 case Magic(')'): | |
1468 | 1979 if (one_exactly) |
1980 EMSG_ONE_RET_NULL; | |
7 | 1981 EMSG_RET_NULL(_(e_internal)); /* Supposed to be caught earlier. */ |
1982 /* NOTREACHED */ | |
1983 | |
1984 case Magic('='): | |
1985 case Magic('?'): | |
1986 case Magic('+'): | |
1987 case Magic('@'): | |
1988 case Magic('{'): | |
1989 case Magic('*'): | |
1990 c = no_Magic(c); | |
1991 sprintf((char *)IObuff, _("E64: %s%c follows nothing"), | |
1992 (c == '*' ? reg_magic >= MAGIC_ON : reg_magic == MAGIC_ALL) | |
1993 ? "" : "\\", c); | |
1994 EMSG_RET_NULL(IObuff); | |
1995 /* NOTREACHED */ | |
1996 | |
1997 case Magic('~'): /* previous substitute pattern */ | |
359 | 1998 if (reg_prev_sub != NULL) |
7 | 1999 { |
2000 char_u *lp; | |
2001 | |
2002 ret = regnode(EXACTLY); | |
2003 lp = reg_prev_sub; | |
2004 while (*lp != NUL) | |
2005 regc(*lp++); | |
2006 regc(NUL); | |
2007 if (*reg_prev_sub != NUL) | |
2008 { | |
2009 *flagp |= HASWIDTH; | |
2010 if ((lp - reg_prev_sub) == 1) | |
2011 *flagp |= SIMPLE; | |
2012 } | |
2013 } | |
2014 else | |
2015 EMSG_RET_NULL(_(e_nopresub)); | |
2016 break; | |
2017 | |
2018 case Magic('1'): | |
2019 case Magic('2'): | |
2020 case Magic('3'): | |
2021 case Magic('4'): | |
2022 case Magic('5'): | |
2023 case Magic('6'): | |
2024 case Magic('7'): | |
2025 case Magic('8'): | |
2026 case Magic('9'): | |
2027 { | |
2028 int refnum; | |
2029 | |
2030 refnum = c - Magic('0'); | |
2031 /* | |
2032 * Check if the back reference is legal. We must have seen the | |
2033 * close brace. | |
2034 * TODO: Should also check that we don't refer to something | |
2035 * that is repeated (+*=): what instance of the repetition | |
2036 * should we match? | |
2037 */ | |
2038 if (!had_endbrace[refnum]) | |
2039 { | |
2040 /* Trick: check if "@<=" or "@<!" follows, in which case | |
2041 * the \1 can appear before the referenced match. */ | |
2042 for (p = regparse; *p != NUL; ++p) | |
2043 if (p[0] == '@' && p[1] == '<' | |
2044 && (p[2] == '!' || p[2] == '=')) | |
2045 break; | |
2046 if (*p == NUL) | |
2047 EMSG_RET_NULL(_("E65: Illegal back reference")); | |
2048 } | |
2049 ret = regnode(BACKREF + refnum); | |
2050 } | |
2051 break; | |
2052 | |
2053 case Magic('z'): | |
2054 { | |
2055 c = no_Magic(getchr()); | |
2056 switch (c) | |
2057 { | |
741 | 2058 #ifdef FEAT_SYN_HL |
7 | 2059 case '(': if (reg_do_extmatch != REX_SET) |
2060 EMSG_RET_NULL(_("E66: \\z( not allowed here")); | |
2061 if (one_exactly) | |
2062 EMSG_ONE_RET_NULL; | |
2063 ret = reg(REG_ZPAREN, &flags); | |
2064 if (ret == NULL) | |
2065 return NULL; | |
2066 *flagp |= flags & (HASWIDTH|SPSTART|HASNL|HASLOOKBH); | |
2067 re_has_z = REX_SET; | |
2068 break; | |
2069 | |
2070 case '1': | |
2071 case '2': | |
2072 case '3': | |
2073 case '4': | |
2074 case '5': | |
2075 case '6': | |
2076 case '7': | |
2077 case '8': | |
2078 case '9': if (reg_do_extmatch != REX_USE) | |
2079 EMSG_RET_NULL(_("E67: \\z1 et al. not allowed here")); | |
2080 ret = regnode(ZREF + c - '0'); | |
2081 re_has_z = REX_USE; | |
2082 break; | |
741 | 2083 #endif |
7 | 2084 |
2085 case 's': ret = regnode(MOPEN + 0); | |
2086 break; | |
2087 | |
2088 case 'e': ret = regnode(MCLOSE + 0); | |
2089 break; | |
2090 | |
2091 default: EMSG_RET_NULL(_("E68: Invalid character after \\z")); | |
2092 } | |
2093 } | |
2094 break; | |
2095 | |
2096 case Magic('%'): | |
2097 { | |
2098 c = no_Magic(getchr()); | |
2099 switch (c) | |
2100 { | |
2101 /* () without a back reference */ | |
2102 case '(': | |
2103 if (one_exactly) | |
2104 EMSG_ONE_RET_NULL; | |
2105 ret = reg(REG_NPAREN, &flags); | |
2106 if (ret == NULL) | |
2107 return NULL; | |
2108 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
2109 break; | |
2110 | |
2111 /* Catch \%^ and \%$ regardless of where they appear in the | |
2112 * pattern -- regardless of whether or not it makes sense. */ | |
2113 case '^': | |
2114 ret = regnode(RE_BOF); | |
2115 break; | |
2116 | |
2117 case '$': | |
2118 ret = regnode(RE_EOF); | |
2119 break; | |
2120 | |
2121 case '#': | |
2122 ret = regnode(CURSOR); | |
2123 break; | |
2124 | |
639 | 2125 case 'V': |
2126 ret = regnode(RE_VISUAL); | |
2127 break; | |
2128 | |
7 | 2129 /* \%[abc]: Emit as a list of branches, all ending at the last |
2130 * branch which matches nothing. */ | |
2131 case '[': | |
2132 if (one_exactly) /* doesn't nest */ | |
2133 EMSG_ONE_RET_NULL; | |
2134 { | |
2135 char_u *lastbranch; | |
2136 char_u *lastnode = NULL; | |
2137 char_u *br; | |
2138 | |
2139 ret = NULL; | |
2140 while ((c = getchr()) != ']') | |
2141 { | |
2142 if (c == NUL) | |
2143 EMSG_M_RET_NULL(_("E69: Missing ] after %s%%["), | |
2144 reg_magic == MAGIC_ALL); | |
2145 br = regnode(BRANCH); | |
2146 if (ret == NULL) | |
2147 ret = br; | |
2148 else | |
2149 regtail(lastnode, br); | |
2150 | |
2151 ungetchr(); | |
2152 one_exactly = TRUE; | |
2153 lastnode = regatom(flagp); | |
2154 one_exactly = FALSE; | |
2155 if (lastnode == NULL) | |
2156 return NULL; | |
2157 } | |
2158 if (ret == NULL) | |
2159 EMSG_M_RET_NULL(_("E70: Empty %s%%[]"), | |
2160 reg_magic == MAGIC_ALL); | |
2161 lastbranch = regnode(BRANCH); | |
2162 br = regnode(NOTHING); | |
2163 if (ret != JUST_CALC_SIZE) | |
2164 { | |
2165 regtail(lastnode, br); | |
2166 regtail(lastbranch, br); | |
2167 /* connect all branches to the NOTHING | |
2168 * branch at the end */ | |
2169 for (br = ret; br != lastnode; ) | |
2170 { | |
2171 if (OP(br) == BRANCH) | |
2172 { | |
2173 regtail(br, lastbranch); | |
2174 br = OPERAND(br); | |
2175 } | |
2176 else | |
2177 br = regnext(br); | |
2178 } | |
2179 } | |
1701 | 2180 *flagp &= ~(HASWIDTH | SIMPLE); |
7 | 2181 break; |
2182 } | |
2183 | |
24 | 2184 case 'd': /* %d123 decimal */ |
2185 case 'o': /* %o123 octal */ | |
2186 case 'x': /* %xab hex 2 */ | |
2187 case 'u': /* %uabcd hex 4 */ | |
2188 case 'U': /* %U1234abcd hex 8 */ | |
2189 { | |
2190 int i; | |
2191 | |
2192 switch (c) | |
2193 { | |
2194 case 'd': i = getdecchrs(); break; | |
2195 case 'o': i = getoctchrs(); break; | |
2196 case 'x': i = gethexchrs(2); break; | |
2197 case 'u': i = gethexchrs(4); break; | |
2198 case 'U': i = gethexchrs(8); break; | |
2199 default: i = -1; break; | |
2200 } | |
2201 | |
2202 if (i < 0) | |
856 | 2203 EMSG_M_RET_NULL( |
24 | 2204 _("E678: Invalid character after %s%%[dxouU]"), |
2205 reg_magic == MAGIC_ALL); | |
714 | 2206 #ifdef FEAT_MBYTE |
2207 if (use_multibytecode(i)) | |
2208 ret = regnode(MULTIBYTECODE); | |
2209 else | |
2210 #endif | |
2211 ret = regnode(EXACTLY); | |
24 | 2212 if (i == 0) |
2213 regc(0x0a); | |
2214 else | |
2215 #ifdef FEAT_MBYTE | |
2216 regmbc(i); | |
2217 #else | |
2218 regc(i); | |
2219 #endif | |
2220 regc(NUL); | |
2221 *flagp |= HASWIDTH; | |
2222 break; | |
2223 } | |
2224 | |
7 | 2225 default: |
639 | 2226 if (VIM_ISDIGIT(c) || c == '<' || c == '>' |
2227 || c == '\'') | |
7 | 2228 { |
2229 long_u n = 0; | |
2230 int cmp; | |
2231 | |
2232 cmp = c; | |
2233 if (cmp == '<' || cmp == '>') | |
2234 c = getchr(); | |
2235 while (VIM_ISDIGIT(c)) | |
2236 { | |
2237 n = n * 10 + (c - '0'); | |
2238 c = getchr(); | |
2239 } | |
639 | 2240 if (c == '\'' && n == 0) |
2241 { | |
2242 /* "\%'m", "\%<'m" and "\%>'m": Mark */ | |
2243 c = getchr(); | |
2244 ret = regnode(RE_MARK); | |
2245 if (ret == JUST_CALC_SIZE) | |
2246 regsize += 2; | |
2247 else | |
2248 { | |
2249 *regcode++ = c; | |
2250 *regcode++ = cmp; | |
2251 } | |
2252 break; | |
2253 } | |
2254 else if (c == 'l' || c == 'c' || c == 'v') | |
7 | 2255 { |
2256 if (c == 'l') | |
2257 ret = regnode(RE_LNUM); | |
2258 else if (c == 'c') | |
2259 ret = regnode(RE_COL); | |
2260 else | |
2261 ret = regnode(RE_VCOL); | |
2262 if (ret == JUST_CALC_SIZE) | |
2263 regsize += 5; | |
2264 else | |
2265 { | |
2266 /* put the number and the optional | |
2267 * comparator after the opcode */ | |
2268 regcode = re_put_long(regcode, n); | |
2269 *regcode++ = cmp; | |
2270 } | |
2271 break; | |
2272 } | |
2273 } | |
2274 | |
2275 EMSG_M_RET_NULL(_("E71: Invalid character after %s%%"), | |
2276 reg_magic == MAGIC_ALL); | |
2277 } | |
2278 } | |
2279 break; | |
2280 | |
2281 case Magic('['): | |
2282 collection: | |
2283 { | |
2284 char_u *lp; | |
2285 | |
2286 /* | |
2287 * If there is no matching ']', we assume the '[' is a normal | |
2288 * character. This makes 'incsearch' and ":help [" work. | |
2289 */ | |
2290 lp = skip_anyof(regparse); | |
2291 if (*lp == ']') /* there is a matching ']' */ | |
2292 { | |
2293 int startc = -1; /* > 0 when next '-' is a range */ | |
2294 int endc; | |
2295 | |
2296 /* | |
2297 * In a character class, different parsing rules apply. | |
2298 * Not even \ is special anymore, nothing is. | |
2299 */ | |
2300 if (*regparse == '^') /* Complement of range. */ | |
2301 { | |
2302 ret = regnode(ANYBUT + extra); | |
2303 regparse++; | |
2304 } | |
2305 else | |
2306 ret = regnode(ANYOF + extra); | |
2307 | |
2308 /* At the start ']' and '-' mean the literal character. */ | |
2309 if (*regparse == ']' || *regparse == '-') | |
167 | 2310 { |
2311 startc = *regparse; | |
7 | 2312 regc(*regparse++); |
167 | 2313 } |
7 | 2314 |
2315 while (*regparse != NUL && *regparse != ']') | |
2316 { | |
2317 if (*regparse == '-') | |
2318 { | |
2319 ++regparse; | |
2320 /* The '-' is not used for a range at the end and | |
2321 * after or before a '\n'. */ | |
2322 if (*regparse == ']' || *regparse == NUL | |
2323 || startc == -1 | |
2324 || (regparse[0] == '\\' && regparse[1] == 'n')) | |
2325 { | |
2326 regc('-'); | |
2327 startc = '-'; /* [--x] is a range */ | |
2328 } | |
2329 else | |
2330 { | |
167 | 2331 /* Also accept "a-[.z.]" */ |
2332 endc = 0; | |
2333 if (*regparse == '[') | |
2334 endc = get_coll_element(®parse); | |
2335 if (endc == 0) | |
2336 { | |
7 | 2337 #ifdef FEAT_MBYTE |
167 | 2338 if (has_mbyte) |
2339 endc = mb_ptr2char_adv(®parse); | |
2340 else | |
7 | 2341 #endif |
167 | 2342 endc = *regparse++; |
2343 } | |
24 | 2344 |
2345 /* Handle \o40, \x20 and \u20AC style sequences */ | |
167 | 2346 if (endc == '\\' && !cpo_lit && !cpo_bsl) |
24 | 2347 endc = coll_get_char(); |
2348 | |
7 | 2349 if (startc > endc) |
2350 EMSG_RET_NULL(_(e_invrange)); | |
2351 #ifdef FEAT_MBYTE | |
2352 if (has_mbyte && ((*mb_char2len)(startc) > 1 | |
2353 || (*mb_char2len)(endc) > 1)) | |
2354 { | |
2355 /* Limit to a range of 256 chars */ | |
2356 if (endc > startc + 256) | |
2357 EMSG_RET_NULL(_(e_invrange)); | |
2358 while (++startc <= endc) | |
2359 regmbc(startc); | |
2360 } | |
2361 else | |
2362 #endif | |
2363 { | |
2364 #ifdef EBCDIC | |
2365 int alpha_only = FALSE; | |
2366 | |
2367 /* for alphabetical range skip the gaps | |
2368 * 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. */ | |
2369 if (isalpha(startc) && isalpha(endc)) | |
2370 alpha_only = TRUE; | |
2371 #endif | |
2372 while (++startc <= endc) | |
2373 #ifdef EBCDIC | |
2374 if (!alpha_only || isalpha(startc)) | |
2375 #endif | |
2376 regc(startc); | |
2377 } | |
2378 startc = -1; | |
2379 } | |
2380 } | |
2381 /* | |
2382 * Only "\]", "\^", "\]" and "\\" are special in Vi. Vim | |
2383 * accepts "\t", "\e", etc., but only when the 'l' flag in | |
2384 * 'cpoptions' is not included. | |
167 | 2385 * Posix doesn't recognize backslash at all. |
7 | 2386 */ |
2387 else if (*regparse == '\\' | |
167 | 2388 && !cpo_bsl |
7 | 2389 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL |
2390 || (!cpo_lit | |
2391 && vim_strchr(REGEXP_ABBR, | |
2392 regparse[1]) != NULL))) | |
2393 { | |
2394 regparse++; | |
2395 if (*regparse == 'n') | |
2396 { | |
2397 /* '\n' in range: also match NL */ | |
2398 if (ret != JUST_CALC_SIZE) | |
2399 { | |
2400 if (*ret == ANYBUT) | |
2401 *ret = ANYBUT + ADD_NL; | |
2402 else if (*ret == ANYOF) | |
2403 *ret = ANYOF + ADD_NL; | |
2404 /* else: must have had a \n already */ | |
2405 } | |
2406 *flagp |= HASNL; | |
2407 regparse++; | |
2408 startc = -1; | |
2409 } | |
24 | 2410 else if (*regparse == 'd' |
2411 || *regparse == 'o' | |
2412 || *regparse == 'x' | |
2413 || *regparse == 'u' | |
2414 || *regparse == 'U') | |
2415 { | |
2416 startc = coll_get_char(); | |
2417 if (startc == 0) | |
2418 regc(0x0a); | |
2419 else | |
2420 #ifdef FEAT_MBYTE | |
2421 regmbc(startc); | |
2422 #else | |
2423 regc(startc); | |
2424 #endif | |
2425 } | |
7 | 2426 else |
2427 { | |
2428 startc = backslash_trans(*regparse++); | |
2429 regc(startc); | |
2430 } | |
2431 } | |
2432 else if (*regparse == '[') | |
2433 { | |
2434 int c_class; | |
2435 int cu; | |
2436 | |
167 | 2437 c_class = get_char_class(®parse); |
7 | 2438 startc = -1; |
2439 /* Characters assumed to be 8 bits! */ | |
2440 switch (c_class) | |
2441 { | |
2442 case CLASS_NONE: | |
167 | 2443 c_class = get_equi_class(®parse); |
2444 if (c_class != 0) | |
2445 { | |
2446 /* produce equivalence class */ | |
2447 reg_equi_class(c_class); | |
2448 } | |
2449 else if ((c_class = | |
2450 get_coll_element(®parse)) != 0) | |
2451 { | |
2452 /* produce a collating element */ | |
2453 regmbc(c_class); | |
2454 } | |
2455 else | |
2456 { | |
2457 /* literal '[', allow [[-x] as a range */ | |
2458 startc = *regparse++; | |
2459 regc(startc); | |
2460 } | |
7 | 2461 break; |
2462 case CLASS_ALNUM: | |
2463 for (cu = 1; cu <= 255; cu++) | |
2464 if (isalnum(cu)) | |
2465 regc(cu); | |
2466 break; | |
2467 case CLASS_ALPHA: | |
2468 for (cu = 1; cu <= 255; cu++) | |
2469 if (isalpha(cu)) | |
2470 regc(cu); | |
2471 break; | |
2472 case CLASS_BLANK: | |
2473 regc(' '); | |
2474 regc('\t'); | |
2475 break; | |
2476 case CLASS_CNTRL: | |
2477 for (cu = 1; cu <= 255; cu++) | |
2478 if (iscntrl(cu)) | |
2479 regc(cu); | |
2480 break; | |
2481 case CLASS_DIGIT: | |
2482 for (cu = 1; cu <= 255; cu++) | |
2483 if (VIM_ISDIGIT(cu)) | |
2484 regc(cu); | |
2485 break; | |
2486 case CLASS_GRAPH: | |
2487 for (cu = 1; cu <= 255; cu++) | |
2488 if (isgraph(cu)) | |
2489 regc(cu); | |
2490 break; | |
2491 case CLASS_LOWER: | |
2492 for (cu = 1; cu <= 255; cu++) | |
1347 | 2493 if (MB_ISLOWER(cu)) |
7 | 2494 regc(cu); |
2495 break; | |
2496 case CLASS_PRINT: | |
2497 for (cu = 1; cu <= 255; cu++) | |
2498 if (vim_isprintc(cu)) | |
2499 regc(cu); | |
2500 break; | |
2501 case CLASS_PUNCT: | |
2502 for (cu = 1; cu <= 255; cu++) | |
2503 if (ispunct(cu)) | |
2504 regc(cu); | |
2505 break; | |
2506 case CLASS_SPACE: | |
2507 for (cu = 9; cu <= 13; cu++) | |
2508 regc(cu); | |
2509 regc(' '); | |
2510 break; | |
2511 case CLASS_UPPER: | |
2512 for (cu = 1; cu <= 255; cu++) | |
1347 | 2513 if (MB_ISUPPER(cu)) |
7 | 2514 regc(cu); |
2515 break; | |
2516 case CLASS_XDIGIT: | |
2517 for (cu = 1; cu <= 255; cu++) | |
2518 if (vim_isxdigit(cu)) | |
2519 regc(cu); | |
2520 break; | |
2521 case CLASS_TAB: | |
2522 regc('\t'); | |
2523 break; | |
2524 case CLASS_RETURN: | |
2525 regc('\r'); | |
2526 break; | |
2527 case CLASS_BACKSPACE: | |
2528 regc('\b'); | |
2529 break; | |
2530 case CLASS_ESCAPE: | |
2531 regc('\033'); | |
2532 break; | |
2533 } | |
2534 } | |
2535 else | |
2536 { | |
2537 #ifdef FEAT_MBYTE | |
2538 if (has_mbyte) | |
2539 { | |
2540 int len; | |
2541 | |
2542 /* produce a multibyte character, including any | |
2543 * following composing characters */ | |
2544 startc = mb_ptr2char(regparse); | |
474 | 2545 len = (*mb_ptr2len)(regparse); |
7 | 2546 if (enc_utf8 && utf_char2len(startc) != len) |
2547 startc = -1; /* composing chars */ | |
2548 while (--len >= 0) | |
2549 regc(*regparse++); | |
2550 } | |
2551 else | |
2552 #endif | |
2553 { | |
2554 startc = *regparse++; | |
2555 regc(startc); | |
2556 } | |
2557 } | |
2558 } | |
2559 regc(NUL); | |
2560 prevchr_len = 1; /* last char was the ']' */ | |
2561 if (*regparse != ']') | |
2562 EMSG_RET_NULL(_(e_toomsbra)); /* Cannot happen? */ | |
2563 skipchr(); /* let's be friends with the lexer again */ | |
2564 *flagp |= HASWIDTH | SIMPLE; | |
2565 break; | |
2566 } | |
481 | 2567 else if (reg_strict) |
2568 EMSG_M_RET_NULL(_("E769: Missing ] after %s["), | |
2569 reg_magic > MAGIC_OFF); | |
7 | 2570 } |
2571 /* FALLTHROUGH */ | |
2572 | |
2573 default: | |
2574 { | |
2575 int len; | |
2576 | |
2577 #ifdef FEAT_MBYTE | |
2578 /* A multi-byte character is handled as a separate atom if it's | |
714 | 2579 * before a multi and when it's a composing char. */ |
2580 if (use_multibytecode(c)) | |
7 | 2581 { |
714 | 2582 do_multibyte: |
7 | 2583 ret = regnode(MULTIBYTECODE); |
2584 regmbc(c); | |
2585 *flagp |= HASWIDTH | SIMPLE; | |
2586 break; | |
2587 } | |
2588 #endif | |
2589 | |
2590 ret = regnode(EXACTLY); | |
2591 | |
2592 /* | |
2593 * Append characters as long as: | |
2594 * - there is no following multi, we then need the character in | |
2595 * front of it as a single character operand | |
2596 * - not running into a Magic character | |
2597 * - "one_exactly" is not set | |
2598 * But always emit at least one character. Might be a Multi, | |
2599 * e.g., a "[" without matching "]". | |
2600 */ | |
2601 for (len = 0; c != NUL && (len == 0 | |
2602 || (re_multi_type(peekchr()) == NOT_MULTI | |
2603 && !one_exactly | |
2604 && !is_Magic(c))); ++len) | |
2605 { | |
2606 c = no_Magic(c); | |
2607 #ifdef FEAT_MBYTE | |
2608 if (has_mbyte) | |
2609 { | |
2610 regmbc(c); | |
2611 if (enc_utf8) | |
2612 { | |
2613 int l; | |
2614 | |
714 | 2615 /* Need to get composing character too. */ |
7 | 2616 for (;;) |
2617 { | |
714 | 2618 l = utf_ptr2len(regparse); |
2619 if (!UTF_COMPOSINGLIKE(regparse, regparse + l)) | |
7 | 2620 break; |
714 | 2621 regmbc(utf_ptr2char(regparse)); |
2622 skipchr(); | |
7 | 2623 } |
2624 } | |
2625 } | |
2626 else | |
2627 #endif | |
2628 regc(c); | |
2629 c = getchr(); | |
2630 } | |
2631 ungetchr(); | |
2632 | |
2633 regc(NUL); | |
2634 *flagp |= HASWIDTH; | |
2635 if (len == 1) | |
2636 *flagp |= SIMPLE; | |
2637 } | |
2638 break; | |
2639 } | |
2640 | |
2641 return ret; | |
2642 } | |
2643 | |
714 | 2644 #ifdef FEAT_MBYTE |
2645 /* | |
2646 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for | |
2647 * character "c". | |
2648 */ | |
2649 static int | |
2650 use_multibytecode(c) | |
2651 int c; | |
2652 { | |
2653 return has_mbyte && (*mb_char2len)(c) > 1 | |
2654 && (re_multi_type(peekchr()) != NOT_MULTI | |
2655 || (enc_utf8 && utf_iscomposing(c))); | |
2656 } | |
2657 #endif | |
2658 | |
7 | 2659 /* |
2660 * emit a node | |
2661 * Return pointer to generated code. | |
2662 */ | |
2663 static char_u * | |
2664 regnode(op) | |
2665 int op; | |
2666 { | |
2667 char_u *ret; | |
2668 | |
2669 ret = regcode; | |
2670 if (ret == JUST_CALC_SIZE) | |
2671 regsize += 3; | |
2672 else | |
2673 { | |
2674 *regcode++ = op; | |
2675 *regcode++ = NUL; /* Null "next" pointer. */ | |
2676 *regcode++ = NUL; | |
2677 } | |
2678 return ret; | |
2679 } | |
2680 | |
2681 /* | |
2682 * Emit (if appropriate) a byte of code | |
2683 */ | |
2684 static void | |
2685 regc(b) | |
2686 int b; | |
2687 { | |
2688 if (regcode == JUST_CALC_SIZE) | |
2689 regsize++; | |
2690 else | |
2691 *regcode++ = b; | |
2692 } | |
2693 | |
2694 #ifdef FEAT_MBYTE | |
2695 /* | |
2696 * Emit (if appropriate) a multi-byte character of code | |
2697 */ | |
2698 static void | |
2699 regmbc(c) | |
2700 int c; | |
2701 { | |
2974 | 2702 if (!has_mbyte && c > 0xff) |
2703 return; | |
7 | 2704 if (regcode == JUST_CALC_SIZE) |
2705 regsize += (*mb_char2len)(c); | |
2706 else | |
2707 regcode += (*mb_char2bytes)(c, regcode); | |
2708 } | |
2709 #endif | |
2710 | |
2711 /* | |
2712 * reginsert - insert an operator in front of already-emitted operand | |
2713 * | |
2714 * Means relocating the operand. | |
2715 */ | |
2716 static void | |
2717 reginsert(op, opnd) | |
2718 int op; | |
2719 char_u *opnd; | |
2720 { | |
2721 char_u *src; | |
2722 char_u *dst; | |
2723 char_u *place; | |
2724 | |
2725 if (regcode == JUST_CALC_SIZE) | |
2726 { | |
2727 regsize += 3; | |
2728 return; | |
2729 } | |
2730 src = regcode; | |
2731 regcode += 3; | |
2732 dst = regcode; | |
2733 while (src > opnd) | |
2734 *--dst = *--src; | |
2735 | |
2736 place = opnd; /* Op node, where operand used to be. */ | |
2737 *place++ = op; | |
2738 *place++ = NUL; | |
2739 *place = NUL; | |
2740 } | |
2741 | |
2742 /* | |
2743 * reginsert_limits - insert an operator in front of already-emitted operand. | |
2744 * The operator has the given limit values as operands. Also set next pointer. | |
2745 * | |
2746 * Means relocating the operand. | |
2747 */ | |
2748 static void | |
2749 reginsert_limits(op, minval, maxval, opnd) | |
2750 int op; | |
2751 long minval; | |
2752 long maxval; | |
2753 char_u *opnd; | |
2754 { | |
2755 char_u *src; | |
2756 char_u *dst; | |
2757 char_u *place; | |
2758 | |
2759 if (regcode == JUST_CALC_SIZE) | |
2760 { | |
2761 regsize += 11; | |
2762 return; | |
2763 } | |
2764 src = regcode; | |
2765 regcode += 11; | |
2766 dst = regcode; | |
2767 while (src > opnd) | |
2768 *--dst = *--src; | |
2769 | |
2770 place = opnd; /* Op node, where operand used to be. */ | |
2771 *place++ = op; | |
2772 *place++ = NUL; | |
2773 *place++ = NUL; | |
2774 place = re_put_long(place, (long_u)minval); | |
2775 place = re_put_long(place, (long_u)maxval); | |
2776 regtail(opnd, place); | |
2777 } | |
2778 | |
2779 /* | |
2780 * Write a long as four bytes at "p" and return pointer to the next char. | |
2781 */ | |
2782 static char_u * | |
2783 re_put_long(p, val) | |
2784 char_u *p; | |
2785 long_u val; | |
2786 { | |
2787 *p++ = (char_u) ((val >> 24) & 0377); | |
2788 *p++ = (char_u) ((val >> 16) & 0377); | |
2789 *p++ = (char_u) ((val >> 8) & 0377); | |
2790 *p++ = (char_u) (val & 0377); | |
2791 return p; | |
2792 } | |
2793 | |
2794 /* | |
2795 * regtail - set the next-pointer at the end of a node chain | |
2796 */ | |
2797 static void | |
2798 regtail(p, val) | |
2799 char_u *p; | |
2800 char_u *val; | |
2801 { | |
2802 char_u *scan; | |
2803 char_u *temp; | |
2804 int offset; | |
2805 | |
2806 if (p == JUST_CALC_SIZE) | |
2807 return; | |
2808 | |
2809 /* Find last node. */ | |
2810 scan = p; | |
2811 for (;;) | |
2812 { | |
2813 temp = regnext(scan); | |
2814 if (temp == NULL) | |
2815 break; | |
2816 scan = temp; | |
2817 } | |
2818 | |
233 | 2819 if (OP(scan) == BACK) |
7 | 2820 offset = (int)(scan - val); |
2821 else | |
2822 offset = (int)(val - scan); | |
2010 | 2823 /* When the offset uses more than 16 bits it can no longer fit in the two |
2974 | 2824 * bytes available. Use a global flag to avoid having to check return |
2010 | 2825 * values in too many places. */ |
2826 if (offset > 0xffff) | |
2827 reg_toolong = TRUE; | |
2828 else | |
2829 { | |
2830 *(scan + 1) = (char_u) (((unsigned)offset >> 8) & 0377); | |
2831 *(scan + 2) = (char_u) (offset & 0377); | |
2832 } | |
7 | 2833 } |
2834 | |
2835 /* | |
2836 * regoptail - regtail on item after a BRANCH; nop if none | |
2837 */ | |
2838 static void | |
2839 regoptail(p, val) | |
2840 char_u *p; | |
2841 char_u *val; | |
2842 { | |
2843 /* When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" */ | |
2844 if (p == NULL || p == JUST_CALC_SIZE | |
2845 || (OP(p) != BRANCH | |
2846 && (OP(p) < BRACE_COMPLEX || OP(p) > BRACE_COMPLEX + 9))) | |
2847 return; | |
2848 regtail(OPERAND(p), val); | |
2849 } | |
2850 | |
2851 /* | |
2852 * getchr() - get the next character from the pattern. We know about | |
2853 * magic and such, so therefore we need a lexical analyzer. | |
2854 */ | |
2855 | |
2856 /* static int curchr; */ | |
2857 static int prevprevchr; | |
2858 static int prevchr; | |
2859 static int nextchr; /* used for ungetchr() */ | |
2860 /* | |
2861 * Note: prevchr is sometimes -1 when we are not at the start, | |
2862 * eg in /[ ^I]^ the pattern was never found even if it existed, because ^ was | |
2863 * taken to be magic -- webb | |
2864 */ | |
2865 static int at_start; /* True when on the first character */ | |
2866 static int prev_at_start; /* True when on the second character */ | |
2867 | |
2868 static void | |
2869 initchr(str) | |
2870 char_u *str; | |
2871 { | |
2872 regparse = str; | |
2873 prevchr_len = 0; | |
2874 curchr = prevprevchr = prevchr = nextchr = -1; | |
2875 at_start = TRUE; | |
2876 prev_at_start = FALSE; | |
2877 } | |
2878 | |
2879 static int | |
2880 peekchr() | |
2881 { | |
167 | 2882 static int after_slash = FALSE; |
2883 | |
7 | 2884 if (curchr == -1) |
2885 { | |
2886 switch (curchr = regparse[0]) | |
2887 { | |
2888 case '.': | |
2889 case '[': | |
2890 case '~': | |
2891 /* magic when 'magic' is on */ | |
2892 if (reg_magic >= MAGIC_ON) | |
2893 curchr = Magic(curchr); | |
2894 break; | |
2895 case '(': | |
2896 case ')': | |
2897 case '{': | |
2898 case '%': | |
2899 case '+': | |
2900 case '=': | |
2901 case '?': | |
2902 case '@': | |
2903 case '!': | |
2904 case '&': | |
2905 case '|': | |
2906 case '<': | |
2907 case '>': | |
2908 case '#': /* future ext. */ | |
2909 case '"': /* future ext. */ | |
2910 case '\'': /* future ext. */ | |
2911 case ',': /* future ext. */ | |
2912 case '-': /* future ext. */ | |
2913 case ':': /* future ext. */ | |
2914 case ';': /* future ext. */ | |
2915 case '`': /* future ext. */ | |
2916 case '/': /* Can't be used in / command */ | |
2917 /* magic only after "\v" */ | |
2918 if (reg_magic == MAGIC_ALL) | |
2919 curchr = Magic(curchr); | |
2920 break; | |
2921 case '*': | |
167 | 2922 /* * is not magic as the very first character, eg "?*ptr", when |
2923 * after '^', eg "/^*ptr" and when after "\(", "\|", "\&". But | |
2924 * "\(\*" is not magic, thus must be magic if "after_slash" */ | |
2925 if (reg_magic >= MAGIC_ON | |
2926 && !at_start | |
2927 && !(prev_at_start && prevchr == Magic('^')) | |
2928 && (after_slash | |
2929 || (prevchr != Magic('(') | |
2930 && prevchr != Magic('&') | |
2931 && prevchr != Magic('|')))) | |
7 | 2932 curchr = Magic('*'); |
2933 break; | |
2934 case '^': | |
2935 /* '^' is only magic as the very first character and if it's after | |
2936 * "\(", "\|", "\&' or "\n" */ | |
2937 if (reg_magic >= MAGIC_OFF | |
2938 && (at_start | |
2939 || reg_magic == MAGIC_ALL | |
2940 || prevchr == Magic('(') | |
2941 || prevchr == Magic('|') | |
2942 || prevchr == Magic('&') | |
2943 || prevchr == Magic('n') | |
2944 || (no_Magic(prevchr) == '(' | |
2945 && prevprevchr == Magic('%')))) | |
2946 { | |
2947 curchr = Magic('^'); | |
2948 at_start = TRUE; | |
2949 prev_at_start = FALSE; | |
2950 } | |
2951 break; | |
2952 case '$': | |
2953 /* '$' is only magic as the very last char and if it's in front of | |
2954 * either "\|", "\)", "\&", or "\n" */ | |
2955 if (reg_magic >= MAGIC_OFF) | |
2956 { | |
2957 char_u *p = regparse + 1; | |
2958 | |
2959 /* ignore \c \C \m and \M after '$' */ | |
2960 while (p[0] == '\\' && (p[1] == 'c' || p[1] == 'C' | |
2961 || p[1] == 'm' || p[1] == 'M' || p[1] == 'Z')) | |
2962 p += 2; | |
2963 if (p[0] == NUL | |
2964 || (p[0] == '\\' | |
2965 && (p[1] == '|' || p[1] == '&' || p[1] == ')' | |
2966 || p[1] == 'n')) | |
2967 || reg_magic == MAGIC_ALL) | |
2968 curchr = Magic('$'); | |
2969 } | |
2970 break; | |
2971 case '\\': | |
2972 { | |
2973 int c = regparse[1]; | |
2974 | |
2975 if (c == NUL) | |
2976 curchr = '\\'; /* trailing '\' */ | |
2977 else if ( | |
2978 #ifdef EBCDIC | |
2979 vim_strchr(META, c) | |
2980 #else | |
2981 c <= '~' && META_flags[c] | |
2982 #endif | |
2983 ) | |
2984 { | |
2985 /* | |
2986 * META contains everything that may be magic sometimes, | |
2987 * except ^ and $ ("\^" and "\$" are only magic after | |
2988 * "\v"). We now fetch the next character and toggle its | |
2989 * magicness. Therefore, \ is so meta-magic that it is | |
2990 * not in META. | |
2991 */ | |
2992 curchr = -1; | |
2993 prev_at_start = at_start; | |
2994 at_start = FALSE; /* be able to say "/\*ptr" */ | |
2995 ++regparse; | |
167 | 2996 ++after_slash; |
7 | 2997 peekchr(); |
2998 --regparse; | |
167 | 2999 --after_slash; |
7 | 3000 curchr = toggle_Magic(curchr); |
3001 } | |
3002 else if (vim_strchr(REGEXP_ABBR, c)) | |
3003 { | |
3004 /* | |
3005 * Handle abbreviations, like "\t" for TAB -- webb | |
3006 */ | |
3007 curchr = backslash_trans(c); | |
3008 } | |
3009 else if (reg_magic == MAGIC_NONE && (c == '$' || c == '^')) | |
3010 curchr = toggle_Magic(c); | |
3011 else | |
3012 { | |
3013 /* | |
3014 * Next character can never be (made) magic? | |
3015 * Then backslashing it won't do anything. | |
3016 */ | |
3017 #ifdef FEAT_MBYTE | |
3018 if (has_mbyte) | |
3019 curchr = (*mb_ptr2char)(regparse + 1); | |
3020 else | |
3021 #endif | |
3022 curchr = c; | |
3023 } | |
3024 break; | |
3025 } | |
3026 | |
3027 #ifdef FEAT_MBYTE | |
3028 default: | |
3029 if (has_mbyte) | |
3030 curchr = (*mb_ptr2char)(regparse); | |
3031 #endif | |
3032 } | |
3033 } | |
3034 | |
3035 return curchr; | |
3036 } | |
3037 | |
3038 /* | |
3039 * Eat one lexed character. Do this in a way that we can undo it. | |
3040 */ | |
3041 static void | |
3042 skipchr() | |
3043 { | |
3044 /* peekchr() eats a backslash, do the same here */ | |
3045 if (*regparse == '\\') | |
3046 prevchr_len = 1; | |
3047 else | |
3048 prevchr_len = 0; | |
3049 if (regparse[prevchr_len] != NUL) | |
3050 { | |
3051 #ifdef FEAT_MBYTE | |
714 | 3052 if (enc_utf8) |
1449 | 3053 /* exclude composing chars that mb_ptr2len does include */ |
3054 prevchr_len += utf_ptr2len(regparse + prevchr_len); | |
714 | 3055 else if (has_mbyte) |
474 | 3056 prevchr_len += (*mb_ptr2len)(regparse + prevchr_len); |
7 | 3057 else |
3058 #endif | |
3059 ++prevchr_len; | |
3060 } | |
3061 regparse += prevchr_len; | |
3062 prev_at_start = at_start; | |
3063 at_start = FALSE; | |
3064 prevprevchr = prevchr; | |
3065 prevchr = curchr; | |
3066 curchr = nextchr; /* use previously unget char, or -1 */ | |
3067 nextchr = -1; | |
3068 } | |
3069 | |
3070 /* | |
3071 * Skip a character while keeping the value of prev_at_start for at_start. | |
3072 * prevchr and prevprevchr are also kept. | |
3073 */ | |
3074 static void | |
3075 skipchr_keepstart() | |
3076 { | |
3077 int as = prev_at_start; | |
3078 int pr = prevchr; | |
3079 int prpr = prevprevchr; | |
3080 | |
3081 skipchr(); | |
3082 at_start = as; | |
3083 prevchr = pr; | |
3084 prevprevchr = prpr; | |
3085 } | |
3086 | |
3087 static int | |
3088 getchr() | |
3089 { | |
3090 int chr = peekchr(); | |
3091 | |
3092 skipchr(); | |
3093 return chr; | |
3094 } | |
3095 | |
3096 /* | |
3097 * put character back. Works only once! | |
3098 */ | |
3099 static void | |
3100 ungetchr() | |
3101 { | |
3102 nextchr = curchr; | |
3103 curchr = prevchr; | |
3104 prevchr = prevprevchr; | |
3105 at_start = prev_at_start; | |
3106 prev_at_start = FALSE; | |
3107 | |
3108 /* Backup regparse, so that it's at the same position as before the | |
3109 * getchr(). */ | |
3110 regparse -= prevchr_len; | |
3111 } | |
3112 | |
3113 /* | |
29 | 3114 * Get and return the value of the hex string at the current position. |
3115 * Return -1 if there is no valid hex number. | |
3116 * The position is updated: | |
24 | 3117 * blahblah\%x20asdf |
856 | 3118 * before-^ ^-after |
24 | 3119 * The parameter controls the maximum number of input characters. This will be |
3120 * 2 when reading a \%x20 sequence and 4 when reading a \%u20AC sequence. | |
3121 */ | |
3122 static int | |
3123 gethexchrs(maxinputlen) | |
3124 int maxinputlen; | |
3125 { | |
3126 int nr = 0; | |
3127 int c; | |
3128 int i; | |
3129 | |
3130 for (i = 0; i < maxinputlen; ++i) | |
3131 { | |
3132 c = regparse[0]; | |
3133 if (!vim_isxdigit(c)) | |
3134 break; | |
3135 nr <<= 4; | |
3136 nr |= hex2nr(c); | |
3137 ++regparse; | |
3138 } | |
3139 | |
3140 if (i == 0) | |
3141 return -1; | |
3142 return nr; | |
3143 } | |
3144 | |
3145 /* | |
3146 * get and return the value of the decimal string immediately after the | |
3147 * current position. Return -1 for invalid. Consumes all digits. | |
3148 */ | |
3149 static int | |
3150 getdecchrs() | |
3151 { | |
3152 int nr = 0; | |
3153 int c; | |
3154 int i; | |
3155 | |
3156 for (i = 0; ; ++i) | |
3157 { | |
3158 c = regparse[0]; | |
3159 if (c < '0' || c > '9') | |
3160 break; | |
3161 nr *= 10; | |
3162 nr += c - '0'; | |
3163 ++regparse; | |
3164 } | |
3165 | |
3166 if (i == 0) | |
3167 return -1; | |
3168 return nr; | |
3169 } | |
3170 | |
3171 /* | |
3172 * get and return the value of the octal string immediately after the current | |
3173 * position. Return -1 for invalid, or 0-255 for valid. Smart enough to handle | |
3174 * numbers > 377 correctly (for example, 400 is treated as 40) and doesn't | |
3175 * treat 8 or 9 as recognised characters. Position is updated: | |
3176 * blahblah\%o210asdf | |
856 | 3177 * before-^ ^-after |
24 | 3178 */ |
3179 static int | |
3180 getoctchrs() | |
3181 { | |
3182 int nr = 0; | |
3183 int c; | |
3184 int i; | |
3185 | |
3186 for (i = 0; i < 3 && nr < 040; ++i) | |
3187 { | |
3188 c = regparse[0]; | |
3189 if (c < '0' || c > '7') | |
3190 break; | |
3191 nr <<= 3; | |
3192 nr |= hex2nr(c); | |
3193 ++regparse; | |
3194 } | |
3195 | |
3196 if (i == 0) | |
3197 return -1; | |
3198 return nr; | |
3199 } | |
3200 | |
3201 /* | |
3202 * Get a number after a backslash that is inside []. | |
3203 * When nothing is recognized return a backslash. | |
3204 */ | |
3205 static int | |
3206 coll_get_char() | |
3207 { | |
3208 int nr = -1; | |
3209 | |
3210 switch (*regparse++) | |
3211 { | |
3212 case 'd': nr = getdecchrs(); break; | |
3213 case 'o': nr = getoctchrs(); break; | |
3214 case 'x': nr = gethexchrs(2); break; | |
3215 case 'u': nr = gethexchrs(4); break; | |
3216 case 'U': nr = gethexchrs(8); break; | |
3217 } | |
3218 if (nr < 0) | |
3219 { | |
3220 /* If getting the number fails be backwards compatible: the character | |
3221 * is a backslash. */ | |
3222 --regparse; | |
3223 nr = '\\'; | |
3224 } | |
3225 return nr; | |
3226 } | |
3227 | |
3228 /* | |
7 | 3229 * read_limits - Read two integers to be taken as a minimum and maximum. |
3230 * If the first character is '-', then the range is reversed. | |
3231 * Should end with 'end'. If minval is missing, zero is default, if maxval is | |
3232 * missing, a very big number is the default. | |
3233 */ | |
3234 static int | |
3235 read_limits(minval, maxval) | |
3236 long *minval; | |
3237 long *maxval; | |
3238 { | |
3239 int reverse = FALSE; | |
3240 char_u *first_char; | |
3241 long tmp; | |
3242 | |
3243 if (*regparse == '-') | |
3244 { | |
3245 /* Starts with '-', so reverse the range later */ | |
3246 regparse++; | |
3247 reverse = TRUE; | |
3248 } | |
3249 first_char = regparse; | |
3250 *minval = getdigits(®parse); | |
3251 if (*regparse == ',') /* There is a comma */ | |
3252 { | |
3253 if (vim_isdigit(*++regparse)) | |
3254 *maxval = getdigits(®parse); | |
3255 else | |
3256 *maxval = MAX_LIMIT; | |
3257 } | |
3258 else if (VIM_ISDIGIT(*first_char)) | |
3259 *maxval = *minval; /* It was \{n} or \{-n} */ | |
3260 else | |
3261 *maxval = MAX_LIMIT; /* It was \{} or \{-} */ | |
3262 if (*regparse == '\\') | |
3263 regparse++; /* Allow either \{...} or \{...\} */ | |
167 | 3264 if (*regparse != '}') |
7 | 3265 { |
3266 sprintf((char *)IObuff, _("E554: Syntax error in %s{...}"), | |
3267 reg_magic == MAGIC_ALL ? "" : "\\"); | |
3268 EMSG_RET_FAIL(IObuff); | |
3269 } | |
3270 | |
3271 /* | |
3272 * Reverse the range if there was a '-', or make sure it is in the right | |
3273 * order otherwise. | |
3274 */ | |
3275 if ((!reverse && *minval > *maxval) || (reverse && *minval < *maxval)) | |
3276 { | |
3277 tmp = *minval; | |
3278 *minval = *maxval; | |
3279 *maxval = tmp; | |
3280 } | |
3281 skipchr(); /* let's be friends with the lexer again */ | |
3282 return OK; | |
3283 } | |
3284 | |
3285 /* | |
3286 * vim_regexec and friends | |
3287 */ | |
3288 | |
3289 /* | |
3290 * Global work variables for vim_regexec(). | |
3291 */ | |
3292 | |
3293 /* The current match-position is remembered with these variables: */ | |
3294 static linenr_T reglnum; /* line number, relative to first line */ | |
3295 static char_u *regline; /* start of current line */ | |
3296 static char_u *reginput; /* current input, points into "regline" */ | |
3297 | |
3298 static int need_clear_subexpr; /* subexpressions still need to be | |
3299 * cleared */ | |
3300 #ifdef FEAT_SYN_HL | |
3301 static int need_clear_zsubexpr = FALSE; /* extmatch subexpressions | |
3302 * still need to be cleared */ | |
3303 #endif | |
3304 | |
3305 /* | |
3306 * Structure used to save the current input state, when it needs to be | |
3307 * restored after trying a match. Used by reg_save() and reg_restore(). | |
233 | 3308 * Also stores the length of "backpos". |
7 | 3309 */ |
3310 typedef struct | |
3311 { | |
3312 union | |
3313 { | |
3314 char_u *ptr; /* reginput pointer, for single-line regexp */ | |
3315 lpos_T pos; /* reginput pos, for multi-line regexp */ | |
3316 } rs_u; | |
233 | 3317 int rs_len; |
7 | 3318 } regsave_T; |
3319 | |
3320 /* struct to save start/end pointer/position in for \(\) */ | |
3321 typedef struct | |
3322 { | |
3323 union | |
3324 { | |
3325 char_u *ptr; | |
3326 lpos_T pos; | |
3327 } se_u; | |
3328 } save_se_T; | |
3329 | |
1579 | 3330 /* used for BEHIND and NOBEHIND matching */ |
3331 typedef struct regbehind_S | |
3332 { | |
3333 regsave_T save_after; | |
3334 regsave_T save_behind; | |
1602 | 3335 int save_need_clear_subexpr; |
1579 | 3336 save_se_T save_start[NSUBEXP]; |
3337 save_se_T save_end[NSUBEXP]; | |
3338 } regbehind_T; | |
3339 | |
7 | 3340 static char_u *reg_getline __ARGS((linenr_T lnum)); |
1521 | 3341 static long vim_regexec_both __ARGS((char_u *line, colnr_T col, proftime_T *tm)); |
7 | 3342 static long regtry __ARGS((regprog_T *prog, colnr_T col)); |
3343 static void cleanup_subexpr __ARGS((void)); | |
3344 #ifdef FEAT_SYN_HL | |
3345 static void cleanup_zsubexpr __ARGS((void)); | |
3346 #endif | |
1579 | 3347 static void save_subexpr __ARGS((regbehind_T *bp)); |
3348 static void restore_subexpr __ARGS((regbehind_T *bp)); | |
7 | 3349 static void reg_nextline __ARGS((void)); |
233 | 3350 static void reg_save __ARGS((regsave_T *save, garray_T *gap)); |
3351 static void reg_restore __ARGS((regsave_T *save, garray_T *gap)); | |
7 | 3352 static int reg_save_equal __ARGS((regsave_T *save)); |
3353 static void save_se_multi __ARGS((save_se_T *savep, lpos_T *posp)); | |
3354 static void save_se_one __ARGS((save_se_T *savep, char_u **pp)); | |
3355 | |
3356 /* Save the sub-expressions before attempting a match. */ | |
3357 #define save_se(savep, posp, pp) \ | |
3358 REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp)) | |
3359 | |
3360 /* After a failed match restore the sub-expressions. */ | |
3361 #define restore_se(savep, posp, pp) { \ | |
3362 if (REG_MULTI) \ | |
3363 *(posp) = (savep)->se_u.pos; \ | |
3364 else \ | |
3365 *(pp) = (savep)->se_u.ptr; } | |
3366 | |
3367 static int re_num_cmp __ARGS((long_u val, char_u *scan)); | |
180 | 3368 static int regmatch __ARGS((char_u *prog)); |
7 | 3369 static int regrepeat __ARGS((char_u *p, long maxcount)); |
3370 | |
3371 #ifdef DEBUG | |
3372 int regnarrate = 0; | |
3373 #endif | |
3374 | |
3375 /* | |
3376 * Internal copy of 'ignorecase'. It is set at each call to vim_regexec(). | |
3377 * Normally it gets the value of "rm_ic" or "rmm_ic", but when the pattern | |
3378 * contains '\c' or '\C' the value is overruled. | |
3379 */ | |
3380 static int ireg_ic; | |
3381 | |
3382 #ifdef FEAT_MBYTE | |
3383 /* | |
3384 * Similar to ireg_ic, but only for 'combining' characters. Set with \Z flag | |
3385 * in the regexp. Defaults to false, always. | |
3386 */ | |
3387 static int ireg_icombine; | |
3388 #endif | |
3389 | |
3390 /* | |
410 | 3391 * Copy of "rmm_maxcol": maximum column to search for a match. Zero when |
3392 * there is no maximum. | |
3393 */ | |
418 | 3394 static colnr_T ireg_maxcol; |
410 | 3395 |
3396 /* | |
7 | 3397 * Sometimes need to save a copy of a line. Since alloc()/free() is very |
3398 * slow, we keep one allocated piece of memory and only re-allocate it when | |
3399 * it's too small. It's freed in vim_regexec_both() when finished. | |
3400 */ | |
1468 | 3401 static char_u *reg_tofree = NULL; |
7 | 3402 static unsigned reg_tofreelen; |
3403 | |
3404 /* | |
3405 * These variables are set when executing a regexp to speed up the execution. | |
1209 | 3406 * Which ones are set depends on whether a single-line or multi-line match is |
7 | 3407 * done: |
3408 * single-line multi-line | |
3409 * reg_match ®match_T NULL | |
3410 * reg_mmatch NULL ®mmatch_T | |
3411 * reg_startp reg_match->startp <invalid> | |
3412 * reg_endp reg_match->endp <invalid> | |
3413 * reg_startpos <invalid> reg_mmatch->startpos | |
3414 * reg_endpos <invalid> reg_mmatch->endpos | |
3415 * reg_win NULL window in which to search | |
3416 * reg_buf <invalid> buffer in which to search | |
3417 * reg_firstlnum <invalid> first line in which to search | |
3418 * reg_maxline 0 last line nr | |
3419 * reg_line_lbr FALSE or TRUE FALSE | |
3420 */ | |
3421 static regmatch_T *reg_match; | |
3422 static regmmatch_T *reg_mmatch; | |
3423 static char_u **reg_startp = NULL; | |
3424 static char_u **reg_endp = NULL; | |
3425 static lpos_T *reg_startpos = NULL; | |
3426 static lpos_T *reg_endpos = NULL; | |
3427 static win_T *reg_win; | |
3428 static buf_T *reg_buf; | |
3429 static linenr_T reg_firstlnum; | |
3430 static linenr_T reg_maxline; | |
3431 static int reg_line_lbr; /* "\n" in string is line break */ | |
3432 | |
270 | 3433 /* Values for rs_state in regitem_T. */ |
3434 typedef enum regstate_E | |
3435 { | |
3436 RS_NOPEN = 0 /* NOPEN and NCLOSE */ | |
3437 , RS_MOPEN /* MOPEN + [0-9] */ | |
3438 , RS_MCLOSE /* MCLOSE + [0-9] */ | |
3439 #ifdef FEAT_SYN_HL | |
3440 , RS_ZOPEN /* ZOPEN + [0-9] */ | |
3441 , RS_ZCLOSE /* ZCLOSE + [0-9] */ | |
3442 #endif | |
3443 , RS_BRANCH /* BRANCH */ | |
3444 , RS_BRCPLX_MORE /* BRACE_COMPLEX and trying one more match */ | |
3445 , RS_BRCPLX_LONG /* BRACE_COMPLEX and trying longest match */ | |
3446 , RS_BRCPLX_SHORT /* BRACE_COMPLEX and trying shortest match */ | |
3447 , RS_NOMATCH /* NOMATCH */ | |
3448 , RS_BEHIND1 /* BEHIND / NOBEHIND matching rest */ | |
3449 , RS_BEHIND2 /* BEHIND / NOBEHIND matching behind part */ | |
3450 , RS_STAR_LONG /* STAR/PLUS/BRACE_SIMPLE longest match */ | |
3451 , RS_STAR_SHORT /* STAR/PLUS/BRACE_SIMPLE shortest match */ | |
3452 } regstate_T; | |
3453 | |
3454 /* | |
3455 * When there are alternatives a regstate_T is put on the regstack to remember | |
3456 * what we are doing. | |
3457 * Before it may be another type of item, depending on rs_state, to remember | |
3458 * more things. | |
3459 */ | |
3460 typedef struct regitem_S | |
3461 { | |
3462 regstate_T rs_state; /* what we are doing, one of RS_ above */ | |
3463 char_u *rs_scan; /* current node in program */ | |
3464 union | |
3465 { | |
3466 save_se_T sesave; | |
3467 regsave_T regsave; | |
3468 } rs_un; /* room for saving reginput */ | |
1579 | 3469 short rs_no; /* submatch nr or BEHIND/NOBEHIND */ |
270 | 3470 } regitem_T; |
3471 | |
3472 static regitem_T *regstack_push __ARGS((regstate_T state, char_u *scan)); | |
3473 static void regstack_pop __ARGS((char_u **scan)); | |
3474 | |
3475 /* used for STAR, PLUS and BRACE_SIMPLE matching */ | |
3476 typedef struct regstar_S | |
3477 { | |
3478 int nextb; /* next byte */ | |
3479 int nextb_ic; /* next byte reverse case */ | |
3480 long count; | |
3481 long minval; | |
3482 long maxval; | |
3483 } regstar_T; | |
3484 | |
3485 /* used to store input position when a BACK was encountered, so that we now if | |
3486 * we made any progress since the last time. */ | |
3487 typedef struct backpos_S | |
3488 { | |
3489 char_u *bp_scan; /* "scan" where BACK was encountered */ | |
3490 regsave_T bp_pos; /* last input position */ | |
3491 } backpos_T; | |
3492 | |
3493 /* | |
1520 | 3494 * "regstack" and "backpos" are used by regmatch(). They are kept over calls |
3495 * to avoid invoking malloc() and free() often. | |
3496 * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T | |
3497 * or regbehind_T. | |
3498 * "backpos_T" is a table with backpos_T for BACK | |
270 | 3499 */ |
1520 | 3500 static garray_T regstack = {0, 0, 0, 0, NULL}; |
3501 static garray_T backpos = {0, 0, 0, 0, NULL}; | |
3502 | |
3503 /* | |
3504 * Both for regstack and backpos tables we use the following strategy of | |
3505 * allocation (to reduce malloc/free calls): | |
3506 * - Initial size is fairly small. | |
3507 * - When needed, the tables are grown bigger (8 times at first, double after | |
3508 * that). | |
3509 * - After executing the match we free the memory only if the array has grown. | |
3510 * Thus the memory is kept allocated when it's at the initial size. | |
3511 * This makes it fast while not keeping a lot of memory allocated. | |
3512 * A three times speed increase was observed when using many simple patterns. | |
3513 */ | |
3514 #define REGSTACK_INITIAL 2048 | |
3515 #define BACKPOS_INITIAL 64 | |
3516 | |
3517 #if defined(EXITFREE) || defined(PROTO) | |
3518 void | |
3519 free_regexp_stuff() | |
3520 { | |
3521 ga_clear(®stack); | |
3522 ga_clear(&backpos); | |
3523 vim_free(reg_tofree); | |
3524 vim_free(reg_prev_sub); | |
3525 } | |
3526 #endif | |
270 | 3527 |
7 | 3528 /* |
3529 * Get pointer to the line "lnum", which is relative to "reg_firstlnum". | |
3530 */ | |
3531 static char_u * | |
3532 reg_getline(lnum) | |
3533 linenr_T lnum; | |
3534 { | |
3535 /* when looking behind for a match/no-match lnum is negative. But we | |
3536 * can't go before line 1 */ | |
3537 if (reg_firstlnum + lnum < 1) | |
3538 return NULL; | |
482 | 3539 if (lnum > reg_maxline) |
481 | 3540 /* Must have matched the "\n" in the last line. */ |
3541 return (char_u *)""; | |
7 | 3542 return ml_get_buf(reg_buf, reg_firstlnum + lnum, FALSE); |
3543 } | |
3544 | |
3545 static regsave_T behind_pos; | |
3546 | |
3547 #ifdef FEAT_SYN_HL | |
3548 static char_u *reg_startzp[NSUBEXP]; /* Workspace to mark beginning */ | |
3549 static char_u *reg_endzp[NSUBEXP]; /* and end of \z(...\) matches */ | |
3550 static lpos_T reg_startzpos[NSUBEXP]; /* idem, beginning pos */ | |
3551 static lpos_T reg_endzpos[NSUBEXP]; /* idem, end pos */ | |
3552 #endif | |
3553 | |
3554 /* TRUE if using multi-line regexp. */ | |
3555 #define REG_MULTI (reg_match == NULL) | |
3556 | |
3557 /* | |
3558 * Match a regexp against a string. | |
3559 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3560 * Uses curbuf for line count and 'iskeyword'. | |
3561 * | |
3562 * Return TRUE if there is a match, FALSE if not. | |
3563 */ | |
3564 int | |
3565 vim_regexec(rmp, line, col) | |
3566 regmatch_T *rmp; | |
3567 char_u *line; /* string to match against */ | |
3568 colnr_T col; /* column to start looking for match */ | |
3569 { | |
3570 reg_match = rmp; | |
3571 reg_mmatch = NULL; | |
3572 reg_maxline = 0; | |
3573 reg_line_lbr = FALSE; | |
3574 reg_win = NULL; | |
3575 ireg_ic = rmp->rm_ic; | |
3576 #ifdef FEAT_MBYTE | |
3577 ireg_icombine = FALSE; | |
3578 #endif | |
410 | 3579 ireg_maxcol = 0; |
1521 | 3580 return (vim_regexec_both(line, col, NULL) != 0); |
7 | 3581 } |
3582 | |
39 | 3583 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \ |
3584 || defined(FIND_REPLACE_DIALOG) || defined(PROTO) | |
7 | 3585 /* |
3586 * Like vim_regexec(), but consider a "\n" in "line" to be a line break. | |
3587 */ | |
3588 int | |
3589 vim_regexec_nl(rmp, line, col) | |
3590 regmatch_T *rmp; | |
3591 char_u *line; /* string to match against */ | |
3592 colnr_T col; /* column to start looking for match */ | |
3593 { | |
3594 reg_match = rmp; | |
3595 reg_mmatch = NULL; | |
3596 reg_maxline = 0; | |
3597 reg_line_lbr = TRUE; | |
3598 reg_win = NULL; | |
3599 ireg_ic = rmp->rm_ic; | |
3600 #ifdef FEAT_MBYTE | |
3601 ireg_icombine = FALSE; | |
3602 #endif | |
410 | 3603 ireg_maxcol = 0; |
1521 | 3604 return (vim_regexec_both(line, col, NULL) != 0); |
7 | 3605 } |
3606 #endif | |
3607 | |
3608 /* | |
3609 * Match a regexp against multiple lines. | |
3610 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3611 * Uses curbuf for line count and 'iskeyword'. | |
3612 * | |
3613 * Return zero if there is no match. Return number of lines contained in the | |
3614 * match otherwise. | |
3615 */ | |
3616 long | |
1521 | 3617 vim_regexec_multi(rmp, win, buf, lnum, col, tm) |
7 | 3618 regmmatch_T *rmp; |
3619 win_T *win; /* window in which to search or NULL */ | |
3620 buf_T *buf; /* buffer in which to search */ | |
3621 linenr_T lnum; /* nr of line to start looking for match */ | |
3622 colnr_T col; /* column to start looking for match */ | |
1521 | 3623 proftime_T *tm; /* timeout limit or NULL */ |
7 | 3624 { |
3625 long r; | |
3626 buf_T *save_curbuf = curbuf; | |
3627 | |
3628 reg_match = NULL; | |
3629 reg_mmatch = rmp; | |
3630 reg_buf = buf; | |
3631 reg_win = win; | |
3632 reg_firstlnum = lnum; | |
3633 reg_maxline = reg_buf->b_ml.ml_line_count - lnum; | |
3634 reg_line_lbr = FALSE; | |
3635 ireg_ic = rmp->rmm_ic; | |
3636 #ifdef FEAT_MBYTE | |
3637 ireg_icombine = FALSE; | |
3638 #endif | |
410 | 3639 ireg_maxcol = rmp->rmm_maxcol; |
7 | 3640 |
3641 /* Need to switch to buffer "buf" to make vim_iswordc() work. */ | |
3642 curbuf = buf; | |
1521 | 3643 r = vim_regexec_both(NULL, col, tm); |
7 | 3644 curbuf = save_curbuf; |
3645 | |
3646 return r; | |
3647 } | |
3648 | |
3649 /* | |
3650 * Match a regexp against a string ("line" points to the string) or multiple | |
3651 * lines ("line" is NULL, use reg_getline()). | |
3652 */ | |
3653 static long | |
1521 | 3654 vim_regexec_both(line, col, tm) |
7 | 3655 char_u *line; |
3656 colnr_T col; /* column to start looking for match */ | |
1877 | 3657 proftime_T *tm UNUSED; /* timeout limit or NULL */ |
7 | 3658 { |
3659 regprog_T *prog; | |
3660 char_u *s; | |
189 | 3661 long retval = 0L; |
7 | 3662 |
1520 | 3663 /* Create "regstack" and "backpos" if they are not allocated yet. |
3664 * We allocate *_INITIAL amount of bytes first and then set the grow size | |
3665 * to much bigger value to avoid many malloc calls in case of deep regular | |
3666 * expressions. */ | |
3667 if (regstack.ga_data == NULL) | |
3668 { | |
3669 /* Use an item size of 1 byte, since we push different things | |
3670 * onto the regstack. */ | |
3671 ga_init2(®stack, 1, REGSTACK_INITIAL); | |
3672 ga_grow(®stack, REGSTACK_INITIAL); | |
3673 regstack.ga_growsize = REGSTACK_INITIAL * 8; | |
3674 } | |
3675 | |
3676 if (backpos.ga_data == NULL) | |
3677 { | |
3678 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL); | |
3679 ga_grow(&backpos, BACKPOS_INITIAL); | |
3680 backpos.ga_growsize = BACKPOS_INITIAL * 8; | |
3681 } | |
270 | 3682 |
7 | 3683 if (REG_MULTI) |
3684 { | |
3685 prog = reg_mmatch->regprog; | |
3686 line = reg_getline((linenr_T)0); | |
3687 reg_startpos = reg_mmatch->startpos; | |
3688 reg_endpos = reg_mmatch->endpos; | |
3689 } | |
3690 else | |
3691 { | |
3692 prog = reg_match->regprog; | |
3693 reg_startp = reg_match->startp; | |
3694 reg_endp = reg_match->endp; | |
3695 } | |
3696 | |
3697 /* Be paranoid... */ | |
3698 if (prog == NULL || line == NULL) | |
3699 { | |
3700 EMSG(_(e_null)); | |
3701 goto theend; | |
3702 } | |
3703 | |
3704 /* Check validity of program. */ | |
3705 if (prog_magic_wrong()) | |
3706 goto theend; | |
3707 | |
410 | 3708 /* If the start column is past the maximum column: no need to try. */ |
3709 if (ireg_maxcol > 0 && col >= ireg_maxcol) | |
3710 goto theend; | |
3711 | |
7 | 3712 /* If pattern contains "\c" or "\C": overrule value of ireg_ic */ |
3713 if (prog->regflags & RF_ICASE) | |
3714 ireg_ic = TRUE; | |
3715 else if (prog->regflags & RF_NOICASE) | |
3716 ireg_ic = FALSE; | |
3717 | |
3718 #ifdef FEAT_MBYTE | |
3719 /* If pattern contains "\Z" overrule value of ireg_icombine */ | |
3720 if (prog->regflags & RF_ICOMBINE) | |
3721 ireg_icombine = TRUE; | |
3722 #endif | |
3723 | |
3724 /* If there is a "must appear" string, look for it. */ | |
3725 if (prog->regmust != NULL) | |
3726 { | |
3727 int c; | |
3728 | |
3729 #ifdef FEAT_MBYTE | |
3730 if (has_mbyte) | |
3731 c = (*mb_ptr2char)(prog->regmust); | |
3732 else | |
3733 #endif | |
3734 c = *prog->regmust; | |
3735 s = line + col; | |
170 | 3736 |
3737 /* | |
3738 * This is used very often, esp. for ":global". Use three versions of | |
3739 * the loop to avoid overhead of conditions. | |
3740 */ | |
3741 if (!ireg_ic | |
3742 #ifdef FEAT_MBYTE | |
3743 && !has_mbyte | |
3744 #endif | |
3745 ) | |
3746 while ((s = vim_strbyte(s, c)) != NULL) | |
3747 { | |
3748 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3749 break; /* Found it. */ | |
3750 ++s; | |
3751 } | |
3752 #ifdef FEAT_MBYTE | |
3753 else if (!ireg_ic || (!enc_utf8 && mb_char2len(c) > 1)) | |
3754 while ((s = vim_strchr(s, c)) != NULL) | |
3755 { | |
3756 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3757 break; /* Found it. */ | |
3758 mb_ptr_adv(s); | |
3759 } | |
3760 #endif | |
3761 else | |
3762 while ((s = cstrchr(s, c)) != NULL) | |
3763 { | |
3764 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3765 break; /* Found it. */ | |
3766 mb_ptr_adv(s); | |
3767 } | |
7 | 3768 if (s == NULL) /* Not present. */ |
3769 goto theend; | |
3770 } | |
3771 | |
3772 regline = line; | |
3773 reglnum = 0; | |
2578 | 3774 reg_toolong = FALSE; |
7 | 3775 |
3776 /* Simplest case: Anchored match need be tried only once. */ | |
3777 if (prog->reganch) | |
3778 { | |
3779 int c; | |
3780 | |
3781 #ifdef FEAT_MBYTE | |
3782 if (has_mbyte) | |
3783 c = (*mb_ptr2char)(regline + col); | |
3784 else | |
3785 #endif | |
3786 c = regline[col]; | |
3787 if (prog->regstart == NUL | |
3788 || prog->regstart == c | |
3789 || (ireg_ic && (( | |
3790 #ifdef FEAT_MBYTE | |
3791 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c))) | |
3792 || (c < 255 && prog->regstart < 255 && | |
3793 #endif | |
1347 | 3794 MB_TOLOWER(prog->regstart) == MB_TOLOWER(c))))) |
7 | 3795 retval = regtry(prog, col); |
3796 else | |
3797 retval = 0; | |
3798 } | |
3799 else | |
3800 { | |
1521 | 3801 #ifdef FEAT_RELTIME |
3802 int tm_count = 0; | |
3803 #endif | |
7 | 3804 /* Messy cases: unanchored match. */ |
180 | 3805 while (!got_int) |
7 | 3806 { |
3807 if (prog->regstart != NUL) | |
3808 { | |
170 | 3809 /* Skip until the char we know it must start with. |
3810 * Used often, do some work to avoid call overhead. */ | |
3811 if (!ireg_ic | |
3812 #ifdef FEAT_MBYTE | |
3813 && !has_mbyte | |
3814 #endif | |
3815 ) | |
3816 s = vim_strbyte(regline + col, prog->regstart); | |
3817 else | |
3818 s = cstrchr(regline + col, prog->regstart); | |
7 | 3819 if (s == NULL) |
3820 { | |
3821 retval = 0; | |
3822 break; | |
3823 } | |
3824 col = (int)(s - regline); | |
3825 } | |
3826 | |
410 | 3827 /* Check for maximum column to try. */ |
3828 if (ireg_maxcol > 0 && col >= ireg_maxcol) | |
3829 { | |
3830 retval = 0; | |
3831 break; | |
3832 } | |
3833 | |
7 | 3834 retval = regtry(prog, col); |
3835 if (retval > 0) | |
3836 break; | |
3837 | |
3838 /* if not currently on the first line, get it again */ | |
3839 if (reglnum != 0) | |
3840 { | |
481 | 3841 reglnum = 0; |
7 | 3842 regline = reg_getline((linenr_T)0); |
3843 } | |
3844 if (regline[col] == NUL) | |
3845 break; | |
3846 #ifdef FEAT_MBYTE | |
3847 if (has_mbyte) | |
474 | 3848 col += (*mb_ptr2len)(regline + col); |
7 | 3849 else |
3850 #endif | |
3851 ++col; | |
1521 | 3852 #ifdef FEAT_RELTIME |
3853 /* Check for timeout once in a twenty times to avoid overhead. */ | |
3854 if (tm != NULL && ++tm_count == 20) | |
3855 { | |
3856 tm_count = 0; | |
3857 if (profile_passed_limit(tm)) | |
3858 break; | |
3859 } | |
3860 #endif | |
7 | 3861 } |
3862 } | |
3863 | |
3864 theend: | |
1520 | 3865 /* Free "reg_tofree" when it's a bit big. |
3866 * Free regstack and backpos if they are bigger than their initial size. */ | |
3867 if (reg_tofreelen > 400) | |
3868 { | |
3869 vim_free(reg_tofree); | |
3870 reg_tofree = NULL; | |
3871 } | |
3872 if (regstack.ga_maxlen > REGSTACK_INITIAL) | |
3873 ga_clear(®stack); | |
3874 if (backpos.ga_maxlen > BACKPOS_INITIAL) | |
3875 ga_clear(&backpos); | |
270 | 3876 |
7 | 3877 return retval; |
3878 } | |
3879 | |
3880 #ifdef FEAT_SYN_HL | |
3881 static reg_extmatch_T *make_extmatch __ARGS((void)); | |
3882 | |
3883 /* | |
3884 * Create a new extmatch and mark it as referenced once. | |
3885 */ | |
3886 static reg_extmatch_T * | |
3887 make_extmatch() | |
3888 { | |
3889 reg_extmatch_T *em; | |
3890 | |
3891 em = (reg_extmatch_T *)alloc_clear((unsigned)sizeof(reg_extmatch_T)); | |
3892 if (em != NULL) | |
3893 em->refcnt = 1; | |
3894 return em; | |
3895 } | |
3896 | |
3897 /* | |
3898 * Add a reference to an extmatch. | |
3899 */ | |
3900 reg_extmatch_T * | |
3901 ref_extmatch(em) | |
3902 reg_extmatch_T *em; | |
3903 { | |
3904 if (em != NULL) | |
3905 em->refcnt++; | |
3906 return em; | |
3907 } | |
3908 | |
3909 /* | |
3910 * Remove a reference to an extmatch. If there are no references left, free | |
3911 * the info. | |
3912 */ | |
3913 void | |
3914 unref_extmatch(em) | |
3915 reg_extmatch_T *em; | |
3916 { | |
3917 int i; | |
3918 | |
3919 if (em != NULL && --em->refcnt <= 0) | |
3920 { | |
3921 for (i = 0; i < NSUBEXP; ++i) | |
3922 vim_free(em->matches[i]); | |
3923 vim_free(em); | |
3924 } | |
3925 } | |
3926 #endif | |
3927 | |
3928 /* | |
3929 * regtry - try match of "prog" with at regline["col"]. | |
3930 * Returns 0 for failure, number of lines contained in the match otherwise. | |
3931 */ | |
3932 static long | |
3933 regtry(prog, col) | |
3934 regprog_T *prog; | |
3935 colnr_T col; | |
3936 { | |
3937 reginput = regline + col; | |
3938 need_clear_subexpr = TRUE; | |
3939 #ifdef FEAT_SYN_HL | |
3940 /* Clear the external match subpointers if necessary. */ | |
3941 if (prog->reghasz == REX_SET) | |
3942 need_clear_zsubexpr = TRUE; | |
3943 #endif | |
3944 | |
189 | 3945 if (regmatch(prog->program + 1) == 0) |
3946 return 0; | |
3947 | |
3948 cleanup_subexpr(); | |
3949 if (REG_MULTI) | |
7 | 3950 { |
189 | 3951 if (reg_startpos[0].lnum < 0) |
7 | 3952 { |
189 | 3953 reg_startpos[0].lnum = 0; |
3954 reg_startpos[0].col = col; | |
3955 } | |
3956 if (reg_endpos[0].lnum < 0) | |
3957 { | |
3958 reg_endpos[0].lnum = reglnum; | |
3959 reg_endpos[0].col = (int)(reginput - regline); | |
7 | 3960 } |
3961 else | |
189 | 3962 /* Use line number of "\ze". */ |
3963 reglnum = reg_endpos[0].lnum; | |
3964 } | |
3965 else | |
3966 { | |
3967 if (reg_startp[0] == NULL) | |
3968 reg_startp[0] = regline + col; | |
3969 if (reg_endp[0] == NULL) | |
3970 reg_endp[0] = reginput; | |
3971 } | |
7 | 3972 #ifdef FEAT_SYN_HL |
189 | 3973 /* Package any found \z(...\) matches for export. Default is none. */ |
3974 unref_extmatch(re_extmatch_out); | |
3975 re_extmatch_out = NULL; | |
3976 | |
3977 if (prog->reghasz == REX_SET) | |
3978 { | |
3979 int i; | |
3980 | |
3981 cleanup_zsubexpr(); | |
3982 re_extmatch_out = make_extmatch(); | |
3983 for (i = 0; i < NSUBEXP; i++) | |
7 | 3984 { |
189 | 3985 if (REG_MULTI) |
7 | 3986 { |
189 | 3987 /* Only accept single line matches. */ |
3988 if (reg_startzpos[i].lnum >= 0 | |
3989 && reg_endzpos[i].lnum == reg_startzpos[i].lnum) | |
3990 re_extmatch_out->matches[i] = | |
3991 vim_strnsave(reg_getline(reg_startzpos[i].lnum) | |
7 | 3992 + reg_startzpos[i].col, |
189 | 3993 reg_endzpos[i].col - reg_startzpos[i].col); |
3994 } | |
3995 else | |
3996 { | |
3997 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL) | |
3998 re_extmatch_out->matches[i] = | |
7 | 3999 vim_strnsave(reg_startzp[i], |
189 | 4000 (int)(reg_endzp[i] - reg_startzp[i])); |
7 | 4001 } |
4002 } | |
189 | 4003 } |
7 | 4004 #endif |
189 | 4005 return 1 + reglnum; |
7 | 4006 } |
4007 | |
4008 #ifdef FEAT_MBYTE | |
4009 static int reg_prev_class __ARGS((void)); | |
4010 | |
4011 /* | |
4012 * Get class of previous character. | |
4013 */ | |
4014 static int | |
4015 reg_prev_class() | |
4016 { | |
4017 if (reginput > regline) | |
4018 return mb_get_class(reginput - 1 | |
4019 - (*mb_head_off)(regline, reginput - 1)); | |
4020 return -1; | |
4021 } | |
4022 | |
4023 #endif | |
39 | 4024 #define ADVANCE_REGINPUT() mb_ptr_adv(reginput) |
7 | 4025 |
4026 /* | |
4027 * The arguments from BRACE_LIMITS are stored here. They are actually local | |
4028 * to regmatch(), but they are here to reduce the amount of stack space used | |
4029 * (it can be called recursively many times). | |
4030 */ | |
4031 static long bl_minval; | |
4032 static long bl_maxval; | |
4033 | |
4034 /* | |
4035 * regmatch - main matching routine | |
4036 * | |
180 | 4037 * Conceptually the strategy is simple: Check to see whether the current node |
4038 * matches, push an item onto the regstack and loop to see whether the rest | |
4039 * matches, and then act accordingly. In practice we make some effort to | |
4040 * avoid using the regstack, in particular by going through "ordinary" nodes | |
4041 * (that don't need to know whether the rest of the match failed) by a nested | |
4042 * loop. | |
7 | 4043 * |
4044 * Returns TRUE when there is a match. Leaves reginput and reglnum just after | |
4045 * the last matched character. | |
4046 * Returns FALSE when there is no match. Leaves reginput and reglnum in an | |
4047 * undefined state! | |
4048 */ | |
4049 static int | |
180 | 4050 regmatch(scan) |
7 | 4051 char_u *scan; /* Current node. */ |
4052 { | |
180 | 4053 char_u *next; /* Next node. */ |
4054 int op; | |
4055 int c; | |
4056 regitem_T *rp; | |
4057 int no; | |
4058 int status; /* one of the RA_ values: */ | |
4059 #define RA_FAIL 1 /* something failed, abort */ | |
4060 #define RA_CONT 2 /* continue in inner loop */ | |
4061 #define RA_BREAK 3 /* break inner loop */ | |
4062 #define RA_MATCH 4 /* successful match */ | |
4063 #define RA_NOMATCH 5 /* didn't match */ | |
270 | 4064 |
1520 | 4065 /* Make "regstack" and "backpos" empty. They are allocated and freed in |
4066 * vim_regexec_both() to reduce malloc()/free() calls. */ | |
270 | 4067 regstack.ga_len = 0; |
4068 backpos.ga_len = 0; | |
233 | 4069 |
180 | 4070 /* |
233 | 4071 * Repeat until "regstack" is empty. |
180 | 4072 */ |
4073 for (;;) | |
4074 { | |
7 | 4075 /* Some patterns my cause a long time to match, even though they are not |
4076 * illegal. E.g., "\([a-z]\+\)\+Q". Allow breaking them with CTRL-C. */ | |
4077 fast_breakcheck(); | |
4078 | |
4079 #ifdef DEBUG | |
4080 if (scan != NULL && regnarrate) | |
4081 { | |
4082 mch_errmsg(regprop(scan)); | |
4083 mch_errmsg("(\n"); | |
4084 } | |
4085 #endif | |
180 | 4086 |
4087 /* | |
233 | 4088 * Repeat for items that can be matched sequentially, without using the |
180 | 4089 * regstack. |
4090 */ | |
4091 for (;;) | |
7 | 4092 { |
180 | 4093 if (got_int || scan == NULL) |
4094 { | |
4095 status = RA_FAIL; | |
4096 break; | |
4097 } | |
4098 status = RA_CONT; | |
4099 | |
7 | 4100 #ifdef DEBUG |
4101 if (regnarrate) | |
4102 { | |
4103 mch_errmsg(regprop(scan)); | |
4104 mch_errmsg("...\n"); | |
4105 # ifdef FEAT_SYN_HL | |
4106 if (re_extmatch_in != NULL) | |
4107 { | |
4108 int i; | |
4109 | |
4110 mch_errmsg(_("External submatches:\n")); | |
4111 for (i = 0; i < NSUBEXP; i++) | |
4112 { | |
4113 mch_errmsg(" \""); | |
4114 if (re_extmatch_in->matches[i] != NULL) | |
4115 mch_errmsg(re_extmatch_in->matches[i]); | |
4116 mch_errmsg("\"\n"); | |
4117 } | |
4118 } | |
4119 # endif | |
4120 } | |
4121 #endif | |
4122 next = regnext(scan); | |
4123 | |
4124 op = OP(scan); | |
4125 /* Check for character class with NL added. */ | |
1018 | 4126 if (!reg_line_lbr && WITH_NL(op) && REG_MULTI |
4127 && *reginput == NUL && reglnum <= reg_maxline) | |
7 | 4128 { |
4129 reg_nextline(); | |
4130 } | |
4131 else if (reg_line_lbr && WITH_NL(op) && *reginput == '\n') | |
4132 { | |
4133 ADVANCE_REGINPUT(); | |
4134 } | |
4135 else | |
4136 { | |
4137 if (WITH_NL(op)) | |
180 | 4138 op -= ADD_NL; |
7 | 4139 #ifdef FEAT_MBYTE |
4140 if (has_mbyte) | |
4141 c = (*mb_ptr2char)(reginput); | |
4142 else | |
4143 #endif | |
4144 c = *reginput; | |
4145 switch (op) | |
4146 { | |
4147 case BOL: | |
4148 if (reginput != regline) | |
180 | 4149 status = RA_NOMATCH; |
7 | 4150 break; |
4151 | |
4152 case EOL: | |
4153 if (c != NUL) | |
180 | 4154 status = RA_NOMATCH; |
7 | 4155 break; |
4156 | |
4157 case RE_BOF: | |
1458 | 4158 /* We're not at the beginning of the file when below the first |
4159 * line where we started, not at the start of the line or we | |
4160 * didn't start at the first line of the buffer. */ | |
7 | 4161 if (reglnum != 0 || reginput != regline |
1458 | 4162 || (REG_MULTI && reg_firstlnum > 1)) |
180 | 4163 status = RA_NOMATCH; |
7 | 4164 break; |
4165 | |
4166 case RE_EOF: | |
4167 if (reglnum != reg_maxline || c != NUL) | |
180 | 4168 status = RA_NOMATCH; |
7 | 4169 break; |
4170 | |
4171 case CURSOR: | |
4172 /* Check if the buffer is in a window and compare the | |
4173 * reg_win->w_cursor position to the match position. */ | |
4174 if (reg_win == NULL | |
4175 || (reglnum + reg_firstlnum != reg_win->w_cursor.lnum) | |
4176 || ((colnr_T)(reginput - regline) != reg_win->w_cursor.col)) | |
180 | 4177 status = RA_NOMATCH; |
7 | 4178 break; |
4179 | |
639 | 4180 case RE_MARK: |
4181 /* Compare the mark position to the match position. NOTE: Always | |
4182 * uses the current buffer. */ | |
4183 { | |
4184 int mark = OPERAND(scan)[0]; | |
4185 int cmp = OPERAND(scan)[1]; | |
4186 pos_T *pos; | |
4187 | |
4188 pos = getmark(mark, FALSE); | |
1148 | 4189 if (pos == NULL /* mark doesn't exist */ |
639 | 4190 || pos->lnum <= 0 /* mark isn't set (in curbuf) */ |
4191 || (pos->lnum == reglnum + reg_firstlnum | |
4192 ? (pos->col == (colnr_T)(reginput - regline) | |
4193 ? (cmp == '<' || cmp == '>') | |
4194 : (pos->col < (colnr_T)(reginput - regline) | |
4195 ? cmp != '>' | |
4196 : cmp != '<')) | |
4197 : (pos->lnum < reglnum + reg_firstlnum | |
4198 ? cmp != '>' | |
4199 : cmp != '<'))) | |
4200 status = RA_NOMATCH; | |
4201 } | |
4202 break; | |
4203 | |
4204 case RE_VISUAL: | |
4205 #ifdef FEAT_VISUAL | |
4206 /* Check if the buffer is the current buffer. and whether the | |
4207 * position is inside the Visual area. */ | |
4208 if (reg_buf != curbuf || VIsual.lnum == 0) | |
4209 status = RA_NOMATCH; | |
4210 else | |
4211 { | |
4212 pos_T top, bot; | |
4213 linenr_T lnum; | |
4214 colnr_T col; | |
4215 win_T *wp = reg_win == NULL ? curwin : reg_win; | |
4216 int mode; | |
4217 | |
4218 if (VIsual_active) | |
4219 { | |
4220 if (lt(VIsual, wp->w_cursor)) | |
4221 { | |
4222 top = VIsual; | |
4223 bot = wp->w_cursor; | |
4224 } | |
4225 else | |
4226 { | |
4227 top = wp->w_cursor; | |
4228 bot = VIsual; | |
4229 } | |
4230 mode = VIsual_mode; | |
4231 } | |
4232 else | |
4233 { | |
692 | 4234 if (lt(curbuf->b_visual.vi_start, curbuf->b_visual.vi_end)) |
685 | 4235 { |
692 | 4236 top = curbuf->b_visual.vi_start; |
4237 bot = curbuf->b_visual.vi_end; | |
685 | 4238 } |
4239 else | |
4240 { | |
692 | 4241 top = curbuf->b_visual.vi_end; |
4242 bot = curbuf->b_visual.vi_start; | |
685 | 4243 } |
692 | 4244 mode = curbuf->b_visual.vi_mode; |
639 | 4245 } |
4246 lnum = reglnum + reg_firstlnum; | |
4247 col = (colnr_T)(reginput - regline); | |
4248 if (lnum < top.lnum || lnum > bot.lnum) | |
4249 status = RA_NOMATCH; | |
4250 else if (mode == 'v') | |
4251 { | |
4252 if ((lnum == top.lnum && col < top.col) | |
4253 || (lnum == bot.lnum | |
4254 && col >= bot.col + (*p_sel != 'e'))) | |
4255 status = RA_NOMATCH; | |
4256 } | |
4257 else if (mode == Ctrl_V) | |
4258 { | |
4259 colnr_T start, end; | |
4260 colnr_T start2, end2; | |
944 | 4261 colnr_T cols; |
639 | 4262 |
4263 getvvcol(wp, &top, &start, NULL, &end); | |
4264 getvvcol(wp, &bot, &start2, NULL, &end2); | |
4265 if (start2 < start) | |
4266 start = start2; | |
4267 if (end2 > end) | |
4268 end = end2; | |
4269 if (top.col == MAXCOL || bot.col == MAXCOL) | |
4270 end = MAXCOL; | |
944 | 4271 cols = win_linetabsize(wp, |
639 | 4272 regline, (colnr_T)(reginput - regline)); |
944 | 4273 if (cols < start || cols > end - (*p_sel == 'e')) |
639 | 4274 status = RA_NOMATCH; |
4275 } | |
4276 } | |
4277 #else | |
4278 status = RA_NOMATCH; | |
4279 #endif | |
4280 break; | |
4281 | |
7 | 4282 case RE_LNUM: |
4283 if (!REG_MULTI || !re_num_cmp((long_u)(reglnum + reg_firstlnum), | |
4284 scan)) | |
180 | 4285 status = RA_NOMATCH; |
7 | 4286 break; |
4287 | |
4288 case RE_COL: | |
4289 if (!re_num_cmp((long_u)(reginput - regline) + 1, scan)) | |
180 | 4290 status = RA_NOMATCH; |
7 | 4291 break; |
4292 | |
4293 case RE_VCOL: | |
4294 if (!re_num_cmp((long_u)win_linetabsize( | |
4295 reg_win == NULL ? curwin : reg_win, | |
4296 regline, (colnr_T)(reginput - regline)) + 1, scan)) | |
180 | 4297 status = RA_NOMATCH; |
7 | 4298 break; |
4299 | |
4300 case BOW: /* \<word; reginput points to w */ | |
4301 if (c == NUL) /* Can't match at end of line */ | |
180 | 4302 status = RA_NOMATCH; |
7 | 4303 #ifdef FEAT_MBYTE |
180 | 4304 else if (has_mbyte) |
7 | 4305 { |
4306 int this_class; | |
4307 | |
4308 /* Get class of current and previous char (if it exists). */ | |
4309 this_class = mb_get_class(reginput); | |
4310 if (this_class <= 1) | |
180 | 4311 status = RA_NOMATCH; /* not on a word at all */ |
4312 else if (reg_prev_class() == this_class) | |
4313 status = RA_NOMATCH; /* previous char is in same word */ | |
7 | 4314 } |
4315 #endif | |
4316 else | |
4317 { | |
4318 if (!vim_iswordc(c) | |
4319 || (reginput > regline && vim_iswordc(reginput[-1]))) | |
180 | 4320 status = RA_NOMATCH; |
7 | 4321 } |
4322 break; | |
4323 | |
4324 case EOW: /* word\>; reginput points after d */ | |
4325 if (reginput == regline) /* Can't match at start of line */ | |
180 | 4326 status = RA_NOMATCH; |
7 | 4327 #ifdef FEAT_MBYTE |
180 | 4328 else if (has_mbyte) |
7 | 4329 { |
4330 int this_class, prev_class; | |
4331 | |
4332 /* Get class of current and previous char (if it exists). */ | |
4333 this_class = mb_get_class(reginput); | |
4334 prev_class = reg_prev_class(); | |
180 | 4335 if (this_class == prev_class |
4336 || prev_class == 0 || prev_class == 1) | |
4337 status = RA_NOMATCH; | |
7 | 4338 } |
180 | 4339 #endif |
7 | 4340 else |
4341 { | |
180 | 4342 if (!vim_iswordc(reginput[-1]) |
4343 || (reginput[0] != NUL && vim_iswordc(c))) | |
4344 status = RA_NOMATCH; | |
7 | 4345 } |
4346 break; /* Matched with EOW */ | |
4347 | |
4348 case ANY: | |
4349 if (c == NUL) | |
180 | 4350 status = RA_NOMATCH; |
4351 else | |
4352 ADVANCE_REGINPUT(); | |
7 | 4353 break; |
4354 | |
4355 case IDENT: | |
4356 if (!vim_isIDc(c)) | |
180 | 4357 status = RA_NOMATCH; |
4358 else | |
4359 ADVANCE_REGINPUT(); | |
7 | 4360 break; |
4361 | |
4362 case SIDENT: | |
4363 if (VIM_ISDIGIT(*reginput) || !vim_isIDc(c)) | |
180 | 4364 status = RA_NOMATCH; |
4365 else | |
4366 ADVANCE_REGINPUT(); | |
7 | 4367 break; |
4368 | |
4369 case KWORD: | |
4370 if (!vim_iswordp(reginput)) | |
180 | 4371 status = RA_NOMATCH; |
4372 else | |
4373 ADVANCE_REGINPUT(); | |
7 | 4374 break; |
4375 | |
4376 case SKWORD: | |
4377 if (VIM_ISDIGIT(*reginput) || !vim_iswordp(reginput)) | |
180 | 4378 status = RA_NOMATCH; |
4379 else | |
4380 ADVANCE_REGINPUT(); | |
7 | 4381 break; |
4382 | |
4383 case FNAME: | |
4384 if (!vim_isfilec(c)) | |
180 | 4385 status = RA_NOMATCH; |
4386 else | |
4387 ADVANCE_REGINPUT(); | |
7 | 4388 break; |
4389 | |
4390 case SFNAME: | |
4391 if (VIM_ISDIGIT(*reginput) || !vim_isfilec(c)) | |
180 | 4392 status = RA_NOMATCH; |
4393 else | |
4394 ADVANCE_REGINPUT(); | |
7 | 4395 break; |
4396 | |
4397 case PRINT: | |
4398 if (ptr2cells(reginput) != 1) | |
180 | 4399 status = RA_NOMATCH; |
4400 else | |
4401 ADVANCE_REGINPUT(); | |
7 | 4402 break; |
4403 | |
4404 case SPRINT: | |
4405 if (VIM_ISDIGIT(*reginput) || ptr2cells(reginput) != 1) | |
180 | 4406 status = RA_NOMATCH; |
4407 else | |
4408 ADVANCE_REGINPUT(); | |
7 | 4409 break; |
4410 | |
4411 case WHITE: | |
4412 if (!vim_iswhite(c)) | |
180 | 4413 status = RA_NOMATCH; |
4414 else | |
4415 ADVANCE_REGINPUT(); | |
7 | 4416 break; |
4417 | |
4418 case NWHITE: | |
4419 if (c == NUL || vim_iswhite(c)) | |
180 | 4420 status = RA_NOMATCH; |
4421 else | |
4422 ADVANCE_REGINPUT(); | |
7 | 4423 break; |
4424 | |
4425 case DIGIT: | |
4426 if (!ri_digit(c)) | |
180 | 4427 status = RA_NOMATCH; |
4428 else | |
4429 ADVANCE_REGINPUT(); | |
7 | 4430 break; |
4431 | |
4432 case NDIGIT: | |
4433 if (c == NUL || ri_digit(c)) | |
180 | 4434 status = RA_NOMATCH; |
4435 else | |
4436 ADVANCE_REGINPUT(); | |
7 | 4437 break; |
4438 | |
4439 case HEX: | |
4440 if (!ri_hex(c)) | |
180 | 4441 status = RA_NOMATCH; |
4442 else | |
4443 ADVANCE_REGINPUT(); | |
7 | 4444 break; |
4445 | |
4446 case NHEX: | |
4447 if (c == NUL || ri_hex(c)) | |
180 | 4448 status = RA_NOMATCH; |
4449 else | |
4450 ADVANCE_REGINPUT(); | |
7 | 4451 break; |
4452 | |
4453 case OCTAL: | |
4454 if (!ri_octal(c)) | |
180 | 4455 status = RA_NOMATCH; |
4456 else | |
4457 ADVANCE_REGINPUT(); | |
7 | 4458 break; |
4459 | |
4460 case NOCTAL: | |
4461 if (c == NUL || ri_octal(c)) | |
180 | 4462 status = RA_NOMATCH; |
4463 else | |
4464 ADVANCE_REGINPUT(); | |
7 | 4465 break; |
4466 | |
4467 case WORD: | |
4468 if (!ri_word(c)) | |
180 | 4469 status = RA_NOMATCH; |
4470 else | |
4471 ADVANCE_REGINPUT(); | |
7 | 4472 break; |
4473 | |
4474 case NWORD: | |
4475 if (c == NUL || ri_word(c)) | |
180 | 4476 status = RA_NOMATCH; |
4477 else | |
4478 ADVANCE_REGINPUT(); | |
7 | 4479 break; |
4480 | |
4481 case HEAD: | |
4482 if (!ri_head(c)) | |
180 | 4483 status = RA_NOMATCH; |
4484 else | |
4485 ADVANCE_REGINPUT(); | |
7 | 4486 break; |
4487 | |
4488 case NHEAD: | |
4489 if (c == NUL || ri_head(c)) | |
180 | 4490 status = RA_NOMATCH; |
4491 else | |
4492 ADVANCE_REGINPUT(); | |
7 | 4493 break; |
4494 | |
4495 case ALPHA: | |
4496 if (!ri_alpha(c)) | |
180 | 4497 status = RA_NOMATCH; |
4498 else | |
4499 ADVANCE_REGINPUT(); | |
7 | 4500 break; |
4501 | |
4502 case NALPHA: | |
4503 if (c == NUL || ri_alpha(c)) | |
180 | 4504 status = RA_NOMATCH; |
4505 else | |
4506 ADVANCE_REGINPUT(); | |
7 | 4507 break; |
4508 | |
4509 case LOWER: | |
4510 if (!ri_lower(c)) | |
180 | 4511 status = RA_NOMATCH; |
4512 else | |
4513 ADVANCE_REGINPUT(); | |
7 | 4514 break; |
4515 | |
4516 case NLOWER: | |
4517 if (c == NUL || ri_lower(c)) | |
180 | 4518 status = RA_NOMATCH; |
4519 else | |
4520 ADVANCE_REGINPUT(); | |
7 | 4521 break; |
4522 | |
4523 case UPPER: | |
4524 if (!ri_upper(c)) | |
180 | 4525 status = RA_NOMATCH; |
4526 else | |
4527 ADVANCE_REGINPUT(); | |
7 | 4528 break; |
4529 | |
4530 case NUPPER: | |
4531 if (c == NUL || ri_upper(c)) | |
180 | 4532 status = RA_NOMATCH; |
4533 else | |
4534 ADVANCE_REGINPUT(); | |
7 | 4535 break; |
4536 | |
4537 case EXACTLY: | |
4538 { | |
4539 int len; | |
4540 char_u *opnd; | |
4541 | |
4542 opnd = OPERAND(scan); | |
4543 /* Inline the first byte, for speed. */ | |
4544 if (*opnd != *reginput | |
4545 && (!ireg_ic || ( | |
4546 #ifdef FEAT_MBYTE | |
4547 !enc_utf8 && | |
4548 #endif | |
1347 | 4549 MB_TOLOWER(*opnd) != MB_TOLOWER(*reginput)))) |
180 | 4550 status = RA_NOMATCH; |
4551 else if (*opnd == NUL) | |
7 | 4552 { |
4553 /* match empty string always works; happens when "~" is | |
4554 * empty. */ | |
4555 } | |
4556 else if (opnd[1] == NUL | |
4557 #ifdef FEAT_MBYTE | |
4558 && !(enc_utf8 && ireg_ic) | |
4559 #endif | |
4560 ) | |
4561 ++reginput; /* matched a single char */ | |
4562 else | |
4563 { | |
4564 len = (int)STRLEN(opnd); | |
4565 /* Need to match first byte again for multi-byte. */ | |
4566 if (cstrncmp(opnd, reginput, &len) != 0) | |
180 | 4567 status = RA_NOMATCH; |
7 | 4568 #ifdef FEAT_MBYTE |
4569 /* Check for following composing character. */ | |
180 | 4570 else if (enc_utf8 |
4571 && UTF_COMPOSINGLIKE(reginput, reginput + len)) | |
7 | 4572 { |
4573 /* raaron: This code makes a composing character get | |
4574 * ignored, which is the correct behavior (sometimes) | |
4575 * for voweled Hebrew texts. */ | |
4576 if (!ireg_icombine) | |
180 | 4577 status = RA_NOMATCH; |
7 | 4578 } |
180 | 4579 #endif |
7 | 4580 else |
180 | 4581 reginput += len; |
7 | 4582 } |
4583 } | |
4584 break; | |
4585 | |
4586 case ANYOF: | |
4587 case ANYBUT: | |
4588 if (c == NUL) | |
180 | 4589 status = RA_NOMATCH; |
4590 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF)) | |
4591 status = RA_NOMATCH; | |
4592 else | |
4593 ADVANCE_REGINPUT(); | |
7 | 4594 break; |
4595 | |
4596 #ifdef FEAT_MBYTE | |
4597 case MULTIBYTECODE: | |
4598 if (has_mbyte) | |
4599 { | |
4600 int i, len; | |
4601 char_u *opnd; | |
944 | 4602 int opndc = 0, inpc; |
7 | 4603 |
4604 opnd = OPERAND(scan); | |
4605 /* Safety check (just in case 'encoding' was changed since | |
4606 * compiling the program). */ | |
474 | 4607 if ((len = (*mb_ptr2len)(opnd)) < 2) |
180 | 4608 { |
4609 status = RA_NOMATCH; | |
4610 break; | |
4611 } | |
714 | 4612 if (enc_utf8) |
4613 opndc = mb_ptr2char(opnd); | |
4614 if (enc_utf8 && utf_iscomposing(opndc)) | |
4615 { | |
4616 /* When only a composing char is given match at any | |
4617 * position where that composing char appears. */ | |
4618 status = RA_NOMATCH; | |
4619 for (i = 0; reginput[i] != NUL; i += utf_char2len(inpc)) | |
180 | 4620 { |
714 | 4621 inpc = mb_ptr2char(reginput + i); |
4622 if (!utf_iscomposing(inpc)) | |
4623 { | |
4624 if (i > 0) | |
4625 break; | |
4626 } | |
4627 else if (opndc == inpc) | |
4628 { | |
4629 /* Include all following composing chars. */ | |
4630 len = i + mb_ptr2len(reginput + i); | |
4631 status = RA_MATCH; | |
4632 break; | |
4633 } | |
180 | 4634 } |
714 | 4635 } |
4636 else | |
4637 for (i = 0; i < len; ++i) | |
4638 if (opnd[i] != reginput[i]) | |
4639 { | |
4640 status = RA_NOMATCH; | |
4641 break; | |
4642 } | |
7 | 4643 reginput += len; |
4644 } | |
4645 else | |
180 | 4646 status = RA_NOMATCH; |
7 | 4647 break; |
4648 #endif | |
4649 | |
4650 case NOTHING: | |
4651 break; | |
4652 | |
4653 case BACK: | |
233 | 4654 { |
4655 int i; | |
4656 backpos_T *bp; | |
4657 | |
4658 /* | |
4659 * When we run into BACK we need to check if we don't keep | |
4660 * looping without matching any input. The second and later | |
4661 * times a BACK is encountered it fails if the input is still | |
4662 * at the same position as the previous time. | |
4663 * The positions are stored in "backpos" and found by the | |
4664 * current value of "scan", the position in the RE program. | |
4665 */ | |
4666 bp = (backpos_T *)backpos.ga_data; | |
4667 for (i = 0; i < backpos.ga_len; ++i) | |
4668 if (bp[i].bp_scan == scan) | |
4669 break; | |
4670 if (i == backpos.ga_len) | |
4671 { | |
4672 /* First time at this BACK, make room to store the pos. */ | |
4673 if (ga_grow(&backpos, 1) == FAIL) | |
4674 status = RA_FAIL; | |
4675 else | |
4676 { | |
4677 /* get "ga_data" again, it may have changed */ | |
4678 bp = (backpos_T *)backpos.ga_data; | |
4679 bp[i].bp_scan = scan; | |
4680 ++backpos.ga_len; | |
4681 } | |
4682 } | |
4683 else if (reg_save_equal(&bp[i].bp_pos)) | |
4684 /* Still at same position as last time, fail. */ | |
4685 status = RA_NOMATCH; | |
4686 | |
4687 if (status != RA_FAIL && status != RA_NOMATCH) | |
4688 reg_save(&bp[i].bp_pos, &backpos); | |
4689 } | |
179 | 4690 break; |
4691 | |
7 | 4692 case MOPEN + 0: /* Match start: \zs */ |
4693 case MOPEN + 1: /* \( */ | |
4694 case MOPEN + 2: | |
4695 case MOPEN + 3: | |
4696 case MOPEN + 4: | |
4697 case MOPEN + 5: | |
4698 case MOPEN + 6: | |
4699 case MOPEN + 7: | |
4700 case MOPEN + 8: | |
4701 case MOPEN + 9: | |
4702 { | |
4703 no = op - MOPEN; | |
4704 cleanup_subexpr(); | |
270 | 4705 rp = regstack_push(RS_MOPEN, scan); |
180 | 4706 if (rp == NULL) |
4707 status = RA_FAIL; | |
4708 else | |
4709 { | |
4710 rp->rs_no = no; | |
4711 save_se(&rp->rs_un.sesave, ®_startpos[no], | |
4712 ®_startp[no]); | |
4713 /* We simply continue and handle the result when done. */ | |
4714 } | |
7 | 4715 } |
180 | 4716 break; |
7 | 4717 |
4718 case NOPEN: /* \%( */ | |
4719 case NCLOSE: /* \) after \%( */ | |
270 | 4720 if (regstack_push(RS_NOPEN, scan) == NULL) |
180 | 4721 status = RA_FAIL; |
4722 /* We simply continue and handle the result when done. */ | |
4723 break; | |
7 | 4724 |
4725 #ifdef FEAT_SYN_HL | |
4726 case ZOPEN + 1: | |
4727 case ZOPEN + 2: | |
4728 case ZOPEN + 3: | |
4729 case ZOPEN + 4: | |
4730 case ZOPEN + 5: | |
4731 case ZOPEN + 6: | |
4732 case ZOPEN + 7: | |
4733 case ZOPEN + 8: | |
4734 case ZOPEN + 9: | |
4735 { | |
4736 no = op - ZOPEN; | |
4737 cleanup_zsubexpr(); | |
270 | 4738 rp = regstack_push(RS_ZOPEN, scan); |
180 | 4739 if (rp == NULL) |
4740 status = RA_FAIL; | |
4741 else | |
4742 { | |
4743 rp->rs_no = no; | |
4744 save_se(&rp->rs_un.sesave, ®_startzpos[no], | |
4745 ®_startzp[no]); | |
4746 /* We simply continue and handle the result when done. */ | |
4747 } | |
7 | 4748 } |
180 | 4749 break; |
7 | 4750 #endif |
4751 | |
4752 case MCLOSE + 0: /* Match end: \ze */ | |
4753 case MCLOSE + 1: /* \) */ | |
4754 case MCLOSE + 2: | |
4755 case MCLOSE + 3: | |
4756 case MCLOSE + 4: | |
4757 case MCLOSE + 5: | |
4758 case MCLOSE + 6: | |
4759 case MCLOSE + 7: | |
4760 case MCLOSE + 8: | |
4761 case MCLOSE + 9: | |
4762 { | |
4763 no = op - MCLOSE; | |
4764 cleanup_subexpr(); | |
270 | 4765 rp = regstack_push(RS_MCLOSE, scan); |
180 | 4766 if (rp == NULL) |
4767 status = RA_FAIL; | |
4768 else | |
4769 { | |
4770 rp->rs_no = no; | |
4771 save_se(&rp->rs_un.sesave, ®_endpos[no], ®_endp[no]); | |
4772 /* We simply continue and handle the result when done. */ | |
4773 } | |
7 | 4774 } |
180 | 4775 break; |
7 | 4776 |
4777 #ifdef FEAT_SYN_HL | |
4778 case ZCLOSE + 1: /* \) after \z( */ | |
4779 case ZCLOSE + 2: | |
4780 case ZCLOSE + 3: | |
4781 case ZCLOSE + 4: | |
4782 case ZCLOSE + 5: | |
4783 case ZCLOSE + 6: | |
4784 case ZCLOSE + 7: | |
4785 case ZCLOSE + 8: | |
4786 case ZCLOSE + 9: | |
4787 { | |
4788 no = op - ZCLOSE; | |
4789 cleanup_zsubexpr(); | |
270 | 4790 rp = regstack_push(RS_ZCLOSE, scan); |
180 | 4791 if (rp == NULL) |
4792 status = RA_FAIL; | |
4793 else | |
4794 { | |
4795 rp->rs_no = no; | |
4796 save_se(&rp->rs_un.sesave, ®_endzpos[no], | |
4797 ®_endzp[no]); | |
4798 /* We simply continue and handle the result when done. */ | |
4799 } | |
7 | 4800 } |
180 | 4801 break; |
7 | 4802 #endif |
4803 | |
4804 case BACKREF + 1: | |
4805 case BACKREF + 2: | |
4806 case BACKREF + 3: | |
4807 case BACKREF + 4: | |
4808 case BACKREF + 5: | |
4809 case BACKREF + 6: | |
4810 case BACKREF + 7: | |
4811 case BACKREF + 8: | |
4812 case BACKREF + 9: | |
4813 { | |
4814 int len; | |
4815 linenr_T clnum; | |
4816 colnr_T ccol; | |
4817 char_u *p; | |
4818 | |
4819 no = op - BACKREF; | |
4820 cleanup_subexpr(); | |
4821 if (!REG_MULTI) /* Single-line regexp */ | |
4822 { | |
1815 | 4823 if (reg_startp[no] == NULL || reg_endp[no] == NULL) |
7 | 4824 { |
4825 /* Backref was not set: Match an empty string. */ | |
4826 len = 0; | |
4827 } | |
4828 else | |
4829 { | |
4830 /* Compare current input with back-ref in the same | |
4831 * line. */ | |
4832 len = (int)(reg_endp[no] - reg_startp[no]); | |
4833 if (cstrncmp(reg_startp[no], reginput, &len) != 0) | |
180 | 4834 status = RA_NOMATCH; |
7 | 4835 } |
4836 } | |
4837 else /* Multi-line regexp */ | |
4838 { | |
1815 | 4839 if (reg_startpos[no].lnum < 0 || reg_endpos[no].lnum < 0) |
7 | 4840 { |
4841 /* Backref was not set: Match an empty string. */ | |
4842 len = 0; | |
4843 } | |
4844 else | |
4845 { | |
4846 if (reg_startpos[no].lnum == reglnum | |
4847 && reg_endpos[no].lnum == reglnum) | |
4848 { | |
4849 /* Compare back-ref within the current line. */ | |
4850 len = reg_endpos[no].col - reg_startpos[no].col; | |
4851 if (cstrncmp(regline + reg_startpos[no].col, | |
4852 reginput, &len) != 0) | |
180 | 4853 status = RA_NOMATCH; |
7 | 4854 } |
4855 else | |
4856 { | |
4857 /* Messy situation: Need to compare between two | |
4858 * lines. */ | |
4859 ccol = reg_startpos[no].col; | |
4860 clnum = reg_startpos[no].lnum; | |
4861 for (;;) | |
4862 { | |
4863 /* Since getting one line may invalidate | |
4864 * the other, need to make copy. Slow! */ | |
4865 if (regline != reg_tofree) | |
4866 { | |
4867 len = (int)STRLEN(regline); | |
4868 if (reg_tofree == NULL | |
4869 || len >= (int)reg_tofreelen) | |
4870 { | |
4871 len += 50; /* get some extra */ | |
4872 vim_free(reg_tofree); | |
4873 reg_tofree = alloc(len); | |
4874 if (reg_tofree == NULL) | |
180 | 4875 { |
4876 status = RA_FAIL; /* outof memory!*/ | |
4877 break; | |
4878 } | |
7 | 4879 reg_tofreelen = len; |
4880 } | |
4881 STRCPY(reg_tofree, regline); | |
4882 reginput = reg_tofree | |
4883 + (reginput - regline); | |
4884 regline = reg_tofree; | |
4885 } | |
4886 | |
4887 /* Get the line to compare with. */ | |
4888 p = reg_getline(clnum); | |
4889 if (clnum == reg_endpos[no].lnum) | |
4890 len = reg_endpos[no].col - ccol; | |
4891 else | |
4892 len = (int)STRLEN(p + ccol); | |
4893 | |
4894 if (cstrncmp(p + ccol, reginput, &len) != 0) | |
180 | 4895 { |
4896 status = RA_NOMATCH; /* doesn't match */ | |
4897 break; | |
4898 } | |
7 | 4899 if (clnum == reg_endpos[no].lnum) |
4900 break; /* match and at end! */ | |
481 | 4901 if (reglnum >= reg_maxline) |
180 | 4902 { |
4903 status = RA_NOMATCH; /* text too short */ | |
4904 break; | |
4905 } | |
7 | 4906 |
4907 /* Advance to next line. */ | |
4908 reg_nextline(); | |
4909 ++clnum; | |
4910 ccol = 0; | |
180 | 4911 if (got_int) |
4912 { | |
4913 status = RA_FAIL; | |
4914 break; | |
4915 } | |
7 | 4916 } |
4917 | |
4918 /* found a match! Note that regline may now point | |
4919 * to a copy of the line, that should not matter. */ | |
4920 } | |
4921 } | |
4922 } | |
4923 | |
4924 /* Matched the backref, skip over it. */ | |
4925 reginput += len; | |
4926 } | |
4927 break; | |
4928 | |
4929 #ifdef FEAT_SYN_HL | |
4930 case ZREF + 1: | |
4931 case ZREF + 2: | |
4932 case ZREF + 3: | |
4933 case ZREF + 4: | |
4934 case ZREF + 5: | |
4935 case ZREF + 6: | |
4936 case ZREF + 7: | |
4937 case ZREF + 8: | |
4938 case ZREF + 9: | |
4939 { | |
4940 int len; | |
4941 | |
4942 cleanup_zsubexpr(); | |
4943 no = op - ZREF; | |
4944 if (re_extmatch_in != NULL | |
4945 && re_extmatch_in->matches[no] != NULL) | |
4946 { | |
4947 len = (int)STRLEN(re_extmatch_in->matches[no]); | |
4948 if (cstrncmp(re_extmatch_in->matches[no], | |
4949 reginput, &len) != 0) | |
180 | 4950 status = RA_NOMATCH; |
4951 else | |
4952 reginput += len; | |
7 | 4953 } |
4954 else | |
4955 { | |
4956 /* Backref was not set: Match an empty string. */ | |
4957 } | |
4958 } | |
4959 break; | |
4960 #endif | |
4961 | |
4962 case BRANCH: | |
4963 { | |
4964 if (OP(next) != BRANCH) /* No choice. */ | |
4965 next = OPERAND(scan); /* Avoid recursion. */ | |
4966 else | |
4967 { | |
270 | 4968 rp = regstack_push(RS_BRANCH, scan); |
180 | 4969 if (rp == NULL) |
4970 status = RA_FAIL; | |
4971 else | |
4972 status = RA_BREAK; /* rest is below */ | |
7 | 4973 } |
4974 } | |
4975 break; | |
4976 | |
4977 case BRACE_LIMITS: | |
4978 { | |
4979 if (OP(next) == BRACE_SIMPLE) | |
4980 { | |
4981 bl_minval = OPERAND_MIN(scan); | |
4982 bl_maxval = OPERAND_MAX(scan); | |
4983 } | |
4984 else if (OP(next) >= BRACE_COMPLEX | |
4985 && OP(next) < BRACE_COMPLEX + 10) | |
4986 { | |
4987 no = OP(next) - BRACE_COMPLEX; | |
4988 brace_min[no] = OPERAND_MIN(scan); | |
4989 brace_max[no] = OPERAND_MAX(scan); | |
4990 brace_count[no] = 0; | |
4991 } | |
4992 else | |
4993 { | |
4994 EMSG(_(e_internal)); /* Shouldn't happen */ | |
180 | 4995 status = RA_FAIL; |
7 | 4996 } |
4997 } | |
4998 break; | |
4999 | |
5000 case BRACE_COMPLEX + 0: | |
5001 case BRACE_COMPLEX + 1: | |
5002 case BRACE_COMPLEX + 2: | |
5003 case BRACE_COMPLEX + 3: | |
5004 case BRACE_COMPLEX + 4: | |
5005 case BRACE_COMPLEX + 5: | |
5006 case BRACE_COMPLEX + 6: | |
5007 case BRACE_COMPLEX + 7: | |
5008 case BRACE_COMPLEX + 8: | |
5009 case BRACE_COMPLEX + 9: | |
5010 { | |
5011 no = op - BRACE_COMPLEX; | |
5012 ++brace_count[no]; | |
5013 | |
5014 /* If not matched enough times yet, try one more */ | |
5015 if (brace_count[no] <= (brace_min[no] <= brace_max[no] | |
180 | 5016 ? brace_min[no] : brace_max[no])) |
7 | 5017 { |
270 | 5018 rp = regstack_push(RS_BRCPLX_MORE, scan); |
180 | 5019 if (rp == NULL) |
5020 status = RA_FAIL; | |
5021 else | |
5022 { | |
5023 rp->rs_no = no; | |
233 | 5024 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5025 next = OPERAND(scan); |
5026 /* We continue and handle the result when done. */ | |
5027 } | |
5028 break; | |
7 | 5029 } |
5030 | |
5031 /* If matched enough times, may try matching some more */ | |
5032 if (brace_min[no] <= brace_max[no]) | |
5033 { | |
5034 /* Range is the normal way around, use longest match */ | |
5035 if (brace_count[no] <= brace_max[no]) | |
5036 { | |
270 | 5037 rp = regstack_push(RS_BRCPLX_LONG, scan); |
180 | 5038 if (rp == NULL) |
5039 status = RA_FAIL; | |
5040 else | |
5041 { | |
5042 rp->rs_no = no; | |
233 | 5043 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5044 next = OPERAND(scan); |
5045 /* We continue and handle the result when done. */ | |
5046 } | |
7 | 5047 } |
5048 } | |
5049 else | |
5050 { | |
5051 /* Range is backwards, use shortest match first */ | |
5052 if (brace_count[no] <= brace_min[no]) | |
5053 { | |
270 | 5054 rp = regstack_push(RS_BRCPLX_SHORT, scan); |
180 | 5055 if (rp == NULL) |
5056 status = RA_FAIL; | |
5057 else | |
5058 { | |
233 | 5059 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5060 /* We continue and handle the result when done. */ |
5061 } | |
7 | 5062 } |
5063 } | |
5064 } | |
5065 break; | |
5066 | |
5067 case BRACE_SIMPLE: | |
5068 case STAR: | |
5069 case PLUS: | |
5070 { | |
180 | 5071 regstar_T rst; |
7 | 5072 |
5073 /* | |
5074 * Lookahead to avoid useless match attempts when we know | |
5075 * what character comes next. | |
5076 */ | |
5077 if (OP(next) == EXACTLY) | |
5078 { | |
180 | 5079 rst.nextb = *OPERAND(next); |
7 | 5080 if (ireg_ic) |
5081 { | |
1347 | 5082 if (MB_ISUPPER(rst.nextb)) |
5083 rst.nextb_ic = MB_TOLOWER(rst.nextb); | |
7 | 5084 else |
1347 | 5085 rst.nextb_ic = MB_TOUPPER(rst.nextb); |
7 | 5086 } |
5087 else | |
180 | 5088 rst.nextb_ic = rst.nextb; |
7 | 5089 } |
5090 else | |
5091 { | |
180 | 5092 rst.nextb = NUL; |
5093 rst.nextb_ic = NUL; | |
7 | 5094 } |
5095 if (op != BRACE_SIMPLE) | |
5096 { | |
180 | 5097 rst.minval = (op == STAR) ? 0 : 1; |
5098 rst.maxval = MAX_LIMIT; | |
7 | 5099 } |
5100 else | |
5101 { | |
180 | 5102 rst.minval = bl_minval; |
5103 rst.maxval = bl_maxval; | |
7 | 5104 } |
5105 | |
5106 /* | |
5107 * When maxval > minval, try matching as much as possible, up | |
5108 * to maxval. When maxval < minval, try matching at least the | |
5109 * minimal number (since the range is backwards, that's also | |
5110 * maxval!). | |
5111 */ | |
180 | 5112 rst.count = regrepeat(OPERAND(scan), rst.maxval); |
7 | 5113 if (got_int) |
180 | 5114 { |
5115 status = RA_FAIL; | |
5116 break; | |
5117 } | |
5118 if (rst.minval <= rst.maxval | |
5119 ? rst.count >= rst.minval : rst.count >= rst.maxval) | |
7 | 5120 { |
180 | 5121 /* It could match. Prepare for trying to match what |
5122 * follows. The code is below. Parameters are stored in | |
5123 * a regstar_T on the regstack. */ | |
212 | 5124 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5125 { |
5126 EMSG(_(e_maxmempat)); | |
5127 status = RA_FAIL; | |
5128 } | |
5129 else if (ga_grow(®stack, sizeof(regstar_T)) == FAIL) | |
180 | 5130 status = RA_FAIL; |
5131 else | |
7 | 5132 { |
180 | 5133 regstack.ga_len += sizeof(regstar_T); |
270 | 5134 rp = regstack_push(rst.minval <= rst.maxval |
233 | 5135 ? RS_STAR_LONG : RS_STAR_SHORT, scan); |
180 | 5136 if (rp == NULL) |
5137 status = RA_FAIL; | |
5138 else | |
7 | 5139 { |
180 | 5140 *(((regstar_T *)rp) - 1) = rst; |
5141 status = RA_BREAK; /* skip the restore bits */ | |
7 | 5142 } |
5143 } | |
5144 } | |
5145 else | |
180 | 5146 status = RA_NOMATCH; |
5147 | |
7 | 5148 } |
180 | 5149 break; |
7 | 5150 |
5151 case NOMATCH: | |
5152 case MATCH: | |
5153 case SUBPAT: | |
270 | 5154 rp = regstack_push(RS_NOMATCH, scan); |
180 | 5155 if (rp == NULL) |
5156 status = RA_FAIL; | |
5157 else | |
7 | 5158 { |
180 | 5159 rp->rs_no = op; |
233 | 5160 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5161 next = OPERAND(scan); |
5162 /* We continue and handle the result when done. */ | |
7 | 5163 } |
5164 break; | |
5165 | |
5166 case BEHIND: | |
5167 case NOBEHIND: | |
180 | 5168 /* Need a bit of room to store extra positions. */ |
212 | 5169 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5170 { |
5171 EMSG(_(e_maxmempat)); | |
5172 status = RA_FAIL; | |
5173 } | |
5174 else if (ga_grow(®stack, sizeof(regbehind_T)) == FAIL) | |
180 | 5175 status = RA_FAIL; |
5176 else | |
7 | 5177 { |
180 | 5178 regstack.ga_len += sizeof(regbehind_T); |
270 | 5179 rp = regstack_push(RS_BEHIND1, scan); |
180 | 5180 if (rp == NULL) |
5181 status = RA_FAIL; | |
5182 else | |
7 | 5183 { |
1579 | 5184 /* Need to save the subexpr to be able to restore them |
5185 * when there is a match but we don't use it. */ | |
5186 save_subexpr(((regbehind_T *)rp) - 1); | |
5187 | |
180 | 5188 rp->rs_no = op; |
233 | 5189 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5190 /* First try if what follows matches. If it does then we |
5191 * check the behind match by looping. */ | |
7 | 5192 } |
5193 } | |
180 | 5194 break; |
7 | 5195 |
5196 case BHPOS: | |
5197 if (REG_MULTI) | |
5198 { | |
5199 if (behind_pos.rs_u.pos.col != (colnr_T)(reginput - regline) | |
5200 || behind_pos.rs_u.pos.lnum != reglnum) | |
180 | 5201 status = RA_NOMATCH; |
7 | 5202 } |
5203 else if (behind_pos.rs_u.ptr != reginput) | |
180 | 5204 status = RA_NOMATCH; |
7 | 5205 break; |
5206 | |
5207 case NEWL: | |
1018 | 5208 if ((c != NUL || !REG_MULTI || reglnum > reg_maxline |
5209 || reg_line_lbr) && (c != '\n' || !reg_line_lbr)) | |
180 | 5210 status = RA_NOMATCH; |
5211 else if (reg_line_lbr) | |
7 | 5212 ADVANCE_REGINPUT(); |
5213 else | |
5214 reg_nextline(); | |
5215 break; | |
5216 | |
5217 case END: | |
180 | 5218 status = RA_MATCH; /* Success! */ |
5219 break; | |
7 | 5220 |
5221 default: | |
5222 EMSG(_(e_re_corr)); | |
5223 #ifdef DEBUG | |
5224 printf("Illegal op code %d\n", op); | |
5225 #endif | |
180 | 5226 status = RA_FAIL; |
5227 break; | |
7 | 5228 } |
5229 } | |
5230 | |
180 | 5231 /* If we can't continue sequentially, break the inner loop. */ |
5232 if (status != RA_CONT) | |
5233 break; | |
5234 | |
5235 /* Continue in inner loop, advance to next item. */ | |
7 | 5236 scan = next; |
180 | 5237 |
5238 } /* end of inner loop */ | |
7 | 5239 |
5240 /* | |
180 | 5241 * If there is something on the regstack execute the code for the state. |
233 | 5242 * If the state is popped then loop and use the older state. |
7 | 5243 */ |
180 | 5244 while (regstack.ga_len > 0 && status != RA_FAIL) |
5245 { | |
5246 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; | |
5247 switch (rp->rs_state) | |
5248 { | |
5249 case RS_NOPEN: | |
5250 /* Result is passed on as-is, simply pop the state. */ | |
270 | 5251 regstack_pop(&scan); |
180 | 5252 break; |
5253 | |
5254 case RS_MOPEN: | |
5255 /* Pop the state. Restore pointers when there is no match. */ | |
5256 if (status == RA_NOMATCH) | |
5257 restore_se(&rp->rs_un.sesave, ®_startpos[rp->rs_no], | |
5258 ®_startp[rp->rs_no]); | |
270 | 5259 regstack_pop(&scan); |
180 | 5260 break; |
5261 | |
5262 #ifdef FEAT_SYN_HL | |
5263 case RS_ZOPEN: | |
5264 /* Pop the state. Restore pointers when there is no match. */ | |
5265 if (status == RA_NOMATCH) | |
5266 restore_se(&rp->rs_un.sesave, ®_startzpos[rp->rs_no], | |
5267 ®_startzp[rp->rs_no]); | |
270 | 5268 regstack_pop(&scan); |
180 | 5269 break; |
5270 #endif | |
5271 | |
5272 case RS_MCLOSE: | |
5273 /* Pop the state. Restore pointers when there is no match. */ | |
5274 if (status == RA_NOMATCH) | |
5275 restore_se(&rp->rs_un.sesave, ®_endpos[rp->rs_no], | |
5276 ®_endp[rp->rs_no]); | |
270 | 5277 regstack_pop(&scan); |
180 | 5278 break; |
5279 | |
5280 #ifdef FEAT_SYN_HL | |
5281 case RS_ZCLOSE: | |
5282 /* Pop the state. Restore pointers when there is no match. */ | |
5283 if (status == RA_NOMATCH) | |
5284 restore_se(&rp->rs_un.sesave, ®_endzpos[rp->rs_no], | |
5285 ®_endzp[rp->rs_no]); | |
270 | 5286 regstack_pop(&scan); |
180 | 5287 break; |
5288 #endif | |
5289 | |
5290 case RS_BRANCH: | |
5291 if (status == RA_MATCH) | |
5292 /* this branch matched, use it */ | |
270 | 5293 regstack_pop(&scan); |
180 | 5294 else |
5295 { | |
5296 if (status != RA_BREAK) | |
5297 { | |
5298 /* After a non-matching branch: try next one. */ | |
233 | 5299 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5300 scan = rp->rs_scan; |
5301 } | |
5302 if (scan == NULL || OP(scan) != BRANCH) | |
5303 { | |
5304 /* no more branches, didn't find a match */ | |
5305 status = RA_NOMATCH; | |
270 | 5306 regstack_pop(&scan); |
180 | 5307 } |
5308 else | |
5309 { | |
5310 /* Prepare to try a branch. */ | |
5311 rp->rs_scan = regnext(scan); | |
233 | 5312 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5313 scan = OPERAND(scan); |
5314 } | |
5315 } | |
5316 break; | |
5317 | |
5318 case RS_BRCPLX_MORE: | |
5319 /* Pop the state. Restore pointers when there is no match. */ | |
5320 if (status == RA_NOMATCH) | |
5321 { | |
233 | 5322 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5323 --brace_count[rp->rs_no]; /* decrement match count */ |
5324 } | |
270 | 5325 regstack_pop(&scan); |
180 | 5326 break; |
5327 | |
5328 case RS_BRCPLX_LONG: | |
5329 /* Pop the state. Restore pointers when there is no match. */ | |
5330 if (status == RA_NOMATCH) | |
5331 { | |
5332 /* There was no match, but we did find enough matches. */ | |
233 | 5333 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5334 --brace_count[rp->rs_no]; |
5335 /* continue with the items after "\{}" */ | |
5336 status = RA_CONT; | |
5337 } | |
270 | 5338 regstack_pop(&scan); |
180 | 5339 if (status == RA_CONT) |
5340 scan = regnext(scan); | |
5341 break; | |
5342 | |
5343 case RS_BRCPLX_SHORT: | |
5344 /* Pop the state. Restore pointers when there is no match. */ | |
5345 if (status == RA_NOMATCH) | |
5346 /* There was no match, try to match one more item. */ | |
233 | 5347 reg_restore(&rp->rs_un.regsave, &backpos); |
270 | 5348 regstack_pop(&scan); |
180 | 5349 if (status == RA_NOMATCH) |
5350 { | |
5351 scan = OPERAND(scan); | |
5352 status = RA_CONT; | |
5353 } | |
5354 break; | |
5355 | |
5356 case RS_NOMATCH: | |
5357 /* Pop the state. If the operand matches for NOMATCH or | |
5358 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup, | |
5359 * except for SUBPAT, and continue with the next item. */ | |
5360 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH)) | |
5361 status = RA_NOMATCH; | |
5362 else | |
5363 { | |
5364 status = RA_CONT; | |
233 | 5365 if (rp->rs_no != SUBPAT) /* zero-width */ |
5366 reg_restore(&rp->rs_un.regsave, &backpos); | |
180 | 5367 } |
270 | 5368 regstack_pop(&scan); |
180 | 5369 if (status == RA_CONT) |
5370 scan = regnext(scan); | |
5371 break; | |
5372 | |
5373 case RS_BEHIND1: | |
5374 if (status == RA_NOMATCH) | |
5375 { | |
270 | 5376 regstack_pop(&scan); |
180 | 5377 regstack.ga_len -= sizeof(regbehind_T); |
5378 } | |
5379 else | |
5380 { | |
5381 /* The stuff after BEHIND/NOBEHIND matches. Now try if | |
5382 * the behind part does (not) match before the current | |
5383 * position in the input. This must be done at every | |
5384 * position in the input and checking if the match ends at | |
5385 * the current position. */ | |
5386 | |
5387 /* save the position after the found match for next */ | |
233 | 5388 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos); |
180 | 5389 |
5390 /* start looking for a match with operand at the current | |
1209 | 5391 * position. Go back one character until we find the |
180 | 5392 * result, hitting the start of the line or the previous |
5393 * line (for multi-line matching). | |
5394 * Set behind_pos to where the match should end, BHPOS | |
5395 * will match it. Save the current value. */ | |
5396 (((regbehind_T *)rp) - 1)->save_behind = behind_pos; | |
5397 behind_pos = rp->rs_un.regsave; | |
5398 | |
5399 rp->rs_state = RS_BEHIND2; | |
5400 | |
233 | 5401 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5402 scan = OPERAND(rp->rs_scan); |
5403 } | |
5404 break; | |
5405 | |
5406 case RS_BEHIND2: | |
5407 /* | |
5408 * Looping for BEHIND / NOBEHIND match. | |
5409 */ | |
5410 if (status == RA_MATCH && reg_save_equal(&behind_pos)) | |
5411 { | |
5412 /* found a match that ends where "next" started */ | |
5413 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5414 if (rp->rs_no == BEHIND) | |
233 | 5415 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5416 &backpos); | |
180 | 5417 else |
1579 | 5418 { |
5419 /* But we didn't want a match. Need to restore the | |
5420 * subexpr, because what follows matched, so they have | |
5421 * been set. */ | |
180 | 5422 status = RA_NOMATCH; |
1579 | 5423 restore_subexpr(((regbehind_T *)rp) - 1); |
5424 } | |
270 | 5425 regstack_pop(&scan); |
180 | 5426 regstack.ga_len -= sizeof(regbehind_T); |
5427 } | |
5428 else | |
5429 { | |
1579 | 5430 /* No match or a match that doesn't end where we want it: Go |
5431 * back one character. May go to previous line once. */ | |
180 | 5432 no = OK; |
5433 if (REG_MULTI) | |
5434 { | |
5435 if (rp->rs_un.regsave.rs_u.pos.col == 0) | |
5436 { | |
5437 if (rp->rs_un.regsave.rs_u.pos.lnum | |
5438 < behind_pos.rs_u.pos.lnum | |
5439 || reg_getline( | |
5440 --rp->rs_un.regsave.rs_u.pos.lnum) | |
5441 == NULL) | |
5442 no = FAIL; | |
5443 else | |
5444 { | |
233 | 5445 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5446 rp->rs_un.regsave.rs_u.pos.col = |
5447 (colnr_T)STRLEN(regline); | |
5448 } | |
5449 } | |
5450 else | |
5451 --rp->rs_un.regsave.rs_u.pos.col; | |
5452 } | |
5453 else | |
5454 { | |
5455 if (rp->rs_un.regsave.rs_u.ptr == regline) | |
5456 no = FAIL; | |
5457 else | |
5458 --rp->rs_un.regsave.rs_u.ptr; | |
5459 } | |
5460 if (no == OK) | |
5461 { | |
5462 /* Advanced, prepare for finding match again. */ | |
233 | 5463 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5464 scan = OPERAND(rp->rs_scan); |
1579 | 5465 if (status == RA_MATCH) |
5466 { | |
5467 /* We did match, so subexpr may have been changed, | |
5468 * need to restore them for the next try. */ | |
5469 status = RA_NOMATCH; | |
5470 restore_subexpr(((regbehind_T *)rp) - 1); | |
5471 } | |
180 | 5472 } |
5473 else | |
5474 { | |
5475 /* Can't advance. For NOBEHIND that's a match. */ | |
5476 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5477 if (rp->rs_no == NOBEHIND) | |
5478 { | |
233 | 5479 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5480 &backpos); | |
180 | 5481 status = RA_MATCH; |
5482 } | |
5483 else | |
1579 | 5484 { |
5485 /* We do want a proper match. Need to restore the | |
5486 * subexpr if we had a match, because they may have | |
5487 * been set. */ | |
5488 if (status == RA_MATCH) | |
5489 { | |
5490 status = RA_NOMATCH; | |
5491 restore_subexpr(((regbehind_T *)rp) - 1); | |
5492 } | |
5493 } | |
270 | 5494 regstack_pop(&scan); |
180 | 5495 regstack.ga_len -= sizeof(regbehind_T); |
5496 } | |
5497 } | |
5498 break; | |
5499 | |
5500 case RS_STAR_LONG: | |
5501 case RS_STAR_SHORT: | |
5502 { | |
5503 regstar_T *rst = ((regstar_T *)rp) - 1; | |
5504 | |
5505 if (status == RA_MATCH) | |
5506 { | |
270 | 5507 regstack_pop(&scan); |
180 | 5508 regstack.ga_len -= sizeof(regstar_T); |
5509 break; | |
5510 } | |
5511 | |
5512 /* Tried once already, restore input pointers. */ | |
5513 if (status != RA_BREAK) | |
233 | 5514 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5515 |
5516 /* Repeat until we found a position where it could match. */ | |
5517 for (;;) | |
5518 { | |
5519 if (status != RA_BREAK) | |
5520 { | |
5521 /* Tried first position already, advance. */ | |
5522 if (rp->rs_state == RS_STAR_LONG) | |
5523 { | |
685 | 5524 /* Trying for longest match, but couldn't or |
5525 * didn't match -- back up one char. */ | |
180 | 5526 if (--rst->count < rst->minval) |
5527 break; | |
5528 if (reginput == regline) | |
5529 { | |
5530 /* backup to last char of previous line */ | |
5531 --reglnum; | |
5532 regline = reg_getline(reglnum); | |
5533 /* Just in case regrepeat() didn't count | |
5534 * right. */ | |
5535 if (regline == NULL) | |
5536 break; | |
5537 reginput = regline + STRLEN(regline); | |
5538 fast_breakcheck(); | |
5539 } | |
5540 else | |
5541 mb_ptr_back(regline, reginput); | |
5542 } | |
5543 else | |
5544 { | |
5545 /* Range is backwards, use shortest match first. | |
5546 * Careful: maxval and minval are exchanged! | |
5547 * Couldn't or didn't match: try advancing one | |
5548 * char. */ | |
5549 if (rst->count == rst->minval | |
5550 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0) | |
5551 break; | |
5552 ++rst->count; | |
5553 } | |
5554 if (got_int) | |
5555 break; | |
5556 } | |
5557 else | |
5558 status = RA_NOMATCH; | |
5559 | |
5560 /* If it could match, try it. */ | |
5561 if (rst->nextb == NUL || *reginput == rst->nextb | |
5562 || *reginput == rst->nextb_ic) | |
5563 { | |
233 | 5564 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5565 scan = regnext(rp->rs_scan); |
5566 status = RA_CONT; | |
5567 break; | |
5568 } | |
5569 } | |
5570 if (status != RA_CONT) | |
5571 { | |
5572 /* Failed. */ | |
270 | 5573 regstack_pop(&scan); |
180 | 5574 regstack.ga_len -= sizeof(regstar_T); |
5575 status = RA_NOMATCH; | |
5576 } | |
5577 } | |
5578 break; | |
5579 } | |
5580 | |
685 | 5581 /* If we want to continue the inner loop or didn't pop a state |
5582 * continue matching loop */ | |
180 | 5583 if (status == RA_CONT || rp == (regitem_T *) |
5584 ((char *)regstack.ga_data + regstack.ga_len) - 1) | |
5585 break; | |
5586 } | |
5587 | |
189 | 5588 /* May need to continue with the inner loop, starting at "scan". */ |
180 | 5589 if (status == RA_CONT) |
5590 continue; | |
5591 | |
5592 /* | |
5593 * If the regstack is empty or something failed we are done. | |
5594 */ | |
5595 if (regstack.ga_len == 0 || status == RA_FAIL) | |
5596 { | |
5597 if (scan == NULL) | |
5598 { | |
5599 /* | |
5600 * We get here only if there's trouble -- normally "case END" is | |
5601 * the terminating point. | |
5602 */ | |
5603 EMSG(_(e_re_corr)); | |
7 | 5604 #ifdef DEBUG |
180 | 5605 printf("Premature EOL\n"); |
7 | 5606 #endif |
180 | 5607 } |
189 | 5608 if (status == RA_FAIL) |
5609 got_int = TRUE; | |
180 | 5610 return (status == RA_MATCH); |
5611 } | |
5612 | |
5613 } /* End of loop until the regstack is empty. */ | |
5614 | |
5615 /* NOTREACHED */ | |
5616 } | |
5617 | |
5618 /* | |
5619 * Push an item onto the regstack. | |
5620 * Returns pointer to new item. Returns NULL when out of memory. | |
5621 */ | |
5622 static regitem_T * | |
270 | 5623 regstack_push(state, scan) |
180 | 5624 regstate_T state; |
5625 char_u *scan; | |
5626 { | |
5627 regitem_T *rp; | |
5628 | |
270 | 5629 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5630 { |
5631 EMSG(_(e_maxmempat)); | |
5632 return NULL; | |
5633 } | |
270 | 5634 if (ga_grow(®stack, sizeof(regitem_T)) == FAIL) |
180 | 5635 return NULL; |
5636 | |
270 | 5637 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len); |
180 | 5638 rp->rs_state = state; |
5639 rp->rs_scan = scan; | |
5640 | |
270 | 5641 regstack.ga_len += sizeof(regitem_T); |
180 | 5642 return rp; |
5643 } | |
5644 | |
5645 /* | |
5646 * Pop an item from the regstack. | |
5647 */ | |
5648 static void | |
270 | 5649 regstack_pop(scan) |
180 | 5650 char_u **scan; |
5651 { | |
5652 regitem_T *rp; | |
5653 | |
270 | 5654 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; |
180 | 5655 *scan = rp->rs_scan; |
5656 | |
270 | 5657 regstack.ga_len -= sizeof(regitem_T); |
7 | 5658 } |
5659 | |
5660 /* | |
5661 * regrepeat - repeatedly match something simple, return how many. | |
5662 * Advances reginput (and reglnum) to just after the matched chars. | |
5663 */ | |
5664 static int | |
5665 regrepeat(p, maxcount) | |
5666 char_u *p; | |
5667 long maxcount; /* maximum number of matches allowed */ | |
5668 { | |
5669 long count = 0; | |
5670 char_u *scan; | |
5671 char_u *opnd; | |
5672 int mask; | |
5673 int testval = 0; | |
5674 | |
5675 scan = reginput; /* Make local copy of reginput for speed. */ | |
5676 opnd = OPERAND(p); | |
5677 switch (OP(p)) | |
5678 { | |
5679 case ANY: | |
5680 case ANY + ADD_NL: | |
5681 while (count < maxcount) | |
5682 { | |
5683 /* Matching anything means we continue until end-of-line (or | |
5684 * end-of-file for ANY + ADD_NL), only limited by maxcount. */ | |
5685 while (*scan != NUL && count < maxcount) | |
5686 { | |
5687 ++count; | |
39 | 5688 mb_ptr_adv(scan); |
7 | 5689 } |
1018 | 5690 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline |
5691 || reg_line_lbr || count == maxcount) | |
7 | 5692 break; |
5693 ++count; /* count the line-break */ | |
5694 reg_nextline(); | |
5695 scan = reginput; | |
5696 if (got_int) | |
5697 break; | |
5698 } | |
5699 break; | |
5700 | |
5701 case IDENT: | |
5702 case IDENT + ADD_NL: | |
5703 testval = TRUE; | |
5704 /*FALLTHROUGH*/ | |
5705 case SIDENT: | |
5706 case SIDENT + ADD_NL: | |
5707 while (count < maxcount) | |
5708 { | |
5709 if (vim_isIDc(*scan) && (testval || !VIM_ISDIGIT(*scan))) | |
5710 { | |
39 | 5711 mb_ptr_adv(scan); |
7 | 5712 } |
5713 else if (*scan == NUL) | |
5714 { | |
1018 | 5715 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline |
5716 || reg_line_lbr) | |
7 | 5717 break; |
5718 reg_nextline(); | |
5719 scan = reginput; | |
5720 if (got_int) | |
5721 break; | |
5722 } | |
5723 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) | |
5724 ++scan; | |
5725 else | |
5726 break; | |
5727 ++count; | |
5728 } | |
5729 break; | |
5730 | |
5731 case KWORD: | |
5732 case KWORD + ADD_NL: | |
5733 testval = TRUE; | |
5734 /*FALLTHROUGH*/ | |
5735 case SKWORD: | |
5736 case SKWORD + ADD_NL: | |
5737 while (count < maxcount) | |
5738 { | |
5739 if (vim_iswordp(scan) && (testval || !VIM_ISDIGIT(*scan))) | |
5740 { | |
39 | 5741 mb_ptr_adv(scan); |
7 | 5742 } |
5743 else if (*scan == NUL) | |
5744 { | |
1018 | 5745 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline |
5746 || reg_line_lbr) | |
7 | 5747 break; |
5748 reg_nextline(); | |
5749 scan = reginput; | |
5750 if (got_int) | |
5751 break; | |
5752 } | |
5753 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) | |
5754 ++scan; | |
5755 else | |
5756 break; | |
5757 ++count; | |
5758 } | |
5759 break; | |
5760 | |
5761 case FNAME: | |
5762 case FNAME + ADD_NL: | |
5763 testval = TRUE; | |
5764 /*FALLTHROUGH*/ | |
5765 case SFNAME: | |
5766 case SFNAME + ADD_NL: | |
5767 while (count < maxcount) | |
5768 { | |
5769 if (vim_isfilec(*scan) && (testval || !VIM_ISDIGIT(*scan))) | |
5770 { | |
39 | 5771 mb_ptr_adv(scan); |
7 | 5772 } |
5773 else if (*scan == NUL) | |
5774 { | |
1018 | 5775 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline |
5776 || reg_line_lbr) | |
7 | 5777 break; |
5778 reg_nextline(); | |
5779 scan = reginput; | |
5780 if (got_int) | |
5781 break; | |
5782 } | |
5783 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) | |
5784 ++scan; | |
5785 else | |
5786 break; | |
5787 ++count; | |
5788 } | |
5789 break; | |
5790 | |
5791 case PRINT: | |
5792 case PRINT + ADD_NL: | |
5793 testval = TRUE; | |
5794 /*FALLTHROUGH*/ | |
5795 case SPRINT: | |
5796 case SPRINT + ADD_NL: | |
5797 while (count < maxcount) | |
5798 { | |
5799 if (*scan == NUL) | |
5800 { | |
1018 | 5801 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline |
5802 || reg_line_lbr) | |
7 | 5803 break; |
5804 reg_nextline(); | |
5805 scan = reginput; | |
5806 if (got_int) | |
5807 break; | |
5808 } | |
5809 else if (ptr2cells(scan) == 1 && (testval || !VIM_ISDIGIT(*scan))) | |
5810 { | |
39 | 5811 mb_ptr_adv(scan); |
7 | 5812 } |
5813 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) | |
5814 ++scan; | |
5815 else | |
5816 break; | |
5817 ++count; | |
5818 } | |
5819 break; | |
5820 | |
5821 case WHITE: | |
5822 case WHITE + ADD_NL: | |
5823 testval = mask = RI_WHITE; | |
5824 do_class: | |
5825 while (count < maxcount) | |
5826 { | |
5827 #ifdef FEAT_MBYTE | |
5828 int l; | |
5829 #endif | |
5830 if (*scan == NUL) | |
5831 { | |
1018 | 5832 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline |
5833 || reg_line_lbr) | |
7 | 5834 break; |
5835 reg_nextline(); | |
5836 scan = reginput; | |
5837 if (got_int) | |
5838 break; | |
5839 } | |
5840 #ifdef FEAT_MBYTE | |
474 | 5841 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1) |
7 | 5842 { |
5843 if (testval != 0) | |
5844 break; | |
5845 scan += l; | |
5846 } | |
5847 #endif | |
5848 else if ((class_tab[*scan] & mask) == testval) | |
5849 ++scan; | |
5850 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) | |
5851 ++scan; | |
5852 else | |
5853 break; | |
5854 ++count; | |
5855 } | |
5856 break; | |
5857 | |
5858 case NWHITE: | |
5859 case NWHITE + ADD_NL: | |
5860 mask = RI_WHITE; | |
5861 goto do_class; | |
5862 case DIGIT: | |
5863 case DIGIT + ADD_NL: | |
5864 testval = mask = RI_DIGIT; | |
5865 goto do_class; | |
5866 case NDIGIT: | |
5867 case NDIGIT + ADD_NL: | |
5868 mask = RI_DIGIT; | |
5869 goto do_class; | |
5870 case HEX: | |
5871 case HEX + ADD_NL: | |
5872 testval = mask = RI_HEX; | |
5873 goto do_class; | |
5874 case NHEX: | |
5875 case NHEX + ADD_NL: | |
5876 mask = RI_HEX; | |
5877 goto do_class; | |
5878 case OCTAL: | |
5879 case OCTAL + ADD_NL: | |
5880 testval = mask = RI_OCTAL; | |
5881 goto do_class; | |
5882 case NOCTAL: | |
5883 case NOCTAL + ADD_NL: | |
5884 mask = RI_OCTAL; | |
5885 goto do_class; | |
5886 case WORD: | |
5887 case WORD + ADD_NL: | |
5888 testval = mask = RI_WORD; | |
5889 goto do_class; | |
5890 case NWORD: | |
5891 case NWORD + ADD_NL: | |
5892 mask = RI_WORD; | |
5893 goto do_class; | |
5894 case HEAD: | |
5895 case HEAD + ADD_NL: | |
5896 testval = mask = RI_HEAD; | |
5897 goto do_class; | |
5898 case NHEAD: | |
5899 case NHEAD + ADD_NL: | |
5900 mask = RI_HEAD; | |
5901 goto do_class; | |
5902 case ALPHA: | |
5903 case ALPHA + ADD_NL: | |
5904 testval = mask = RI_ALPHA; | |
5905 goto do_class; | |
5906 case NALPHA: | |
5907 case NALPHA + ADD_NL: | |
5908 mask = RI_ALPHA; | |
5909 goto do_class; | |
5910 case LOWER: | |
5911 case LOWER + ADD_NL: | |
5912 testval = mask = RI_LOWER; | |
5913 goto do_class; | |
5914 case NLOWER: | |
5915 case NLOWER + ADD_NL: | |
5916 mask = RI_LOWER; | |
5917 goto do_class; | |
5918 case UPPER: | |
5919 case UPPER + ADD_NL: | |
5920 testval = mask = RI_UPPER; | |
5921 goto do_class; | |
5922 case NUPPER: | |
5923 case NUPPER + ADD_NL: | |
5924 mask = RI_UPPER; | |
5925 goto do_class; | |
5926 | |
5927 case EXACTLY: | |
5928 { | |
5929 int cu, cl; | |
5930 | |
5931 /* This doesn't do a multi-byte character, because a MULTIBYTECODE | |
1347 | 5932 * would have been used for it. It does handle single-byte |
5933 * characters, such as latin1. */ | |
7 | 5934 if (ireg_ic) |
5935 { | |
1347 | 5936 cu = MB_TOUPPER(*opnd); |
5937 cl = MB_TOLOWER(*opnd); | |
7 | 5938 while (count < maxcount && (*scan == cu || *scan == cl)) |
5939 { | |
5940 count++; | |
5941 scan++; | |
5942 } | |
5943 } | |
5944 else | |
5945 { | |
5946 cu = *opnd; | |
5947 while (count < maxcount && *scan == cu) | |
5948 { | |
5949 count++; | |
5950 scan++; | |
5951 } | |
5952 } | |
5953 break; | |
5954 } | |
5955 | |
5956 #ifdef FEAT_MBYTE | |
5957 case MULTIBYTECODE: | |
5958 { | |
5959 int i, len, cf = 0; | |
5960 | |
5961 /* Safety check (just in case 'encoding' was changed since | |
5962 * compiling the program). */ | |
474 | 5963 if ((len = (*mb_ptr2len)(opnd)) > 1) |
7 | 5964 { |
5965 if (ireg_ic && enc_utf8) | |
5966 cf = utf_fold(utf_ptr2char(opnd)); | |
5967 while (count < maxcount) | |
5968 { | |
5969 for (i = 0; i < len; ++i) | |
5970 if (opnd[i] != scan[i]) | |
5971 break; | |
5972 if (i < len && (!ireg_ic || !enc_utf8 | |
5973 || utf_fold(utf_ptr2char(scan)) != cf)) | |
5974 break; | |
5975 scan += len; | |
5976 ++count; | |
5977 } | |
5978 } | |
5979 } | |
5980 break; | |
5981 #endif | |
5982 | |
5983 case ANYOF: | |
5984 case ANYOF + ADD_NL: | |
5985 testval = TRUE; | |
5986 /*FALLTHROUGH*/ | |
5987 | |
5988 case ANYBUT: | |
5989 case ANYBUT + ADD_NL: | |
5990 while (count < maxcount) | |
5991 { | |
5992 #ifdef FEAT_MBYTE | |
5993 int len; | |
5994 #endif | |
5995 if (*scan == NUL) | |
5996 { | |
1018 | 5997 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline |
5998 || reg_line_lbr) | |
7 | 5999 break; |
6000 reg_nextline(); | |
6001 scan = reginput; | |
6002 if (got_int) | |
6003 break; | |
6004 } | |
6005 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) | |
6006 ++scan; | |
6007 #ifdef FEAT_MBYTE | |
474 | 6008 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1) |
7 | 6009 { |
6010 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval) | |
6011 break; | |
6012 scan += len; | |
6013 } | |
6014 #endif | |
6015 else | |
6016 { | |
6017 if ((cstrchr(opnd, *scan) == NULL) == testval) | |
6018 break; | |
6019 ++scan; | |
6020 } | |
6021 ++count; | |
6022 } | |
6023 break; | |
6024 | |
6025 case NEWL: | |
6026 while (count < maxcount | |
1018 | 6027 && ((*scan == NUL && reglnum <= reg_maxline && !reg_line_lbr |
6028 && REG_MULTI) || (*scan == '\n' && reg_line_lbr))) | |
7 | 6029 { |
6030 count++; | |
6031 if (reg_line_lbr) | |
6032 ADVANCE_REGINPUT(); | |
6033 else | |
6034 reg_nextline(); | |
6035 scan = reginput; | |
6036 if (got_int) | |
6037 break; | |
6038 } | |
6039 break; | |
6040 | |
6041 default: /* Oh dear. Called inappropriately. */ | |
6042 EMSG(_(e_re_corr)); | |
6043 #ifdef DEBUG | |
6044 printf("Called regrepeat with op code %d\n", OP(p)); | |
6045 #endif | |
6046 break; | |
6047 } | |
6048 | |
6049 reginput = scan; | |
6050 | |
6051 return (int)count; | |
6052 } | |
6053 | |
6054 /* | |
6055 * regnext - dig the "next" pointer out of a node | |
2010 | 6056 * Returns NULL when calculating size, when there is no next item and when |
6057 * there is an error. | |
7 | 6058 */ |
6059 static char_u * | |
6060 regnext(p) | |
6061 char_u *p; | |
6062 { | |
6063 int offset; | |
6064 | |
2010 | 6065 if (p == JUST_CALC_SIZE || reg_toolong) |
7 | 6066 return NULL; |
6067 | |
6068 offset = NEXT(p); | |
6069 if (offset == 0) | |
6070 return NULL; | |
6071 | |
233 | 6072 if (OP(p) == BACK) |
7 | 6073 return p - offset; |
6074 else | |
6075 return p + offset; | |
6076 } | |
6077 | |
6078 /* | |
6079 * Check the regexp program for its magic number. | |
6080 * Return TRUE if it's wrong. | |
6081 */ | |
6082 static int | |
6083 prog_magic_wrong() | |
6084 { | |
6085 if (UCHARAT(REG_MULTI | |
6086 ? reg_mmatch->regprog->program | |
6087 : reg_match->regprog->program) != REGMAGIC) | |
6088 { | |
6089 EMSG(_(e_re_corr)); | |
6090 return TRUE; | |
6091 } | |
6092 return FALSE; | |
6093 } | |
6094 | |
6095 /* | |
6096 * Cleanup the subexpressions, if this wasn't done yet. | |
6097 * This construction is used to clear the subexpressions only when they are | |
6098 * used (to increase speed). | |
6099 */ | |
6100 static void | |
6101 cleanup_subexpr() | |
6102 { | |
6103 if (need_clear_subexpr) | |
6104 { | |
6105 if (REG_MULTI) | |
6106 { | |
6107 /* Use 0xff to set lnum to -1 */ | |
6108 vim_memset(reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6109 vim_memset(reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6110 } | |
6111 else | |
6112 { | |
6113 vim_memset(reg_startp, 0, sizeof(char_u *) * NSUBEXP); | |
6114 vim_memset(reg_endp, 0, sizeof(char_u *) * NSUBEXP); | |
6115 } | |
6116 need_clear_subexpr = FALSE; | |
6117 } | |
6118 } | |
6119 | |
6120 #ifdef FEAT_SYN_HL | |
6121 static void | |
6122 cleanup_zsubexpr() | |
6123 { | |
6124 if (need_clear_zsubexpr) | |
6125 { | |
6126 if (REG_MULTI) | |
6127 { | |
6128 /* Use 0xff to set lnum to -1 */ | |
6129 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6130 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6131 } | |
6132 else | |
6133 { | |
6134 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP); | |
6135 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP); | |
6136 } | |
6137 need_clear_zsubexpr = FALSE; | |
6138 } | |
6139 } | |
6140 #endif | |
6141 | |
6142 /* | |
1579 | 6143 * Save the current subexpr to "bp", so that they can be restored |
6144 * later by restore_subexpr(). | |
6145 */ | |
6146 static void | |
6147 save_subexpr(bp) | |
6148 regbehind_T *bp; | |
6149 { | |
6150 int i; | |
6151 | |
1602 | 6152 /* When "need_clear_subexpr" is set we don't need to save the values, only |
6153 * remember that this flag needs to be set again when restoring. */ | |
6154 bp->save_need_clear_subexpr = need_clear_subexpr; | |
6155 if (!need_clear_subexpr) | |
1579 | 6156 { |
1602 | 6157 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6158 { |
1602 | 6159 if (REG_MULTI) |
6160 { | |
6161 bp->save_start[i].se_u.pos = reg_startpos[i]; | |
6162 bp->save_end[i].se_u.pos = reg_endpos[i]; | |
6163 } | |
6164 else | |
6165 { | |
6166 bp->save_start[i].se_u.ptr = reg_startp[i]; | |
6167 bp->save_end[i].se_u.ptr = reg_endp[i]; | |
6168 } | |
1579 | 6169 } |
6170 } | |
6171 } | |
6172 | |
6173 /* | |
6174 * Restore the subexpr from "bp". | |
6175 */ | |
6176 static void | |
6177 restore_subexpr(bp) | |
6178 regbehind_T *bp; | |
6179 { | |
6180 int i; | |
6181 | |
1602 | 6182 /* Only need to restore saved values when they are not to be cleared. */ |
6183 need_clear_subexpr = bp->save_need_clear_subexpr; | |
6184 if (!need_clear_subexpr) | |
1579 | 6185 { |
1602 | 6186 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6187 { |
1602 | 6188 if (REG_MULTI) |
6189 { | |
6190 reg_startpos[i] = bp->save_start[i].se_u.pos; | |
6191 reg_endpos[i] = bp->save_end[i].se_u.pos; | |
6192 } | |
6193 else | |
6194 { | |
6195 reg_startp[i] = bp->save_start[i].se_u.ptr; | |
6196 reg_endp[i] = bp->save_end[i].se_u.ptr; | |
6197 } | |
1579 | 6198 } |
6199 } | |
6200 } | |
6201 | |
6202 /* | |
7 | 6203 * Advance reglnum, regline and reginput to the next line. |
6204 */ | |
6205 static void | |
6206 reg_nextline() | |
6207 { | |
6208 regline = reg_getline(++reglnum); | |
6209 reginput = regline; | |
6210 fast_breakcheck(); | |
6211 } | |
6212 | |
6213 /* | |
6214 * Save the input line and position in a regsave_T. | |
6215 */ | |
6216 static void | |
233 | 6217 reg_save(save, gap) |
7 | 6218 regsave_T *save; |
233 | 6219 garray_T *gap; |
7 | 6220 { |
6221 if (REG_MULTI) | |
6222 { | |
6223 save->rs_u.pos.col = (colnr_T)(reginput - regline); | |
6224 save->rs_u.pos.lnum = reglnum; | |
6225 } | |
6226 else | |
6227 save->rs_u.ptr = reginput; | |
233 | 6228 save->rs_len = gap->ga_len; |
7 | 6229 } |
6230 | |
6231 /* | |
6232 * Restore the input line and position from a regsave_T. | |
6233 */ | |
6234 static void | |
233 | 6235 reg_restore(save, gap) |
7 | 6236 regsave_T *save; |
233 | 6237 garray_T *gap; |
7 | 6238 { |
6239 if (REG_MULTI) | |
6240 { | |
6241 if (reglnum != save->rs_u.pos.lnum) | |
6242 { | |
6243 /* only call reg_getline() when the line number changed to save | |
6244 * a bit of time */ | |
6245 reglnum = save->rs_u.pos.lnum; | |
6246 regline = reg_getline(reglnum); | |
6247 } | |
6248 reginput = regline + save->rs_u.pos.col; | |
6249 } | |
6250 else | |
6251 reginput = save->rs_u.ptr; | |
233 | 6252 gap->ga_len = save->rs_len; |
7 | 6253 } |
6254 | |
6255 /* | |
6256 * Return TRUE if current position is equal to saved position. | |
6257 */ | |
6258 static int | |
6259 reg_save_equal(save) | |
6260 regsave_T *save; | |
6261 { | |
6262 if (REG_MULTI) | |
6263 return reglnum == save->rs_u.pos.lnum | |
6264 && reginput == regline + save->rs_u.pos.col; | |
6265 return reginput == save->rs_u.ptr; | |
6266 } | |
6267 | |
6268 /* | |
6269 * Tentatively set the sub-expression start to the current position (after | |
6270 * calling regmatch() they will have changed). Need to save the existing | |
6271 * values for when there is no match. | |
6272 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()), | |
6273 * depending on REG_MULTI. | |
6274 */ | |
6275 static void | |
6276 save_se_multi(savep, posp) | |
6277 save_se_T *savep; | |
6278 lpos_T *posp; | |
6279 { | |
6280 savep->se_u.pos = *posp; | |
6281 posp->lnum = reglnum; | |
6282 posp->col = (colnr_T)(reginput - regline); | |
6283 } | |
6284 | |
6285 static void | |
6286 save_se_one(savep, pp) | |
6287 save_se_T *savep; | |
6288 char_u **pp; | |
6289 { | |
6290 savep->se_u.ptr = *pp; | |
6291 *pp = reginput; | |
6292 } | |
6293 | |
6294 /* | |
6295 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL. | |
6296 */ | |
6297 static int | |
6298 re_num_cmp(val, scan) | |
6299 long_u val; | |
6300 char_u *scan; | |
6301 { | |
6302 long_u n = OPERAND_MIN(scan); | |
6303 | |
6304 if (OPERAND_CMP(scan) == '>') | |
6305 return val > n; | |
6306 if (OPERAND_CMP(scan) == '<') | |
6307 return val < n; | |
6308 return val == n; | |
6309 } | |
6310 | |
6311 | |
6312 #ifdef DEBUG | |
6313 | |
6314 /* | |
6315 * regdump - dump a regexp onto stdout in vaguely comprehensible form | |
6316 */ | |
6317 static void | |
6318 regdump(pattern, r) | |
6319 char_u *pattern; | |
6320 regprog_T *r; | |
6321 { | |
6322 char_u *s; | |
6323 int op = EXACTLY; /* Arbitrary non-END op. */ | |
6324 char_u *next; | |
6325 char_u *end = NULL; | |
6326 | |
6327 printf("\r\nregcomp(%s):\r\n", pattern); | |
6328 | |
6329 s = r->program + 1; | |
6330 /* | |
6331 * Loop until we find the END that isn't before a referred next (an END | |
6332 * can also appear in a NOMATCH operand). | |
6333 */ | |
6334 while (op != END || s <= end) | |
6335 { | |
6336 op = OP(s); | |
6337 printf("%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */ | |
6338 next = regnext(s); | |
6339 if (next == NULL) /* Next ptr. */ | |
6340 printf("(0)"); | |
6341 else | |
6342 printf("(%d)", (int)((s - r->program) + (next - s))); | |
6343 if (end < next) | |
6344 end = next; | |
6345 if (op == BRACE_LIMITS) | |
6346 { | |
6347 /* Two short ints */ | |
6348 printf(" minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s)); | |
6349 s += 8; | |
6350 } | |
6351 s += 3; | |
6352 if (op == ANYOF || op == ANYOF + ADD_NL | |
6353 || op == ANYBUT || op == ANYBUT + ADD_NL | |
6354 || op == EXACTLY) | |
6355 { | |
6356 /* Literal string, where present. */ | |
6357 while (*s != NUL) | |
6358 printf("%c", *s++); | |
6359 s++; | |
6360 } | |
6361 printf("\r\n"); | |
6362 } | |
6363 | |
6364 /* Header fields of interest. */ | |
6365 if (r->regstart != NUL) | |
6366 printf("start `%s' 0x%x; ", r->regstart < 256 | |
6367 ? (char *)transchar(r->regstart) | |
6368 : "multibyte", r->regstart); | |
6369 if (r->reganch) | |
6370 printf("anchored; "); | |
6371 if (r->regmust != NULL) | |
6372 printf("must have \"%s\"", r->regmust); | |
6373 printf("\r\n"); | |
6374 } | |
6375 | |
6376 /* | |
6377 * regprop - printable representation of opcode | |
6378 */ | |
6379 static char_u * | |
6380 regprop(op) | |
6381 char_u *op; | |
6382 { | |
6383 char_u *p; | |
6384 static char_u buf[50]; | |
6385 | |
6386 (void) strcpy(buf, ":"); | |
6387 | |
6388 switch (OP(op)) | |
6389 { | |
6390 case BOL: | |
6391 p = "BOL"; | |
6392 break; | |
6393 case EOL: | |
6394 p = "EOL"; | |
6395 break; | |
6396 case RE_BOF: | |
6397 p = "BOF"; | |
6398 break; | |
6399 case RE_EOF: | |
6400 p = "EOF"; | |
6401 break; | |
6402 case CURSOR: | |
6403 p = "CURSOR"; | |
6404 break; | |
639 | 6405 case RE_VISUAL: |
6406 p = "RE_VISUAL"; | |
6407 break; | |
7 | 6408 case RE_LNUM: |
6409 p = "RE_LNUM"; | |
6410 break; | |
639 | 6411 case RE_MARK: |
6412 p = "RE_MARK"; | |
6413 break; | |
7 | 6414 case RE_COL: |
6415 p = "RE_COL"; | |
6416 break; | |
6417 case RE_VCOL: | |
6418 p = "RE_VCOL"; | |
6419 break; | |
6420 case BOW: | |
6421 p = "BOW"; | |
6422 break; | |
6423 case EOW: | |
6424 p = "EOW"; | |
6425 break; | |
6426 case ANY: | |
6427 p = "ANY"; | |
6428 break; | |
6429 case ANY + ADD_NL: | |
6430 p = "ANY+NL"; | |
6431 break; | |
6432 case ANYOF: | |
6433 p = "ANYOF"; | |
6434 break; | |
6435 case ANYOF + ADD_NL: | |
6436 p = "ANYOF+NL"; | |
6437 break; | |
6438 case ANYBUT: | |
6439 p = "ANYBUT"; | |
6440 break; | |
6441 case ANYBUT + ADD_NL: | |
6442 p = "ANYBUT+NL"; | |
6443 break; | |
6444 case IDENT: | |
6445 p = "IDENT"; | |
6446 break; | |
6447 case IDENT + ADD_NL: | |
6448 p = "IDENT+NL"; | |
6449 break; | |
6450 case SIDENT: | |
6451 p = "SIDENT"; | |
6452 break; | |
6453 case SIDENT + ADD_NL: | |
6454 p = "SIDENT+NL"; | |
6455 break; | |
6456 case KWORD: | |
6457 p = "KWORD"; | |
6458 break; | |
6459 case KWORD + ADD_NL: | |
6460 p = "KWORD+NL"; | |
6461 break; | |
6462 case SKWORD: | |
6463 p = "SKWORD"; | |
6464 break; | |
6465 case SKWORD + ADD_NL: | |
6466 p = "SKWORD+NL"; | |
6467 break; | |
6468 case FNAME: | |
6469 p = "FNAME"; | |
6470 break; | |
6471 case FNAME + ADD_NL: | |
6472 p = "FNAME+NL"; | |
6473 break; | |
6474 case SFNAME: | |
6475 p = "SFNAME"; | |
6476 break; | |
6477 case SFNAME + ADD_NL: | |
6478 p = "SFNAME+NL"; | |
6479 break; | |
6480 case PRINT: | |
6481 p = "PRINT"; | |
6482 break; | |
6483 case PRINT + ADD_NL: | |
6484 p = "PRINT+NL"; | |
6485 break; | |
6486 case SPRINT: | |
6487 p = "SPRINT"; | |
6488 break; | |
6489 case SPRINT + ADD_NL: | |
6490 p = "SPRINT+NL"; | |
6491 break; | |
6492 case WHITE: | |
6493 p = "WHITE"; | |
6494 break; | |
6495 case WHITE + ADD_NL: | |
6496 p = "WHITE+NL"; | |
6497 break; | |
6498 case NWHITE: | |
6499 p = "NWHITE"; | |
6500 break; | |
6501 case NWHITE + ADD_NL: | |
6502 p = "NWHITE+NL"; | |
6503 break; | |
6504 case DIGIT: | |
6505 p = "DIGIT"; | |
6506 break; | |
6507 case DIGIT + ADD_NL: | |
6508 p = "DIGIT+NL"; | |
6509 break; | |
6510 case NDIGIT: | |
6511 p = "NDIGIT"; | |
6512 break; | |
6513 case NDIGIT + ADD_NL: | |
6514 p = "NDIGIT+NL"; | |
6515 break; | |
6516 case HEX: | |
6517 p = "HEX"; | |
6518 break; | |
6519 case HEX + ADD_NL: | |
6520 p = "HEX+NL"; | |
6521 break; | |
6522 case NHEX: | |
6523 p = "NHEX"; | |
6524 break; | |
6525 case NHEX + ADD_NL: | |
6526 p = "NHEX+NL"; | |
6527 break; | |
6528 case OCTAL: | |
6529 p = "OCTAL"; | |
6530 break; | |
6531 case OCTAL + ADD_NL: | |
6532 p = "OCTAL+NL"; | |
6533 break; | |
6534 case NOCTAL: | |
6535 p = "NOCTAL"; | |
6536 break; | |
6537 case NOCTAL + ADD_NL: | |
6538 p = "NOCTAL+NL"; | |
6539 break; | |
6540 case WORD: | |
6541 p = "WORD"; | |
6542 break; | |
6543 case WORD + ADD_NL: | |
6544 p = "WORD+NL"; | |
6545 break; | |
6546 case NWORD: | |
6547 p = "NWORD"; | |
6548 break; | |
6549 case NWORD + ADD_NL: | |
6550 p = "NWORD+NL"; | |
6551 break; | |
6552 case HEAD: | |
6553 p = "HEAD"; | |
6554 break; | |
6555 case HEAD + ADD_NL: | |
6556 p = "HEAD+NL"; | |
6557 break; | |
6558 case NHEAD: | |
6559 p = "NHEAD"; | |
6560 break; | |
6561 case NHEAD + ADD_NL: | |
6562 p = "NHEAD+NL"; | |
6563 break; | |
6564 case ALPHA: | |
6565 p = "ALPHA"; | |
6566 break; | |
6567 case ALPHA + ADD_NL: | |
6568 p = "ALPHA+NL"; | |
6569 break; | |
6570 case NALPHA: | |
6571 p = "NALPHA"; | |
6572 break; | |
6573 case NALPHA + ADD_NL: | |
6574 p = "NALPHA+NL"; | |
6575 break; | |
6576 case LOWER: | |
6577 p = "LOWER"; | |
6578 break; | |
6579 case LOWER + ADD_NL: | |
6580 p = "LOWER+NL"; | |
6581 break; | |
6582 case NLOWER: | |
6583 p = "NLOWER"; | |
6584 break; | |
6585 case NLOWER + ADD_NL: | |
6586 p = "NLOWER+NL"; | |
6587 break; | |
6588 case UPPER: | |
6589 p = "UPPER"; | |
6590 break; | |
6591 case UPPER + ADD_NL: | |
6592 p = "UPPER+NL"; | |
6593 break; | |
6594 case NUPPER: | |
6595 p = "NUPPER"; | |
6596 break; | |
6597 case NUPPER + ADD_NL: | |
6598 p = "NUPPER+NL"; | |
6599 break; | |
6600 case BRANCH: | |
6601 p = "BRANCH"; | |
6602 break; | |
6603 case EXACTLY: | |
6604 p = "EXACTLY"; | |
6605 break; | |
6606 case NOTHING: | |
6607 p = "NOTHING"; | |
6608 break; | |
6609 case BACK: | |
6610 p = "BACK"; | |
6611 break; | |
6612 case END: | |
6613 p = "END"; | |
6614 break; | |
6615 case MOPEN + 0: | |
6616 p = "MATCH START"; | |
6617 break; | |
6618 case MOPEN + 1: | |
6619 case MOPEN + 2: | |
6620 case MOPEN + 3: | |
6621 case MOPEN + 4: | |
6622 case MOPEN + 5: | |
6623 case MOPEN + 6: | |
6624 case MOPEN + 7: | |
6625 case MOPEN + 8: | |
6626 case MOPEN + 9: | |
6627 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN); | |
6628 p = NULL; | |
6629 break; | |
6630 case MCLOSE + 0: | |
6631 p = "MATCH END"; | |
6632 break; | |
6633 case MCLOSE + 1: | |
6634 case MCLOSE + 2: | |
6635 case MCLOSE + 3: | |
6636 case MCLOSE + 4: | |
6637 case MCLOSE + 5: | |
6638 case MCLOSE + 6: | |
6639 case MCLOSE + 7: | |
6640 case MCLOSE + 8: | |
6641 case MCLOSE + 9: | |
6642 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE); | |
6643 p = NULL; | |
6644 break; | |
6645 case BACKREF + 1: | |
6646 case BACKREF + 2: | |
6647 case BACKREF + 3: | |
6648 case BACKREF + 4: | |
6649 case BACKREF + 5: | |
6650 case BACKREF + 6: | |
6651 case BACKREF + 7: | |
6652 case BACKREF + 8: | |
6653 case BACKREF + 9: | |
6654 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF); | |
6655 p = NULL; | |
6656 break; | |
6657 case NOPEN: | |
6658 p = "NOPEN"; | |
6659 break; | |
6660 case NCLOSE: | |
6661 p = "NCLOSE"; | |
6662 break; | |
6663 #ifdef FEAT_SYN_HL | |
6664 case ZOPEN + 1: | |
6665 case ZOPEN + 2: | |
6666 case ZOPEN + 3: | |
6667 case ZOPEN + 4: | |
6668 case ZOPEN + 5: | |
6669 case ZOPEN + 6: | |
6670 case ZOPEN + 7: | |
6671 case ZOPEN + 8: | |
6672 case ZOPEN + 9: | |
6673 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN); | |
6674 p = NULL; | |
6675 break; | |
6676 case ZCLOSE + 1: | |
6677 case ZCLOSE + 2: | |
6678 case ZCLOSE + 3: | |
6679 case ZCLOSE + 4: | |
6680 case ZCLOSE + 5: | |
6681 case ZCLOSE + 6: | |
6682 case ZCLOSE + 7: | |
6683 case ZCLOSE + 8: | |
6684 case ZCLOSE + 9: | |
6685 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE); | |
6686 p = NULL; | |
6687 break; | |
6688 case ZREF + 1: | |
6689 case ZREF + 2: | |
6690 case ZREF + 3: | |
6691 case ZREF + 4: | |
6692 case ZREF + 5: | |
6693 case ZREF + 6: | |
6694 case ZREF + 7: | |
6695 case ZREF + 8: | |
6696 case ZREF + 9: | |
6697 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF); | |
6698 p = NULL; | |
6699 break; | |
6700 #endif | |
6701 case STAR: | |
6702 p = "STAR"; | |
6703 break; | |
6704 case PLUS: | |
6705 p = "PLUS"; | |
6706 break; | |
6707 case NOMATCH: | |
6708 p = "NOMATCH"; | |
6709 break; | |
6710 case MATCH: | |
6711 p = "MATCH"; | |
6712 break; | |
6713 case BEHIND: | |
6714 p = "BEHIND"; | |
6715 break; | |
6716 case NOBEHIND: | |
6717 p = "NOBEHIND"; | |
6718 break; | |
6719 case SUBPAT: | |
6720 p = "SUBPAT"; | |
6721 break; | |
6722 case BRACE_LIMITS: | |
6723 p = "BRACE_LIMITS"; | |
6724 break; | |
6725 case BRACE_SIMPLE: | |
6726 p = "BRACE_SIMPLE"; | |
6727 break; | |
6728 case BRACE_COMPLEX + 0: | |
6729 case BRACE_COMPLEX + 1: | |
6730 case BRACE_COMPLEX + 2: | |
6731 case BRACE_COMPLEX + 3: | |
6732 case BRACE_COMPLEX + 4: | |
6733 case BRACE_COMPLEX + 5: | |
6734 case BRACE_COMPLEX + 6: | |
6735 case BRACE_COMPLEX + 7: | |
6736 case BRACE_COMPLEX + 8: | |
6737 case BRACE_COMPLEX + 9: | |
6738 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX); | |
6739 p = NULL; | |
6740 break; | |
6741 #ifdef FEAT_MBYTE | |
6742 case MULTIBYTECODE: | |
6743 p = "MULTIBYTECODE"; | |
6744 break; | |
6745 #endif | |
6746 case NEWL: | |
6747 p = "NEWL"; | |
6748 break; | |
6749 default: | |
6750 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op)); | |
6751 p = NULL; | |
6752 break; | |
6753 } | |
6754 if (p != NULL) | |
6755 (void) strcat(buf, p); | |
6756 return buf; | |
6757 } | |
6758 #endif | |
6759 | |
6760 #ifdef FEAT_MBYTE | |
6761 static void mb_decompose __ARGS((int c, int *c1, int *c2, int *c3)); | |
6762 | |
6763 typedef struct | |
6764 { | |
6765 int a, b, c; | |
6766 } decomp_T; | |
6767 | |
6768 | |
6769 /* 0xfb20 - 0xfb4f */ | |
297 | 6770 static decomp_T decomp_table[0xfb4f-0xfb20+1] = |
7 | 6771 { |
6772 {0x5e2,0,0}, /* 0xfb20 alt ayin */ | |
6773 {0x5d0,0,0}, /* 0xfb21 alt alef */ | |
6774 {0x5d3,0,0}, /* 0xfb22 alt dalet */ | |
6775 {0x5d4,0,0}, /* 0xfb23 alt he */ | |
6776 {0x5db,0,0}, /* 0xfb24 alt kaf */ | |
6777 {0x5dc,0,0}, /* 0xfb25 alt lamed */ | |
6778 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */ | |
6779 {0x5e8,0,0}, /* 0xfb27 alt resh */ | |
6780 {0x5ea,0,0}, /* 0xfb28 alt tav */ | |
6781 {'+', 0, 0}, /* 0xfb29 alt plus */ | |
6782 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */ | |
6783 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */ | |
6784 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */ | |
6785 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */ | |
6786 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */ | |
6787 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */ | |
6788 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */ | |
6789 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */ | |
6790 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */ | |
6791 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */ | |
6792 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */ | |
6793 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */ | |
6794 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */ | |
6795 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */ | |
6796 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */ | |
6797 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */ | |
6798 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */ | |
6799 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */ | |
6800 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */ | |
6801 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */ | |
6802 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */ | |
6803 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */ | |
6804 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */ | |
6805 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */ | |
6806 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */ | |
6807 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */ | |
6808 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */ | |
6809 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */ | |
6810 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */ | |
6811 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */ | |
6812 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */ | |
6813 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */ | |
6814 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */ | |
6815 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */ | |
6816 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */ | |
6817 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */ | |
6818 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */ | |
6819 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */ | |
6820 }; | |
6821 | |
6822 static void | |
6823 mb_decompose(c, c1, c2, c3) | |
6824 int c, *c1, *c2, *c3; | |
6825 { | |
6826 decomp_T d; | |
6827 | |
6828 if (c >= 0x4b20 && c <= 0xfb4f) | |
6829 { | |
6830 d = decomp_table[c - 0xfb20]; | |
6831 *c1 = d.a; | |
6832 *c2 = d.b; | |
6833 *c3 = d.c; | |
6834 } | |
6835 else | |
6836 { | |
6837 *c1 = c; | |
6838 *c2 = *c3 = 0; | |
6839 } | |
6840 } | |
6841 #endif | |
6842 | |
6843 /* | |
6844 * Compare two strings, ignore case if ireg_ic set. | |
6845 * Return 0 if strings match, non-zero otherwise. | |
6846 * Correct the length "*n" when composing characters are ignored. | |
6847 */ | |
6848 static int | |
6849 cstrncmp(s1, s2, n) | |
6850 char_u *s1, *s2; | |
6851 int *n; | |
6852 { | |
6853 int result; | |
6854 | |
6855 if (!ireg_ic) | |
6856 result = STRNCMP(s1, s2, *n); | |
6857 else | |
6858 result = MB_STRNICMP(s1, s2, *n); | |
6859 | |
6860 #ifdef FEAT_MBYTE | |
6861 /* if it failed and it's utf8 and we want to combineignore: */ | |
6862 if (result != 0 && enc_utf8 && ireg_icombine) | |
6863 { | |
6864 char_u *str1, *str2; | |
6865 int c1, c2, c11, c12; | |
6866 int junk; | |
6867 | |
6868 /* we have to handle the strcmp ourselves, since it is necessary to | |
6869 * deal with the composing characters by ignoring them: */ | |
6870 str1 = s1; | |
6871 str2 = s2; | |
6872 c1 = c2 = 0; | |
507 | 6873 while ((int)(str1 - s1) < *n) |
7 | 6874 { |
6875 c1 = mb_ptr2char_adv(&str1); | |
6876 c2 = mb_ptr2char_adv(&str2); | |
6877 | |
6878 /* decompose the character if necessary, into 'base' characters | |
6879 * because I don't care about Arabic, I will hard-code the Hebrew | |
6880 * which I *do* care about! So sue me... */ | |
6881 if (c1 != c2 && (!ireg_ic || utf_fold(c1) != utf_fold(c2))) | |
6882 { | |
6883 /* decomposition necessary? */ | |
6884 mb_decompose(c1, &c11, &junk, &junk); | |
6885 mb_decompose(c2, &c12, &junk, &junk); | |
6886 c1 = c11; | |
6887 c2 = c12; | |
6888 if (c11 != c12 && (!ireg_ic || utf_fold(c11) != utf_fold(c12))) | |
6889 break; | |
6890 } | |
6891 } | |
6892 result = c2 - c1; | |
6893 if (result == 0) | |
6894 *n = (int)(str2 - s2); | |
6895 } | |
6896 #endif | |
6897 | |
6898 return result; | |
6899 } | |
6900 | |
6901 /* | |
6902 * cstrchr: This function is used a lot for simple searches, keep it fast! | |
6903 */ | |
6904 static char_u * | |
6905 cstrchr(s, c) | |
6906 char_u *s; | |
6907 int c; | |
6908 { | |
6909 char_u *p; | |
6910 int cc; | |
6911 | |
6912 if (!ireg_ic | |
6913 #ifdef FEAT_MBYTE | |
6914 || (!enc_utf8 && mb_char2len(c) > 1) | |
6915 #endif | |
6916 ) | |
6917 return vim_strchr(s, c); | |
6918 | |
6919 /* tolower() and toupper() can be slow, comparing twice should be a lot | |
6920 * faster (esp. when using MS Visual C++!). | |
6921 * For UTF-8 need to use folded case. */ | |
6922 #ifdef FEAT_MBYTE | |
6923 if (enc_utf8 && c > 0x80) | |
6924 cc = utf_fold(c); | |
6925 else | |
6926 #endif | |
1347 | 6927 if (MB_ISUPPER(c)) |
6928 cc = MB_TOLOWER(c); | |
6929 else if (MB_ISLOWER(c)) | |
6930 cc = MB_TOUPPER(c); | |
7 | 6931 else |
6932 return vim_strchr(s, c); | |
6933 | |
6934 #ifdef FEAT_MBYTE | |
6935 if (has_mbyte) | |
6936 { | |
474 | 6937 for (p = s; *p != NUL; p += (*mb_ptr2len)(p)) |
7 | 6938 { |
6939 if (enc_utf8 && c > 0x80) | |
6940 { | |
6941 if (utf_fold(utf_ptr2char(p)) == cc) | |
6942 return p; | |
6943 } | |
6944 else if (*p == c || *p == cc) | |
6945 return p; | |
6946 } | |
6947 } | |
6948 else | |
6949 #endif | |
6950 /* Faster version for when there are no multi-byte characters. */ | |
6951 for (p = s; *p != NUL; ++p) | |
6952 if (*p == c || *p == cc) | |
6953 return p; | |
6954 | |
6955 return NULL; | |
6956 } | |
6957 | |
6958 /*************************************************************** | |
6959 * regsub stuff * | |
6960 ***************************************************************/ | |
6961 | |
6962 /* This stuff below really confuses cc on an SGI -- webb */ | |
6963 #ifdef __sgi | |
6964 # undef __ARGS | |
6965 # define __ARGS(x) () | |
6966 #endif | |
6967 | |
6968 /* | |
6969 * We should define ftpr as a pointer to a function returning a pointer to | |
6970 * a function returning a pointer to a function ... | |
6971 * This is impossible, so we declare a pointer to a function returning a | |
6972 * pointer to a function returning void. This should work for all compilers. | |
6973 */ | |
772 | 6974 typedef void (*(*fptr_T) __ARGS((int *, int)))(); |
6975 | |
6976 static fptr_T do_upper __ARGS((int *, int)); | |
6977 static fptr_T do_Upper __ARGS((int *, int)); | |
6978 static fptr_T do_lower __ARGS((int *, int)); | |
6979 static fptr_T do_Lower __ARGS((int *, int)); | |
7 | 6980 |
6981 static int vim_regsub_both __ARGS((char_u *source, char_u *dest, int copy, int magic, int backslash)); | |
6982 | |
772 | 6983 static fptr_T |
7 | 6984 do_upper(d, c) |
772 | 6985 int *d; |
6986 int c; | |
7 | 6987 { |
772 | 6988 *d = MB_TOUPPER(c); |
6989 | |
6990 return (fptr_T)NULL; | |
7 | 6991 } |
6992 | |
772 | 6993 static fptr_T |
6994 do_Upper(d, c) | |
6995 int *d; | |
7 | 6996 int c; |
6997 { | |
772 | 6998 *d = MB_TOUPPER(c); |
6999 | |
7000 return (fptr_T)do_Upper; | |
7001 } | |
7002 | |
7003 static fptr_T | |
7004 do_lower(d, c) | |
7005 int *d; | |
7006 int c; | |
7007 { | |
7008 *d = MB_TOLOWER(c); | |
7009 | |
7010 return (fptr_T)NULL; | |
7011 } | |
7012 | |
7013 static fptr_T | |
7014 do_Lower(d, c) | |
7015 int *d; | |
7016 int c; | |
7017 { | |
7018 *d = MB_TOLOWER(c); | |
7019 | |
7020 return (fptr_T)do_Lower; | |
7 | 7021 } |
7022 | |
7023 /* | |
7024 * regtilde(): Replace tildes in the pattern by the old pattern. | |
7025 * | |
7026 * Short explanation of the tilde: It stands for the previous replacement | |
7027 * pattern. If that previous pattern also contains a ~ we should go back a | |
7028 * step further... But we insert the previous pattern into the current one | |
7029 * and remember that. | |
772 | 7030 * This still does not handle the case where "magic" changes. So require the |
7031 * user to keep his hands off of "magic". | |
7 | 7032 * |
7033 * The tildes are parsed once before the first call to vim_regsub(). | |
7034 */ | |
7035 char_u * | |
7036 regtilde(source, magic) | |
7037 char_u *source; | |
7038 int magic; | |
7039 { | |
7040 char_u *newsub = source; | |
7041 char_u *tmpsub; | |
7042 char_u *p; | |
7043 int len; | |
7044 int prevlen; | |
7045 | |
7046 for (p = newsub; *p; ++p) | |
7047 { | |
7048 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic)) | |
7049 { | |
7050 if (reg_prev_sub != NULL) | |
7051 { | |
7052 /* length = len(newsub) - 1 + len(prev_sub) + 1 */ | |
7053 prevlen = (int)STRLEN(reg_prev_sub); | |
7054 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen)); | |
7055 if (tmpsub != NULL) | |
7056 { | |
7057 /* copy prefix */ | |
7058 len = (int)(p - newsub); /* not including ~ */ | |
7059 mch_memmove(tmpsub, newsub, (size_t)len); | |
1209 | 7060 /* interpret tilde */ |
7 | 7061 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen); |
7062 /* copy postfix */ | |
7063 if (!magic) | |
7064 ++p; /* back off \ */ | |
7065 STRCPY(tmpsub + len + prevlen, p + 1); | |
7066 | |
7067 if (newsub != source) /* already allocated newsub */ | |
7068 vim_free(newsub); | |
7069 newsub = tmpsub; | |
7070 p = newsub + len + prevlen; | |
7071 } | |
7072 } | |
7073 else if (magic) | |
1621 | 7074 STRMOVE(p, p + 1); /* remove '~' */ |
7 | 7075 else |
1621 | 7076 STRMOVE(p, p + 2); /* remove '\~' */ |
7 | 7077 --p; |
7078 } | |
7079 else | |
7080 { | |
7081 if (*p == '\\' && p[1]) /* skip escaped characters */ | |
7082 ++p; | |
7083 #ifdef FEAT_MBYTE | |
7084 if (has_mbyte) | |
474 | 7085 p += (*mb_ptr2len)(p) - 1; |
7 | 7086 #endif |
7087 } | |
7088 } | |
7089 | |
7090 vim_free(reg_prev_sub); | |
7091 if (newsub != source) /* newsub was allocated, just keep it */ | |
7092 reg_prev_sub = newsub; | |
7093 else /* no ~ found, need to save newsub */ | |
7094 reg_prev_sub = vim_strsave(newsub); | |
7095 return newsub; | |
7096 } | |
7097 | |
7098 #ifdef FEAT_EVAL | |
7099 static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */ | |
7100 | |
7101 /* These pointers are used instead of reg_match and reg_mmatch for | |
7102 * reg_submatch(). Needed for when the substitution string is an expression | |
7103 * that contains a call to substitute() and submatch(). */ | |
7104 static regmatch_T *submatch_match; | |
7105 static regmmatch_T *submatch_mmatch; | |
2011 | 7106 static linenr_T submatch_firstlnum; |
7107 static linenr_T submatch_maxline; | |
2904 | 7108 static int submatch_line_lbr; |
7 | 7109 #endif |
7110 | |
7111 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO) | |
7112 /* | |
7113 * vim_regsub() - perform substitutions after a vim_regexec() or | |
7114 * vim_regexec_multi() match. | |
7115 * | |
7116 * If "copy" is TRUE really copy into "dest". | |
7117 * If "copy" is FALSE nothing is copied, this is just to find out the length | |
7118 * of the result. | |
7119 * | |
7120 * If "backslash" is TRUE, a backslash will be removed later, need to double | |
7121 * them to keep them, and insert a backslash before a CR to avoid it being | |
7122 * replaced with a line break later. | |
7123 * | |
7124 * Note: The matched text must not change between the call of | |
7125 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back | |
7126 * references invalid! | |
7127 * | |
7128 * Returns the size of the replacement, including terminating NUL. | |
7129 */ | |
7130 int | |
7131 vim_regsub(rmp, source, dest, copy, magic, backslash) | |
7132 regmatch_T *rmp; | |
7133 char_u *source; | |
7134 char_u *dest; | |
7135 int copy; | |
7136 int magic; | |
7137 int backslash; | |
7138 { | |
7139 reg_match = rmp; | |
7140 reg_mmatch = NULL; | |
7141 reg_maxline = 0; | |
7142 return vim_regsub_both(source, dest, copy, magic, backslash); | |
7143 } | |
7144 #endif | |
7145 | |
7146 int | |
7147 vim_regsub_multi(rmp, lnum, source, dest, copy, magic, backslash) | |
7148 regmmatch_T *rmp; | |
7149 linenr_T lnum; | |
7150 char_u *source; | |
7151 char_u *dest; | |
7152 int copy; | |
7153 int magic; | |
7154 int backslash; | |
7155 { | |
7156 reg_match = NULL; | |
7157 reg_mmatch = rmp; | |
7158 reg_buf = curbuf; /* always works on the current buffer! */ | |
7159 reg_firstlnum = lnum; | |
7160 reg_maxline = curbuf->b_ml.ml_line_count - lnum; | |
7161 return vim_regsub_both(source, dest, copy, magic, backslash); | |
7162 } | |
7163 | |
7164 static int | |
7165 vim_regsub_both(source, dest, copy, magic, backslash) | |
7166 char_u *source; | |
7167 char_u *dest; | |
7168 int copy; | |
7169 int magic; | |
7170 int backslash; | |
7171 { | |
7172 char_u *src; | |
7173 char_u *dst; | |
7174 char_u *s; | |
7175 int c; | |
772 | 7176 int cc; |
7 | 7177 int no = -1; |
772 | 7178 fptr_T func = (fptr_T)NULL; |
7 | 7179 linenr_T clnum = 0; /* init for GCC */ |
7180 int len = 0; /* init for GCC */ | |
7181 #ifdef FEAT_EVAL | |
7182 static char_u *eval_result = NULL; | |
7183 #endif | |
7184 | |
7185 /* Be paranoid... */ | |
7186 if (source == NULL || dest == NULL) | |
7187 { | |
7188 EMSG(_(e_null)); | |
7189 return 0; | |
7190 } | |
7191 if (prog_magic_wrong()) | |
7192 return 0; | |
7193 src = source; | |
7194 dst = dest; | |
7195 | |
7196 /* | |
7197 * When the substitute part starts with "\=" evaluate it as an expression. | |
7198 */ | |
7199 if (source[0] == '\\' && source[1] == '=' | |
7200 #ifdef FEAT_EVAL | |
7201 && !can_f_submatch /* can't do this recursively */ | |
7202 #endif | |
7203 ) | |
7204 { | |
7205 #ifdef FEAT_EVAL | |
7206 /* To make sure that the length doesn't change between checking the | |
7207 * length and copying the string, and to speed up things, the | |
7208 * resulting string is saved from the call with "copy" == FALSE to the | |
7209 * call with "copy" == TRUE. */ | |
7210 if (copy) | |
7211 { | |
7212 if (eval_result != NULL) | |
7213 { | |
7214 STRCPY(dest, eval_result); | |
7215 dst += STRLEN(eval_result); | |
7216 vim_free(eval_result); | |
7217 eval_result = NULL; | |
7218 } | |
7219 } | |
7220 else | |
7221 { | |
7222 win_T *save_reg_win; | |
7223 int save_ireg_ic; | |
7224 | |
7225 vim_free(eval_result); | |
7226 | |
7227 /* The expression may contain substitute(), which calls us | |
7228 * recursively. Make sure submatch() gets the text from the first | |
7229 * level. Don't need to save "reg_buf", because | |
7230 * vim_regexec_multi() can't be called recursively. */ | |
7231 submatch_match = reg_match; | |
7232 submatch_mmatch = reg_mmatch; | |
2011 | 7233 submatch_firstlnum = reg_firstlnum; |
7234 submatch_maxline = reg_maxline; | |
2904 | 7235 submatch_line_lbr = reg_line_lbr; |
7 | 7236 save_reg_win = reg_win; |
7237 save_ireg_ic = ireg_ic; | |
7238 can_f_submatch = TRUE; | |
7239 | |
714 | 7240 eval_result = eval_to_string(source + 2, NULL, TRUE); |
7 | 7241 if (eval_result != NULL) |
7242 { | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7243 int had_backslash = FALSE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7244 |
39 | 7245 for (s = eval_result; *s != NUL; mb_ptr_adv(s)) |
7 | 7246 { |
2904 | 7247 /* Change NL to CR, so that it becomes a line break, |
7248 * unless called from vim_regexec_nl(). | |
7 | 7249 * Skip over a backslashed character. */ |
2904 | 7250 if (*s == NL && !submatch_line_lbr) |
7 | 7251 *s = CAR; |
7252 else if (*s == '\\' && s[1] != NUL) | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7253 { |
7 | 7254 ++s; |
2173 | 7255 /* Change NL to CR here too, so that this works: |
7256 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text: | |
7257 * abc\ | |
7258 * def | |
2904 | 7259 * Not when called from vim_regexec_nl(). |
2173 | 7260 */ |
2904 | 7261 if (*s == NL && !submatch_line_lbr) |
2173 | 7262 *s = CAR; |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7263 had_backslash = TRUE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7264 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7265 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7266 if (had_backslash && backslash) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7267 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7268 /* Backslashes will be consumed, need to double them. */ |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7269 s = vim_strsave_escaped(eval_result, (char_u *)"\\"); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7270 if (s != NULL) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7271 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7272 vim_free(eval_result); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7273 eval_result = s; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7274 } |
7 | 7275 } |
7276 | |
7277 dst += STRLEN(eval_result); | |
7278 } | |
7279 | |
7280 reg_match = submatch_match; | |
7281 reg_mmatch = submatch_mmatch; | |
2011 | 7282 reg_firstlnum = submatch_firstlnum; |
7283 reg_maxline = submatch_maxline; | |
2904 | 7284 reg_line_lbr = submatch_line_lbr; |
7 | 7285 reg_win = save_reg_win; |
7286 ireg_ic = save_ireg_ic; | |
7287 can_f_submatch = FALSE; | |
7288 } | |
7289 #endif | |
7290 } | |
7291 else | |
7292 while ((c = *src++) != NUL) | |
7293 { | |
7294 if (c == '&' && magic) | |
7295 no = 0; | |
7296 else if (c == '\\' && *src != NUL) | |
7297 { | |
7298 if (*src == '&' && !magic) | |
7299 { | |
7300 ++src; | |
7301 no = 0; | |
7302 } | |
7303 else if ('0' <= *src && *src <= '9') | |
7304 { | |
7305 no = *src++ - '0'; | |
7306 } | |
7307 else if (vim_strchr((char_u *)"uUlLeE", *src)) | |
7308 { | |
7309 switch (*src++) | |
7310 { | |
772 | 7311 case 'u': func = (fptr_T)do_upper; |
7 | 7312 continue; |
772 | 7313 case 'U': func = (fptr_T)do_Upper; |
7 | 7314 continue; |
772 | 7315 case 'l': func = (fptr_T)do_lower; |
7 | 7316 continue; |
772 | 7317 case 'L': func = (fptr_T)do_Lower; |
7 | 7318 continue; |
7319 case 'e': | |
772 | 7320 case 'E': func = (fptr_T)NULL; |
7 | 7321 continue; |
7322 } | |
7323 } | |
7324 } | |
7325 if (no < 0) /* Ordinary character. */ | |
7326 { | |
798 | 7327 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL) |
7328 { | |
1209 | 7329 /* Copy a special key as-is. */ |
798 | 7330 if (copy) |
7331 { | |
7332 *dst++ = c; | |
7333 *dst++ = *src++; | |
7334 *dst++ = *src++; | |
7335 } | |
7336 else | |
7337 { | |
7338 dst += 3; | |
7339 src += 2; | |
7340 } | |
7341 continue; | |
7342 } | |
7343 | |
7 | 7344 if (c == '\\' && *src != NUL) |
7345 { | |
7346 /* Check for abbreviations -- webb */ | |
7347 switch (*src) | |
7348 { | |
7349 case 'r': c = CAR; ++src; break; | |
7350 case 'n': c = NL; ++src; break; | |
7351 case 't': c = TAB; ++src; break; | |
7352 /* Oh no! \e already has meaning in subst pat :-( */ | |
7353 /* case 'e': c = ESC; ++src; break; */ | |
7354 case 'b': c = Ctrl_H; ++src; break; | |
7355 | |
7356 /* If "backslash" is TRUE the backslash will be removed | |
7357 * later. Used to insert a literal CR. */ | |
7358 default: if (backslash) | |
7359 { | |
7360 if (copy) | |
7361 *dst = '\\'; | |
7362 ++dst; | |
7363 } | |
7364 c = *src++; | |
7365 } | |
7366 } | |
798 | 7367 #ifdef FEAT_MBYTE |
7368 else if (has_mbyte) | |
7369 c = mb_ptr2char(src - 1); | |
7370 #endif | |
7 | 7371 |
7372 /* Write to buffer, if copy is set. */ | |
772 | 7373 if (func == (fptr_T)NULL) /* just copy */ |
7374 cc = c; | |
7375 else | |
7376 /* Turbo C complains without the typecast */ | |
7377 func = (fptr_T)(func(&cc, c)); | |
7378 | |
7379 #ifdef FEAT_MBYTE | |
7380 if (has_mbyte) | |
7 | 7381 { |
2307
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7382 int totlen = mb_ptr2len(src - 1); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7383 |
7 | 7384 if (copy) |
772 | 7385 mb_char2bytes(cc, dst); |
7386 dst += mb_char2len(cc) - 1; | |
2307
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7387 if (enc_utf8) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7388 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7389 int clen = utf_ptr2len(src - 1); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7390 |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7391 /* If the character length is shorter than "totlen", there |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7392 * are composing characters; copy them as-is. */ |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7393 if (clen < totlen) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7394 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7395 if (copy) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7396 mch_memmove(dst + 1, src - 1 + clen, |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7397 (size_t)(totlen - clen)); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7398 dst += totlen - clen; |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7399 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7400 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7401 src += totlen - 1; |
7 | 7402 } |
7403 else | |
7404 #endif | |
7405 if (copy) | |
772 | 7406 *dst = cc; |
7 | 7407 dst++; |
7408 } | |
7409 else | |
7410 { | |
7411 if (REG_MULTI) | |
7412 { | |
7413 clnum = reg_mmatch->startpos[no].lnum; | |
7414 if (clnum < 0 || reg_mmatch->endpos[no].lnum < 0) | |
7415 s = NULL; | |
7416 else | |
7417 { | |
7418 s = reg_getline(clnum) + reg_mmatch->startpos[no].col; | |
7419 if (reg_mmatch->endpos[no].lnum == clnum) | |
7420 len = reg_mmatch->endpos[no].col | |
7421 - reg_mmatch->startpos[no].col; | |
7422 else | |
7423 len = (int)STRLEN(s); | |
7424 } | |
7425 } | |
7426 else | |
7427 { | |
7428 s = reg_match->startp[no]; | |
7429 if (reg_match->endp[no] == NULL) | |
7430 s = NULL; | |
7431 else | |
7432 len = (int)(reg_match->endp[no] - s); | |
7433 } | |
7434 if (s != NULL) | |
7435 { | |
7436 for (;;) | |
7437 { | |
7438 if (len == 0) | |
7439 { | |
7440 if (REG_MULTI) | |
7441 { | |
7442 if (reg_mmatch->endpos[no].lnum == clnum) | |
7443 break; | |
7444 if (copy) | |
7445 *dst = CAR; | |
7446 ++dst; | |
7447 s = reg_getline(++clnum); | |
7448 if (reg_mmatch->endpos[no].lnum == clnum) | |
7449 len = reg_mmatch->endpos[no].col; | |
7450 else | |
7451 len = (int)STRLEN(s); | |
7452 } | |
7453 else | |
7454 break; | |
7455 } | |
7456 else if (*s == NUL) /* we hit NUL. */ | |
7457 { | |
7458 if (copy) | |
7459 EMSG(_(e_re_damg)); | |
7460 goto exit; | |
7461 } | |
7462 else | |
7463 { | |
7464 if (backslash && (*s == CAR || *s == '\\')) | |
7465 { | |
7466 /* | |
7467 * Insert a backslash in front of a CR, otherwise | |
7468 * it will be replaced by a line break. | |
7469 * Number of backslashes will be halved later, | |
7470 * double them here. | |
7471 */ | |
7472 if (copy) | |
7473 { | |
7474 dst[0] = '\\'; | |
7475 dst[1] = *s; | |
7476 } | |
7477 dst += 2; | |
7478 } | |
7479 else | |
7480 { | |
772 | 7481 #ifdef FEAT_MBYTE |
7482 if (has_mbyte) | |
7483 c = mb_ptr2char(s); | |
7484 else | |
7485 #endif | |
7486 c = *s; | |
7487 | |
7488 if (func == (fptr_T)NULL) /* just copy */ | |
7489 cc = c; | |
7490 else | |
7491 /* Turbo C complains without the typecast */ | |
7492 func = (fptr_T)(func(&cc, c)); | |
7493 | |
7494 #ifdef FEAT_MBYTE | |
7495 if (has_mbyte) | |
7 | 7496 { |
1332 | 7497 int l; |
7498 | |
7499 /* Copy composing characters separately, one | |
7500 * at a time. */ | |
7501 if (enc_utf8) | |
7502 l = utf_ptr2len(s) - 1; | |
7503 else | |
7504 l = mb_ptr2len(s) - 1; | |
772 | 7505 |
7506 s += l; | |
7507 len -= l; | |
7508 if (copy) | |
7509 mb_char2bytes(cc, dst); | |
7510 dst += mb_char2len(cc) - 1; | |
7 | 7511 } |
772 | 7512 else |
7513 #endif | |
7514 if (copy) | |
7515 *dst = cc; | |
7516 dst++; | |
7 | 7517 } |
772 | 7518 |
7 | 7519 ++s; |
7520 --len; | |
7521 } | |
7522 } | |
7523 } | |
7524 no = -1; | |
7525 } | |
7526 } | |
7527 if (copy) | |
7528 *dst = NUL; | |
7529 | |
7530 exit: | |
7531 return (int)((dst - dest) + 1); | |
7532 } | |
7533 | |
7534 #ifdef FEAT_EVAL | |
2012 | 7535 static char_u *reg_getline_submatch __ARGS((linenr_T lnum)); |
7536 | |
7 | 7537 /* |
2011 | 7538 * Call reg_getline() with the line numbers from the submatch. If a |
7539 * substitute() was used the reg_maxline and other values have been | |
7540 * overwritten. | |
7541 */ | |
7542 static char_u * | |
7543 reg_getline_submatch(lnum) | |
7544 linenr_T lnum; | |
7545 { | |
7546 char_u *s; | |
7547 linenr_T save_first = reg_firstlnum; | |
7548 linenr_T save_max = reg_maxline; | |
7549 | |
7550 reg_firstlnum = submatch_firstlnum; | |
7551 reg_maxline = submatch_maxline; | |
7552 | |
7553 s = reg_getline(lnum); | |
7554 | |
7555 reg_firstlnum = save_first; | |
7556 reg_maxline = save_max; | |
7557 return s; | |
7558 } | |
7559 | |
7560 /* | |
1209 | 7561 * Used for the submatch() function: get the string from the n'th submatch in |
7 | 7562 * allocated memory. |
7563 * Returns NULL when not in a ":s" command and for a non-existing submatch. | |
7564 */ | |
7565 char_u * | |
7566 reg_submatch(no) | |
7567 int no; | |
7568 { | |
7569 char_u *retval = NULL; | |
7570 char_u *s; | |
7571 int len; | |
7572 int round; | |
7573 linenr_T lnum; | |
7574 | |
840 | 7575 if (!can_f_submatch || no < 0) |
7 | 7576 return NULL; |
7577 | |
7578 if (submatch_match == NULL) | |
7579 { | |
7580 /* | |
7581 * First round: compute the length and allocate memory. | |
7582 * Second round: copy the text. | |
7583 */ | |
7584 for (round = 1; round <= 2; ++round) | |
7585 { | |
7586 lnum = submatch_mmatch->startpos[no].lnum; | |
7587 if (lnum < 0 || submatch_mmatch->endpos[no].lnum < 0) | |
7588 return NULL; | |
7589 | |
2011 | 7590 s = reg_getline_submatch(lnum) + submatch_mmatch->startpos[no].col; |
7 | 7591 if (s == NULL) /* anti-crash check, cannot happen? */ |
7592 break; | |
7593 if (submatch_mmatch->endpos[no].lnum == lnum) | |
7594 { | |
7595 /* Within one line: take form start to end col. */ | |
7596 len = submatch_mmatch->endpos[no].col | |
7597 - submatch_mmatch->startpos[no].col; | |
7598 if (round == 2) | |
418 | 7599 vim_strncpy(retval, s, len); |
7 | 7600 ++len; |
7601 } | |
7602 else | |
7603 { | |
7604 /* Multiple lines: take start line from start col, middle | |
7605 * lines completely and end line up to end col. */ | |
7606 len = (int)STRLEN(s); | |
7607 if (round == 2) | |
7608 { | |
7609 STRCPY(retval, s); | |
7610 retval[len] = '\n'; | |
7611 } | |
7612 ++len; | |
7613 ++lnum; | |
7614 while (lnum < submatch_mmatch->endpos[no].lnum) | |
7615 { | |
2011 | 7616 s = reg_getline_submatch(lnum++); |
7 | 7617 if (round == 2) |
7618 STRCPY(retval + len, s); | |
7619 len += (int)STRLEN(s); | |
7620 if (round == 2) | |
7621 retval[len] = '\n'; | |
7622 ++len; | |
7623 } | |
7624 if (round == 2) | |
2011 | 7625 STRNCPY(retval + len, reg_getline_submatch(lnum), |
7 | 7626 submatch_mmatch->endpos[no].col); |
7627 len += submatch_mmatch->endpos[no].col; | |
7628 if (round == 2) | |
7629 retval[len] = NUL; | |
7630 ++len; | |
7631 } | |
7632 | |
840 | 7633 if (retval == NULL) |
7 | 7634 { |
7635 retval = lalloc((long_u)len, TRUE); | |
840 | 7636 if (retval == NULL) |
7 | 7637 return NULL; |
7638 } | |
7639 } | |
7640 } | |
7641 else | |
7642 { | |
1815 | 7643 s = submatch_match->startp[no]; |
7644 if (s == NULL || submatch_match->endp[no] == NULL) | |
7 | 7645 retval = NULL; |
7646 else | |
7647 retval = vim_strnsave(s, (int)(submatch_match->endp[no] - s)); | |
7648 } | |
7649 | |
7650 return retval; | |
7651 } | |
7652 #endif |