Ruby 3.5.0dev (2025-04-03 revision 1dddc6c78b5f6dc6ae18ee04ebe44abfce3b0433)
re.c (1dddc6c78b5f6dc6ae18ee04ebe44abfce3b0433)
1/**********************************************************************
2
3 re.c -
4
5 $Author$
6 created at: Mon Aug 9 18:24:49 JST 1993
7
8 Copyright (C) 1993-2007 Yukihiro Matsumoto
9
10**********************************************************************/
11
12#include "ruby/internal/config.h"
13
14#include <ctype.h>
15
16#include "encindex.h"
17#include "hrtime.h"
18#include "internal.h"
19#include "internal/encoding.h"
20#include "internal/hash.h"
21#include "internal/imemo.h"
22#include "internal/re.h"
23#include "internal/string.h"
24#include "internal/object.h"
25#include "internal/ractor.h"
26#include "internal/variable.h"
27#include "regint.h"
28#include "ruby/encoding.h"
29#include "ruby/re.h"
30#include "ruby/util.h"
31
32VALUE rb_eRegexpError, rb_eRegexpTimeoutError;
33
34typedef char onig_errmsg_buffer[ONIG_MAX_ERROR_MESSAGE_LEN];
35#define errcpy(err, msg) strlcpy((err), (msg), ONIG_MAX_ERROR_MESSAGE_LEN)
36
37#define BEG(no) (regs->beg[(no)])
38#define END(no) (regs->end[(no)])
39
40#if 'a' == 97 /* it's ascii */
41static const char casetable[] = {
42 '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
43 '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
44 '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
45 '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
46 /* ' ' '!' '"' '#' '$' '%' '&' ''' */
47 '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
48 /* '(' ')' '*' '+' ',' '-' '.' '/' */
49 '\050', '\051', '\052', '\053', '\054', '\055', '\056', '\057',
50 /* '0' '1' '2' '3' '4' '5' '6' '7' */
51 '\060', '\061', '\062', '\063', '\064', '\065', '\066', '\067',
52 /* '8' '9' ':' ';' '<' '=' '>' '?' */
53 '\070', '\071', '\072', '\073', '\074', '\075', '\076', '\077',
54 /* '@' 'A' 'B' 'C' 'D' 'E' 'F' 'G' */
55 '\100', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
56 /* 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O' */
57 '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
58 /* 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' */
59 '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
60 /* 'X' 'Y' 'Z' '[' '\' ']' '^' '_' */
61 '\170', '\171', '\172', '\133', '\134', '\135', '\136', '\137',
62 /* '`' 'a' 'b' 'c' 'd' 'e' 'f' 'g' */
63 '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
64 /* 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' */
65 '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
66 /* 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' */
67 '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
68 /* 'x' 'y' 'z' '{' '|' '}' '~' */
69 '\170', '\171', '\172', '\173', '\174', '\175', '\176', '\177',
70 '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
71 '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
72 '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
73 '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
74 '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
75 '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
76 '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
77 '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
78 '\300', '\301', '\302', '\303', '\304', '\305', '\306', '\307',
79 '\310', '\311', '\312', '\313', '\314', '\315', '\316', '\317',
80 '\320', '\321', '\322', '\323', '\324', '\325', '\326', '\327',
81 '\330', '\331', '\332', '\333', '\334', '\335', '\336', '\337',
82 '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
83 '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
84 '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
85 '\370', '\371', '\372', '\373', '\374', '\375', '\376', '\377',
86};
87#else
88# error >>> "You lose. You will need a translation table for your character set." <<<
89#endif
90
91// The process-global timeout for regexp matching
92rb_hrtime_t rb_reg_match_time_limit = 0;
93
94int
95rb_memcicmp(const void *x, const void *y, long len)
96{
97 const unsigned char *p1 = x, *p2 = y;
98 int tmp;
99
100 while (len--) {
101 if ((tmp = casetable[(unsigned)*p1++] - casetable[(unsigned)*p2++]))
102 return tmp;
103 }
104 return 0;
105}
106
107#ifdef HAVE_MEMMEM
108static inline long
109rb_memsearch_ss(const unsigned char *xs, long m, const unsigned char *ys, long n)
110{
111 const unsigned char *y;
112
113 if ((y = memmem(ys, n, xs, m)) != NULL)
114 return y - ys;
115 else
116 return -1;
117}
118#else
119static inline long
120rb_memsearch_ss(const unsigned char *xs, long m, const unsigned char *ys, long n)
121{
122 const unsigned char *x = xs, *xe = xs + m;
123 const unsigned char *y = ys, *ye = ys + n;
124#define VALUE_MAX ((VALUE)~(VALUE)0)
125 VALUE hx, hy, mask = VALUE_MAX >> ((SIZEOF_VALUE - m) * CHAR_BIT);
126
127 if (m > SIZEOF_VALUE)
128 rb_bug("!!too long pattern string!!");
129
130 if (!(y = memchr(y, *x, n - m + 1)))
131 return -1;
132
133 /* Prepare hash value */
134 for (hx = *x++, hy = *y++; x < xe; ++x, ++y) {
135 hx <<= CHAR_BIT;
136 hy <<= CHAR_BIT;
137 hx |= *x;
138 hy |= *y;
139 }
140 /* Searching */
141 while (hx != hy) {
142 if (y == ye)
143 return -1;
144 hy <<= CHAR_BIT;
145 hy |= *y;
146 hy &= mask;
147 y++;
148 }
149 return y - ys - m;
150}
151#endif
152
153static inline long
154rb_memsearch_qs(const unsigned char *xs, long m, const unsigned char *ys, long n)
155{
156 const unsigned char *x = xs, *xe = xs + m;
157 const unsigned char *y = ys;
158 VALUE i, qstable[256];
159
160 /* Preprocessing */
161 for (i = 0; i < 256; ++i)
162 qstable[i] = m + 1;
163 for (; x < xe; ++x)
164 qstable[*x] = xe - x;
165 /* Searching */
166 for (; y + m <= ys + n; y += *(qstable + y[m])) {
167 if (*xs == *y && memcmp(xs, y, m) == 0)
168 return y - ys;
169 }
170 return -1;
171}
172
173static inline unsigned int
174rb_memsearch_qs_utf8_hash(const unsigned char *x)
175{
176 register const unsigned int mix = 8353;
177 register unsigned int h = *x;
178 if (h < 0xC0) {
179 return h + 256;
180 }
181 else if (h < 0xE0) {
182 h *= mix;
183 h += x[1];
184 }
185 else if (h < 0xF0) {
186 h *= mix;
187 h += x[1];
188 h *= mix;
189 h += x[2];
190 }
191 else if (h < 0xF5) {
192 h *= mix;
193 h += x[1];
194 h *= mix;
195 h += x[2];
196 h *= mix;
197 h += x[3];
198 }
199 else {
200 return h + 256;
201 }
202 return (unsigned char)h;
203}
204
205static inline long
206rb_memsearch_qs_utf8(const unsigned char *xs, long m, const unsigned char *ys, long n)
207{
208 const unsigned char *x = xs, *xe = xs + m;
209 const unsigned char *y = ys;
210 VALUE i, qstable[512];
211
212 /* Preprocessing */
213 for (i = 0; i < 512; ++i) {
214 qstable[i] = m + 1;
215 }
216 for (; x < xe; ++x) {
217 qstable[rb_memsearch_qs_utf8_hash(x)] = xe - x;
218 }
219 /* Searching */
220 for (; y + m <= ys + n; y += qstable[rb_memsearch_qs_utf8_hash(y+m)]) {
221 if (*xs == *y && memcmp(xs, y, m) == 0)
222 return y - ys;
223 }
224 return -1;
225}
226
227static inline long
228rb_memsearch_with_char_size(const unsigned char *xs, long m, const unsigned char *ys, long n, int char_size)
229{
230 const unsigned char *x = xs, x0 = *xs, *y = ys;
231
232 for (n -= m; n >= 0; n -= char_size, y += char_size) {
233 if (x0 == *y && memcmp(x+1, y+1, m-1) == 0)
234 return y - ys;
235 }
236 return -1;
237}
238
239static inline long
240rb_memsearch_wchar(const unsigned char *xs, long m, const unsigned char *ys, long n)
241{
242 return rb_memsearch_with_char_size(xs, m, ys, n, 2);
243}
244
245static inline long
246rb_memsearch_qchar(const unsigned char *xs, long m, const unsigned char *ys, long n)
247{
248 return rb_memsearch_with_char_size(xs, m, ys, n, 4);
249}
250
251long
252rb_memsearch(const void *x0, long m, const void *y0, long n, rb_encoding *enc)
253{
254 const unsigned char *x = x0, *y = y0;
255
256 if (m > n) return -1;
257 else if (m == n) {
258 return memcmp(x0, y0, m) == 0 ? 0 : -1;
259 }
260 else if (m < 1) {
261 return 0;
262 }
263 else if (m == 1) {
264 const unsigned char *ys = memchr(y, *x, n);
265
266 if (ys)
267 return ys - y;
268 else
269 return -1;
270 }
271 else if (LIKELY(rb_enc_mbminlen(enc) == 1)) {
272 if (m <= SIZEOF_VALUE) {
273 return rb_memsearch_ss(x0, m, y0, n);
274 }
275 else if (enc == rb_utf8_encoding()){
276 return rb_memsearch_qs_utf8(x0, m, y0, n);
277 }
278 }
279 else if (LIKELY(rb_enc_mbminlen(enc) == 2)) {
280 return rb_memsearch_wchar(x0, m, y0, n);
281 }
282 else if (LIKELY(rb_enc_mbminlen(enc) == 4)) {
283 return rb_memsearch_qchar(x0, m, y0, n);
284 }
285 return rb_memsearch_qs(x0, m, y0, n);
286}
287
288#define REG_ENCODING_NONE FL_USER6
289
290#define KCODE_FIXED FL_USER4
291
292#define ARG_REG_OPTION_MASK \
293 (ONIG_OPTION_IGNORECASE|ONIG_OPTION_MULTILINE|ONIG_OPTION_EXTEND)
294#define ARG_ENCODING_FIXED 16
295#define ARG_ENCODING_NONE 32
296
297static int
298char_to_option(int c)
299{
300 int val;
301
302 switch (c) {
303 case 'i':
304 val = ONIG_OPTION_IGNORECASE;
305 break;
306 case 'x':
307 val = ONIG_OPTION_EXTEND;
308 break;
309 case 'm':
310 val = ONIG_OPTION_MULTILINE;
311 break;
312 default:
313 val = 0;
314 break;
315 }
316 return val;
317}
318
319enum { OPTBUF_SIZE = 4 };
320
321static char *
322option_to_str(char str[OPTBUF_SIZE], int options)
323{
324 char *p = str;
325 if (options & ONIG_OPTION_MULTILINE) *p++ = 'm';
326 if (options & ONIG_OPTION_IGNORECASE) *p++ = 'i';
327 if (options & ONIG_OPTION_EXTEND) *p++ = 'x';
328 *p = 0;
329 return str;
330}
331
332extern int
333rb_char_to_option_kcode(int c, int *option, int *kcode)
334{
335 *option = 0;
336
337 switch (c) {
338 case 'n':
339 *kcode = rb_ascii8bit_encindex();
340 return (*option = ARG_ENCODING_NONE);
341 case 'e':
342 *kcode = ENCINDEX_EUC_JP;
343 break;
344 case 's':
345 *kcode = ENCINDEX_Windows_31J;
346 break;
347 case 'u':
348 *kcode = rb_utf8_encindex();
349 break;
350 default:
351 *kcode = -1;
352 return (*option = char_to_option(c));
353 }
354 *option = ARG_ENCODING_FIXED;
355 return 1;
356}
357
358static void
359rb_reg_check(VALUE re)
360{
361 if (!RREGEXP_PTR(re) || !RREGEXP_SRC(re) || !RREGEXP_SRC_PTR(re)) {
362 rb_raise(rb_eTypeError, "uninitialized Regexp");
363 }
364}
365
366static void
367rb_reg_expr_str(VALUE str, const char *s, long len,
368 rb_encoding *enc, rb_encoding *resenc, int term)
369{
370 const char *p, *pend;
371 int cr = ENC_CODERANGE_UNKNOWN;
372 int need_escape = 0;
373 int c, clen;
374
375 p = s; pend = p + len;
376 rb_str_coderange_scan_restartable(p, pend, enc, &cr);
377 if (rb_enc_asciicompat(enc) && ENC_CODERANGE_CLEAN_P(cr)) {
378 while (p < pend) {
379 c = rb_enc_ascget(p, pend, &clen, enc);
380 if (c == -1) {
381 if (enc == resenc) {
382 p += mbclen(p, pend, enc);
383 }
384 else {
385 need_escape = 1;
386 break;
387 }
388 }
389 else if (c != term && rb_enc_isprint(c, enc)) {
390 p += clen;
391 }
392 else {
393 need_escape = 1;
394 break;
395 }
396 }
397 }
398 else {
399 need_escape = 1;
400 }
401
402 if (!need_escape) {
403 rb_str_buf_cat(str, s, len);
404 }
405 else {
406 int unicode_p = rb_enc_unicode_p(enc);
407 p = s;
408 while (p<pend) {
409 c = rb_enc_ascget(p, pend, &clen, enc);
410 if (c == '\\' && p+clen < pend) {
411 int n = clen + mbclen(p+clen, pend, enc);
412 rb_str_buf_cat(str, p, n);
413 p += n;
414 continue;
415 }
416 else if (c == -1) {
417 clen = rb_enc_precise_mbclen(p, pend, enc);
418 if (!MBCLEN_CHARFOUND_P(clen)) {
419 c = (unsigned char)*p;
420 clen = 1;
421 goto hex;
422 }
423 if (resenc) {
424 unsigned int c = rb_enc_mbc_to_codepoint(p, pend, enc);
425 rb_str_buf_cat_escaped_char(str, c, unicode_p);
426 }
427 else {
428 clen = MBCLEN_CHARFOUND_LEN(clen);
429 rb_str_buf_cat(str, p, clen);
430 }
431 }
432 else if (c == term) {
433 char c = '\\';
434 rb_str_buf_cat(str, &c, 1);
435 rb_str_buf_cat(str, p, clen);
436 }
437 else if (rb_enc_isprint(c, enc)) {
438 rb_str_buf_cat(str, p, clen);
439 }
440 else if (!rb_enc_isspace(c, enc)) {
441 char b[8];
442
443 hex:
444 snprintf(b, sizeof(b), "\\x%02X", c);
445 rb_str_buf_cat(str, b, 4);
446 }
447 else {
448 rb_str_buf_cat(str, p, clen);
449 }
450 p += clen;
451 }
452 }
453}
454
455static VALUE
456rb_reg_desc(VALUE re)
457{
458 rb_encoding *enc = rb_enc_get(re);
459 VALUE str = rb_str_buf_new2("/");
460 rb_encoding *resenc = rb_default_internal_encoding();
461 if (resenc == NULL) resenc = rb_default_external_encoding();
462
463 if (re && rb_enc_asciicompat(enc)) {
464 rb_enc_copy(str, re);
465 }
466 else {
467 rb_enc_associate(str, rb_usascii_encoding());
468 }
469
470 VALUE src_str = RREGEXP_SRC(re);
471 rb_reg_expr_str(str, RSTRING_PTR(src_str), RSTRING_LEN(src_str), enc, resenc, '/');
472 RB_GC_GUARD(src_str);
473
474 rb_str_buf_cat2(str, "/");
475 if (re) {
476 char opts[OPTBUF_SIZE];
477 rb_reg_check(re);
478 if (*option_to_str(opts, RREGEXP_PTR(re)->options))
479 rb_str_buf_cat2(str, opts);
480 if (RBASIC(re)->flags & REG_ENCODING_NONE)
481 rb_str_buf_cat2(str, "n");
482 }
483 return str;
484}
485
486
487/*
488 * call-seq:
489 * source -> string
490 *
491 * Returns the original string of +self+:
492 *
493 * /ab+c/ix.source # => "ab+c"
494 *
495 * Regexp escape sequences are retained:
496 *
497 * /\x20\+/.source # => "\\x20\\+"
498 *
499 * Lexer escape characters are not retained:
500 *
501 * /\//.source # => "/"
502 *
503 */
504
505static VALUE
506rb_reg_source(VALUE re)
507{
508 VALUE str;
509
510 rb_reg_check(re);
511 str = rb_str_dup(RREGEXP_SRC(re));
512 return str;
513}
514
515/*
516 * call-seq:
517 * inspect -> string
518 *
519 * Returns a nicely-formatted string representation of +self+:
520 *
521 * /ab+c/ix.inspect # => "/ab+c/ix"
522 *
523 * Related: Regexp#to_s.
524 */
525
526static VALUE
527rb_reg_inspect(VALUE re)
528{
529 if (!RREGEXP_PTR(re) || !RREGEXP_SRC(re) || !RREGEXP_SRC_PTR(re)) {
530 return rb_any_to_s(re);
531 }
532 return rb_reg_desc(re);
533}
534
535static VALUE rb_reg_str_with_term(VALUE re, int term);
536
537/*
538 * call-seq:
539 * to_s -> string
540 *
541 * Returns a string showing the options and string of +self+:
542 *
543 * r0 = /ab+c/ix
544 * s0 = r0.to_s # => "(?ix-m:ab+c)"
545 *
546 * The returned string may be used as an argument to Regexp.new,
547 * or as interpolated text for a
548 * {Regexp interpolation}[rdoc-ref:Regexp@Interpolation+Mode]:
549 *
550 * r1 = Regexp.new(s0) # => /(?ix-m:ab+c)/
551 * r2 = /#{s0}/ # => /(?ix-m:ab+c)/
552 *
553 * Note that +r1+ and +r2+ are not equal to +r0+
554 * because their original strings are different:
555 *
556 * r0 == r1 # => false
557 * r0.source # => "ab+c"
558 * r1.source # => "(?ix-m:ab+c)"
559 *
560 * Related: Regexp#inspect.
561 *
562 */
563
564static VALUE
565rb_reg_to_s(VALUE re)
566{
567 return rb_reg_str_with_term(re, '/');
568}
569
570static VALUE
571rb_reg_str_with_term(VALUE re, int term)
572{
573 int options, opt;
574 const int embeddable = ONIG_OPTION_MULTILINE|ONIG_OPTION_IGNORECASE|ONIG_OPTION_EXTEND;
575 VALUE str = rb_str_buf_new2("(?");
576 char optbuf[OPTBUF_SIZE + 1]; /* for '-' */
577 rb_encoding *enc = rb_enc_get(re);
578
579 rb_reg_check(re);
580
581 rb_enc_copy(str, re);
582 options = RREGEXP_PTR(re)->options;
583 VALUE src_str = RREGEXP_SRC(re);
584 const UChar *ptr = (UChar *)RSTRING_PTR(src_str);
585 long len = RSTRING_LEN(src_str);
586 again:
587 if (len >= 4 && ptr[0] == '(' && ptr[1] == '?') {
588 int err = 1;
589 ptr += 2;
590 if ((len -= 2) > 0) {
591 do {
592 opt = char_to_option((int )*ptr);
593 if (opt != 0) {
594 options |= opt;
595 }
596 else {
597 break;
598 }
599 ++ptr;
600 } while (--len > 0);
601 }
602 if (len > 1 && *ptr == '-') {
603 ++ptr;
604 --len;
605 do {
606 opt = char_to_option((int )*ptr);
607 if (opt != 0) {
608 options &= ~opt;
609 }
610 else {
611 break;
612 }
613 ++ptr;
614 } while (--len > 0);
615 }
616 if (*ptr == ')') {
617 --len;
618 ++ptr;
619 goto again;
620 }
621 if (*ptr == ':' && ptr[len-1] == ')') {
622 Regexp *rp;
623 VALUE verbose = ruby_verbose;
625
626 ++ptr;
627 len -= 2;
628 err = onig_new(&rp, ptr, ptr + len, options,
629 enc, OnigDefaultSyntax, NULL);
630 onig_free(rp);
631 ruby_verbose = verbose;
632 }
633 if (err) {
634 options = RREGEXP_PTR(re)->options;
635 ptr = (UChar*)RREGEXP_SRC_PTR(re);
636 len = RREGEXP_SRC_LEN(re);
637 }
638 }
639
640 if (*option_to_str(optbuf, options)) rb_str_buf_cat2(str, optbuf);
641
642 if ((options & embeddable) != embeddable) {
643 optbuf[0] = '-';
644 option_to_str(optbuf + 1, ~options);
645 rb_str_buf_cat2(str, optbuf);
646 }
647
648 rb_str_buf_cat2(str, ":");
649 if (rb_enc_asciicompat(enc)) {
650 rb_reg_expr_str(str, (char*)ptr, len, enc, NULL, term);
651 rb_str_buf_cat2(str, ")");
652 }
653 else {
654 const char *s, *e;
655 char *paren;
656 ptrdiff_t n;
657 rb_str_buf_cat2(str, ")");
658 rb_enc_associate(str, rb_usascii_encoding());
659 str = rb_str_encode(str, rb_enc_from_encoding(enc), 0, Qnil);
660
661 /* backup encoded ")" to paren */
662 s = RSTRING_PTR(str);
663 e = RSTRING_END(str);
664 s = rb_enc_left_char_head(s, e-1, e, enc);
665 n = e - s;
666 paren = ALLOCA_N(char, n);
667 memcpy(paren, s, n);
668 rb_str_resize(str, RSTRING_LEN(str) - n);
669
670 rb_reg_expr_str(str, (char*)ptr, len, enc, NULL, term);
671 rb_str_buf_cat(str, paren, n);
672 }
673 rb_enc_copy(str, re);
674
675 RB_GC_GUARD(src_str);
676
677 return str;
678}
679
680NORETURN(static void rb_reg_raise(const char *err, VALUE re));
681
682static void
683rb_reg_raise(const char *err, VALUE re)
684{
685 VALUE desc = rb_reg_desc(re);
686
687 rb_raise(rb_eRegexpError, "%s: %"PRIsVALUE, err, desc);
688}
689
690static VALUE
691rb_enc_reg_error_desc(const char *s, long len, rb_encoding *enc, int options, const char *err)
692{
693 char opts[OPTBUF_SIZE + 1]; /* for '/' */
694 VALUE desc = rb_str_buf_new2(err);
695 rb_encoding *resenc = rb_default_internal_encoding();
696 if (resenc == NULL) resenc = rb_default_external_encoding();
697
698 rb_enc_associate(desc, enc);
699 rb_str_buf_cat2(desc, ": /");
700 rb_reg_expr_str(desc, s, len, enc, resenc, '/');
701 opts[0] = '/';
702 option_to_str(opts + 1, options);
703 rb_str_buf_cat2(desc, opts);
704 return rb_exc_new3(rb_eRegexpError, desc);
705}
706
707NORETURN(static void rb_enc_reg_raise(const char *s, long len, rb_encoding *enc, int options, const char *err));
708
709static void
710rb_enc_reg_raise(const char *s, long len, rb_encoding *enc, int options, const char *err)
711{
712 rb_exc_raise(rb_enc_reg_error_desc(s, len, enc, options, err));
713}
714
715static VALUE
716rb_reg_error_desc(VALUE str, int options, const char *err)
717{
718 return rb_enc_reg_error_desc(RSTRING_PTR(str), RSTRING_LEN(str),
719 rb_enc_get(str), options, err);
720}
721
722NORETURN(static void rb_reg_raise_str(VALUE str, int options, const char *err));
723
724static void
725rb_reg_raise_str(VALUE str, int options, const char *err)
726{
727 rb_exc_raise(rb_reg_error_desc(str, options, err));
728}
729
730
731/*
732 * call-seq:
733 * casefold?-> true or false
734 *
735 * Returns +true+ if the case-insensitivity flag in +self+ is set,
736 * +false+ otherwise:
737 *
738 * /a/.casefold? # => false
739 * /a/i.casefold? # => true
740 * /(?i:a)/.casefold? # => false
741 *
742 */
743
744static VALUE
745rb_reg_casefold_p(VALUE re)
746{
747 rb_reg_check(re);
748 return RBOOL(RREGEXP_PTR(re)->options & ONIG_OPTION_IGNORECASE);
749}
750
751
752/*
753 * call-seq:
754 * options -> integer
755 *
756 * Returns an integer whose bits show the options set in +self+.
757 *
758 * The option bits are:
759 *
760 * Regexp::IGNORECASE # => 1
761 * Regexp::EXTENDED # => 2
762 * Regexp::MULTILINE # => 4
763 *
764 * Examples:
765 *
766 * /foo/.options # => 0
767 * /foo/i.options # => 1
768 * /foo/x.options # => 2
769 * /foo/m.options # => 4
770 * /foo/mix.options # => 7
771 *
772 * Note that additional bits may be set in the returned integer;
773 * these are maintained internally in +self+, are ignored if passed
774 * to Regexp.new, and may be ignored by the caller:
775 *
776 * Returns the set of bits corresponding to the options used when
777 * creating this regexp (see Regexp::new for details). Note that
778 * additional bits may be set in the returned options: these are used
779 * internally by the regular expression code. These extra bits are
780 * ignored if the options are passed to Regexp::new:
781 *
782 * r = /\xa1\xa2/e # => /\xa1\xa2/
783 * r.source # => "\\xa1\\xa2"
784 * r.options # => 16
785 * Regexp.new(r.source, r.options) # => /\xa1\xa2/
786 *
787 */
788
789static VALUE
790rb_reg_options_m(VALUE re)
791{
792 int options = rb_reg_options(re);
793 return INT2NUM(options);
794}
795
796static int
797reg_names_iter(const OnigUChar *name, const OnigUChar *name_end,
798 int back_num, int *back_refs, OnigRegex regex, void *arg)
799{
800 VALUE ary = (VALUE)arg;
801 rb_ary_push(ary, rb_enc_str_new((const char *)name, name_end-name, regex->enc));
802 return 0;
803}
804
805/*
806 * call-seq:
807 * names -> array_of_names
808 *
809 * Returns an array of names of captures
810 * (see {Named Captures}[rdoc-ref:Regexp@Named+Captures]):
811 *
812 * /(?<foo>.)(?<bar>.)(?<baz>.)/.names # => ["foo", "bar", "baz"]
813 * /(?<foo>.)(?<foo>.)/.names # => ["foo"]
814 * /(.)(.)/.names # => []
815 *
816 */
817
818static VALUE
819rb_reg_names(VALUE re)
820{
821 VALUE ary;
822 rb_reg_check(re);
823 ary = rb_ary_new_capa(onig_number_of_names(RREGEXP_PTR(re)));
824 onig_foreach_name(RREGEXP_PTR(re), reg_names_iter, (void*)ary);
825 return ary;
826}
827
828static int
829reg_named_captures_iter(const OnigUChar *name, const OnigUChar *name_end,
830 int back_num, int *back_refs, OnigRegex regex, void *arg)
831{
832 VALUE hash = (VALUE)arg;
833 VALUE ary = rb_ary_new2(back_num);
834 int i;
835
836 for (i = 0; i < back_num; i++)
837 rb_ary_store(ary, i, INT2NUM(back_refs[i]));
838
839 rb_hash_aset(hash, rb_str_new((const char*)name, name_end-name),ary);
840
841 return 0;
842}
843
844/*
845 * call-seq:
846 * named_captures -> hash
847 *
848 * Returns a hash representing named captures of +self+
849 * (see {Named Captures}[rdoc-ref:Regexp@Named+Captures]):
850 *
851 * - Each key is the name of a named capture.
852 * - Each value is an array of integer indexes for that named capture.
853 *
854 * Examples:
855 *
856 * /(?<foo>.)(?<bar>.)/.named_captures # => {"foo"=>[1], "bar"=>[2]}
857 * /(?<foo>.)(?<foo>.)/.named_captures # => {"foo"=>[1, 2]}
858 * /(.)(.)/.named_captures # => {}
859 *
860 */
861
862static VALUE
863rb_reg_named_captures(VALUE re)
864{
865 regex_t *reg = (rb_reg_check(re), RREGEXP_PTR(re));
866 VALUE hash = rb_hash_new_with_size(onig_number_of_names(reg));
867 onig_foreach_name(reg, reg_named_captures_iter, (void*)hash);
868 return hash;
869}
870
871static int
872onig_new_with_source(regex_t** reg, const UChar* pattern, const UChar* pattern_end,
873 OnigOptionType option, OnigEncoding enc, const OnigSyntaxType* syntax,
874 OnigErrorInfo* einfo, const char *sourcefile, int sourceline)
875{
876 int r;
877
878 *reg = (regex_t* )malloc(sizeof(regex_t));
879 if (IS_NULL(*reg)) return ONIGERR_MEMORY;
880
881 r = onig_reg_init(*reg, option, ONIGENC_CASE_FOLD_DEFAULT, enc, syntax);
882 if (r) goto err;
883
884 r = onig_compile_ruby(*reg, pattern, pattern_end, einfo, sourcefile, sourceline);
885 if (r) {
886 err:
887 onig_free(*reg);
888 *reg = NULL;
889 }
890 return r;
891}
892
893static Regexp*
894make_regexp(const char *s, long len, rb_encoding *enc, int flags, onig_errmsg_buffer err,
895 const char *sourcefile, int sourceline)
896{
897 Regexp *rp;
898 int r;
899 OnigErrorInfo einfo;
900
901 /* Handle escaped characters first. */
902
903 /* Build a copy of the string (in dest) with the
904 escaped characters translated, and generate the regex
905 from that.
906 */
907
908 r = onig_new_with_source(&rp, (UChar*)s, (UChar*)(s + len), flags,
909 enc, OnigDefaultSyntax, &einfo, sourcefile, sourceline);
910 if (r) {
911 onig_error_code_to_str((UChar*)err, r, &einfo);
912 return 0;
913 }
914 return rp;
915}
916
917
918/*
919 * Document-class: MatchData
920 *
921 * MatchData encapsulates the result of matching a Regexp against
922 * string. It is returned by Regexp#match and String#match, and also
923 * stored in a global variable returned by Regexp.last_match.
924 *
925 * Usage:
926 *
927 * url = 'https://docs.ruby-lang.org/en/2.5.0/MatchData.html'
928 * m = url.match(/(\d\.?)+/) # => #<MatchData "2.5.0" 1:"0">
929 * m.string # => "https://docs.ruby-lang.org/en/2.5.0/MatchData.html"
930 * m.regexp # => /(\d\.?)+/
931 * # entire matched substring:
932 * m[0] # => "2.5.0"
933 *
934 * # Working with unnamed captures
935 * m = url.match(%r{([^/]+)/([^/]+)\.html$})
936 * m.captures # => ["2.5.0", "MatchData"]
937 * m[1] # => "2.5.0"
938 * m.values_at(1, 2) # => ["2.5.0", "MatchData"]
939 *
940 * # Working with named captures
941 * m = url.match(%r{(?<version>[^/]+)/(?<module>[^/]+)\.html$})
942 * m.captures # => ["2.5.0", "MatchData"]
943 * m.named_captures # => {"version"=>"2.5.0", "module"=>"MatchData"}
944 * m[:version] # => "2.5.0"
945 * m.values_at(:version, :module)
946 * # => ["2.5.0", "MatchData"]
947 * # Numerical indexes are working, too
948 * m[1] # => "2.5.0"
949 * m.values_at(1, 2) # => ["2.5.0", "MatchData"]
950 *
951 * == Global variables equivalence
952 *
953 * Parts of last MatchData (returned by Regexp.last_match) are also
954 * aliased as global variables:
955 *
956 * * <code>$~</code> is Regexp.last_match;
957 * * <code>$&</code> is Regexp.last_match<code>[ 0 ]</code>;
958 * * <code>$1</code>, <code>$2</code>, and so on are
959 * Regexp.last_match<code>[ i ]</code> (captures by number);
960 * * <code>$`</code> is Regexp.last_match<code>.pre_match</code>;
961 * * <code>$'</code> is Regexp.last_match<code>.post_match</code>;
962 * * <code>$+</code> is Regexp.last_match<code>[ -1 ]</code> (the last capture).
963 *
964 * See also Regexp@Global+Variables.
965 */
966
968
969static VALUE
970match_alloc(VALUE klass)
971{
972 size_t alloc_size = sizeof(struct RMatch) + sizeof(rb_matchext_t);
974 NEWOBJ_OF(match, struct RMatch, klass, flags, alloc_size, 0);
975
976 match->str = Qfalse;
977 match->regexp = Qfalse;
978 memset(RMATCH_EXT(match), 0, sizeof(rb_matchext_t));
979
980 return (VALUE)match;
981}
982
983int
984rb_reg_region_copy(struct re_registers *to, const struct re_registers *from)
985{
986 onig_region_copy(to, (OnigRegion *)from);
987 if (to->allocated) return 0;
988 rb_gc();
989 onig_region_copy(to, (OnigRegion *)from);
990 if (to->allocated) return 0;
991 return ONIGERR_MEMORY;
992}
993
994typedef struct {
995 long byte_pos;
996 long char_pos;
997} pair_t;
998
999static int
1000pair_byte_cmp(const void *pair1, const void *pair2)
1001{
1002 long diff = ((pair_t*)pair1)->byte_pos - ((pair_t*)pair2)->byte_pos;
1003#if SIZEOF_LONG > SIZEOF_INT
1004 return diff ? diff > 0 ? 1 : -1 : 0;
1005#else
1006 return (int)diff;
1007#endif
1008}
1009
1010static void
1011update_char_offset(VALUE match)
1012{
1013 rb_matchext_t *rm = RMATCH_EXT(match);
1014 struct re_registers *regs;
1015 int i, num_regs, num_pos;
1016 long c;
1017 char *s, *p, *q;
1018 rb_encoding *enc;
1019 pair_t *pairs;
1020
1022 return;
1023
1024 regs = &rm->regs;
1025 num_regs = rm->regs.num_regs;
1026
1027 if (rm->char_offset_num_allocated < num_regs) {
1028 REALLOC_N(rm->char_offset, struct rmatch_offset, num_regs);
1029 rm->char_offset_num_allocated = num_regs;
1030 }
1031
1032 enc = rb_enc_get(RMATCH(match)->str);
1033 if (rb_enc_mbmaxlen(enc) == 1) {
1034 for (i = 0; i < num_regs; i++) {
1035 rm->char_offset[i].beg = BEG(i);
1036 rm->char_offset[i].end = END(i);
1037 }
1038 return;
1039 }
1040
1041 pairs = ALLOCA_N(pair_t, num_regs*2);
1042 num_pos = 0;
1043 for (i = 0; i < num_regs; i++) {
1044 if (BEG(i) < 0)
1045 continue;
1046 pairs[num_pos++].byte_pos = BEG(i);
1047 pairs[num_pos++].byte_pos = END(i);
1048 }
1049 qsort(pairs, num_pos, sizeof(pair_t), pair_byte_cmp);
1050
1051 s = p = RSTRING_PTR(RMATCH(match)->str);
1052 c = 0;
1053 for (i = 0; i < num_pos; i++) {
1054 q = s + pairs[i].byte_pos;
1055 c += rb_enc_strlen(p, q, enc);
1056 pairs[i].char_pos = c;
1057 p = q;
1058 }
1059
1060 for (i = 0; i < num_regs; i++) {
1061 pair_t key, *found;
1062 if (BEG(i) < 0) {
1063 rm->char_offset[i].beg = -1;
1064 rm->char_offset[i].end = -1;
1065 continue;
1066 }
1067
1068 key.byte_pos = BEG(i);
1069 found = bsearch(&key, pairs, num_pos, sizeof(pair_t), pair_byte_cmp);
1070 rm->char_offset[i].beg = found->char_pos;
1071
1072 key.byte_pos = END(i);
1073 found = bsearch(&key, pairs, num_pos, sizeof(pair_t), pair_byte_cmp);
1074 rm->char_offset[i].end = found->char_pos;
1075 }
1076}
1077
1078static VALUE
1079match_check(VALUE match)
1080{
1081 if (!RMATCH(match)->regexp) {
1082 rb_raise(rb_eTypeError, "uninitialized MatchData");
1083 }
1084 return match;
1085}
1086
1087/* :nodoc: */
1088static VALUE
1089match_init_copy(VALUE obj, VALUE orig)
1090{
1091 rb_matchext_t *rm;
1092
1093 if (!OBJ_INIT_COPY(obj, orig)) return obj;
1094
1095 RB_OBJ_WRITE(obj, &RMATCH(obj)->str, RMATCH(orig)->str);
1096 RB_OBJ_WRITE(obj, &RMATCH(obj)->regexp, RMATCH(orig)->regexp);
1097
1098 rm = RMATCH_EXT(obj);
1099 if (rb_reg_region_copy(&rm->regs, RMATCH_REGS(orig)))
1100 rb_memerror();
1101
1102 if (RMATCH_EXT(orig)->char_offset_num_allocated) {
1103 if (rm->char_offset_num_allocated < rm->regs.num_regs) {
1104 REALLOC_N(rm->char_offset, struct rmatch_offset, rm->regs.num_regs);
1105 rm->char_offset_num_allocated = rm->regs.num_regs;
1106 }
1107 MEMCPY(rm->char_offset, RMATCH_EXT(orig)->char_offset,
1108 struct rmatch_offset, rm->regs.num_regs);
1109 RB_GC_GUARD(orig);
1110 }
1111
1112 return obj;
1113}
1114
1115
1116/*
1117 * call-seq:
1118 * regexp -> regexp
1119 *
1120 * Returns the regexp that produced the match:
1121 *
1122 * m = /a.*b/.match("abc") # => #<MatchData "ab">
1123 * m.regexp # => /a.*b/
1124 *
1125 */
1126
1127static VALUE
1128match_regexp(VALUE match)
1129{
1130 VALUE regexp;
1131 match_check(match);
1132 regexp = RMATCH(match)->regexp;
1133 if (NIL_P(regexp)) {
1134 VALUE str = rb_reg_nth_match(0, match);
1135 regexp = rb_reg_regcomp(rb_reg_quote(str));
1136 RB_OBJ_WRITE(match, &RMATCH(match)->regexp, regexp);
1137 }
1138 return regexp;
1139}
1140
1141/*
1142 * call-seq:
1143 * names -> array_of_names
1144 *
1145 * Returns an array of the capture names
1146 * (see {Named Captures}[rdoc-ref:Regexp@Named+Captures]):
1147 *
1148 * m = /(?<foo>.)(?<bar>.)(?<baz>.)/.match("hoge")
1149 * # => #<MatchData "hog" foo:"h" bar:"o" baz:"g">
1150 * m.names # => ["foo", "bar", "baz"]
1151 *
1152 * m = /foo/.match('foo') # => #<MatchData "foo">
1153 * m.names # => [] # No named captures.
1154 *
1155 * Equivalent to:
1156 *
1157 * m = /(?<foo>.)(?<bar>.)(?<baz>.)/.match("hoge")
1158 * m.regexp.names # => ["foo", "bar", "baz"]
1159 *
1160 */
1161
1162static VALUE
1163match_names(VALUE match)
1164{
1165 match_check(match);
1166 if (NIL_P(RMATCH(match)->regexp))
1167 return rb_ary_new_capa(0);
1168 return rb_reg_names(RMATCH(match)->regexp);
1169}
1170
1171/*
1172 * call-seq:
1173 * size -> integer
1174 *
1175 * Returns size of the match array:
1176 *
1177 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
1178 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
1179 * m.size # => 5
1180 *
1181 */
1182
1183static VALUE
1184match_size(VALUE match)
1185{
1186 match_check(match);
1187 return INT2FIX(RMATCH_REGS(match)->num_regs);
1188}
1189
1190static int name_to_backref_number(struct re_registers *, VALUE, const char*, const char*);
1191NORETURN(static void name_to_backref_error(VALUE name));
1192
1193static void
1194name_to_backref_error(VALUE name)
1195{
1196 rb_raise(rb_eIndexError, "undefined group name reference: % "PRIsVALUE,
1197 name);
1198}
1199
1200static void
1201backref_number_check(struct re_registers *regs, int i)
1202{
1203 if (i < 0 || regs->num_regs <= i)
1204 rb_raise(rb_eIndexError, "index %d out of matches", i);
1205}
1206
1207static int
1208match_backref_number(VALUE match, VALUE backref)
1209{
1210 const char *name;
1211 int num;
1212
1213 struct re_registers *regs = RMATCH_REGS(match);
1214 VALUE regexp = RMATCH(match)->regexp;
1215
1216 match_check(match);
1217 if (SYMBOL_P(backref)) {
1218 backref = rb_sym2str(backref);
1219 }
1220 else if (!RB_TYPE_P(backref, T_STRING)) {
1221 return NUM2INT(backref);
1222 }
1223 name = StringValueCStr(backref);
1224
1225 num = name_to_backref_number(regs, regexp, name, name + RSTRING_LEN(backref));
1226
1227 if (num < 1) {
1228 name_to_backref_error(backref);
1229 }
1230
1231 return num;
1232}
1233
1234int
1236{
1237 return match_backref_number(match, backref);
1238}
1239
1240/*
1241 * call-seq:
1242 * offset(n) -> [start_offset, end_offset]
1243 * offset(name) -> [start_offset, end_offset]
1244 *
1245 * :include: doc/matchdata/offset.rdoc
1246 *
1247 */
1248
1249static VALUE
1250match_offset(VALUE match, VALUE n)
1251{
1252 int i = match_backref_number(match, n);
1253 struct re_registers *regs = RMATCH_REGS(match);
1254
1255 match_check(match);
1256 backref_number_check(regs, i);
1257
1258 if (BEG(i) < 0)
1259 return rb_assoc_new(Qnil, Qnil);
1260
1261 update_char_offset(match);
1262 return rb_assoc_new(LONG2NUM(RMATCH_EXT(match)->char_offset[i].beg),
1263 LONG2NUM(RMATCH_EXT(match)->char_offset[i].end));
1264}
1265
1266/*
1267 * call-seq:
1268 * mtch.byteoffset(n) -> array
1269 *
1270 * Returns a two-element array containing the beginning and ending byte-based offsets of
1271 * the <em>n</em>th match.
1272 * <em>n</em> can be a string or symbol to reference a named capture.
1273 *
1274 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
1275 * m.byteoffset(0) #=> [1, 7]
1276 * m.byteoffset(4) #=> [6, 7]
1277 *
1278 * m = /(?<foo>.)(.)(?<bar>.)/.match("hoge")
1279 * p m.byteoffset(:foo) #=> [0, 1]
1280 * p m.byteoffset(:bar) #=> [2, 3]
1281 *
1282 */
1283
1284static VALUE
1285match_byteoffset(VALUE match, VALUE n)
1286{
1287 int i = match_backref_number(match, n);
1288 struct re_registers *regs = RMATCH_REGS(match);
1289
1290 match_check(match);
1291 backref_number_check(regs, i);
1292
1293 if (BEG(i) < 0)
1294 return rb_assoc_new(Qnil, Qnil);
1295 return rb_assoc_new(LONG2NUM(BEG(i)), LONG2NUM(END(i)));
1296}
1297
1298
1299/*
1300 * call-seq:
1301 * bytebegin(n) -> integer
1302 * bytebegin(name) -> integer
1303 *
1304 * :include: doc/matchdata/bytebegin.rdoc
1305 *
1306 */
1307
1308static VALUE
1309match_bytebegin(VALUE match, VALUE n)
1310{
1311 int i = match_backref_number(match, n);
1312 struct re_registers *regs = RMATCH_REGS(match);
1313
1314 match_check(match);
1315 backref_number_check(regs, i);
1316
1317 if (BEG(i) < 0)
1318 return Qnil;
1319 return LONG2NUM(BEG(i));
1320}
1321
1322
1323/*
1324 * call-seq:
1325 * byteend(n) -> integer
1326 * byteend(name) -> integer
1327 *
1328 * :include: doc/matchdata/byteend.rdoc
1329 *
1330 */
1331
1332static VALUE
1333match_byteend(VALUE match, VALUE n)
1334{
1335 int i = match_backref_number(match, n);
1336 struct re_registers *regs = RMATCH_REGS(match);
1337
1338 match_check(match);
1339 backref_number_check(regs, i);
1340
1341 if (BEG(i) < 0)
1342 return Qnil;
1343 return LONG2NUM(END(i));
1344}
1345
1346
1347/*
1348 * call-seq:
1349 * begin(n) -> integer
1350 * begin(name) -> integer
1351 *
1352 * :include: doc/matchdata/begin.rdoc
1353 *
1354 */
1355
1356static VALUE
1357match_begin(VALUE match, VALUE n)
1358{
1359 int i = match_backref_number(match, n);
1360 struct re_registers *regs = RMATCH_REGS(match);
1361
1362 match_check(match);
1363 backref_number_check(regs, i);
1364
1365 if (BEG(i) < 0)
1366 return Qnil;
1367
1368 update_char_offset(match);
1369 return LONG2NUM(RMATCH_EXT(match)->char_offset[i].beg);
1370}
1371
1372
1373/*
1374 * call-seq:
1375 * end(n) -> integer
1376 * end(name) -> integer
1377 *
1378 * :include: doc/matchdata/end.rdoc
1379 *
1380 */
1381
1382static VALUE
1383match_end(VALUE match, VALUE n)
1384{
1385 int i = match_backref_number(match, n);
1386 struct re_registers *regs = RMATCH_REGS(match);
1387
1388 match_check(match);
1389 backref_number_check(regs, i);
1390
1391 if (BEG(i) < 0)
1392 return Qnil;
1393
1394 update_char_offset(match);
1395 return LONG2NUM(RMATCH_EXT(match)->char_offset[i].end);
1396}
1397
1398/*
1399 * call-seq:
1400 * match(n) -> string or nil
1401 * match(name) -> string or nil
1402 *
1403 * Returns the matched substring corresponding to the given argument.
1404 *
1405 * When non-negative argument +n+ is given,
1406 * returns the matched substring for the <tt>n</tt>th match:
1407 *
1408 * m = /(.)(.)(\d+)(\d)(\w)?/.match("THX1138.")
1409 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8" 5:nil>
1410 * m.match(0) # => "HX1138"
1411 * m.match(4) # => "8"
1412 * m.match(5) # => nil
1413 *
1414 * When string or symbol argument +name+ is given,
1415 * returns the matched substring for the given name:
1416 *
1417 * m = /(?<foo>.)(.)(?<bar>.+)/.match("hoge")
1418 * # => #<MatchData "hoge" foo:"h" bar:"ge">
1419 * m.match('foo') # => "h"
1420 * m.match(:bar) # => "ge"
1421 *
1422 */
1423
1424static VALUE
1425match_nth(VALUE match, VALUE n)
1426{
1427 int i = match_backref_number(match, n);
1428 struct re_registers *regs = RMATCH_REGS(match);
1429
1430 backref_number_check(regs, i);
1431
1432 long start = BEG(i), end = END(i);
1433 if (start < 0)
1434 return Qnil;
1435
1436 return rb_str_subseq(RMATCH(match)->str, start, end - start);
1437}
1438
1439/*
1440 * call-seq:
1441 * match_length(n) -> integer or nil
1442 * match_length(name) -> integer or nil
1443 *
1444 * Returns the length (in characters) of the matched substring
1445 * corresponding to the given argument.
1446 *
1447 * When non-negative argument +n+ is given,
1448 * returns the length of the matched substring
1449 * for the <tt>n</tt>th match:
1450 *
1451 * m = /(.)(.)(\d+)(\d)(\w)?/.match("THX1138.")
1452 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8" 5:nil>
1453 * m.match_length(0) # => 6
1454 * m.match_length(4) # => 1
1455 * m.match_length(5) # => nil
1456 *
1457 * When string or symbol argument +name+ is given,
1458 * returns the length of the matched substring
1459 * for the named match:
1460 *
1461 * m = /(?<foo>.)(.)(?<bar>.+)/.match("hoge")
1462 * # => #<MatchData "hoge" foo:"h" bar:"ge">
1463 * m.match_length('foo') # => 1
1464 * m.match_length(:bar) # => 2
1465 *
1466 */
1467
1468static VALUE
1469match_nth_length(VALUE match, VALUE n)
1470{
1471 int i = match_backref_number(match, n);
1472 struct re_registers *regs = RMATCH_REGS(match);
1473
1474 match_check(match);
1475 backref_number_check(regs, i);
1476
1477 if (BEG(i) < 0)
1478 return Qnil;
1479
1480 update_char_offset(match);
1481 const struct rmatch_offset *const ofs =
1482 &RMATCH_EXT(match)->char_offset[i];
1483 return LONG2NUM(ofs->end - ofs->beg);
1484}
1485
1486#define MATCH_BUSY FL_USER2
1487
1488void
1490{
1491 FL_SET(match, MATCH_BUSY);
1492}
1493
1494void
1495rb_match_unbusy(VALUE match)
1496{
1497 FL_UNSET(match, MATCH_BUSY);
1498}
1499
1500int
1501rb_match_count(VALUE match)
1502{
1503 struct re_registers *regs;
1504 if (NIL_P(match)) return -1;
1505 regs = RMATCH_REGS(match);
1506 if (!regs) return -1;
1507 return regs->num_regs;
1508}
1509
1510static void
1511match_set_string(VALUE m, VALUE string, long pos, long len)
1512{
1513 struct RMatch *match = (struct RMatch *)m;
1514 rb_matchext_t *rmatch = RMATCH_EXT(match);
1515
1516 RB_OBJ_WRITE(match, &RMATCH(match)->str, string);
1517 RB_OBJ_WRITE(match, &RMATCH(match)->regexp, Qnil);
1518 int err = onig_region_resize(&rmatch->regs, 1);
1519 if (err) rb_memerror();
1520 rmatch->regs.beg[0] = pos;
1521 rmatch->regs.end[0] = pos + len;
1522}
1523
1524VALUE
1525rb_backref_set_string(VALUE string, long pos, long len)
1526{
1527 VALUE match = rb_backref_get();
1528 if (NIL_P(match) || FL_TEST(match, MATCH_BUSY)) {
1529 match = match_alloc(rb_cMatch);
1530 }
1531 match_set_string(match, string, pos, len);
1532 rb_backref_set(match);
1533 return match;
1534}
1535
1536/*
1537 * call-seq:
1538 * fixed_encoding? -> true or false
1539 *
1540 * Returns +false+ if +self+ is applicable to
1541 * a string with any ASCII-compatible encoding;
1542 * otherwise returns +true+:
1543 *
1544 * r = /a/ # => /a/
1545 * r.fixed_encoding? # => false
1546 * r.match?("\u{6666} a") # => true
1547 * r.match?("\xa1\xa2 a".force_encoding("euc-jp")) # => true
1548 * r.match?("abc".force_encoding("euc-jp")) # => true
1549 *
1550 * r = /a/u # => /a/
1551 * r.fixed_encoding? # => true
1552 * r.match?("\u{6666} a") # => true
1553 * r.match?("\xa1\xa2".force_encoding("euc-jp")) # Raises exception.
1554 * r.match?("abc".force_encoding("euc-jp")) # => true
1555 *
1556 * r = /\u{6666}/ # => /\u{6666}/
1557 * r.fixed_encoding? # => true
1558 * r.encoding # => #<Encoding:UTF-8>
1559 * r.match?("\u{6666} a") # => true
1560 * r.match?("\xa1\xa2".force_encoding("euc-jp")) # Raises exception.
1561 * r.match?("abc".force_encoding("euc-jp")) # => false
1562 *
1563 */
1564
1565static VALUE
1566rb_reg_fixed_encoding_p(VALUE re)
1567{
1568 return RBOOL(FL_TEST(re, KCODE_FIXED));
1569}
1570
1571static VALUE
1572rb_reg_preprocess(const char *p, const char *end, rb_encoding *enc,
1573 rb_encoding **fixed_enc, onig_errmsg_buffer err, int options);
1574
1575NORETURN(static void reg_enc_error(VALUE re, VALUE str));
1576
1577static void
1578reg_enc_error(VALUE re, VALUE str)
1579{
1580 rb_raise(rb_eEncCompatError,
1581 "incompatible encoding regexp match (%s regexp with %s string)",
1582 rb_enc_inspect_name(rb_enc_get(re)),
1583 rb_enc_inspect_name(rb_enc_get(str)));
1584}
1585
1586static inline int
1587str_coderange(VALUE str)
1588{
1589 int cr = ENC_CODERANGE(str);
1590 if (cr == ENC_CODERANGE_UNKNOWN) {
1592 }
1593 return cr;
1594}
1595
1596static rb_encoding*
1597rb_reg_prepare_enc(VALUE re, VALUE str, int warn)
1598{
1599 rb_encoding *enc = 0;
1600 int cr = str_coderange(str);
1601
1602 if (cr == ENC_CODERANGE_BROKEN) {
1603 rb_raise(rb_eArgError,
1604 "invalid byte sequence in %s",
1605 rb_enc_name(rb_enc_get(str)));
1606 }
1607
1608 rb_reg_check(re);
1609 enc = rb_enc_get(str);
1610 if (RREGEXP_PTR(re)->enc == enc) {
1611 }
1612 else if (cr == ENC_CODERANGE_7BIT &&
1613 RREGEXP_PTR(re)->enc == rb_usascii_encoding()) {
1614 enc = RREGEXP_PTR(re)->enc;
1615 }
1616 else if (!rb_enc_asciicompat(enc)) {
1617 reg_enc_error(re, str);
1618 }
1619 else if (rb_reg_fixed_encoding_p(re)) {
1620 if ((!rb_enc_asciicompat(RREGEXP_PTR(re)->enc) ||
1621 cr != ENC_CODERANGE_7BIT)) {
1622 reg_enc_error(re, str);
1623 }
1624 enc = RREGEXP_PTR(re)->enc;
1625 }
1626 else if (warn && (RBASIC(re)->flags & REG_ENCODING_NONE) &&
1627 enc != rb_ascii8bit_encoding() &&
1628 cr != ENC_CODERANGE_7BIT) {
1629 rb_warn("historical binary regexp match /.../n against %s string",
1630 rb_enc_name(enc));
1631 }
1632 return enc;
1633}
1634
1635regex_t *
1637{
1638 int r;
1639 OnigErrorInfo einfo;
1640 VALUE unescaped;
1641 rb_encoding *fixed_enc = 0;
1642 rb_encoding *enc = rb_reg_prepare_enc(re, str, 1);
1643
1644 regex_t *reg = RREGEXP_PTR(re);
1645 if (reg->enc == enc) return reg;
1646
1647 rb_reg_check(re);
1648
1649 VALUE src_str = RREGEXP_SRC(re);
1650 const char *pattern = RSTRING_PTR(src_str);
1651
1652 onig_errmsg_buffer err = "";
1653 unescaped = rb_reg_preprocess(
1654 pattern, pattern + RSTRING_LEN(src_str), enc,
1655 &fixed_enc, err, 0);
1656
1657 if (NIL_P(unescaped)) {
1658 rb_raise(rb_eArgError, "regexp preprocess failed: %s", err);
1659 }
1660
1661 // inherit the timeout settings
1662 rb_hrtime_t timelimit = reg->timelimit;
1663
1664 const char *ptr;
1665 long len;
1666 RSTRING_GETMEM(unescaped, ptr, len);
1667
1668 /* If there are no other users of this regex, then we can directly overwrite it. */
1669 if (RREGEXP(re)->usecnt == 0) {
1670 regex_t tmp_reg;
1671 r = onig_new_without_alloc(&tmp_reg, (UChar *)ptr, (UChar *)(ptr + len),
1672 reg->options, enc,
1673 OnigDefaultSyntax, &einfo);
1674
1675 if (r) {
1676 /* There was an error so perform cleanups. */
1677 onig_free_body(&tmp_reg);
1678 }
1679 else {
1680 onig_free_body(reg);
1681 /* There are no errors so set reg to tmp_reg. */
1682 *reg = tmp_reg;
1683 }
1684 }
1685 else {
1686 r = onig_new(&reg, (UChar *)ptr, (UChar *)(ptr + len),
1687 reg->options, enc,
1688 OnigDefaultSyntax, &einfo);
1689 }
1690
1691 if (r) {
1692 onig_error_code_to_str((UChar*)err, r, &einfo);
1693 rb_reg_raise(err, re);
1694 }
1695
1696 reg->timelimit = timelimit;
1697
1698 RB_GC_GUARD(unescaped);
1699 RB_GC_GUARD(src_str);
1700 return reg;
1701}
1702
1703OnigPosition
1705 OnigPosition (*match)(regex_t *reg, VALUE str, struct re_registers *regs, void *args),
1706 void *args, struct re_registers *regs)
1707{
1708 regex_t *reg = rb_reg_prepare_re(re, str);
1709
1710 bool tmpreg = reg != RREGEXP_PTR(re);
1711 if (!tmpreg) RREGEXP(re)->usecnt++;
1712
1713 OnigPosition result = match(reg, str, regs, args);
1714
1715 if (!tmpreg) RREGEXP(re)->usecnt--;
1716 if (tmpreg) {
1717 onig_free(reg);
1718 }
1719
1720 if (result < 0) {
1721 onig_region_free(regs, 0);
1722
1723 switch (result) {
1724 case ONIG_MISMATCH:
1725 break;
1726 case ONIGERR_TIMEOUT:
1727 rb_raise(rb_eRegexpTimeoutError, "regexp match timeout");
1728 default: {
1729 onig_errmsg_buffer err = "";
1730 onig_error_code_to_str((UChar*)err, (int)result);
1731 rb_reg_raise(err, re);
1732 }
1733 }
1734 }
1735
1736 return result;
1737}
1738
1739long
1740rb_reg_adjust_startpos(VALUE re, VALUE str, long pos, int reverse)
1741{
1742 long range;
1743 rb_encoding *enc;
1744 UChar *p, *string;
1745
1746 enc = rb_reg_prepare_enc(re, str, 0);
1747
1748 if (reverse) {
1749 range = -pos;
1750 }
1751 else {
1752 range = RSTRING_LEN(str) - pos;
1753 }
1754
1755 if (pos > 0 && ONIGENC_MBC_MAXLEN(enc) != 1 && pos < RSTRING_LEN(str)) {
1756 string = (UChar*)RSTRING_PTR(str);
1757
1758 if (range > 0) {
1759 p = onigenc_get_right_adjust_char_head(enc, string, string + pos, string + RSTRING_LEN(str));
1760 }
1761 else {
1762 p = ONIGENC_LEFT_ADJUST_CHAR_HEAD(enc, string, string + pos, string + RSTRING_LEN(str));
1763 }
1764 return p - string;
1765 }
1766
1767 return pos;
1768}
1769
1771 long pos;
1772 long range;
1773};
1774
1775static OnigPosition
1776reg_onig_search(regex_t *reg, VALUE str, struct re_registers *regs, void *args_ptr)
1777{
1778 struct reg_onig_search_args *args = (struct reg_onig_search_args *)args_ptr;
1779 const char *ptr;
1780 long len;
1781 RSTRING_GETMEM(str, ptr, len);
1782
1783 return onig_search(
1784 reg,
1785 (UChar *)ptr,
1786 (UChar *)(ptr + len),
1787 (UChar *)(ptr + args->pos),
1788 (UChar *)(ptr + args->range),
1789 regs,
1790 ONIG_OPTION_NONE);
1791}
1792
1793/* returns byte offset */
1794static long
1795rb_reg_search_set_match(VALUE re, VALUE str, long pos, int reverse, int set_backref_str, VALUE *set_match)
1796{
1797 long len = RSTRING_LEN(str);
1798 if (pos > len || pos < 0) {
1800 return -1;
1801 }
1802
1803 struct reg_onig_search_args args = {
1804 .pos = pos,
1805 .range = reverse ? 0 : len,
1806 };
1807 struct re_registers regs = {0};
1808
1809 OnigPosition result = rb_reg_onig_match(re, str, reg_onig_search, &args, &regs);
1810
1811 if (result == ONIG_MISMATCH) {
1813 return ONIG_MISMATCH;
1814 }
1815
1816 VALUE match = Qnil;
1817 if (set_match) {
1818 match = *set_match;
1819 }
1820
1821 if (NIL_P(match)) {
1822 match = rb_backref_get();
1823 }
1824
1825 if (!NIL_P(match) && FL_TEST(match, MATCH_BUSY)) {
1826 match = Qnil;
1827 }
1828
1829 if (NIL_P(match)) {
1830 match = match_alloc(rb_cMatch);
1831 }
1832 else {
1833 onig_region_free(&RMATCH_EXT(match)->regs, false);
1834 }
1835
1836 rb_matchext_t *rm = RMATCH_EXT(match);
1837 rm->regs = regs;
1838
1839 if (set_backref_str) {
1840 RB_OBJ_WRITE(match, &RMATCH(match)->str, rb_str_new4(str));
1841 rb_obj_reveal(match, rb_cMatch);
1842 }
1843 else {
1844 /* Note that a MatchData object with RMATCH(match)->str == 0 is incomplete!
1845 * We need to hide the object from ObjectSpace.each_object.
1846 * https://bugs.ruby-lang.org/issues/19159
1847 */
1848 rb_obj_hide(match);
1849 }
1850
1851 RB_OBJ_WRITE(match, &RMATCH(match)->regexp, re);
1852 rb_backref_set(match);
1853 if (set_match) *set_match = match;
1854
1855 return result;
1856}
1857
1858long
1859rb_reg_search0(VALUE re, VALUE str, long pos, int reverse, int set_backref_str, VALUE *match)
1860{
1861 return rb_reg_search_set_match(re, str, pos, reverse, set_backref_str, match);
1862}
1863
1864long
1865rb_reg_search(VALUE re, VALUE str, long pos, int reverse)
1866{
1867 return rb_reg_search_set_match(re, str, pos, reverse, 1, NULL);
1868}
1869
1870static OnigPosition
1871reg_onig_match(regex_t *reg, VALUE str, struct re_registers *regs, void *_)
1872{
1873 const char *ptr;
1874 long len;
1875 RSTRING_GETMEM(str, ptr, len);
1876
1877 return onig_match(
1878 reg,
1879 (UChar *)ptr,
1880 (UChar *)(ptr + len),
1881 (UChar *)ptr,
1882 regs,
1883 ONIG_OPTION_NONE);
1884}
1885
1886bool
1887rb_reg_start_with_p(VALUE re, VALUE str)
1888{
1889 VALUE match = rb_backref_get();
1890 if (NIL_P(match) || FL_TEST(match, MATCH_BUSY)) {
1891 match = match_alloc(rb_cMatch);
1892 }
1893
1894 struct re_registers *regs = RMATCH_REGS(match);
1895
1896 if (rb_reg_onig_match(re, str, reg_onig_match, NULL, regs) == ONIG_MISMATCH) {
1898 return false;
1899 }
1900
1901 RB_OBJ_WRITE(match, &RMATCH(match)->str, rb_str_new4(str));
1902 RB_OBJ_WRITE(match, &RMATCH(match)->regexp, re);
1903 rb_backref_set(match);
1904
1905 return true;
1906}
1907
1908VALUE
1910{
1911 struct re_registers *regs;
1912 if (NIL_P(match)) return Qnil;
1913 match_check(match);
1914 regs = RMATCH_REGS(match);
1915 if (nth >= regs->num_regs) {
1916 return Qnil;
1917 }
1918 if (nth < 0) {
1919 nth += regs->num_regs;
1920 if (nth <= 0) return Qnil;
1921 }
1922 return RBOOL(BEG(nth) != -1);
1923}
1924
1925VALUE
1927{
1928 VALUE str;
1929 long start, end, len;
1930 struct re_registers *regs;
1931
1932 if (NIL_P(match)) return Qnil;
1933 match_check(match);
1934 regs = RMATCH_REGS(match);
1935 if (nth >= regs->num_regs) {
1936 return Qnil;
1937 }
1938 if (nth < 0) {
1939 nth += regs->num_regs;
1940 if (nth <= 0) return Qnil;
1941 }
1942 start = BEG(nth);
1943 if (start == -1) return Qnil;
1944 end = END(nth);
1945 len = end - start;
1946 str = rb_str_subseq(RMATCH(match)->str, start, len);
1947 return str;
1948}
1949
1950VALUE
1952{
1953 return rb_reg_nth_match(0, match);
1954}
1955
1956
1957/*
1958 * call-seq:
1959 * pre_match -> string
1960 *
1961 * Returns the substring of the target string from its beginning
1962 * up to the first match in +self+ (that is, <tt>self[0]</tt>);
1963 * equivalent to regexp global variable <tt>$`</tt>:
1964 *
1965 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
1966 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
1967 * m[0] # => "HX1138"
1968 * m.pre_match # => "T"
1969 *
1970 * Related: MatchData#post_match.
1971 *
1972 */
1973
1974VALUE
1976{
1977 VALUE str;
1978 struct re_registers *regs;
1979
1980 if (NIL_P(match)) return Qnil;
1981 match_check(match);
1982 regs = RMATCH_REGS(match);
1983 if (BEG(0) == -1) return Qnil;
1984 str = rb_str_subseq(RMATCH(match)->str, 0, BEG(0));
1985 return str;
1986}
1987
1988
1989/*
1990 * call-seq:
1991 * post_match -> str
1992 *
1993 * Returns the substring of the target string from
1994 * the end of the first match in +self+ (that is, <tt>self[0]</tt>)
1995 * to the end of the string;
1996 * equivalent to regexp global variable <tt>$'</tt>:
1997 *
1998 * m = /(.)(.)(\d+)(\d)/.match("THX1138: The Movie")
1999 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
2000 * m[0] # => "HX1138"
2001 * m.post_match # => ": The Movie"\
2002 *
2003 * Related: MatchData.pre_match.
2004 *
2005 */
2006
2007VALUE
2009{
2010 VALUE str;
2011 long pos;
2012 struct re_registers *regs;
2013
2014 if (NIL_P(match)) return Qnil;
2015 match_check(match);
2016 regs = RMATCH_REGS(match);
2017 if (BEG(0) == -1) return Qnil;
2018 str = RMATCH(match)->str;
2019 pos = END(0);
2020 str = rb_str_subseq(str, pos, RSTRING_LEN(str) - pos);
2021 return str;
2022}
2023
2024static int
2025match_last_index(VALUE match)
2026{
2027 int i;
2028 struct re_registers *regs;
2029
2030 if (NIL_P(match)) return -1;
2031 match_check(match);
2032 regs = RMATCH_REGS(match);
2033 if (BEG(0) == -1) return -1;
2034
2035 for (i=regs->num_regs-1; BEG(i) == -1 && i > 0; i--)
2036 ;
2037 return i;
2038}
2039
2040VALUE
2042{
2043 int i = match_last_index(match);
2044 if (i <= 0) return Qnil;
2045 struct re_registers *regs = RMATCH_REGS(match);
2046 return rb_str_subseq(RMATCH(match)->str, BEG(i), END(i) - BEG(i));
2047}
2048
2049VALUE
2050rb_reg_last_defined(VALUE match)
2051{
2052 int i = match_last_index(match);
2053 if (i < 0) return Qnil;
2054 return RBOOL(i);
2055}
2056
2057static VALUE
2058last_match_getter(ID _x, VALUE *_y)
2059{
2061}
2062
2063static VALUE
2064prematch_getter(ID _x, VALUE *_y)
2065{
2067}
2068
2069static VALUE
2070postmatch_getter(ID _x, VALUE *_y)
2071{
2073}
2074
2075static VALUE
2076last_paren_match_getter(ID _x, VALUE *_y)
2077{
2079}
2080
2081static VALUE
2082match_array(VALUE match, int start)
2083{
2084 struct re_registers *regs;
2085 VALUE ary;
2086 VALUE target;
2087 int i;
2088
2089 match_check(match);
2090 regs = RMATCH_REGS(match);
2091 ary = rb_ary_new2(regs->num_regs);
2092 target = RMATCH(match)->str;
2093
2094 for (i=start; i<regs->num_regs; i++) {
2095 if (regs->beg[i] == -1) {
2096 rb_ary_push(ary, Qnil);
2097 }
2098 else {
2099 VALUE str = rb_str_subseq(target, regs->beg[i], regs->end[i]-regs->beg[i]);
2100 rb_ary_push(ary, str);
2101 }
2102 }
2103 return ary;
2104}
2105
2106
2107/*
2108 * call-seq:
2109 * to_a -> array
2110 *
2111 * Returns the array of matches:
2112 *
2113 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
2114 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
2115 * m.to_a # => ["HX1138", "H", "X", "113", "8"]
2116 *
2117 * Related: MatchData#captures.
2118 *
2119 */
2120
2121static VALUE
2122match_to_a(VALUE match)
2123{
2124 return match_array(match, 0);
2125}
2126
2127
2128/*
2129 * call-seq:
2130 * captures -> array
2131 *
2132 * Returns the array of captures,
2133 * which are all matches except <tt>m[0]</tt>:
2134 *
2135 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
2136 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
2137 * m[0] # => "HX1138"
2138 * m.captures # => ["H", "X", "113", "8"]
2139 *
2140 * Related: MatchData.to_a.
2141 *
2142 */
2143static VALUE
2144match_captures(VALUE match)
2145{
2146 return match_array(match, 1);
2147}
2148
2149static int
2150name_to_backref_number(struct re_registers *regs, VALUE regexp, const char* name, const char* name_end)
2151{
2152 if (NIL_P(regexp)) return -1;
2153 return onig_name_to_backref_number(RREGEXP_PTR(regexp),
2154 (const unsigned char *)name, (const unsigned char *)name_end, regs);
2155}
2156
2157#define NAME_TO_NUMBER(regs, re, name, name_ptr, name_end) \
2158 (NIL_P(re) ? 0 : \
2159 !rb_enc_compatible(RREGEXP_SRC(re), (name)) ? 0 : \
2160 name_to_backref_number((regs), (re), (name_ptr), (name_end)))
2161
2162static int
2163namev_to_backref_number(struct re_registers *regs, VALUE re, VALUE name)
2164{
2165 int num;
2166
2167 if (SYMBOL_P(name)) {
2168 name = rb_sym2str(name);
2169 }
2170 else if (!RB_TYPE_P(name, T_STRING)) {
2171 return -1;
2172 }
2173 num = NAME_TO_NUMBER(regs, re, name,
2174 RSTRING_PTR(name), RSTRING_END(name));
2175 if (num < 1) {
2176 name_to_backref_error(name);
2177 }
2178 return num;
2179}
2180
2181static VALUE
2182match_ary_subseq(VALUE match, long beg, long len, VALUE result)
2183{
2184 long olen = RMATCH_REGS(match)->num_regs;
2185 long j, end = olen < beg+len ? olen : beg+len;
2186 if (NIL_P(result)) result = rb_ary_new_capa(len);
2187 if (len == 0) return result;
2188
2189 for (j = beg; j < end; j++) {
2190 rb_ary_push(result, rb_reg_nth_match((int)j, match));
2191 }
2192 if (beg + len > j) {
2193 rb_ary_resize(result, RARRAY_LEN(result) + (beg + len) - j);
2194 }
2195 return result;
2196}
2197
2198static VALUE
2199match_ary_aref(VALUE match, VALUE idx, VALUE result)
2200{
2201 long beg, len;
2202 int num_regs = RMATCH_REGS(match)->num_regs;
2203
2204 /* check if idx is Range */
2205 switch (rb_range_beg_len(idx, &beg, &len, (long)num_regs, !NIL_P(result))) {
2206 case Qfalse:
2207 if (NIL_P(result)) return rb_reg_nth_match(NUM2INT(idx), match);
2208 rb_ary_push(result, rb_reg_nth_match(NUM2INT(idx), match));
2209 return result;
2210 case Qnil:
2211 return Qnil;
2212 default:
2213 return match_ary_subseq(match, beg, len, result);
2214 }
2215}
2216
2217/*
2218 * call-seq:
2219 * matchdata[index] -> string or nil
2220 * matchdata[start, length] -> array
2221 * matchdata[range] -> array
2222 * matchdata[name] -> string or nil
2223 *
2224 * When arguments +index+, +start and +length+, or +range+ are given,
2225 * returns match and captures in the style of Array#[]:
2226 *
2227 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
2228 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
2229 * m[0] # => "HX1138"
2230 * m[1, 2] # => ["H", "X"]
2231 * m[1..3] # => ["H", "X", "113"]
2232 * m[-3, 2] # => ["X", "113"]
2233 *
2234 * When string or symbol argument +name+ is given,
2235 * returns the matched substring for the given name:
2236 *
2237 * m = /(?<foo>.)(.)(?<bar>.+)/.match("hoge")
2238 * # => #<MatchData "hoge" foo:"h" bar:"ge">
2239 * m['foo'] # => "h"
2240 * m[:bar] # => "ge"
2241 *
2242 * If multiple captures have the same name, returns the last matched
2243 * substring.
2244 *
2245 * m = /(?<foo>.)(?<foo>.+)/.match("hoge")
2246 * # => #<MatchData "hoge" foo:"h" foo:"oge">
2247 * m[:foo] #=> "oge"
2248 *
2249 * m = /\W(?<foo>.+)|\w(?<foo>.+)|(?<foo>.+)/.match("hoge")
2250 * #<MatchData "hoge" foo:nil foo:"oge" foo:nil>
2251 * m[:foo] #=> "oge"
2252 *
2253 */
2254
2255static VALUE
2256match_aref(int argc, VALUE *argv, VALUE match)
2257{
2258 VALUE idx, length;
2259
2260 match_check(match);
2261 rb_scan_args(argc, argv, "11", &idx, &length);
2262
2263 if (NIL_P(length)) {
2264 if (FIXNUM_P(idx)) {
2265 return rb_reg_nth_match(FIX2INT(idx), match);
2266 }
2267 else {
2268 int num = namev_to_backref_number(RMATCH_REGS(match), RMATCH(match)->regexp, idx);
2269 if (num >= 0) {
2270 return rb_reg_nth_match(num, match);
2271 }
2272 else {
2273 return match_ary_aref(match, idx, Qnil);
2274 }
2275 }
2276 }
2277 else {
2278 long beg = NUM2LONG(idx);
2279 long len = NUM2LONG(length);
2280 long num_regs = RMATCH_REGS(match)->num_regs;
2281 if (len < 0) {
2282 return Qnil;
2283 }
2284 if (beg < 0) {
2285 beg += num_regs;
2286 if (beg < 0) return Qnil;
2287 }
2288 else if (beg > num_regs) {
2289 return Qnil;
2290 }
2291 if (beg+len > num_regs) {
2292 len = num_regs - beg;
2293 }
2294 return match_ary_subseq(match, beg, len, Qnil);
2295 }
2296}
2297
2298/*
2299 * call-seq:
2300 * values_at(*indexes) -> array
2301 *
2302 * Returns match and captures at the given +indexes+,
2303 * which may include any mixture of:
2304 *
2305 * - Integers.
2306 * - Ranges.
2307 * - Names (strings and symbols).
2308 *
2309 *
2310 * Examples:
2311 *
2312 * m = /(.)(.)(\d+)(\d)/.match("THX1138: The Movie")
2313 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
2314 * m.values_at(0, 2, -2) # => ["HX1138", "X", "113"]
2315 * m.values_at(1..2, -1) # => ["H", "X", "8"]
2316 *
2317 * m = /(?<a>\d+) *(?<op>[+\-*\/]) *(?<b>\d+)/.match("1 + 2")
2318 * # => #<MatchData "1 + 2" a:"1" op:"+" b:"2">
2319 * m.values_at(0, 1..2, :a, :b, :op)
2320 * # => ["1 + 2", "1", "+", "1", "2", "+"]
2321 *
2322 */
2323
2324static VALUE
2325match_values_at(int argc, VALUE *argv, VALUE match)
2326{
2327 VALUE result;
2328 int i;
2329
2330 match_check(match);
2331 result = rb_ary_new2(argc);
2332
2333 for (i=0; i<argc; i++) {
2334 if (FIXNUM_P(argv[i])) {
2335 rb_ary_push(result, rb_reg_nth_match(FIX2INT(argv[i]), match));
2336 }
2337 else {
2338 int num = namev_to_backref_number(RMATCH_REGS(match), RMATCH(match)->regexp, argv[i]);
2339 if (num >= 0) {
2340 rb_ary_push(result, rb_reg_nth_match(num, match));
2341 }
2342 else {
2343 match_ary_aref(match, argv[i], result);
2344 }
2345 }
2346 }
2347 return result;
2348}
2349
2350
2351/*
2352 * call-seq:
2353 * to_s -> string
2354 *
2355 * Returns the matched string:
2356 *
2357 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
2358 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
2359 * m.to_s # => "HX1138"
2360 *
2361 * m = /(?<foo>.)(.)(?<bar>.+)/.match("hoge")
2362 * # => #<MatchData "hoge" foo:"h" bar:"ge">
2363 * m.to_s # => "hoge"
2364 *
2365 * Related: MatchData.inspect.
2366 *
2367 */
2368
2369static VALUE
2370match_to_s(VALUE match)
2371{
2372 VALUE str = rb_reg_last_match(match_check(match));
2373
2374 if (NIL_P(str)) str = rb_str_new(0,0);
2375 return str;
2376}
2377
2378static int
2379match_named_captures_iter(const OnigUChar *name, const OnigUChar *name_end,
2380 int back_num, int *back_refs, OnigRegex regex, void *arg)
2381{
2382 struct MEMO *memo = MEMO_CAST(arg);
2383 VALUE hash = memo->v1;
2384 VALUE match = memo->v2;
2385 long symbolize = memo->u3.state;
2386
2387 VALUE key = rb_enc_str_new((const char *)name, name_end-name, regex->enc);
2388
2389 if (symbolize > 0) {
2390 key = rb_str_intern(key);
2391 }
2392
2393 VALUE value;
2394
2395 int i;
2396 int found = 0;
2397
2398 for (i = 0; i < back_num; i++) {
2399 value = rb_reg_nth_match(back_refs[i], match);
2400 if (RTEST(value)) {
2401 rb_hash_aset(hash, key, value);
2402 found = 1;
2403 }
2404 }
2405
2406 if (found == 0) {
2407 rb_hash_aset(hash, key, Qnil);
2408 }
2409
2410 return 0;
2411}
2412
2413/*
2414 * call-seq:
2415 * named_captures(symbolize_names: false) -> hash
2416 *
2417 * Returns a hash of the named captures;
2418 * each key is a capture name; each value is its captured string or +nil+:
2419 *
2420 * m = /(?<foo>.)(.)(?<bar>.+)/.match("hoge")
2421 * # => #<MatchData "hoge" foo:"h" bar:"ge">
2422 * m.named_captures # => {"foo"=>"h", "bar"=>"ge"}
2423 *
2424 * m = /(?<a>.)(?<b>.)/.match("01")
2425 * # => #<MatchData "01" a:"0" b:"1">
2426 * m.named_captures #=> {"a" => "0", "b" => "1"}
2427 *
2428 * m = /(?<a>.)(?<b>.)?/.match("0")
2429 * # => #<MatchData "0" a:"0" b:nil>
2430 * m.named_captures #=> {"a" => "0", "b" => nil}
2431 *
2432 * m = /(?<a>.)(?<a>.)/.match("01")
2433 * # => #<MatchData "01" a:"0" a:"1">
2434 * m.named_captures #=> {"a" => "1"}
2435 *
2436 * If keyword argument +symbolize_names+ is given
2437 * a true value, the keys in the resulting hash are Symbols:
2438 *
2439 * m = /(?<a>.)(?<a>.)/.match("01")
2440 * # => #<MatchData "01" a:"0" a:"1">
2441 * m.named_captures(symbolize_names: true) #=> {:a => "1"}
2442 *
2443 */
2444
2445static VALUE
2446match_named_captures(int argc, VALUE *argv, VALUE match)
2447{
2448 VALUE hash;
2449 struct MEMO *memo;
2450
2451 match_check(match);
2452 if (NIL_P(RMATCH(match)->regexp))
2453 return rb_hash_new();
2454
2455 VALUE opt;
2456 VALUE symbolize_names = 0;
2457
2458 rb_scan_args(argc, argv, "0:", &opt);
2459
2460 if (!NIL_P(opt)) {
2461 static ID keyword_ids[1];
2462
2463 VALUE symbolize_names_val;
2464
2465 if (!keyword_ids[0]) {
2466 keyword_ids[0] = rb_intern_const("symbolize_names");
2467 }
2468 rb_get_kwargs(opt, keyword_ids, 0, 1, &symbolize_names_val);
2469 if (!UNDEF_P(symbolize_names_val) && RTEST(symbolize_names_val)) {
2470 symbolize_names = 1;
2471 }
2472 }
2473
2474 hash = rb_hash_new();
2475 memo = MEMO_NEW(hash, match, symbolize_names);
2476
2477 onig_foreach_name(RREGEXP(RMATCH(match)->regexp)->ptr, match_named_captures_iter, (void*)memo);
2478
2479 return hash;
2480}
2481
2482/*
2483 * call-seq:
2484 * deconstruct_keys(array_of_names) -> hash
2485 *
2486 * Returns a hash of the named captures for the given names.
2487 *
2488 * m = /(?<hours>\d{2}):(?<minutes>\d{2}):(?<seconds>\d{2})/.match("18:37:22")
2489 * m.deconstruct_keys([:hours, :minutes]) # => {:hours => "18", :minutes => "37"}
2490 * m.deconstruct_keys(nil) # => {:hours => "18", :minutes => "37", :seconds => "22"}
2491 *
2492 * Returns an empty hash if no named captures were defined:
2493 *
2494 * m = /(\d{2}):(\d{2}):(\d{2})/.match("18:37:22")
2495 * m.deconstruct_keys(nil) # => {}
2496 *
2497 */
2498static VALUE
2499match_deconstruct_keys(VALUE match, VALUE keys)
2500{
2501 VALUE h;
2502 long i;
2503
2504 match_check(match);
2505
2506 if (NIL_P(RMATCH(match)->regexp)) {
2507 return rb_hash_new_with_size(0);
2508 }
2509
2510 if (NIL_P(keys)) {
2511 h = rb_hash_new_with_size(onig_number_of_names(RREGEXP_PTR(RMATCH(match)->regexp)));
2512
2513 struct MEMO *memo;
2514 memo = MEMO_NEW(h, match, 1);
2515
2516 onig_foreach_name(RREGEXP_PTR(RMATCH(match)->regexp), match_named_captures_iter, (void*)memo);
2517
2518 return h;
2519 }
2520
2521 Check_Type(keys, T_ARRAY);
2522
2523 if (onig_number_of_names(RREGEXP_PTR(RMATCH(match)->regexp)) < RARRAY_LEN(keys)) {
2524 return rb_hash_new_with_size(0);
2525 }
2526
2527 h = rb_hash_new_with_size(RARRAY_LEN(keys));
2528
2529 for (i=0; i<RARRAY_LEN(keys); i++) {
2530 VALUE key = RARRAY_AREF(keys, i);
2531 VALUE name;
2532
2533 Check_Type(key, T_SYMBOL);
2534
2535 name = rb_sym2str(key);
2536
2537 int num = NAME_TO_NUMBER(RMATCH_REGS(match), RMATCH(match)->regexp, RMATCH(match)->regexp,
2538 RSTRING_PTR(name), RSTRING_END(name));
2539
2540 if (num >= 0) {
2541 rb_hash_aset(h, key, rb_reg_nth_match(num, match));
2542 }
2543 else {
2544 return h;
2545 }
2546 }
2547
2548 return h;
2549}
2550
2551/*
2552 * call-seq:
2553 * string -> string
2554 *
2555 * Returns the target string if it was frozen;
2556 * otherwise, returns a frozen copy of the target string:
2557 *
2558 * m = /(.)(.)(\d+)(\d)/.match("THX1138.")
2559 * # => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
2560 * m.string # => "THX1138."
2561 *
2562 */
2563
2564static VALUE
2565match_string(VALUE match)
2566{
2567 match_check(match);
2568 return RMATCH(match)->str; /* str is frozen */
2569}
2570
2572 const UChar *name;
2573 long len;
2574};
2575
2576static int
2577match_inspect_name_iter(const OnigUChar *name, const OnigUChar *name_end,
2578 int back_num, int *back_refs, OnigRegex regex, void *arg0)
2579{
2580 struct backref_name_tag *arg = (struct backref_name_tag *)arg0;
2581 int i;
2582
2583 for (i = 0; i < back_num; i++) {
2584 arg[back_refs[i]].name = name;
2585 arg[back_refs[i]].len = name_end - name;
2586 }
2587 return 0;
2588}
2589
2590/*
2591 * call-seq:
2592 * inspect -> string
2593 *
2594 * Returns a string representation of +self+:
2595 *
2596 * m = /.$/.match("foo")
2597 * # => #<MatchData "o">
2598 * m.inspect # => "#<MatchData \"o\">"
2599 *
2600 * m = /(.)(.)(.)/.match("foo")
2601 * # => #<MatchData "foo" 1:"f" 2:"o" 3:"o">
2602 * m.inspect # => "#<MatchData \"foo\" 1:\"f\" 2:\"o\
2603 *
2604 * m = /(.)(.)?(.)/.match("fo")
2605 * # => #<MatchData "fo" 1:"f" 2:nil 3:"o">
2606 * m.inspect # => "#<MatchData \"fo\" 1:\"f\" 2:nil 3:\"o\">"
2607 *
2608 * Related: MatchData#to_s.
2609 */
2610
2611static VALUE
2612match_inspect(VALUE match)
2613{
2614 VALUE cname = rb_class_path(rb_obj_class(match));
2615 VALUE str;
2616 int i;
2617 struct re_registers *regs = RMATCH_REGS(match);
2618 int num_regs = regs->num_regs;
2619 struct backref_name_tag *names;
2620 VALUE regexp = RMATCH(match)->regexp;
2621
2622 if (regexp == 0) {
2623 return rb_sprintf("#<%"PRIsVALUE":%p>", cname, (void*)match);
2624 }
2625 else if (NIL_P(regexp)) {
2626 return rb_sprintf("#<%"PRIsVALUE": %"PRIsVALUE">",
2627 cname, rb_reg_nth_match(0, match));
2628 }
2629
2630 names = ALLOCA_N(struct backref_name_tag, num_regs);
2631 MEMZERO(names, struct backref_name_tag, num_regs);
2632
2633 onig_foreach_name(RREGEXP_PTR(regexp),
2634 match_inspect_name_iter, names);
2635
2636 str = rb_str_buf_new2("#<");
2637 rb_str_append(str, cname);
2638
2639 for (i = 0; i < num_regs; i++) {
2640 VALUE v;
2641 rb_str_buf_cat2(str, " ");
2642 if (0 < i) {
2643 if (names[i].name)
2644 rb_str_buf_cat(str, (const char *)names[i].name, names[i].len);
2645 else {
2646 rb_str_catf(str, "%d", i);
2647 }
2648 rb_str_buf_cat2(str, ":");
2649 }
2650 v = rb_reg_nth_match(i, match);
2651 if (NIL_P(v))
2652 rb_str_buf_cat2(str, "nil");
2653 else
2655 }
2656 rb_str_buf_cat2(str, ">");
2657
2658 return str;
2659}
2660
2662
2663static int
2664read_escaped_byte(const char **pp, const char *end, onig_errmsg_buffer err)
2665{
2666 const char *p = *pp;
2667 int code;
2668 int meta_prefix = 0, ctrl_prefix = 0;
2669 size_t len;
2670
2671 if (p == end || *p++ != '\\') {
2672 errcpy(err, "too short escaped multibyte character");
2673 return -1;
2674 }
2675
2676again:
2677 if (p == end) {
2678 errcpy(err, "too short escape sequence");
2679 return -1;
2680 }
2681 switch (*p++) {
2682 case '\\': code = '\\'; break;
2683 case 'n': code = '\n'; break;
2684 case 't': code = '\t'; break;
2685 case 'r': code = '\r'; break;
2686 case 'f': code = '\f'; break;
2687 case 'v': code = '\013'; break;
2688 case 'a': code = '\007'; break;
2689 case 'e': code = '\033'; break;
2690
2691 /* \OOO */
2692 case '0': case '1': case '2': case '3':
2693 case '4': case '5': case '6': case '7':
2694 p--;
2695 code = scan_oct(p, end < p+3 ? end-p : 3, &len);
2696 p += len;
2697 break;
2698
2699 case 'x': /* \xHH */
2700 code = scan_hex(p, end < p+2 ? end-p : 2, &len);
2701 if (len < 1) {
2702 errcpy(err, "invalid hex escape");
2703 return -1;
2704 }
2705 p += len;
2706 break;
2707
2708 case 'M': /* \M-X, \M-\C-X, \M-\cX */
2709 if (meta_prefix) {
2710 errcpy(err, "duplicate meta escape");
2711 return -1;
2712 }
2713 meta_prefix = 1;
2714 if (p+1 < end && *p++ == '-' && (*p & 0x80) == 0) {
2715 if (*p == '\\') {
2716 p++;
2717 goto again;
2718 }
2719 else {
2720 code = *p++;
2721 break;
2722 }
2723 }
2724 errcpy(err, "too short meta escape");
2725 return -1;
2726
2727 case 'C': /* \C-X, \C-\M-X */
2728 if (p == end || *p++ != '-') {
2729 errcpy(err, "too short control escape");
2730 return -1;
2731 }
2732 case 'c': /* \cX, \c\M-X */
2733 if (ctrl_prefix) {
2734 errcpy(err, "duplicate control escape");
2735 return -1;
2736 }
2737 ctrl_prefix = 1;
2738 if (p < end && (*p & 0x80) == 0) {
2739 if (*p == '\\') {
2740 p++;
2741 goto again;
2742 }
2743 else {
2744 code = *p++;
2745 break;
2746 }
2747 }
2748 errcpy(err, "too short control escape");
2749 return -1;
2750
2751 default:
2752 errcpy(err, "unexpected escape sequence");
2753 return -1;
2754 }
2755 if (code < 0 || 0xff < code) {
2756 errcpy(err, "invalid escape code");
2757 return -1;
2758 }
2759
2760 if (ctrl_prefix)
2761 code &= 0x1f;
2762 if (meta_prefix)
2763 code |= 0x80;
2764
2765 *pp = p;
2766 return code;
2767}
2768
2769static int
2770unescape_escaped_nonascii(const char **pp, const char *end, rb_encoding *enc,
2771 VALUE buf, rb_encoding **encp, onig_errmsg_buffer err)
2772{
2773 const char *p = *pp;
2774 int chmaxlen = rb_enc_mbmaxlen(enc);
2775 unsigned char *area = ALLOCA_N(unsigned char, chmaxlen);
2776 char *chbuf = (char *)area;
2777 int chlen = 0;
2778 int byte;
2779 int l;
2780
2781 memset(chbuf, 0, chmaxlen);
2782
2783 byte = read_escaped_byte(&p, end, err);
2784 if (byte == -1) {
2785 return -1;
2786 }
2787
2788 area[chlen++] = byte;
2789 while (chlen < chmaxlen &&
2790 MBCLEN_NEEDMORE_P(rb_enc_precise_mbclen(chbuf, chbuf+chlen, enc))) {
2791 byte = read_escaped_byte(&p, end, err);
2792 if (byte == -1) {
2793 return -1;
2794 }
2795 area[chlen++] = byte;
2796 }
2797
2798 l = rb_enc_precise_mbclen(chbuf, chbuf+chlen, enc);
2799 if (MBCLEN_INVALID_P(l)) {
2800 errcpy(err, "invalid multibyte escape");
2801 return -1;
2802 }
2803 if (1 < chlen || (area[0] & 0x80)) {
2804 rb_str_buf_cat(buf, chbuf, chlen);
2805
2806 if (*encp == 0)
2807 *encp = enc;
2808 else if (*encp != enc) {
2809 errcpy(err, "escaped non ASCII character in UTF-8 regexp");
2810 return -1;
2811 }
2812 }
2813 else {
2814 char escbuf[5];
2815 snprintf(escbuf, sizeof(escbuf), "\\x%02X", area[0]&0xff);
2816 rb_str_buf_cat(buf, escbuf, 4);
2817 }
2818 *pp = p;
2819 return 0;
2820}
2821
2822static int
2823check_unicode_range(unsigned long code, onig_errmsg_buffer err)
2824{
2825 if ((0xd800 <= code && code <= 0xdfff) || /* Surrogates */
2826 0x10ffff < code) {
2827 errcpy(err, "invalid Unicode range");
2828 return -1;
2829 }
2830 return 0;
2831}
2832
2833static int
2834append_utf8(unsigned long uv,
2835 VALUE buf, rb_encoding **encp, onig_errmsg_buffer err)
2836{
2837 if (check_unicode_range(uv, err) != 0)
2838 return -1;
2839 if (uv < 0x80) {
2840 char escbuf[5];
2841 snprintf(escbuf, sizeof(escbuf), "\\x%02X", (int)uv);
2842 rb_str_buf_cat(buf, escbuf, 4);
2843 }
2844 else {
2845 int len;
2846 char utf8buf[6];
2847 len = rb_uv_to_utf8(utf8buf, uv);
2848 rb_str_buf_cat(buf, utf8buf, len);
2849
2850 if (*encp == 0)
2851 *encp = rb_utf8_encoding();
2852 else if (*encp != rb_utf8_encoding()) {
2853 errcpy(err, "UTF-8 character in non UTF-8 regexp");
2854 return -1;
2855 }
2856 }
2857 return 0;
2858}
2859
2860static int
2861unescape_unicode_list(const char **pp, const char *end,
2862 VALUE buf, rb_encoding **encp, onig_errmsg_buffer err)
2863{
2864 const char *p = *pp;
2865 int has_unicode = 0;
2866 unsigned long code;
2867 size_t len;
2868
2869 while (p < end && ISSPACE(*p)) p++;
2870
2871 while (1) {
2872 code = ruby_scan_hex(p, end-p, &len);
2873 if (len == 0)
2874 break;
2875 if (6 < len) { /* max 10FFFF */
2876 errcpy(err, "invalid Unicode range");
2877 return -1;
2878 }
2879 p += len;
2880 if (append_utf8(code, buf, encp, err) != 0)
2881 return -1;
2882 has_unicode = 1;
2883
2884 while (p < end && ISSPACE(*p)) p++;
2885 }
2886
2887 if (has_unicode == 0) {
2888 errcpy(err, "invalid Unicode list");
2889 return -1;
2890 }
2891
2892 *pp = p;
2893
2894 return 0;
2895}
2896
2897static int
2898unescape_unicode_bmp(const char **pp, const char *end,
2899 VALUE buf, rb_encoding **encp, onig_errmsg_buffer err)
2900{
2901 const char *p = *pp;
2902 size_t len;
2903 unsigned long code;
2904
2905 if (end < p+4) {
2906 errcpy(err, "invalid Unicode escape");
2907 return -1;
2908 }
2909 code = ruby_scan_hex(p, 4, &len);
2910 if (len != 4) {
2911 errcpy(err, "invalid Unicode escape");
2912 return -1;
2913 }
2914 if (append_utf8(code, buf, encp, err) != 0)
2915 return -1;
2916 *pp = p + 4;
2917 return 0;
2918}
2919
2920static int
2921unescape_nonascii0(const char **pp, const char *end, rb_encoding *enc,
2922 VALUE buf, rb_encoding **encp, int *has_property,
2923 onig_errmsg_buffer err, int options, int recurse)
2924{
2925 const char *p = *pp;
2926 unsigned char c;
2927 char smallbuf[2];
2928 int in_char_class = 0;
2929 int parens = 1; /* ignored unless recurse is true */
2930 int extended_mode = options & ONIG_OPTION_EXTEND;
2931
2932begin_scan:
2933 while (p < end) {
2934 int chlen = rb_enc_precise_mbclen(p, end, enc);
2935 if (!MBCLEN_CHARFOUND_P(chlen)) {
2936 invalid_multibyte:
2937 errcpy(err, "invalid multibyte character");
2938 return -1;
2939 }
2940 chlen = MBCLEN_CHARFOUND_LEN(chlen);
2941 if (1 < chlen || (*p & 0x80)) {
2942 multibyte:
2943 rb_str_buf_cat(buf, p, chlen);
2944 p += chlen;
2945 if (*encp == 0)
2946 *encp = enc;
2947 else if (*encp != enc) {
2948 errcpy(err, "non ASCII character in UTF-8 regexp");
2949 return -1;
2950 }
2951 continue;
2952 }
2953
2954 switch (c = *p++) {
2955 case '\\':
2956 if (p == end) {
2957 errcpy(err, "too short escape sequence");
2958 return -1;
2959 }
2960 chlen = rb_enc_precise_mbclen(p, end, enc);
2961 if (!MBCLEN_CHARFOUND_P(chlen)) {
2962 goto invalid_multibyte;
2963 }
2964 if ((chlen = MBCLEN_CHARFOUND_LEN(chlen)) > 1) {
2965 /* include the previous backslash */
2966 --p;
2967 ++chlen;
2968 goto multibyte;
2969 }
2970 switch (c = *p++) {
2971 case '1': case '2': case '3':
2972 case '4': case '5': case '6': case '7': /* \O, \OO, \OOO or backref */
2973 {
2974 size_t len = end-(p-1), octlen;
2975 if (ruby_scan_oct(p-1, len < 3 ? len : 3, &octlen) <= 0177) {
2976 /* backref or 7bit octal.
2977 no need to unescape anyway.
2978 re-escaping may break backref */
2979 goto escape_asis;
2980 }
2981 }
2982 /* xxx: How about more than 199 subexpressions? */
2983
2984 case '0': /* \0, \0O, \0OO */
2985
2986 case 'x': /* \xHH */
2987 case 'c': /* \cX, \c\M-X */
2988 case 'C': /* \C-X, \C-\M-X */
2989 case 'M': /* \M-X, \M-\C-X, \M-\cX */
2990 p = p-2;
2991 if (rb_is_usascii_enc(enc)) {
2992 const char *pbeg = p;
2993 int byte = read_escaped_byte(&p, end, err);
2994 if (byte == -1) return -1;
2995 c = byte;
2996 rb_str_buf_cat(buf, pbeg, p-pbeg);
2997 }
2998 else {
2999 if (unescape_escaped_nonascii(&p, end, enc, buf, encp, err) != 0)
3000 return -1;
3001 }
3002 break;
3003
3004 case 'u':
3005 if (p == end) {
3006 errcpy(err, "too short escape sequence");
3007 return -1;
3008 }
3009 if (*p == '{') {
3010 /* \u{H HH HHH HHHH HHHHH HHHHHH ...} */
3011 p++;
3012 if (unescape_unicode_list(&p, end, buf, encp, err) != 0)
3013 return -1;
3014 if (p == end || *p++ != '}') {
3015 errcpy(err, "invalid Unicode list");
3016 return -1;
3017 }
3018 break;
3019 }
3020 else {
3021 /* \uHHHH */
3022 if (unescape_unicode_bmp(&p, end, buf, encp, err) != 0)
3023 return -1;
3024 break;
3025 }
3026
3027 case 'p': /* \p{Hiragana} */
3028 case 'P':
3029 if (!*encp) {
3030 *has_property = 1;
3031 }
3032 goto escape_asis;
3033
3034 default: /* \n, \\, \d, \9, etc. */
3035escape_asis:
3036 smallbuf[0] = '\\';
3037 smallbuf[1] = c;
3038 rb_str_buf_cat(buf, smallbuf, 2);
3039 break;
3040 }
3041 break;
3042
3043 case '#':
3044 if (extended_mode && !in_char_class) {
3045 /* consume and ignore comment in extended regexp */
3046 while ((p < end) && ((c = *p++) != '\n')) {
3047 if ((c & 0x80) && !*encp && enc == rb_utf8_encoding()) {
3048 *encp = enc;
3049 }
3050 }
3051 break;
3052 }
3053 rb_str_buf_cat(buf, (char *)&c, 1);
3054 break;
3055 case '[':
3056 in_char_class++;
3057 rb_str_buf_cat(buf, (char *)&c, 1);
3058 break;
3059 case ']':
3060 if (in_char_class) {
3061 in_char_class--;
3062 }
3063 rb_str_buf_cat(buf, (char *)&c, 1);
3064 break;
3065 case ')':
3066 rb_str_buf_cat(buf, (char *)&c, 1);
3067 if (!in_char_class && recurse) {
3068 if (--parens == 0) {
3069 *pp = p;
3070 return 0;
3071 }
3072 }
3073 break;
3074 case '(':
3075 if (!in_char_class && p + 1 < end && *p == '?') {
3076 if (*(p+1) == '#') {
3077 /* (?# is comment inside any regexp, and content inside should be ignored */
3078 const char *orig_p = p;
3079 int cont = 1;
3080
3081 while (cont && (p < end)) {
3082 switch (c = *p++) {
3083 default:
3084 if (!(c & 0x80)) break;
3085 if (!*encp && enc == rb_utf8_encoding()) {
3086 *encp = enc;
3087 }
3088 --p;
3089 /* fallthrough */
3090 case '\\':
3091 chlen = rb_enc_precise_mbclen(p, end, enc);
3092 if (!MBCLEN_CHARFOUND_P(chlen)) {
3093 goto invalid_multibyte;
3094 }
3095 p += MBCLEN_CHARFOUND_LEN(chlen);
3096 break;
3097 case ')':
3098 cont = 0;
3099 break;
3100 }
3101 }
3102
3103 if (cont) {
3104 /* unterminated (?#, rewind so it is syntax error */
3105 p = orig_p;
3106 c = '(';
3107 rb_str_buf_cat(buf, (char *)&c, 1);
3108 }
3109 break;
3110 }
3111 else {
3112 /* potential change of extended option */
3113 int invert = 0;
3114 int local_extend = 0;
3115 const char *s;
3116
3117 if (recurse) {
3118 parens++;
3119 }
3120
3121 for (s = p+1; s < end; s++) {
3122 switch(*s) {
3123 case 'x':
3124 local_extend = invert ? -1 : 1;
3125 break;
3126 case '-':
3127 invert = 1;
3128 break;
3129 case ':':
3130 case ')':
3131 if (local_extend == 0 ||
3132 (local_extend == -1 && !extended_mode) ||
3133 (local_extend == 1 && extended_mode)) {
3134 /* no changes to extended flag */
3135 goto fallthrough;
3136 }
3137
3138 if (*s == ':') {
3139 /* change extended flag until ')' */
3140 int local_options = options;
3141 if (local_extend == 1) {
3142 local_options |= ONIG_OPTION_EXTEND;
3143 }
3144 else {
3145 local_options &= ~ONIG_OPTION_EXTEND;
3146 }
3147
3148 rb_str_buf_cat(buf, (char *)&c, 1);
3149 int ret = unescape_nonascii0(&p, end, enc, buf, encp,
3150 has_property, err,
3151 local_options, 1);
3152 if (ret < 0) return ret;
3153 goto begin_scan;
3154 }
3155 else {
3156 /* change extended flag for rest of expression */
3157 extended_mode = local_extend == 1;
3158 goto fallthrough;
3159 }
3160 case 'i':
3161 case 'm':
3162 case 'a':
3163 case 'd':
3164 case 'u':
3165 /* other option flags, ignored during scanning */
3166 break;
3167 default:
3168 /* other character, no extended flag change*/
3169 goto fallthrough;
3170 }
3171 }
3172 }
3173 }
3174 else if (!in_char_class && recurse) {
3175 parens++;
3176 }
3177 /* FALLTHROUGH */
3178 default:
3179fallthrough:
3180 rb_str_buf_cat(buf, (char *)&c, 1);
3181 break;
3182 }
3183 }
3184
3185 if (recurse) {
3186 *pp = p;
3187 }
3188 return 0;
3189}
3190
3191static int
3192unescape_nonascii(const char *p, const char *end, rb_encoding *enc,
3193 VALUE buf, rb_encoding **encp, int *has_property,
3194 onig_errmsg_buffer err, int options)
3195{
3196 return unescape_nonascii0(&p, end, enc, buf, encp, has_property,
3197 err, options, 0);
3198}
3199
3200static VALUE
3201rb_reg_preprocess(const char *p, const char *end, rb_encoding *enc,
3202 rb_encoding **fixed_enc, onig_errmsg_buffer err, int options)
3203{
3204 VALUE buf;
3205 int has_property = 0;
3206
3207 buf = rb_str_buf_new(0);
3208
3209 if (rb_enc_asciicompat(enc))
3210 *fixed_enc = 0;
3211 else {
3212 *fixed_enc = enc;
3213 rb_enc_associate(buf, enc);
3214 }
3215
3216 if (unescape_nonascii(p, end, enc, buf, fixed_enc, &has_property, err, options) != 0)
3217 return Qnil;
3218
3219 if (has_property && !*fixed_enc) {
3220 *fixed_enc = enc;
3221 }
3222
3223 if (*fixed_enc) {
3224 rb_enc_associate(buf, *fixed_enc);
3225 }
3226
3227 return buf;
3228}
3229
3230VALUE
3231rb_reg_check_preprocess(VALUE str)
3232{
3233 rb_encoding *fixed_enc = 0;
3234 onig_errmsg_buffer err = "";
3235 VALUE buf;
3236 char *p, *end;
3237 rb_encoding *enc;
3238
3239 StringValue(str);
3240 p = RSTRING_PTR(str);
3241 end = p + RSTRING_LEN(str);
3242 enc = rb_enc_get(str);
3243
3244 buf = rb_reg_preprocess(p, end, enc, &fixed_enc, err, 0);
3245 RB_GC_GUARD(str);
3246
3247 if (NIL_P(buf)) {
3248 return rb_reg_error_desc(str, 0, err);
3249 }
3250 return Qnil;
3251}
3252
3253static VALUE
3254rb_reg_preprocess_dregexp(VALUE ary, int options)
3255{
3256 rb_encoding *fixed_enc = 0;
3257 rb_encoding *regexp_enc = 0;
3258 onig_errmsg_buffer err = "";
3259 int i;
3260 VALUE result = 0;
3261 rb_encoding *ascii8bit = rb_ascii8bit_encoding();
3262
3263 if (RARRAY_LEN(ary) == 0) {
3264 rb_raise(rb_eArgError, "no arguments given");
3265 }
3266
3267 for (i = 0; i < RARRAY_LEN(ary); i++) {
3268 VALUE str = RARRAY_AREF(ary, i);
3269 VALUE buf;
3270 char *p, *end;
3271 rb_encoding *src_enc;
3272
3273 src_enc = rb_enc_get(str);
3274 if (options & ARG_ENCODING_NONE &&
3275 src_enc != ascii8bit) {
3276 if (str_coderange(str) != ENC_CODERANGE_7BIT)
3277 rb_raise(rb_eRegexpError, "/.../n has a non escaped non ASCII character in non ASCII-8BIT script");
3278 else
3279 src_enc = ascii8bit;
3280 }
3281
3282 StringValue(str);
3283 p = RSTRING_PTR(str);
3284 end = p + RSTRING_LEN(str);
3285
3286 buf = rb_reg_preprocess(p, end, src_enc, &fixed_enc, err, options);
3287
3288 if (NIL_P(buf))
3289 rb_raise(rb_eArgError, "%s", err);
3290
3291 if (fixed_enc != 0) {
3292 if (regexp_enc != 0 && regexp_enc != fixed_enc) {
3293 rb_raise(rb_eRegexpError, "encoding mismatch in dynamic regexp : %s and %s",
3294 rb_enc_name(regexp_enc), rb_enc_name(fixed_enc));
3295 }
3296 regexp_enc = fixed_enc;
3297 }
3298
3299 if (!result)
3300 result = rb_str_new3(str);
3301 else
3302 rb_str_buf_append(result, str);
3303 }
3304 if (regexp_enc) {
3305 rb_enc_associate(result, regexp_enc);
3306 }
3307
3308 return result;
3309}
3310
3311static void
3312rb_reg_initialize_check(VALUE obj)
3313{
3314 rb_check_frozen(obj);
3315 if (RREGEXP_PTR(obj)) {
3316 rb_raise(rb_eTypeError, "already initialized regexp");
3317 }
3318}
3319
3320static int
3321rb_reg_initialize(VALUE obj, const char *s, long len, rb_encoding *enc,
3322 int options, onig_errmsg_buffer err,
3323 const char *sourcefile, int sourceline)
3324{
3325 struct RRegexp *re = RREGEXP(obj);
3326 VALUE unescaped;
3327 rb_encoding *fixed_enc = 0;
3328 rb_encoding *a_enc = rb_ascii8bit_encoding();
3329
3330 rb_reg_initialize_check(obj);
3331
3332 if (rb_enc_dummy_p(enc)) {
3333 errcpy(err, "can't make regexp with dummy encoding");
3334 return -1;
3335 }
3336
3337 unescaped = rb_reg_preprocess(s, s+len, enc, &fixed_enc, err, options);
3338 if (NIL_P(unescaped))
3339 return -1;
3340
3341 if (fixed_enc) {
3342 if ((fixed_enc != enc && (options & ARG_ENCODING_FIXED)) ||
3343 (fixed_enc != a_enc && (options & ARG_ENCODING_NONE))) {
3344 errcpy(err, "incompatible character encoding");
3345 return -1;
3346 }
3347 if (fixed_enc != a_enc) {
3348 options |= ARG_ENCODING_FIXED;
3349 enc = fixed_enc;
3350 }
3351 }
3352 else if (!(options & ARG_ENCODING_FIXED)) {
3353 enc = rb_usascii_encoding();
3354 }
3355
3356 rb_enc_associate((VALUE)re, enc);
3357 if ((options & ARG_ENCODING_FIXED) || fixed_enc) {
3358 re->basic.flags |= KCODE_FIXED;
3359 }
3360 if (options & ARG_ENCODING_NONE) {
3361 re->basic.flags |= REG_ENCODING_NONE;
3362 }
3363
3364 re->ptr = make_regexp(RSTRING_PTR(unescaped), RSTRING_LEN(unescaped), enc,
3365 options & ARG_REG_OPTION_MASK, err,
3366 sourcefile, sourceline);
3367 if (!re->ptr) return -1;
3368 RB_GC_GUARD(unescaped);
3369 return 0;
3370}
3371
3372static void
3373reg_set_source(VALUE reg, VALUE str, rb_encoding *enc)
3374{
3375 rb_encoding *regenc = rb_enc_get(reg);
3376 if (regenc != enc) {
3377 str = rb_enc_associate(rb_str_dup(str), enc = regenc);
3378 }
3379 RB_OBJ_WRITE(reg, &RREGEXP(reg)->src, rb_fstring(str));
3380}
3381
3382static int
3383rb_reg_initialize_str(VALUE obj, VALUE str, int options, onig_errmsg_buffer err,
3384 const char *sourcefile, int sourceline)
3385{
3386 int ret;
3387 rb_encoding *str_enc = rb_enc_get(str), *enc = str_enc;
3388 if (options & ARG_ENCODING_NONE) {
3389 rb_encoding *ascii8bit = rb_ascii8bit_encoding();
3390 if (enc != ascii8bit) {
3391 if (str_coderange(str) != ENC_CODERANGE_7BIT) {
3392 errcpy(err, "/.../n has a non escaped non ASCII character in non ASCII-8BIT script");
3393 return -1;
3394 }
3395 enc = ascii8bit;
3396 }
3397 }
3398 ret = rb_reg_initialize(obj, RSTRING_PTR(str), RSTRING_LEN(str), enc,
3399 options, err, sourcefile, sourceline);
3400 if (ret == 0) reg_set_source(obj, str, str_enc);
3401 return ret;
3402}
3403
3404static VALUE
3405rb_reg_s_alloc(VALUE klass)
3406{
3407 NEWOBJ_OF(re, struct RRegexp, klass, T_REGEXP | (RGENGC_WB_PROTECTED_REGEXP ? FL_WB_PROTECTED : 0), sizeof(struct RRegexp), 0);
3408
3409 re->ptr = 0;
3410 RB_OBJ_WRITE(re, &re->src, 0);
3411 re->usecnt = 0;
3412
3413 return (VALUE)re;
3414}
3415
3416VALUE
3417rb_reg_alloc(void)
3418{
3419 return rb_reg_s_alloc(rb_cRegexp);
3420}
3421
3422VALUE
3423rb_reg_new_str(VALUE s, int options)
3424{
3425 return rb_reg_init_str(rb_reg_alloc(), s, options);
3426}
3427
3428VALUE
3429rb_reg_init_str(VALUE re, VALUE s, int options)
3430{
3431 onig_errmsg_buffer err = "";
3432
3433 if (rb_reg_initialize_str(re, s, options, err, NULL, 0) != 0) {
3434 rb_reg_raise_str(s, options, err);
3435 }
3436
3437 return re;
3438}
3439
3440static VALUE
3441rb_reg_init_str_enc(VALUE re, VALUE s, rb_encoding *enc, int options)
3442{
3443 onig_errmsg_buffer err = "";
3444
3445 if (rb_reg_initialize(re, RSTRING_PTR(s), RSTRING_LEN(s),
3446 enc, options, err, NULL, 0) != 0) {
3447 rb_reg_raise_str(s, options, err);
3448 }
3449 reg_set_source(re, s, enc);
3450
3451 return re;
3452}
3453
3454VALUE
3455rb_reg_new_ary(VALUE ary, int opt)
3456{
3457 VALUE re = rb_reg_new_str(rb_reg_preprocess_dregexp(ary, opt), opt);
3458 rb_obj_freeze(re);
3459 return re;
3460}
3461
3462VALUE
3463rb_enc_reg_new(const char *s, long len, rb_encoding *enc, int options)
3464{
3465 VALUE re = rb_reg_alloc();
3466 onig_errmsg_buffer err = "";
3467
3468 if (rb_reg_initialize(re, s, len, enc, options, err, NULL, 0) != 0) {
3469 rb_enc_reg_raise(s, len, enc, options, err);
3470 }
3471 RB_OBJ_WRITE(re, &RREGEXP(re)->src, rb_fstring(rb_enc_str_new(s, len, enc)));
3472
3473 return re;
3474}
3475
3476VALUE
3477rb_reg_new(const char *s, long len, int options)
3478{
3479 return rb_enc_reg_new(s, len, rb_ascii8bit_encoding(), options);
3480}
3481
3482VALUE
3483rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline)
3484{
3485 VALUE re = rb_reg_alloc();
3486 onig_errmsg_buffer err = "";
3487
3488 if (!str) str = rb_str_new(0,0);
3489 if (rb_reg_initialize_str(re, str, options, err, sourcefile, sourceline) != 0) {
3490 rb_set_errinfo(rb_reg_error_desc(str, options, err));
3491 return Qnil;
3492 }
3493 rb_obj_freeze(re);
3494 return re;
3495}
3496
3497static VALUE reg_cache;
3498
3499VALUE
3501{
3502 if (reg_cache && RREGEXP_SRC_LEN(reg_cache) == RSTRING_LEN(str)
3503 && ENCODING_GET(reg_cache) == ENCODING_GET(str)
3504 && memcmp(RREGEXP_SRC_PTR(reg_cache), RSTRING_PTR(str), RSTRING_LEN(str)) == 0)
3505 return reg_cache;
3506
3507 return reg_cache = rb_reg_new_str(str, 0);
3508}
3509
3510static st_index_t reg_hash(VALUE re);
3511/*
3512 * call-seq:
3513 * hash -> integer
3514 *
3515 * Returns the integer hash value for +self+.
3516 *
3517 * Related: Object#hash.
3518 *
3519 */
3520
3521VALUE
3522rb_reg_hash(VALUE re)
3523{
3524 st_index_t hashval = reg_hash(re);
3525 return ST2FIX(hashval);
3526}
3527
3528static st_index_t
3529reg_hash(VALUE re)
3530{
3531 st_index_t hashval;
3532
3533 rb_reg_check(re);
3534 hashval = RREGEXP_PTR(re)->options;
3535 hashval = rb_hash_uint(hashval, rb_memhash(RREGEXP_SRC_PTR(re), RREGEXP_SRC_LEN(re)));
3536 return rb_hash_end(hashval);
3537}
3538
3539
3540/*
3541 * call-seq:
3542 * regexp == object -> true or false
3543 *
3544 * Returns +true+ if +object+ is another \Regexp whose pattern,
3545 * flags, and encoding are the same as +self+, +false+ otherwise:
3546 *
3547 * /foo/ == Regexp.new('foo') # => true
3548 * /foo/ == /foo/i # => false
3549 * /foo/ == Regexp.new('food') # => false
3550 * /foo/ == Regexp.new("abc".force_encoding("euc-jp")) # => false
3551 *
3552 */
3553
3554VALUE
3555rb_reg_equal(VALUE re1, VALUE re2)
3556{
3557 if (re1 == re2) return Qtrue;
3558 if (!RB_TYPE_P(re2, T_REGEXP)) return Qfalse;
3559 rb_reg_check(re1); rb_reg_check(re2);
3560 if (FL_TEST(re1, KCODE_FIXED) != FL_TEST(re2, KCODE_FIXED)) return Qfalse;
3561 if (RREGEXP_PTR(re1)->options != RREGEXP_PTR(re2)->options) return Qfalse;
3562 if (RREGEXP_SRC_LEN(re1) != RREGEXP_SRC_LEN(re2)) return Qfalse;
3563 if (ENCODING_GET(re1) != ENCODING_GET(re2)) return Qfalse;
3564 return RBOOL(memcmp(RREGEXP_SRC_PTR(re1), RREGEXP_SRC_PTR(re2), RREGEXP_SRC_LEN(re1)) == 0);
3565}
3566
3567/*
3568 * call-seq:
3569 * hash -> integer
3570 *
3571 * Returns the integer hash value for +self+,
3572 * based on the target string, regexp, match, and captures.
3573 *
3574 * See also Object#hash.
3575 *
3576 */
3577
3578static VALUE
3579match_hash(VALUE match)
3580{
3581 const struct re_registers *regs;
3582 st_index_t hashval;
3583
3584 match_check(match);
3585 hashval = rb_hash_start(rb_str_hash(RMATCH(match)->str));
3586 hashval = rb_hash_uint(hashval, reg_hash(match_regexp(match)));
3587 regs = RMATCH_REGS(match);
3588 hashval = rb_hash_uint(hashval, regs->num_regs);
3589 hashval = rb_hash_uint(hashval, rb_memhash(regs->beg, regs->num_regs * sizeof(*regs->beg)));
3590 hashval = rb_hash_uint(hashval, rb_memhash(regs->end, regs->num_regs * sizeof(*regs->end)));
3591 hashval = rb_hash_end(hashval);
3592 return ST2FIX(hashval);
3593}
3594
3595/*
3596 * call-seq:
3597 * matchdata == object -> true or false
3598 *
3599 * Returns +true+ if +object+ is another \MatchData object
3600 * whose target string, regexp, match, and captures
3601 * are the same as +self+, +false+ otherwise.
3602 */
3603
3604static VALUE
3605match_equal(VALUE match1, VALUE match2)
3606{
3607 const struct re_registers *regs1, *regs2;
3608
3609 if (match1 == match2) return Qtrue;
3610 if (!RB_TYPE_P(match2, T_MATCH)) return Qfalse;
3611 if (!RMATCH(match1)->regexp || !RMATCH(match2)->regexp) return Qfalse;
3612 if (!rb_str_equal(RMATCH(match1)->str, RMATCH(match2)->str)) return Qfalse;
3613 if (!rb_reg_equal(match_regexp(match1), match_regexp(match2))) return Qfalse;
3614 regs1 = RMATCH_REGS(match1);
3615 regs2 = RMATCH_REGS(match2);
3616 if (regs1->num_regs != regs2->num_regs) return Qfalse;
3617 if (memcmp(regs1->beg, regs2->beg, regs1->num_regs * sizeof(*regs1->beg))) return Qfalse;
3618 if (memcmp(regs1->end, regs2->end, regs1->num_regs * sizeof(*regs1->end))) return Qfalse;
3619 return Qtrue;
3620}
3621
3622static VALUE
3623reg_operand(VALUE s, int check)
3624{
3625 if (SYMBOL_P(s)) {
3626 return rb_sym2str(s);
3627 }
3628 else if (RB_TYPE_P(s, T_STRING)) {
3629 return s;
3630 }
3631 else {
3632 return check ? rb_str_to_str(s) : rb_check_string_type(s);
3633 }
3634}
3635
3636static long
3637reg_match_pos(VALUE re, VALUE *strp, long pos, VALUE* set_match)
3638{
3639 VALUE str = *strp;
3640
3641 if (NIL_P(str)) {
3643 return -1;
3644 }
3645 *strp = str = reg_operand(str, TRUE);
3646 if (pos != 0) {
3647 if (pos < 0) {
3648 VALUE l = rb_str_length(str);
3649 pos += NUM2INT(l);
3650 if (pos < 0) {
3651 return pos;
3652 }
3653 }
3654 pos = rb_str_offset(str, pos);
3655 }
3656 return rb_reg_search_set_match(re, str, pos, 0, 1, set_match);
3657}
3658
3659/*
3660 * call-seq:
3661 * regexp =~ string -> integer or nil
3662 *
3663 * Returns the integer index (in characters) of the first match
3664 * for +self+ and +string+, or +nil+ if none;
3665 * also sets the
3666 * {rdoc-ref:Regexp global variables}[rdoc-ref:Regexp@Global+Variables]:
3667 *
3668 * /at/ =~ 'input data' # => 7
3669 * $~ # => #<MatchData "at">
3670 * /ax/ =~ 'input data' # => nil
3671 * $~ # => nil
3672 *
3673 * Assigns named captures to local variables of the same names
3674 * if and only if +self+:
3675 *
3676 * - Is a regexp literal;
3677 * see {Regexp Literals}[rdoc-ref:syntax/literals.rdoc@Regexp+Literals].
3678 * - Does not contain interpolations;
3679 * see {Regexp interpolation}[rdoc-ref:Regexp@Interpolation+Mode].
3680 * - Is at the left of the expression.
3681 *
3682 * Example:
3683 *
3684 * /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ =~ ' x = y '
3685 * p lhs # => "x"
3686 * p rhs # => "y"
3687 *
3688 * Assigns +nil+ if not matched:
3689 *
3690 * /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ =~ ' x = '
3691 * p lhs # => nil
3692 * p rhs # => nil
3693 *
3694 * Does not make local variable assignments if +self+ is not a regexp literal:
3695 *
3696 * r = /(?<foo>\w+)\s*=\s*(?<foo>\w+)/
3697 * r =~ ' x = y '
3698 * p foo # Undefined local variable
3699 * p bar # Undefined local variable
3700 *
3701 * The assignment does not occur if the regexp is not at the left:
3702 *
3703 * ' x = y ' =~ /(?<foo>\w+)\s*=\s*(?<foo>\w+)/
3704 * p foo, foo # Undefined local variables
3705 *
3706 * A regexp interpolation, <tt>#{}</tt>, also disables
3707 * the assignment:
3708 *
3709 * r = /(?<foo>\w+)/
3710 * /(?<foo>\w+)\s*=\s*#{r}/ =~ 'x = y'
3711 * p foo # Undefined local variable
3712 *
3713 */
3714
3715VALUE
3717{
3718 long pos = reg_match_pos(re, &str, 0, NULL);
3719 if (pos < 0) return Qnil;
3720 pos = rb_str_sublen(str, pos);
3721 return LONG2FIX(pos);
3722}
3723
3724/*
3725 * call-seq:
3726 * regexp === string -> true or false
3727 *
3728 * Returns +true+ if +self+ finds a match in +string+:
3729 *
3730 * /^[a-z]*$/ === 'HELLO' # => false
3731 * /^[A-Z]*$/ === 'HELLO' # => true
3732 *
3733 * This method is called in case statements:
3734 *
3735 * s = 'HELLO'
3736 * case s
3737 * when /\A[a-z]*\z/; print "Lower case\n"
3738 * when /\A[A-Z]*\z/; print "Upper case\n"
3739 * else print "Mixed case\n"
3740 * end # => "Upper case"
3741 *
3742 */
3743
3744static VALUE
3745rb_reg_eqq(VALUE re, VALUE str)
3746{
3747 long start;
3748
3749 str = reg_operand(str, FALSE);
3750 if (NIL_P(str)) {
3752 return Qfalse;
3753 }
3754 start = rb_reg_search(re, str, 0, 0);
3755 return RBOOL(start >= 0);
3756}
3757
3758
3759/*
3760 * call-seq:
3761 * ~ rxp -> integer or nil
3762 *
3763 * Equivalent to <tt><i>rxp</i> =~ $_</tt>:
3764 *
3765 * $_ = "input data"
3766 * ~ /at/ # => 7
3767 *
3768 */
3769
3770VALUE
3772{
3773 long start;
3774 VALUE line = rb_lastline_get();
3775
3776 if (!RB_TYPE_P(line, T_STRING)) {
3778 return Qnil;
3779 }
3780
3781 start = rb_reg_search(re, line, 0, 0);
3782 if (start < 0) {
3783 return Qnil;
3784 }
3785 start = rb_str_sublen(line, start);
3786 return LONG2FIX(start);
3787}
3788
3789
3790/*
3791 * call-seq:
3792 * match(string, offset = 0) -> matchdata or nil
3793 * match(string, offset = 0) {|matchdata| ... } -> object
3794 *
3795 * With no block given, returns the MatchData object
3796 * that describes the match, if any, or +nil+ if none;
3797 * the search begins at the given character +offset+ in +string+:
3798 *
3799 * /abra/.match('abracadabra') # => #<MatchData "abra">
3800 * /abra/.match('abracadabra', 4) # => #<MatchData "abra">
3801 * /abra/.match('abracadabra', 8) # => nil
3802 * /abra/.match('abracadabra', 800) # => nil
3803 *
3804 * string = "\u{5d0 5d1 5e8 5d0}cadabra"
3805 * /abra/.match(string, 7) #=> #<MatchData "abra">
3806 * /abra/.match(string, 8) #=> nil
3807 * /abra/.match(string.b, 8) #=> #<MatchData "abra">
3808 *
3809 * With a block given, calls the block if and only if a match is found;
3810 * returns the block's value:
3811 *
3812 * /abra/.match('abracadabra') {|matchdata| p matchdata }
3813 * # => #<MatchData "abra">
3814 * /abra/.match('abracadabra', 4) {|matchdata| p matchdata }
3815 * # => #<MatchData "abra">
3816 * /abra/.match('abracadabra', 8) {|matchdata| p matchdata }
3817 * # => nil
3818 * /abra/.match('abracadabra', 8) {|marchdata| fail 'Cannot happen' }
3819 * # => nil
3820 *
3821 * Output (from the first two blocks above):
3822 *
3823 * #<MatchData "abra">
3824 * #<MatchData "abra">
3825 *
3826 * /(.)(.)(.)/.match("abc")[2] # => "b"
3827 * /(.)(.)/.match("abc", 1)[2] # => "c"
3828 *
3829 */
3830
3831static VALUE
3832rb_reg_match_m(int argc, VALUE *argv, VALUE re)
3833{
3834 VALUE result = Qnil, str, initpos;
3835 long pos;
3836
3837 if (rb_scan_args(argc, argv, "11", &str, &initpos) == 2) {
3838 pos = NUM2LONG(initpos);
3839 }
3840 else {
3841 pos = 0;
3842 }
3843
3844 pos = reg_match_pos(re, &str, pos, &result);
3845 if (pos < 0) {
3847 return Qnil;
3848 }
3849 rb_match_busy(result);
3850 if (!NIL_P(result) && rb_block_given_p()) {
3851 return rb_yield(result);
3852 }
3853 return result;
3854}
3855
3856/*
3857 * call-seq:
3858 * match?(string) -> true or false
3859 * match?(string, offset = 0) -> true or false
3860 *
3861 * Returns <code>true</code> or <code>false</code> to indicate whether the
3862 * regexp is matched or not without updating $~ and other related variables.
3863 * If the second parameter is present, it specifies the position in the string
3864 * to begin the search.
3865 *
3866 * /R.../.match?("Ruby") # => true
3867 * /R.../.match?("Ruby", 1) # => false
3868 * /P.../.match?("Ruby") # => false
3869 * $& # => nil
3870 */
3871
3872static VALUE
3873rb_reg_match_m_p(int argc, VALUE *argv, VALUE re)
3874{
3875 long pos = rb_check_arity(argc, 1, 2) > 1 ? NUM2LONG(argv[1]) : 0;
3876 return rb_reg_match_p(re, argv[0], pos);
3877}
3878
3879VALUE
3880rb_reg_match_p(VALUE re, VALUE str, long pos)
3881{
3882 if (NIL_P(str)) return Qfalse;
3883 str = SYMBOL_P(str) ? rb_sym2str(str) : StringValue(str);
3884 if (pos) {
3885 if (pos < 0) {
3886 pos += NUM2LONG(rb_str_length(str));
3887 if (pos < 0) return Qfalse;
3888 }
3889 if (pos > 0) {
3890 long len = 1;
3891 const char *beg = rb_str_subpos(str, pos, &len);
3892 if (!beg) return Qfalse;
3893 pos = beg - RSTRING_PTR(str);
3894 }
3895 }
3896
3897 struct reg_onig_search_args args = {
3898 .pos = pos,
3899 .range = RSTRING_LEN(str),
3900 };
3901
3902 return rb_reg_onig_match(re, str, reg_onig_search, &args, NULL) == ONIG_MISMATCH ? Qfalse : Qtrue;
3903}
3904
3905/*
3906 * Document-method: compile
3907 *
3908 * Alias for Regexp.new
3909 */
3910
3911static int
3912str_to_option(VALUE str)
3913{
3914 int flag = 0;
3915 const char *ptr;
3916 long len;
3917 str = rb_check_string_type(str);
3918 if (NIL_P(str)) return -1;
3919 RSTRING_GETMEM(str, ptr, len);
3920 for (long i = 0; i < len; ++i) {
3921 int f = char_to_option(ptr[i]);
3922 if (!f) {
3923 rb_raise(rb_eArgError, "unknown regexp option: %"PRIsVALUE, str);
3924 }
3925 flag |= f;
3926 }
3927 return flag;
3928}
3929
3930static void
3931set_timeout(rb_hrtime_t *hrt, VALUE timeout)
3932{
3933 double timeout_d = NIL_P(timeout) ? 0.0 : NUM2DBL(timeout);
3934 if (!NIL_P(timeout) && timeout_d <= 0) {
3935 rb_raise(rb_eArgError, "invalid timeout: %"PRIsVALUE, timeout);
3936 }
3937 double2hrtime(hrt, timeout_d);
3938}
3939
3940static VALUE
3941reg_copy(VALUE copy, VALUE orig)
3942{
3943 int r;
3944 regex_t *re;
3945
3946 rb_reg_initialize_check(copy);
3947 if ((r = onig_reg_copy(&re, RREGEXP_PTR(orig))) != 0) {
3948 /* ONIGERR_MEMORY only */
3949 rb_raise(rb_eRegexpError, "%s", onig_error_code_to_format(r));
3950 }
3951 RREGEXP_PTR(copy) = re;
3952 RB_OBJ_WRITE(copy, &RREGEXP(copy)->src, RREGEXP(orig)->src);
3953 RREGEXP_PTR(copy)->timelimit = RREGEXP_PTR(orig)->timelimit;
3954 rb_enc_copy(copy, orig);
3955 FL_SET_RAW(copy, FL_TEST_RAW(orig, KCODE_FIXED|REG_ENCODING_NONE));
3956
3957 return copy;
3958}
3959
3961 VALUE str;
3962 VALUE timeout;
3963 rb_encoding *enc;
3964 int flags;
3965};
3966
3967static VALUE reg_extract_args(int argc, VALUE *argv, struct reg_init_args *args);
3968static VALUE reg_init_args(VALUE self, VALUE str, rb_encoding *enc, int flags);
3969void rb_warn_deprecated_to_remove(const char *removal, const char *fmt, const char *suggest, ...);
3970
3971/*
3972 * call-seq:
3973 * Regexp.new(string, options = 0, timeout: nil) -> regexp
3974 * Regexp.new(regexp, timeout: nil) -> regexp
3975 *
3976 * With argument +string+ given, returns a new regexp with the given string
3977 * and options:
3978 *
3979 * r = Regexp.new('foo') # => /foo/
3980 * r.source # => "foo"
3981 * r.options # => 0
3982 *
3983 * Optional argument +options+ is one of the following:
3984 *
3985 * - A String of options:
3986 *
3987 * Regexp.new('foo', 'i') # => /foo/i
3988 * Regexp.new('foo', 'im') # => /foo/im
3989 *
3990 * - The bit-wise OR of one or more of the constants
3991 * Regexp::EXTENDED, Regexp::IGNORECASE, Regexp::MULTILINE, and
3992 * Regexp::NOENCODING:
3993 *
3994 * Regexp.new('foo', Regexp::IGNORECASE) # => /foo/i
3995 * Regexp.new('foo', Regexp::EXTENDED) # => /foo/x
3996 * Regexp.new('foo', Regexp::MULTILINE) # => /foo/m
3997 * Regexp.new('foo', Regexp::NOENCODING) # => /foo/n
3998 * flags = Regexp::IGNORECASE | Regexp::EXTENDED | Regexp::MULTILINE
3999 * Regexp.new('foo', flags) # => /foo/mix
4000 *
4001 * - +nil+ or +false+, which is ignored.
4002 * - Any other truthy value, in which case the regexp will be
4003 * case-insensitive.
4004 *
4005 * If optional keyword argument +timeout+ is given,
4006 * its float value overrides the timeout interval for the class,
4007 * Regexp.timeout.
4008 * If +nil+ is passed as +timeout, it uses the timeout interval
4009 * for the class, Regexp.timeout.
4010 *
4011 * With argument +regexp+ given, returns a new regexp. The source,
4012 * options, timeout are the same as +regexp+. +options+ and +n_flag+
4013 * arguments are ineffective. The timeout can be overridden by
4014 * +timeout+ keyword.
4015 *
4016 * options = Regexp::MULTILINE
4017 * r = Regexp.new('foo', options, timeout: 1.1) # => /foo/m
4018 * r2 = Regexp.new(r) # => /foo/m
4019 * r2.timeout # => 1.1
4020 * r3 = Regexp.new(r, timeout: 3.14) # => /foo/m
4021 * r3.timeout # => 3.14
4022 *
4023 */
4024
4025static VALUE
4026rb_reg_initialize_m(int argc, VALUE *argv, VALUE self)
4027{
4028 struct reg_init_args args;
4029 VALUE re = reg_extract_args(argc, argv, &args);
4030
4031 if (NIL_P(re)) {
4032 reg_init_args(self, args.str, args.enc, args.flags);
4033 }
4034 else {
4035 reg_copy(self, re);
4036 }
4037
4038 set_timeout(&RREGEXP_PTR(self)->timelimit, args.timeout);
4039
4040 return self;
4041}
4042
4043static VALUE
4044reg_extract_args(int argc, VALUE *argv, struct reg_init_args *args)
4045{
4046 int flags = 0;
4047 rb_encoding *enc = 0;
4048 VALUE str, src, opts = Qundef, kwargs;
4049 VALUE re = Qnil;
4050
4051 rb_scan_args(argc, argv, "11:", &src, &opts, &kwargs);
4052
4053 args->timeout = Qnil;
4054 if (!NIL_P(kwargs)) {
4055 static ID keywords[1];
4056 if (!keywords[0]) {
4057 keywords[0] = rb_intern_const("timeout");
4058 }
4059 rb_get_kwargs(kwargs, keywords, 0, 1, &args->timeout);
4060 }
4061
4062 if (RB_TYPE_P(src, T_REGEXP)) {
4063 re = src;
4064
4065 if (!NIL_P(opts)) {
4066 rb_warn("flags ignored");
4067 }
4068 rb_reg_check(re);
4069 flags = rb_reg_options(re);
4070 str = RREGEXP_SRC(re);
4071 }
4072 else {
4073 if (!NIL_P(opts)) {
4074 int f;
4075 if (FIXNUM_P(opts)) flags = FIX2INT(opts);
4076 else if ((f = str_to_option(opts)) >= 0) flags = f;
4077 else if (rb_bool_expected(opts, "ignorecase", FALSE))
4078 flags = ONIG_OPTION_IGNORECASE;
4079 }
4080 str = StringValue(src);
4081 }
4082 args->str = str;
4083 args->enc = enc;
4084 args->flags = flags;
4085 return re;
4086}
4087
4088static VALUE
4089reg_init_args(VALUE self, VALUE str, rb_encoding *enc, int flags)
4090{
4091 if (enc && rb_enc_get(str) != enc)
4092 rb_reg_init_str_enc(self, str, enc, flags);
4093 else
4094 rb_reg_init_str(self, str, flags);
4095 return self;
4096}
4097
4098VALUE
4100{
4101 rb_encoding *enc = rb_enc_get(str);
4102 char *s, *send, *t;
4103 VALUE tmp;
4104 int c, clen;
4105 int ascii_only = rb_enc_str_asciionly_p(str);
4106
4107 s = RSTRING_PTR(str);
4108 send = s + RSTRING_LEN(str);
4109 while (s < send) {
4110 c = rb_enc_ascget(s, send, &clen, enc);
4111 if (c == -1) {
4112 s += mbclen(s, send, enc);
4113 continue;
4114 }
4115 switch (c) {
4116 case '[': case ']': case '{': case '}':
4117 case '(': case ')': case '|': case '-':
4118 case '*': case '.': case '\\':
4119 case '?': case '+': case '^': case '$':
4120 case ' ': case '#':
4121 case '\t': case '\f': case '\v': case '\n': case '\r':
4122 goto meta_found;
4123 }
4124 s += clen;
4125 }
4126 tmp = rb_str_new3(str);
4127 if (ascii_only) {
4128 rb_enc_associate(tmp, rb_usascii_encoding());
4129 }
4130 return tmp;
4131
4132 meta_found:
4133 tmp = rb_str_new(0, RSTRING_LEN(str)*2);
4134 if (ascii_only) {
4135 rb_enc_associate(tmp, rb_usascii_encoding());
4136 }
4137 else {
4138 rb_enc_copy(tmp, str);
4139 }
4140 t = RSTRING_PTR(tmp);
4141 /* copy upto metacharacter */
4142 const char *p = RSTRING_PTR(str);
4143 memcpy(t, p, s - p);
4144 t += s - p;
4145
4146 while (s < send) {
4147 c = rb_enc_ascget(s, send, &clen, enc);
4148 if (c == -1) {
4149 int n = mbclen(s, send, enc);
4150
4151 while (n--)
4152 *t++ = *s++;
4153 continue;
4154 }
4155 s += clen;
4156 switch (c) {
4157 case '[': case ']': case '{': case '}':
4158 case '(': case ')': case '|': case '-':
4159 case '*': case '.': case '\\':
4160 case '?': case '+': case '^': case '$':
4161 case '#':
4162 t += rb_enc_mbcput('\\', t, enc);
4163 break;
4164 case ' ':
4165 t += rb_enc_mbcput('\\', t, enc);
4166 t += rb_enc_mbcput(' ', t, enc);
4167 continue;
4168 case '\t':
4169 t += rb_enc_mbcput('\\', t, enc);
4170 t += rb_enc_mbcput('t', t, enc);
4171 continue;
4172 case '\n':
4173 t += rb_enc_mbcput('\\', t, enc);
4174 t += rb_enc_mbcput('n', t, enc);
4175 continue;
4176 case '\r':
4177 t += rb_enc_mbcput('\\', t, enc);
4178 t += rb_enc_mbcput('r', t, enc);
4179 continue;
4180 case '\f':
4181 t += rb_enc_mbcput('\\', t, enc);
4182 t += rb_enc_mbcput('f', t, enc);
4183 continue;
4184 case '\v':
4185 t += rb_enc_mbcput('\\', t, enc);
4186 t += rb_enc_mbcput('v', t, enc);
4187 continue;
4188 }
4189 t += rb_enc_mbcput(c, t, enc);
4190 }
4191 rb_str_resize(tmp, t - RSTRING_PTR(tmp));
4192 return tmp;
4193}
4194
4195
4196/*
4197 * call-seq:
4198 * Regexp.escape(string) -> new_string
4199 *
4200 * Returns a new string that escapes any characters
4201 * that have special meaning in a regular expression:
4202 *
4203 * s = Regexp.escape('\*?{}.') # => "\\\\\\*\\?\\{\\}\\."
4204 *
4205 * For any string +s+, this call returns a MatchData object:
4206 *
4207 * r = Regexp.new(Regexp.escape(s)) # => /\\\\\\\*\\\?\\\{\\\}\\\./
4208 * r.match(s) # => #<MatchData "\\\\\\*\\?\\{\\}\\.">
4209 *
4210 */
4211
4212static VALUE
4213rb_reg_s_quote(VALUE c, VALUE str)
4214{
4215 return rb_reg_quote(reg_operand(str, TRUE));
4216}
4217
4218int
4220{
4221 int options;
4222
4223 rb_reg_check(re);
4224 options = RREGEXP_PTR(re)->options & ARG_REG_OPTION_MASK;
4225 if (RBASIC(re)->flags & KCODE_FIXED) options |= ARG_ENCODING_FIXED;
4226 if (RBASIC(re)->flags & REG_ENCODING_NONE) options |= ARG_ENCODING_NONE;
4227 return options;
4228}
4229
4230static VALUE
4231rb_check_regexp_type(VALUE re)
4232{
4233 return rb_check_convert_type(re, T_REGEXP, "Regexp", "to_regexp");
4234}
4235
4236/*
4237 * call-seq:
4238 * Regexp.try_convert(object) -> regexp or nil
4239 *
4240 * Returns +object+ if it is a regexp:
4241 *
4242 * Regexp.try_convert(/re/) # => /re/
4243 *
4244 * Otherwise if +object+ responds to <tt>:to_regexp</tt>,
4245 * calls <tt>object.to_regexp</tt> and returns the result.
4246 *
4247 * Returns +nil+ if +object+ does not respond to <tt>:to_regexp</tt>.
4248 *
4249 * Regexp.try_convert('re') # => nil
4250 *
4251 * Raises an exception unless <tt>object.to_regexp</tt> returns a regexp.
4252 *
4253 */
4254static VALUE
4255rb_reg_s_try_convert(VALUE dummy, VALUE re)
4256{
4257 return rb_check_regexp_type(re);
4258}
4259
4260static VALUE
4261rb_reg_s_union(VALUE self, VALUE args0)
4262{
4263 long argc = RARRAY_LEN(args0);
4264
4265 if (argc == 0) {
4266 VALUE args[1];
4267 args[0] = rb_str_new2("(?!)");
4268 return rb_class_new_instance(1, args, rb_cRegexp);
4269 }
4270 else if (argc == 1) {
4271 VALUE arg = rb_ary_entry(args0, 0);
4272 VALUE re = rb_check_regexp_type(arg);
4273 if (!NIL_P(re))
4274 return re;
4275 else {
4276 VALUE quoted;
4277 quoted = rb_reg_s_quote(Qnil, arg);
4278 return rb_reg_new_str(quoted, 0);
4279 }
4280 }
4281 else {
4282 int i;
4283 VALUE source = rb_str_buf_new(0);
4284 rb_encoding *result_enc;
4285
4286 int has_asciionly = 0;
4287 rb_encoding *has_ascii_compat_fixed = 0;
4288 rb_encoding *has_ascii_incompat = 0;
4289
4290 for (i = 0; i < argc; i++) {
4291 volatile VALUE v;
4292 VALUE e = rb_ary_entry(args0, i);
4293
4294 if (0 < i)
4295 rb_str_buf_cat_ascii(source, "|");
4296
4297 v = rb_check_regexp_type(e);
4298 if (!NIL_P(v)) {
4299 rb_encoding *enc = rb_enc_get(v);
4300 if (!rb_enc_asciicompat(enc)) {
4301 if (!has_ascii_incompat)
4302 has_ascii_incompat = enc;
4303 else if (has_ascii_incompat != enc)
4304 rb_raise(rb_eArgError, "incompatible encodings: %s and %s",
4305 rb_enc_name(has_ascii_incompat), rb_enc_name(enc));
4306 }
4307 else if (rb_reg_fixed_encoding_p(v)) {
4308 if (!has_ascii_compat_fixed)
4309 has_ascii_compat_fixed = enc;
4310 else if (has_ascii_compat_fixed != enc)
4311 rb_raise(rb_eArgError, "incompatible encodings: %s and %s",
4312 rb_enc_name(has_ascii_compat_fixed), rb_enc_name(enc));
4313 }
4314 else {
4315 has_asciionly = 1;
4316 }
4317 v = rb_reg_str_with_term(v, -1);
4318 }
4319 else {
4320 rb_encoding *enc;
4321 StringValue(e);
4322 enc = rb_enc_get(e);
4323 if (!rb_enc_asciicompat(enc)) {
4324 if (!has_ascii_incompat)
4325 has_ascii_incompat = enc;
4326 else if (has_ascii_incompat != enc)
4327 rb_raise(rb_eArgError, "incompatible encodings: %s and %s",
4328 rb_enc_name(has_ascii_incompat), rb_enc_name(enc));
4329 }
4330 else if (rb_enc_str_asciionly_p(e)) {
4331 has_asciionly = 1;
4332 }
4333 else {
4334 if (!has_ascii_compat_fixed)
4335 has_ascii_compat_fixed = enc;
4336 else if (has_ascii_compat_fixed != enc)
4337 rb_raise(rb_eArgError, "incompatible encodings: %s and %s",
4338 rb_enc_name(has_ascii_compat_fixed), rb_enc_name(enc));
4339 }
4340 v = rb_reg_s_quote(Qnil, e);
4341 }
4342 if (has_ascii_incompat) {
4343 if (has_asciionly) {
4344 rb_raise(rb_eArgError, "ASCII incompatible encoding: %s",
4345 rb_enc_name(has_ascii_incompat));
4346 }
4347 if (has_ascii_compat_fixed) {
4348 rb_raise(rb_eArgError, "incompatible encodings: %s and %s",
4349 rb_enc_name(has_ascii_incompat), rb_enc_name(has_ascii_compat_fixed));
4350 }
4351 }
4352
4353 if (i == 0) {
4354 rb_enc_copy(source, v);
4355 }
4356 rb_str_append(source, v);
4357 }
4358
4359 if (has_ascii_incompat) {
4360 result_enc = has_ascii_incompat;
4361 }
4362 else if (has_ascii_compat_fixed) {
4363 result_enc = has_ascii_compat_fixed;
4364 }
4365 else {
4366 result_enc = rb_ascii8bit_encoding();
4367 }
4368
4369 rb_enc_associate(source, result_enc);
4370 return rb_class_new_instance(1, &source, rb_cRegexp);
4371 }
4372}
4373
4374/*
4375 * call-seq:
4376 * Regexp.union(*patterns) -> regexp
4377 * Regexp.union(array_of_patterns) -> regexp
4378 *
4379 * Returns a new regexp that is the union of the given patterns:
4380 *
4381 * r = Regexp.union(%w[cat dog]) # => /cat|dog/
4382 * r.match('cat') # => #<MatchData "cat">
4383 * r.match('dog') # => #<MatchData "dog">
4384 * r.match('cog') # => nil
4385 *
4386 * For each pattern that is a string, <tt>Regexp.new(pattern)</tt> is used:
4387 *
4388 * Regexp.union('penzance') # => /penzance/
4389 * Regexp.union('a+b*c') # => /a\+b\*c/
4390 * Regexp.union('skiing', 'sledding') # => /skiing|sledding/
4391 * Regexp.union(['skiing', 'sledding']) # => /skiing|sledding/
4392 *
4393 * For each pattern that is a regexp, it is used as is,
4394 * including its flags:
4395 *
4396 * Regexp.union(/foo/i, /bar/m, /baz/x)
4397 * # => /(?i-mx:foo)|(?m-ix:bar)|(?x-mi:baz)/
4398 * Regexp.union([/foo/i, /bar/m, /baz/x])
4399 * # => /(?i-mx:foo)|(?m-ix:bar)|(?x-mi:baz)/
4400 *
4401 * With no arguments, returns <tt>/(?!)/</tt>:
4402 *
4403 * Regexp.union # => /(?!)/
4404 *
4405 * If any regexp pattern contains captures, the behavior is unspecified.
4406 *
4407 */
4408static VALUE
4409rb_reg_s_union_m(VALUE self, VALUE args)
4410{
4411 VALUE v;
4412 if (RARRAY_LEN(args) == 1 &&
4413 !NIL_P(v = rb_check_array_type(rb_ary_entry(args, 0)))) {
4414 return rb_reg_s_union(self, v);
4415 }
4416 return rb_reg_s_union(self, args);
4417}
4418
4419/*
4420 * call-seq:
4421 * Regexp.linear_time?(re)
4422 * Regexp.linear_time?(string, options = 0)
4423 *
4424 * Returns +true+ if matching against <tt>re</tt> can be
4425 * done in linear time to the input string.
4426 *
4427 * Regexp.linear_time?(/re/) # => true
4428 *
4429 * Note that this is a property of the ruby interpreter, not of the argument
4430 * regular expression. Identical regexp can or cannot run in linear time
4431 * depending on your ruby binary. Neither forward nor backward compatibility
4432 * is guaranteed about the return value of this method. Our current algorithm
4433 * is (*1) but this is subject to change in the future. Alternative
4434 * implementations can also behave differently. They might always return
4435 * false for everything.
4436 *
4437 * (*1): https://doi.org/10.1109/SP40001.2021.00032
4438 *
4439 */
4440static VALUE
4441rb_reg_s_linear_time_p(int argc, VALUE *argv, VALUE self)
4442{
4443 struct reg_init_args args;
4444 VALUE re = reg_extract_args(argc, argv, &args);
4445
4446 if (NIL_P(re)) {
4447 re = reg_init_args(rb_reg_alloc(), args.str, args.enc, args.flags);
4448 }
4449
4450 return RBOOL(onig_check_linear_time(RREGEXP_PTR(re)));
4451}
4452
4453/* :nodoc: */
4454static VALUE
4455rb_reg_init_copy(VALUE copy, VALUE re)
4456{
4457 if (!OBJ_INIT_COPY(copy, re)) return copy;
4458 rb_reg_check(re);
4459 return reg_copy(copy, re);
4460}
4461
4462VALUE
4463rb_reg_regsub(VALUE str, VALUE src, struct re_registers *regs, VALUE regexp)
4464{
4465 VALUE val = 0;
4466 char *p, *s, *e;
4467 int no, clen;
4468 rb_encoding *str_enc = rb_enc_get(str);
4469 rb_encoding *src_enc = rb_enc_get(src);
4470 int acompat = rb_enc_asciicompat(str_enc);
4471 long n;
4472#define ASCGET(s,e,cl) (acompat ? (*(cl)=1,ISASCII((s)[0])?(s)[0]:-1) : rb_enc_ascget((s), (e), (cl), str_enc))
4473
4474 RSTRING_GETMEM(str, s, n);
4475 p = s;
4476 e = s + n;
4477
4478 while (s < e) {
4479 int c = ASCGET(s, e, &clen);
4480 char *ss;
4481
4482 if (c == -1) {
4483 s += mbclen(s, e, str_enc);
4484 continue;
4485 }
4486 ss = s;
4487 s += clen;
4488
4489 if (c != '\\' || s == e) continue;
4490
4491 if (!val) {
4492 val = rb_str_buf_new(ss-p);
4493 }
4494 rb_enc_str_buf_cat(val, p, ss-p, str_enc);
4495
4496 c = ASCGET(s, e, &clen);
4497 if (c == -1) {
4498 s += mbclen(s, e, str_enc);
4499 rb_enc_str_buf_cat(val, ss, s-ss, str_enc);
4500 p = s;
4501 continue;
4502 }
4503 s += clen;
4504
4505 p = s;
4506 switch (c) {
4507 case '1': case '2': case '3': case '4':
4508 case '5': case '6': case '7': case '8': case '9':
4509 if (!NIL_P(regexp) && onig_noname_group_capture_is_active(RREGEXP_PTR(regexp))) {
4510 no = c - '0';
4511 }
4512 else {
4513 continue;
4514 }
4515 break;
4516
4517 case 'k':
4518 if (s < e && ASCGET(s, e, &clen) == '<') {
4519 char *name, *name_end;
4520
4521 name_end = name = s + clen;
4522 while (name_end < e) {
4523 c = ASCGET(name_end, e, &clen);
4524 if (c == '>') break;
4525 name_end += c == -1 ? mbclen(name_end, e, str_enc) : clen;
4526 }
4527 if (name_end < e) {
4528 VALUE n = rb_str_subseq(str, (long)(name - RSTRING_PTR(str)),
4529 (long)(name_end - name));
4530 if ((no = NAME_TO_NUMBER(regs, regexp, n, name, name_end)) < 1) {
4531 name_to_backref_error(n);
4532 }
4533 p = s = name_end + clen;
4534 break;
4535 }
4536 else {
4537 rb_raise(rb_eRuntimeError, "invalid group name reference format");
4538 }
4539 }
4540
4541 rb_enc_str_buf_cat(val, ss, s-ss, str_enc);
4542 continue;
4543
4544 case '0':
4545 case '&':
4546 no = 0;
4547 break;
4548
4549 case '`':
4550 rb_enc_str_buf_cat(val, RSTRING_PTR(src), BEG(0), src_enc);
4551 continue;
4552
4553 case '\'':
4554 rb_enc_str_buf_cat(val, RSTRING_PTR(src)+END(0), RSTRING_LEN(src)-END(0), src_enc);
4555 continue;
4556
4557 case '+':
4558 no = regs->num_regs-1;
4559 while (BEG(no) == -1 && no > 0) no--;
4560 if (no == 0) continue;
4561 break;
4562
4563 case '\\':
4564 rb_enc_str_buf_cat(val, s-clen, clen, str_enc);
4565 continue;
4566
4567 default:
4568 rb_enc_str_buf_cat(val, ss, s-ss, str_enc);
4569 continue;
4570 }
4571
4572 if (no >= 0) {
4573 if (no >= regs->num_regs) continue;
4574 if (BEG(no) == -1) continue;
4575 rb_enc_str_buf_cat(val, RSTRING_PTR(src)+BEG(no), END(no)-BEG(no), src_enc);
4576 }
4577 }
4578
4579 if (!val) return str;
4580 if (p < e) {
4581 rb_enc_str_buf_cat(val, p, e-p, str_enc);
4582 }
4583
4584 return val;
4585}
4586
4587static VALUE
4588ignorecase_getter(ID _x, VALUE *_y)
4589{
4590 rb_category_warn(RB_WARN_CATEGORY_DEPRECATED, "variable $= is no longer effective");
4591 return Qfalse;
4592}
4593
4594static void
4595ignorecase_setter(VALUE val, ID id, VALUE *_)
4596{
4597 rb_category_warn(RB_WARN_CATEGORY_DEPRECATED, "variable $= is no longer effective; ignored");
4598}
4599
4600static VALUE
4601match_getter(void)
4602{
4603 VALUE match = rb_backref_get();
4604
4605 if (NIL_P(match)) return Qnil;
4606 rb_match_busy(match);
4607 return match;
4608}
4609
4610static VALUE
4611get_LAST_MATCH_INFO(ID _x, VALUE *_y)
4612{
4613 return match_getter();
4614}
4615
4616static void
4617match_setter(VALUE val, ID _x, VALUE *_y)
4618{
4619 if (!NIL_P(val)) {
4620 Check_Type(val, T_MATCH);
4621 }
4622 rb_backref_set(val);
4623}
4624
4625/*
4626 * call-seq:
4627 * Regexp.last_match -> matchdata or nil
4628 * Regexp.last_match(n) -> string or nil
4629 * Regexp.last_match(name) -> string or nil
4630 *
4631 * With no argument, returns the value of <tt>$~</tt>,
4632 * which is the result of the most recent pattern match
4633 * (see {Regexp global variables}[rdoc-ref:Regexp@Global+Variables]):
4634 *
4635 * /c(.)t/ =~ 'cat' # => 0
4636 * Regexp.last_match # => #<MatchData "cat" 1:"a">
4637 * /a/ =~ 'foo' # => nil
4638 * Regexp.last_match # => nil
4639 *
4640 * With non-negative integer argument +n+, returns the _n_th field in the
4641 * matchdata, if any, or nil if none:
4642 *
4643 * /c(.)t/ =~ 'cat' # => 0
4644 * Regexp.last_match(0) # => "cat"
4645 * Regexp.last_match(1) # => "a"
4646 * Regexp.last_match(2) # => nil
4647 *
4648 * With negative integer argument +n+, counts backwards from the last field:
4649 *
4650 * Regexp.last_match(-1) # => "a"
4651 *
4652 * With string or symbol argument +name+,
4653 * returns the string value for the named capture, if any:
4654 *
4655 * /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ =~ 'var = val'
4656 * Regexp.last_match # => #<MatchData "var = val" lhs:"var"rhs:"val">
4657 * Regexp.last_match(:lhs) # => "var"
4658 * Regexp.last_match('rhs') # => "val"
4659 * Regexp.last_match('foo') # Raises IndexError.
4660 *
4661 */
4662
4663static VALUE
4664rb_reg_s_last_match(int argc, VALUE *argv, VALUE _)
4665{
4666 if (rb_check_arity(argc, 0, 1) == 1) {
4667 VALUE match = rb_backref_get();
4668 int n;
4669 if (NIL_P(match)) return Qnil;
4670 n = match_backref_number(match, argv[0]);
4671 return rb_reg_nth_match(n, match);
4672 }
4673 return match_getter();
4674}
4675
4676static void
4677re_warn(const char *s)
4678{
4679 rb_warn("%s", s);
4680}
4681
4682// This function is periodically called during regexp matching
4683bool
4684rb_reg_timeout_p(regex_t *reg, void *end_time_)
4685{
4686 rb_hrtime_t *end_time = (rb_hrtime_t *)end_time_;
4687
4688 if (*end_time == 0) {
4689 // This is the first time to check interrupts;
4690 // just measure the current time and determine the end time
4691 // if timeout is set.
4692 rb_hrtime_t timelimit = reg->timelimit;
4693
4694 if (!timelimit) {
4695 // no per-object timeout.
4696 timelimit = rb_reg_match_time_limit;
4697 }
4698
4699 if (timelimit) {
4700 *end_time = rb_hrtime_add(timelimit, rb_hrtime_now());
4701 }
4702 else {
4703 // no timeout is set
4704 *end_time = RB_HRTIME_MAX;
4705 }
4706 }
4707 else {
4708 if (*end_time < rb_hrtime_now()) {
4709 // Timeout has exceeded
4710 return true;
4711 }
4712 }
4713
4714 return false;
4715}
4716
4717/*
4718 * call-seq:
4719 * Regexp.timeout -> float or nil
4720 *
4721 * It returns the current default timeout interval for Regexp matching in second.
4722 * +nil+ means no default timeout configuration.
4723 */
4724
4725static VALUE
4726rb_reg_s_timeout_get(VALUE dummy)
4727{
4728 double d = hrtime2double(rb_reg_match_time_limit);
4729 if (d == 0.0) return Qnil;
4730 return DBL2NUM(d);
4731}
4732
4733/*
4734 * call-seq:
4735 * Regexp.timeout = float or nil
4736 *
4737 * It sets the default timeout interval for Regexp matching in second.
4738 * +nil+ means no default timeout configuration.
4739 * This configuration is process-global. If you want to set timeout for
4740 * each Regexp, use +timeout+ keyword for <code>Regexp.new</code>.
4741 *
4742 * Regexp.timeout = 1
4743 * /^a*b?a*$/ =~ "a" * 100000 + "x" #=> regexp match timeout (RuntimeError)
4744 */
4745
4746static VALUE
4747rb_reg_s_timeout_set(VALUE dummy, VALUE timeout)
4748{
4749 rb_ractor_ensure_main_ractor("can not access Regexp.timeout from non-main Ractors");
4750
4751 set_timeout(&rb_reg_match_time_limit, timeout);
4752
4753 return timeout;
4754}
4755
4756/*
4757 * call-seq:
4758 * rxp.timeout -> float or nil
4759 *
4760 * It returns the timeout interval for Regexp matching in second.
4761 * +nil+ means no default timeout configuration.
4762 *
4763 * This configuration is per-object. The global configuration set by
4764 * Regexp.timeout= is ignored if per-object configuration is set.
4765 *
4766 * re = Regexp.new("^a*b?a*$", timeout: 1)
4767 * re.timeout #=> 1.0
4768 * re =~ "a" * 100000 + "x" #=> regexp match timeout (RuntimeError)
4769 */
4770
4771static VALUE
4772rb_reg_timeout_get(VALUE re)
4773{
4774 rb_reg_check(re);
4775 double d = hrtime2double(RREGEXP_PTR(re)->timelimit);
4776 if (d == 0.0) return Qnil;
4777 return DBL2NUM(d);
4778}
4779
4780/*
4781 * Document-class: RegexpError
4782 *
4783 * Raised when given an invalid regexp expression.
4784 *
4785 * Regexp.new("?")
4786 *
4787 * <em>raises the exception:</em>
4788 *
4789 * RegexpError: target of repeat operator is not specified: /?/
4790 */
4791
4792/*
4793 * Document-class: Regexp
4794 *
4795 * :include: doc/_regexp.rdoc
4796 */
4797
4798void
4799Init_Regexp(void)
4800{
4802
4803 onigenc_set_default_encoding(ONIG_ENCODING_ASCII);
4804 onig_set_warn_func(re_warn);
4805 onig_set_verb_warn_func(re_warn);
4806
4807 rb_define_virtual_variable("$~", get_LAST_MATCH_INFO, match_setter);
4808 rb_define_virtual_variable("$&", last_match_getter, 0);
4809 rb_define_virtual_variable("$`", prematch_getter, 0);
4810 rb_define_virtual_variable("$'", postmatch_getter, 0);
4811 rb_define_virtual_variable("$+", last_paren_match_getter, 0);
4812
4813 rb_gvar_ractor_local("$~");
4814 rb_gvar_ractor_local("$&");
4815 rb_gvar_ractor_local("$`");
4816 rb_gvar_ractor_local("$'");
4817 rb_gvar_ractor_local("$+");
4818
4819 rb_define_virtual_variable("$=", ignorecase_getter, ignorecase_setter);
4820
4821 rb_cRegexp = rb_define_class("Regexp", rb_cObject);
4822 rb_define_alloc_func(rb_cRegexp, rb_reg_s_alloc);
4824 rb_define_singleton_method(rb_cRegexp, "quote", rb_reg_s_quote, 1);
4825 rb_define_singleton_method(rb_cRegexp, "escape", rb_reg_s_quote, 1);
4826 rb_define_singleton_method(rb_cRegexp, "union", rb_reg_s_union_m, -2);
4827 rb_define_singleton_method(rb_cRegexp, "last_match", rb_reg_s_last_match, -1);
4828 rb_define_singleton_method(rb_cRegexp, "try_convert", rb_reg_s_try_convert, 1);
4829 rb_define_singleton_method(rb_cRegexp, "linear_time?", rb_reg_s_linear_time_p, -1);
4830
4831 rb_define_method(rb_cRegexp, "initialize", rb_reg_initialize_m, -1);
4832 rb_define_method(rb_cRegexp, "initialize_copy", rb_reg_init_copy, 1);
4833 rb_define_method(rb_cRegexp, "hash", rb_reg_hash, 0);
4834 rb_define_method(rb_cRegexp, "eql?", rb_reg_equal, 1);
4835 rb_define_method(rb_cRegexp, "==", rb_reg_equal, 1);
4836 rb_define_method(rb_cRegexp, "=~", rb_reg_match, 1);
4837 rb_define_method(rb_cRegexp, "===", rb_reg_eqq, 1);
4838 rb_define_method(rb_cRegexp, "~", rb_reg_match2, 0);
4839 rb_define_method(rb_cRegexp, "match", rb_reg_match_m, -1);
4840 rb_define_method(rb_cRegexp, "match?", rb_reg_match_m_p, -1);
4841 rb_define_method(rb_cRegexp, "to_s", rb_reg_to_s, 0);
4842 rb_define_method(rb_cRegexp, "inspect", rb_reg_inspect, 0);
4843 rb_define_method(rb_cRegexp, "source", rb_reg_source, 0);
4844 rb_define_method(rb_cRegexp, "casefold?", rb_reg_casefold_p, 0);
4845 rb_define_method(rb_cRegexp, "options", rb_reg_options_m, 0);
4846 rb_define_method(rb_cRegexp, "encoding", rb_obj_encoding, 0); /* in encoding.c */
4847 rb_define_method(rb_cRegexp, "fixed_encoding?", rb_reg_fixed_encoding_p, 0);
4848 rb_define_method(rb_cRegexp, "names", rb_reg_names, 0);
4849 rb_define_method(rb_cRegexp, "named_captures", rb_reg_named_captures, 0);
4850 rb_define_method(rb_cRegexp, "timeout", rb_reg_timeout_get, 0);
4851
4852 rb_eRegexpTimeoutError = rb_define_class_under(rb_cRegexp, "TimeoutError", rb_eRegexpError);
4853 rb_define_singleton_method(rb_cRegexp, "timeout", rb_reg_s_timeout_get, 0);
4854 rb_define_singleton_method(rb_cRegexp, "timeout=", rb_reg_s_timeout_set, 1);
4855
4856 /* see Regexp.options and Regexp.new */
4857 rb_define_const(rb_cRegexp, "IGNORECASE", INT2FIX(ONIG_OPTION_IGNORECASE));
4858 /* see Regexp.options and Regexp.new */
4859 rb_define_const(rb_cRegexp, "EXTENDED", INT2FIX(ONIG_OPTION_EXTEND));
4860 /* see Regexp.options and Regexp.new */
4861 rb_define_const(rb_cRegexp, "MULTILINE", INT2FIX(ONIG_OPTION_MULTILINE));
4862 /* see Regexp.options and Regexp.new */
4863 rb_define_const(rb_cRegexp, "FIXEDENCODING", INT2FIX(ARG_ENCODING_FIXED));
4864 /* see Regexp.options and Regexp.new */
4865 rb_define_const(rb_cRegexp, "NOENCODING", INT2FIX(ARG_ENCODING_NONE));
4866
4867 rb_global_variable(&reg_cache);
4868
4869 rb_cMatch = rb_define_class("MatchData", rb_cObject);
4870 rb_define_alloc_func(rb_cMatch, match_alloc);
4872 rb_undef_method(CLASS_OF(rb_cMatch), "allocate");
4873
4874 rb_define_method(rb_cMatch, "initialize_copy", match_init_copy, 1);
4875 rb_define_method(rb_cMatch, "regexp", match_regexp, 0);
4876 rb_define_method(rb_cMatch, "names", match_names, 0);
4877 rb_define_method(rb_cMatch, "size", match_size, 0);
4878 rb_define_method(rb_cMatch, "length", match_size, 0);
4879 rb_define_method(rb_cMatch, "offset", match_offset, 1);
4880 rb_define_method(rb_cMatch, "byteoffset", match_byteoffset, 1);
4881 rb_define_method(rb_cMatch, "bytebegin", match_bytebegin, 1);
4882 rb_define_method(rb_cMatch, "byteend", match_byteend, 1);
4883 rb_define_method(rb_cMatch, "begin", match_begin, 1);
4884 rb_define_method(rb_cMatch, "end", match_end, 1);
4885 rb_define_method(rb_cMatch, "match", match_nth, 1);
4886 rb_define_method(rb_cMatch, "match_length", match_nth_length, 1);
4887 rb_define_method(rb_cMatch, "to_a", match_to_a, 0);
4888 rb_define_method(rb_cMatch, "[]", match_aref, -1);
4889 rb_define_method(rb_cMatch, "captures", match_captures, 0);
4890 rb_define_alias(rb_cMatch, "deconstruct", "captures");
4891 rb_define_method(rb_cMatch, "named_captures", match_named_captures, -1);
4892 rb_define_method(rb_cMatch, "deconstruct_keys", match_deconstruct_keys, 1);
4893 rb_define_method(rb_cMatch, "values_at", match_values_at, -1);
4894 rb_define_method(rb_cMatch, "pre_match", rb_reg_match_pre, 0);
4895 rb_define_method(rb_cMatch, "post_match", rb_reg_match_post, 0);
4896 rb_define_method(rb_cMatch, "to_s", match_to_s, 0);
4897 rb_define_method(rb_cMatch, "inspect", match_inspect, 0);
4898 rb_define_method(rb_cMatch, "string", match_string, 0);
4899 rb_define_method(rb_cMatch, "hash", match_hash, 0);
4900 rb_define_method(rb_cMatch, "eql?", match_equal, 1);
4901 rb_define_method(rb_cMatch, "==", match_equal, 1);
4902}
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
static bool rb_enc_isprint(OnigCodePoint c, rb_encoding *enc)
Identical to rb_isprint(), except it additionally takes an encoding.
Definition ctype.h:180
VALUE rb_define_class(const char *name, VALUE super)
Defines a top-level class.
Definition class.c:980
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
Definition class.c:1013
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
Definition class.c:2348
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
Definition class.c:2169
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
Definition class.c:2638
int rb_block_given_p(void)
Determines if the current method is given a block.
Definition eval.c:936
int rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *values)
Keyword argument deconstructor.
Definition class.c:2427
#define rb_str_new2
Old name of rb_str_new_cstr.
Definition string.h:1675
#define ENC_CODERANGE_7BIT
Old name of RUBY_ENC_CODERANGE_7BIT.
Definition coderange.h:180
#define rb_str_buf_cat2
Old name of rb_usascii_str_new_cstr.
Definition string.h:1682
#define REALLOC_N
Old name of RB_REALLOC_N.
Definition memory.h:403
#define OBJ_INIT_COPY(obj, orig)
Old name of RB_OBJ_INIT_COPY.
Definition object.h:41
#define ISSPACE
Old name of rb_isspace.
Definition ctype.h:88
#define T_STRING
Old name of RUBY_T_STRING.
Definition value_type.h:78
#define ENC_CODERANGE_CLEAN_P(cr)
Old name of RB_ENC_CODERANGE_CLEAN_P.
Definition coderange.h:183
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define rb_str_buf_new2
Old name of rb_str_buf_new_cstr.
Definition string.h:1679
#define ENC_CODERANGE(obj)
Old name of RB_ENC_CODERANGE.
Definition coderange.h:184
#define CLASS_OF
Old name of rb_class_of.
Definition globals.h:203
#define ENC_CODERANGE_UNKNOWN
Old name of RUBY_ENC_CODERANGE_UNKNOWN.
Definition coderange.h:179
#define ENCODING_GET(obj)
Old name of RB_ENCODING_GET.
Definition encoding.h:109
#define LONG2FIX
Old name of RB_INT2FIX.
Definition long.h:49
#define FIX2INT
Old name of RB_FIX2INT.
Definition int.h:41
#define NUM2DBL
Old name of rb_num2dbl.
Definition double.h:27
#define rb_str_new3
Old name of rb_str_new_shared.
Definition string.h:1676
#define MBCLEN_CHARFOUND_LEN(ret)
Old name of ONIGENC_MBCLEN_CHARFOUND_LEN.
Definition encoding.h:517
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
Definition fl_type.h:132
#define FL_SET
Old name of RB_FL_SET.
Definition fl_type.h:129
#define LONG2NUM
Old name of RB_LONG2NUM.
Definition long.h:50
#define rb_exc_new3
Old name of rb_exc_new_str.
Definition error.h:38
#define MBCLEN_INVALID_P(ret)
Old name of ONIGENC_MBCLEN_INVALID_P.
Definition encoding.h:518
#define Qtrue
Old name of RUBY_Qtrue.
#define ST2FIX
Old name of RB_ST2FIX.
Definition st_data_t.h:33
#define MBCLEN_NEEDMORE_P(ret)
Old name of ONIGENC_MBCLEN_NEEDMORE_P.
Definition encoding.h:519
#define NUM2INT
Old name of RB_NUM2INT.
Definition int.h:44
#define INT2NUM
Old name of RB_INT2NUM.
Definition int.h:43
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define ENC_CODERANGE_BROKEN
Old name of RUBY_ENC_CODERANGE_BROKEN.
Definition coderange.h:182
#define T_ARRAY
Old name of RUBY_T_ARRAY.
Definition value_type.h:56
#define scan_hex(s, l, e)
Old name of ruby_scan_hex.
Definition util.h:108
#define NIL_P
Old name of RB_NIL_P.
#define MBCLEN_CHARFOUND_P(ret)
Old name of ONIGENC_MBCLEN_CHARFOUND_P.
Definition encoding.h:516
#define FL_WB_PROTECTED
Old name of RUBY_FL_WB_PROTECTED.
Definition fl_type.h:59
#define T_SYMBOL
Old name of RUBY_T_SYMBOL.
Definition value_type.h:80
#define DBL2NUM
Old name of rb_float_new.
Definition double.h:29
#define T_MATCH
Old name of RUBY_T_MATCH.
Definition value_type.h:69
#define FL_TEST
Old name of RB_FL_TEST.
Definition fl_type.h:131
#define NUM2LONG
Old name of RB_NUM2LONG.
Definition long.h:51
#define FL_UNSET
Old name of RB_FL_UNSET.
Definition fl_type.h:133
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define scan_oct(s, l, e)
Old name of ruby_scan_oct.
Definition util.h:85
#define rb_ary_new2
Old name of rb_ary_new_capa.
Definition array.h:657
#define FL_SET_RAW
Old name of RB_FL_SET_RAW.
Definition fl_type.h:130
#define rb_str_new4
Old name of rb_str_new_frozen.
Definition string.h:1677
#define SYMBOL_P
Old name of RB_SYMBOL_P.
Definition value_type.h:88
#define T_REGEXP
Old name of RUBY_T_REGEXP.
Definition value_type.h:77
void rb_category_warn(rb_warning_category_t category, const char *fmt,...)
Identical to rb_category_warning(), except it reports unless $VERBOSE is nil.
Definition error.c:476
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
Definition eval.c:675
VALUE rb_eStandardError
StandardError exception.
Definition error.c:1427
VALUE rb_eRegexpError
RegexpError exception.
Definition re.c:32
#define ruby_verbose
This variable controls whether the interpreter is in debug mode.
Definition error.h:475
VALUE rb_eTypeError
TypeError exception.
Definition error.c:1430
VALUE rb_eEncCompatError
Encoding::CompatibilityError exception.
Definition error.c:1437
VALUE rb_eRuntimeError
RuntimeError exception.
Definition error.c:1428
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
Definition error.c:466
VALUE rb_eIndexError
IndexError exception.
Definition error.c:1432
@ RB_WARN_CATEGORY_DEPRECATED
Warning is for deprecated features.
Definition error.h:48
VALUE rb_obj_reveal(VALUE obj, VALUE klass)
Make a hidden object visible again.
Definition object.c:113
VALUE rb_check_convert_type(VALUE val, int type, const char *name, const char *mid)
Identical to rb_convert_type(), except it returns RUBY_Qnil instead of raising exceptions,...
Definition object.c:3119
VALUE rb_any_to_s(VALUE obj)
Generates a textual representation of the given object.
Definition object.c:669
VALUE rb_class_new_instance(int argc, const VALUE *argv, VALUE klass)
Allocates, then initialises an instance of the given class.
Definition object.c:2138
VALUE rb_cMatch
MatchData class.
Definition re.c:967
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
Definition object.c:104
VALUE rb_class_new_instance_pass_kw(int argc, const VALUE *argv, VALUE klass)
Identical to rb_class_new_instance(), except it passes the passed keywords if any to the #initialize ...
Definition object.c:2115
VALUE rb_cRegexp
Regexp class.
Definition re.c:2661
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
Definition object.c:247
VALUE rb_obj_freeze(VALUE obj)
Just calls rb_obj_freeze_inline() inside.
Definition object.c:1260
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
Definition gc.h:603
Encoding relates APIs.
static char * rb_enc_left_char_head(const char *s, const char *p, const char *e, rb_encoding *enc)
Queries the left boundary of a character.
Definition encoding.h:683
int rb_char_to_option_kcode(int c, int *option, int *kcode)
Converts a character option to its encoding.
Definition re.c:333
static int rb_enc_mbmaxlen(rb_encoding *enc)
Queries the maximum number of bytes that the passed encoding needs to represent a character.
Definition encoding.h:447
VALUE rb_enc_reg_new(const char *ptr, long len, rb_encoding *enc, int opts)
Identical to rb_reg_new(), except it additionally takes an encoding.
Definition re.c:3463
int rb_enc_str_coderange(VALUE str)
Scans the passed string to collect its code range.
Definition string.c:909
long rb_memsearch(const void *x, long m, const void *y, long n, rb_encoding *enc)
Looks for the passed string in the passed buffer.
Definition re.c:252
long rb_enc_strlen(const char *head, const char *tail, rb_encoding *enc)
Counts the number of characters of the passed string, according to the passed encoding.
Definition string.c:2266
VALUE rb_enc_str_buf_cat(VALUE str, const char *ptr, long len, rb_encoding *enc)
Identical to rb_str_cat(), except it additionally takes an encoding.
Definition string.c:3630
int rb_enc_str_asciionly_p(VALUE str)
Queries if the passed string is "ASCII only".
Definition string.c:928
long rb_str_coderange_scan_restartable(const char *str, const char *end, rb_encoding *enc, int *cr)
Scans the passed string until it finds something odd.
Definition string.c:793
VALUE rb_str_encode(VALUE str, VALUE to, int ecflags, VALUE ecopts)
Converts the contents of the passed string from its encoding to the passed one.
Definition transcode.c:2914
#define RGENGC_WB_PROTECTED_MATCH
This is a compile-time flag to enable/disable write barrier for struct RMatch.
Definition gc.h:512
#define RGENGC_WB_PROTECTED_REGEXP
This is a compile-time flag to enable/disable write barrier for struct RRegexp.
Definition gc.h:501
int rb_uv_to_utf8(char buf[6], unsigned long uv)
Encodes a Unicode codepoint into its UTF-8 representation.
Definition pack.c:1601
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
Definition error.h:284
VALUE rb_backref_get(void)
Queries the last match, or Regexp.last_match, or the $~.
Definition vm.c:1836
VALUE rb_lastline_get(void)
Queries the last line, or the $_.
Definition vm.c:1848
void rb_backref_set(VALUE md)
Updates $~.
Definition vm.c:1842
VALUE rb_range_beg_len(VALUE range, long *begp, long *lenp, long len, int err)
Deconstructs a numerical range.
Definition range.c:1926
int rb_reg_backref_number(VALUE match, VALUE backref)
Queries the index of the given named capture.
Definition re.c:1235
int rb_reg_options(VALUE re)
Queries the options of the passed regular expression.
Definition re.c:4219
VALUE rb_reg_last_match(VALUE md)
This just returns the argument, stringified.
Definition re.c:1951
VALUE rb_reg_match(VALUE re, VALUE str)
This is the match operator.
Definition re.c:3716
void rb_match_busy(VALUE md)
Asserts that the given MatchData is "occupied".
Definition re.c:1489
VALUE rb_reg_nth_match(int n, VALUE md)
Queries the nth captured substring.
Definition re.c:1926
VALUE rb_reg_match_post(VALUE md)
The portion of the original string after the given match.
Definition re.c:2008
VALUE rb_reg_nth_defined(int n, VALUE md)
Identical to rb_reg_nth_match(), except it just returns Boolean.
Definition re.c:1909
VALUE rb_reg_match_pre(VALUE md)
The portion of the original string before the given match.
Definition re.c:1975
VALUE rb_reg_new_str(VALUE src, int opts)
Identical to rb_reg_new(), except it takes the expression in Ruby's string instead of C's.
Definition re.c:3423
VALUE rb_reg_match_last(VALUE md)
The portion of the original string that captured at the very last.
Definition re.c:2041
VALUE rb_reg_match2(VALUE re)
Identical to rb_reg_match(), except it matches against rb_lastline_get() (or, the $_).
Definition re.c:3771
VALUE rb_reg_new(const char *src, long len, int opts)
Creates a new Regular expression.
Definition re.c:3477
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
Definition string.h:942
#define rb_hash_end(h)
Just another name of st_hash_end.
Definition string.h:945
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
Definition string.c:3695
long rb_str_offset(VALUE str, long pos)
"Inverse" of rb_str_sublen().
Definition string.c:2973
VALUE rb_str_subseq(VALUE str, long beg, long len)
Identical to rb_str_substr(), except the numbers are interpreted as byte offsets instead of character...
Definition string.c:3070
st_index_t rb_memhash(const void *ptr, long len)
This is a universal hash function.
Definition random.c:1752
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
Definition string.h:1498
#define rb_str_buf_cat
Just another name of rb_str_cat.
Definition string.h:1681
VALUE rb_str_dup(VALUE str)
Duplicates a string.
Definition string.c:1933
st_index_t rb_str_hash(VALUE str)
Calculates a hash value of a string.
Definition string.c:4050
char * rb_str_subpos(VALUE str, long beg, long *len)
Identical to rb_str_substr(), except it returns a C's string instead of Ruby's.
Definition string.c:3078
VALUE rb_str_buf_append(VALUE dst, VALUE src)
Identical to rb_str_cat_cstr(), except it takes Ruby's string instead of C's.
Definition string.c:3661
long rb_str_sublen(VALUE str, long pos)
Byte offset to character offset conversion.
Definition string.c:3020
VALUE rb_str_equal(VALUE str1, VALUE str2)
Equality of two strings.
Definition string.c:4166
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
Definition random.c:1746
VALUE rb_str_inspect(VALUE str)
Generates a "readable" version of the receiver.
Definition string.c:7245
VALUE rb_str_buf_cat_ascii(VALUE dst, const char *src)
Identical to rb_str_cat_cstr(), except it additionally assumes the source string be a NUL terminated ...
Definition string.c:3637
VALUE rb_check_string_type(VALUE obj)
Try converting an object to its stringised representation using its to_str method,...
Definition string.c:2867
VALUE rb_str_buf_new(long capa)
Allocates a "string buffer".
Definition string.c:1660
VALUE rb_str_length(VALUE)
Identical to rb_str_strlen(), except it returns the value in rb_cInteger.
Definition string.c:2369
VALUE rb_str_intern(VALUE str)
Identical to rb_to_symbol(), except it assumes the receiver being an instance of RString.
Definition symbol.c:894
VALUE rb_class_path(VALUE mod)
Identical to rb_mod_name(), except it returns #<Class: ...> style inspection for anonymous modules.
Definition variable.c:373
void rb_define_alloc_func(VALUE klass, rb_alloc_func_t func)
Sets the allocator function of a class.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
Definition symbol.h:284
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
Definition symbol.c:986
int len
Length of the buffer.
Definition io.h:8
long rb_reg_search(VALUE re, VALUE str, long pos, int dir)
Runs the passed regular expression over the passed string.
Definition re.c:1865
regex_t * rb_reg_prepare_re(VALUE re, VALUE str)
Exercises various checks and preprocesses so that the given regular expression can be applied to the ...
Definition re.c:1636
long rb_reg_adjust_startpos(VALUE re, VALUE str, long pos, int dir)
Tell us if this is a wrong idea, but it seems this function has no usage at all.
Definition re.c:1740
OnigPosition rb_reg_onig_match(VALUE re, VALUE str, OnigPosition(*match)(regex_t *reg, VALUE str, struct re_registers *regs, void *args), void *args, struct re_registers *regs)
Runs a regular expression match using function match.
Definition re.c:1704
VALUE rb_reg_regcomp(VALUE str)
Creates a new instance of rb_cRegexp.
Definition re.c:3500
VALUE rb_reg_quote(VALUE str)
Escapes any characters that would have special meaning in a regular expression.
Definition re.c:4099
VALUE rb_reg_regsub(VALUE repl, VALUE src, struct re_registers *regs, VALUE rexp)
Substitution.
Definition re.c:4463
int rb_reg_region_copy(struct re_registers *dst, const struct re_registers *src)
Duplicates a match data.
Definition re.c:984
VALUE rb_yield(VALUE val)
Yields the block.
Definition vm_eval.c:1354
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
Definition memory.h:372
#define ALLOCA_N(type, n)
Definition memory.h:292
#define MEMZERO(p, type, n)
Handy macro to erase a region of memory.
Definition memory.h:360
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
void rb_define_virtual_variable(const char *q, type *w, void_type *e)
Define a function-backended global variable.
#define RARRAY_LEN
Just another name of rb_array_len.
Definition rarray.h:51
#define RARRAY_AREF(a, i)
Definition rarray.h:403
#define RBASIC(obj)
Convenient casting macro.
Definition rbasic.h:40
#define RMATCH(obj)
Convenient casting macro.
Definition rmatch.h:37
static struct re_registers * RMATCH_REGS(VALUE match)
Queries the raw re_registers.
Definition rmatch.h:138
#define RREGEXP(obj)
Convenient casting macro.
Definition rregexp.h:37
static VALUE RREGEXP_SRC(VALUE rexp)
Convenient getter function.
Definition rregexp.h:103
#define RREGEXP_PTR(obj)
Convenient accessor macro.
Definition rregexp.h:45
static long RREGEXP_SRC_LEN(VALUE rexp)
Convenient getter function.
Definition rregexp.h:144
static char * RREGEXP_SRC_PTR(VALUE rexp)
Convenient getter function.
Definition rregexp.h:125
#define StringValue(v)
Ensures that the parameter object is a String.
Definition rstring.h:66
static char * RSTRING_END(VALUE str)
Queries the end of the contents pointer of the string.
Definition rstring.h:442
#define RSTRING_GETMEM(str, ptrvar, lenvar)
Convenient macro to obtain the contents and length at once.
Definition rstring.h:488
VALUE rb_str_to_str(VALUE obj)
Identical to rb_check_string_type(), except it raises exceptions in case of conversion failures.
Definition string.c:1721
#define StringValueCStr(v)
Identical to StringValuePtr, except it additionally checks for the contents for viability as a C stri...
Definition rstring.h:89
#define RTEST
This is an old name of RB_TEST.
#define _(args)
This was a transition path from K&R to ANSI.
Definition stdarg.h:35
MEMO.
Definition imemo.h:105
VALUE flags
Per-object flags.
Definition rbasic.h:75
Regular expression execution context.
Definition rmatch.h:96
VALUE regexp
The expression of this match.
Definition rmatch.h:109
VALUE str
The target string that the match was made against.
Definition rmatch.h:104
Ruby's regular expression.
Definition rregexp.h:60
struct RBasic basic
Basic part, including flags and class.
Definition rregexp.h:63
const VALUE src
Source code of this expression.
Definition rregexp.h:74
unsigned long usecnt
Reference count.
Definition rregexp.h:90
struct re_pattern_buffer * ptr
The pattern buffer.
Definition rregexp.h:71
Definition re.c:994
Represents a match.
Definition rmatch.h:71
struct rmatch_offset * char_offset
Capture group offsets, in C array.
Definition rmatch.h:79
int char_offset_num_allocated
Number of rmatch_offset that ::rmatch::char_offset holds.
Definition rmatch.h:82
struct re_registers regs
"Registers" of a match.
Definition rmatch.h:76
Represents the region of a capture group.
Definition rmatch.h:65
long beg
Beginning of a group.
Definition rmatch.h:66
long end
End of a group.
Definition rmatch.h:67
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
#define SIZEOF_VALUE
Identical to sizeof(VALUE), except it is a macro that can also be used inside of preprocessor directi...
Definition value.h:69
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
static void Check_Type(VALUE v, enum ruby_value_type t)
Identical to RB_TYPE_P(), except it raises exceptions on predication failure.
Definition value_type.h:433
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376