1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
|
/*
$Id$
Copyright (c) 1999-2006 Minero Aoki
This program is free software.
You can redistribute this program under the terms of the Ruby's or 2-clause
BSD License. For details, see the COPYING and LICENSE.txt files.
*/
#include "ruby/ruby.h"
#include "ruby/re.h"
#include "ruby/encoding.h"
#ifdef RUBY_EXTCONF_H
# include RUBY_EXTCONF_H
#endif
#ifdef HAVE_ONIG_REGION_MEMSIZE
extern size_t onig_region_memsize(const struct re_registers *regs);
#endif
#include <stdbool.h>
#define STRSCAN_VERSION "3.1.4.dev"
/* =======================================================================
Data Type Definitions
======================================================================= */
static VALUE StringScanner;
static VALUE ScanError;
static ID id_byteslice;
static int usascii_encindex, utf8_encindex, binary_encindex;
struct strscanner
{
/* multi-purpose flags */
unsigned long flags;
#define FLAG_MATCHED (1 << 0)
/* the string to scan */
VALUE str;
/* scan pointers */
long prev; /* legal only when MATCHED_P(s) */
long curr; /* always legal */
/* the regexp register; legal only when MATCHED_P(s) */
struct re_registers regs;
/* regexp used for last scan */
VALUE regex;
/* anchor mode */
bool fixed_anchor_p;
};
#define MATCHED_P(s) ((s)->flags & FLAG_MATCHED)
#define MATCHED(s) ((s)->flags |= FLAG_MATCHED)
#define CLEAR_MATCHED(s) ((s)->flags &= ~FLAG_MATCHED)
#define CLEAR_NAMED_CAPTURES(s) ((s)->regex = Qnil)
#define CLEAR_MATCH_STATUS(s) do {\
CLEAR_MATCHED(s);\
CLEAR_NAMED_CAPTURES(s);\
} while (0)
#define S_PBEG(s) (RSTRING_PTR((s)->str))
#define S_LEN(s) (RSTRING_LEN((s)->str))
#define S_PEND(s) (S_PBEG(s) + S_LEN(s))
#define CURPTR(s) (S_PBEG(s) + (s)->curr)
#define S_RESTLEN(s) (S_LEN(s) - (s)->curr)
#define EOS_P(s) ((s)->curr >= RSTRING_LEN(p->str))
#define GET_SCANNER(obj,var) do {\
(var) = check_strscan(obj);\
if (NIL_P((var)->str)) rb_raise(rb_eArgError, "uninitialized StringScanner object");\
} while (0)
/* =======================================================================
Function Prototypes
======================================================================= */
static inline long minl _((const long n, const long x));
static VALUE extract_range _((struct strscanner *p, long beg_i, long end_i));
static VALUE extract_beg_len _((struct strscanner *p, long beg_i, long len));
static struct strscanner *check_strscan _((VALUE obj));
static void strscan_mark _((void *p));
static void strscan_free _((void *p));
static size_t strscan_memsize _((const void *p));
static VALUE strscan_s_allocate _((VALUE klass));
static VALUE strscan_initialize _((int argc, VALUE *argv, VALUE self));
static VALUE strscan_init_copy _((VALUE vself, VALUE vorig));
static VALUE strscan_s_mustc _((VALUE self));
static VALUE strscan_terminate _((VALUE self));
static VALUE strscan_clear _((VALUE self));
static VALUE strscan_get_string _((VALUE self));
static VALUE strscan_set_string _((VALUE self, VALUE str));
static VALUE strscan_concat _((VALUE self, VALUE str));
static VALUE strscan_get_pos _((VALUE self));
static VALUE strscan_set_pos _((VALUE self, VALUE pos));
static VALUE strscan_do_scan _((VALUE self, VALUE regex,
int succptr, int getstr, int headonly));
static VALUE strscan_scan _((VALUE self, VALUE re));
static VALUE strscan_match_p _((VALUE self, VALUE re));
static VALUE strscan_skip _((VALUE self, VALUE re));
static VALUE strscan_check _((VALUE self, VALUE re));
static VALUE strscan_scan_full _((VALUE self, VALUE re,
VALUE succp, VALUE getp));
static VALUE strscan_scan_until _((VALUE self, VALUE re));
static VALUE strscan_skip_until _((VALUE self, VALUE re));
static VALUE strscan_check_until _((VALUE self, VALUE re));
static VALUE strscan_search_full _((VALUE self, VALUE re,
VALUE succp, VALUE getp));
static void adjust_registers_to_matched _((struct strscanner *p));
static VALUE strscan_getch _((VALUE self));
static VALUE strscan_get_byte _((VALUE self));
static VALUE strscan_getbyte _((VALUE self));
static VALUE strscan_peek _((VALUE self, VALUE len));
static VALUE strscan_peep _((VALUE self, VALUE len));
static VALUE strscan_scan_base10_integer _((VALUE self));
static VALUE strscan_unscan _((VALUE self));
static VALUE strscan_bol_p _((VALUE self));
static VALUE strscan_eos_p _((VALUE self));
static VALUE strscan_empty_p _((VALUE self));
static VALUE strscan_rest_p _((VALUE self));
static VALUE strscan_matched_p _((VALUE self));
static VALUE strscan_matched _((VALUE self));
static VALUE strscan_matched_size _((VALUE self));
static VALUE strscan_aref _((VALUE self, VALUE idx));
static VALUE strscan_pre_match _((VALUE self));
static VALUE strscan_post_match _((VALUE self));
static VALUE strscan_rest _((VALUE self));
static VALUE strscan_rest_size _((VALUE self));
static VALUE strscan_inspect _((VALUE self));
static VALUE inspect1 _((struct strscanner *p));
static VALUE inspect2 _((struct strscanner *p));
/* =======================================================================
Utils
======================================================================= */
static VALUE
str_new(struct strscanner *p, const char *ptr, long len)
{
VALUE str = rb_str_new(ptr, len);
rb_enc_copy(str, p->str);
return str;
}
static inline long
minl(const long x, const long y)
{
return (x < y) ? x : y;
}
static VALUE
extract_range(struct strscanner *p, long beg_i, long end_i)
{
if (beg_i > S_LEN(p)) return Qnil;
end_i = minl(end_i, S_LEN(p));
return str_new(p, S_PBEG(p) + beg_i, end_i - beg_i);
}
static VALUE
extract_beg_len(struct strscanner *p, long beg_i, long len)
{
if (beg_i > S_LEN(p)) return Qnil;
len = minl(len, S_LEN(p) - beg_i);
return str_new(p, S_PBEG(p) + beg_i, len);
}
/* =======================================================================
Constructor
======================================================================= */
static void
strscan_mark(void *ptr)
{
struct strscanner *p = ptr;
rb_gc_mark(p->str);
rb_gc_mark(p->regex);
}
static void
strscan_free(void *ptr)
{
struct strscanner *p = ptr;
onig_region_free(&(p->regs), 0);
ruby_xfree(p);
}
static size_t
strscan_memsize(const void *ptr)
{
const struct strscanner *p = ptr;
size_t size = sizeof(*p) - sizeof(p->regs);
#ifdef HAVE_ONIG_REGION_MEMSIZE
size += onig_region_memsize(&p->regs);
#endif
return size;
}
static const rb_data_type_t strscanner_type = {
"StringScanner",
{strscan_mark, strscan_free, strscan_memsize},
0, 0, RUBY_TYPED_FREE_IMMEDIATELY
};
static VALUE
strscan_s_allocate(VALUE klass)
{
struct strscanner *p;
VALUE obj = TypedData_Make_Struct(klass, struct strscanner, &strscanner_type, p);
CLEAR_MATCH_STATUS(p);
onig_region_init(&(p->regs));
p->str = Qnil;
return obj;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* StringScanner.new(string, fixed_anchor: false) -> string_scanner
*
* Returns a new `StringScanner` object whose [stored string][1]
* is the given `string`;
* sets the [fixed-anchor property][10]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.string # => "foobarbaz"
* scanner.fixed_anchor? # => false
* put_situation(scanner)
* # Situation:
* # pos: 0
* # charpos: 0
* # rest: "foobarbaz"
* # rest_size: 9
* ```
*
*/
static VALUE
strscan_initialize(int argc, VALUE *argv, VALUE self)
{
struct strscanner *p;
VALUE str, options;
p = check_strscan(self);
rb_scan_args(argc, argv, "11", &str, &options);
options = rb_check_hash_type(options);
if (!NIL_P(options)) {
VALUE fixed_anchor;
ID keyword_ids[1];
keyword_ids[0] = rb_intern("fixed_anchor");
rb_get_kwargs(options, keyword_ids, 0, 1, &fixed_anchor);
if (fixed_anchor == Qundef) {
p->fixed_anchor_p = false;
}
else {
p->fixed_anchor_p = RTEST(fixed_anchor);
}
}
else {
p->fixed_anchor_p = false;
}
StringValue(str);
p->str = str;
return self;
}
static struct strscanner *
check_strscan(VALUE obj)
{
return rb_check_typeddata(obj, &strscanner_type);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* dup -> shallow_copy
*
* Returns a shallow copy of `self`;
* the [stored string][1] in the copy is the same string as in `self`.
*/
static VALUE
strscan_init_copy(VALUE vself, VALUE vorig)
{
struct strscanner *self, *orig;
self = check_strscan(vself);
orig = check_strscan(vorig);
if (self != orig) {
self->flags = orig->flags;
self->str = orig->str;
self->prev = orig->prev;
self->curr = orig->curr;
if (rb_reg_region_copy(&self->regs, &orig->regs))
rb_memerror();
RB_GC_GUARD(vorig);
}
return vself;
}
/* =======================================================================
Instance Methods
======================================================================= */
/*
* call-seq:
* StringScanner.must_C_version -> self
*
* Returns +self+; defined for backward compatibility.
*/
/* :nodoc: */
static VALUE
strscan_s_mustc(VALUE self)
{
return self;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* reset -> self
*
* Sets both [byte position][2] and [character position][7] to zero,
* and clears [match values][9];
* returns +self+:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.exist?(/bar/) # => 6
* scanner.reset # => #<StringScanner 0/9 @ "fooba...">
* put_situation(scanner)
* # Situation:
* # pos: 0
* # charpos: 0
* # rest: "foobarbaz"
* # rest_size: 9
* # => nil
* match_values_cleared?(scanner) # => true
* ```
*
*/
static VALUE
strscan_reset(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
p->curr = 0;
CLEAR_MATCH_STATUS(p);
return self;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/terminate.md
*/
static VALUE
strscan_terminate(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
p->curr = S_LEN(p);
CLEAR_MATCH_STATUS(p);
return self;
}
/*
* call-seq:
* clear -> self
*
* This method is obsolete; use the equivalent method StringScanner#terminate.
*/
/* :nodoc: */
static VALUE
strscan_clear(VALUE self)
{
rb_warning("StringScanner#clear is obsolete; use #terminate instead");
return strscan_terminate(self);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* string -> stored_string
*
* Returns the [stored string][1]:
*
* ```rb
* scanner = StringScanner.new('foobar')
* scanner.string # => "foobar"
* scanner.concat('baz')
* scanner.string # => "foobarbaz"
* ```
*
*/
static VALUE
strscan_get_string(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
return p->str;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* string = other_string -> other_string
*
* Replaces the [stored string][1] with the given `other_string`:
*
* - Sets both [positions][11] to zero.
* - Clears [match values][9].
* - Returns `other_string`.
*
* ```rb
* scanner = StringScanner.new('foobar')
* scanner.scan(/foo/)
* put_situation(scanner)
* # Situation:
* # pos: 3
* # charpos: 3
* # rest: "bar"
* # rest_size: 3
* match_values_cleared?(scanner) # => false
*
* scanner.string = 'baz' # => "baz"
* put_situation(scanner)
* # Situation:
* # pos: 0
* # charpos: 0
* # rest: "baz"
* # rest_size: 3
* match_values_cleared?(scanner) # => true
* ```
*
*/
static VALUE
strscan_set_string(VALUE self, VALUE str)
{
struct strscanner *p = check_strscan(self);
StringValue(str);
p->str = str;
p->curr = 0;
CLEAR_MATCH_STATUS(p);
return str;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* concat(more_string) -> self
*
* - Appends the given `more_string`
* to the [stored string][1].
* - Returns `self`.
* - Does not affect the [positions][11]
* or [match values][9].
*
*
* ```rb
* scanner = StringScanner.new('foo')
* scanner.string # => "foo"
* scanner.terminate
* scanner.concat('barbaz') # => #<StringScanner 3/9 "foo" @ "barba...">
* scanner.string # => "foobarbaz"
* put_situation(scanner)
* # Situation:
* # pos: 3
* # charpos: 3
* # rest: "barbaz"
* # rest_size: 6
* ```
*
*/
static VALUE
strscan_concat(VALUE self, VALUE str)
{
struct strscanner *p;
GET_SCANNER(self, p);
StringValue(str);
rb_str_append(p->str, str);
return self;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/get_pos.md
*/
static VALUE
strscan_get_pos(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
return LONG2NUM(p->curr);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/get_charpos.md
*/
static VALUE
strscan_get_charpos(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
return LONG2NUM(rb_enc_strlen(S_PBEG(p), CURPTR(p), rb_enc_get(p->str)));
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/set_pos.md
*/
static VALUE
strscan_set_pos(VALUE self, VALUE v)
{
struct strscanner *p;
long i;
GET_SCANNER(self, p);
i = NUM2LONG(v);
if (i < 0) i += S_LEN(p);
if (i < 0) rb_raise(rb_eRangeError, "index out of range");
if (i > S_LEN(p)) rb_raise(rb_eRangeError, "index out of range");
p->curr = i;
return LONG2NUM(i);
}
static inline UChar *
match_target(struct strscanner *p)
{
if (p->fixed_anchor_p) {
return (UChar *)S_PBEG(p);
}
else
{
return (UChar *)CURPTR(p);
}
}
static inline void
set_registers(struct strscanner *p, size_t pos, size_t length)
{
const int at = 0;
OnigRegion *regs = &(p->regs);
onig_region_clear(regs);
if (onig_region_set(regs, at, 0, 0)) return;
if (p->fixed_anchor_p) {
regs->beg[at] = pos + p->curr;
regs->end[at] = pos + p->curr + length;
}
else
{
regs->beg[at] = pos;
regs->end[at] = pos + length;
}
}
static inline void
succ(struct strscanner *p)
{
if (p->fixed_anchor_p) {
p->curr = p->regs.end[0];
}
else
{
p->curr += p->regs.end[0];
}
}
static inline long
last_match_length(struct strscanner *p)
{
if (p->fixed_anchor_p) {
return p->regs.end[0] - p->prev;
}
else
{
return p->regs.end[0];
}
}
static inline long
adjust_register_position(struct strscanner *p, long position)
{
if (p->fixed_anchor_p) {
return position;
}
else {
return p->prev + position;
}
}
/* rb_reg_onig_match is available in Ruby 3.3 and later. */
#ifndef HAVE_RB_REG_ONIG_MATCH
static 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)
{
OnigPosition result;
regex_t *reg = rb_reg_prepare_re(re, str);
bool tmpreg = reg != RREGEXP_PTR(re);
if (!tmpreg) RREGEXP(re)->usecnt++;
result = match(reg, str, regs, args);
if (!tmpreg) RREGEXP(re)->usecnt--;
if (tmpreg) {
if (RREGEXP(re)->usecnt) {
onig_free(reg);
}
else {
onig_free(RREGEXP_PTR(re));
RREGEXP_PTR(re) = reg;
}
}
if (result < 0) {
if (result != ONIG_MISMATCH) {
rb_raise(ScanError, "regexp buffer overflow");
}
}
return result;
}
#endif
static OnigPosition
strscan_match(regex_t *reg, VALUE str, struct re_registers *regs, void *args_ptr)
{
struct strscanner *p = (struct strscanner *)args_ptr;
return onig_match(reg,
match_target(p),
(UChar* )(CURPTR(p) + S_RESTLEN(p)),
(UChar* )CURPTR(p),
regs,
ONIG_OPTION_NONE);
}
static OnigPosition
strscan_search(regex_t *reg, VALUE str, struct re_registers *regs, void *args_ptr)
{
struct strscanner *p = (struct strscanner *)args_ptr;
return onig_search(reg,
match_target(p),
(UChar *)(CURPTR(p) + S_RESTLEN(p)),
(UChar *)CURPTR(p),
(UChar *)(CURPTR(p) + S_RESTLEN(p)),
regs,
ONIG_OPTION_NONE);
}
static void
strscan_enc_check(VALUE str1, VALUE str2)
{
if (RB_ENCODING_GET(str1) != RB_ENCODING_GET(str2)) {
rb_enc_check(str1, str2);
}
}
static VALUE
strscan_do_scan(VALUE self, VALUE pattern, int succptr, int getstr, int headonly)
{
struct strscanner *p;
GET_SCANNER(self, p);
CLEAR_MATCH_STATUS(p);
if (S_RESTLEN(p) < 0) {
return Qnil;
}
if (RB_TYPE_P(pattern, T_REGEXP)) {
OnigPosition ret;
p->regex = pattern;
ret = rb_reg_onig_match(p->regex,
p->str,
headonly ? strscan_match : strscan_search,
(void *)p,
&(p->regs));
if (ret == ONIG_MISMATCH) {
return Qnil;
}
}
else {
StringValue(pattern);
if (S_RESTLEN(p) < RSTRING_LEN(pattern)) {
strscan_enc_check(p->str, pattern);
return Qnil;
}
if (headonly) {
strscan_enc_check(p->str, pattern);
if (memcmp(CURPTR(p), RSTRING_PTR(pattern), RSTRING_LEN(pattern)) != 0) {
return Qnil;
}
set_registers(p, 0, RSTRING_LEN(pattern));
}
else {
rb_encoding *enc = rb_enc_check(p->str, pattern);
long pos = rb_memsearch(RSTRING_PTR(pattern), RSTRING_LEN(pattern),
CURPTR(p), S_RESTLEN(p), enc);
if (pos == -1) {
return Qnil;
}
set_registers(p, pos, RSTRING_LEN(pattern));
}
}
MATCHED(p);
p->prev = p->curr;
if (succptr) {
succ(p);
}
{
const long length = last_match_length(p);
if (getstr) {
return extract_beg_len(p, p->prev, length);
}
else {
return INT2FIX(length);
}
}
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/scan.md
*/
static VALUE
strscan_scan(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 1, 1, 1);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* match?(pattern) -> updated_position or nil
*
* Attempts to [match][17] the given `pattern`
* at the beginning of the [target substring][3];
* does not modify the [positions][11].
*
* If the match succeeds:
*
* - Sets [match values][9].
* - Returns the size in bytes of the matched substring.
*
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.pos = 3
* scanner.match?(/bar/) => 3
* put_match_values(scanner)
* # Basic match values:
* # matched?: true
* # matched_size: 3
* # pre_match: "foo"
* # matched : "bar"
* # post_match: "baz"
* # Captured match values:
* # size: 1
* # captures: []
* # named_captures: {}
* # values_at: ["bar", nil]
* # []:
* # [0]: "bar"
* # [1]: nil
* put_situation(scanner)
* # Situation:
* # pos: 3
* # charpos: 3
* # rest: "barbaz"
* # rest_size: 6
* ```
*
* If the match fails:
*
* - Clears match values.
* - Returns `nil`.
* - Does not increment positions.
*
* ```rb
* scanner.match?(/nope/) # => nil
* match_values_cleared?(scanner) # => true
* ```
*
*/
static VALUE
strscan_match_p(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 0, 0, 1);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/skip.md
*/
static VALUE
strscan_skip(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 1, 0, 1);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* check(pattern) -> matched_substring or nil
*
* Attempts to [match][17] the given `pattern`
* at the beginning of the [target substring][3];
* does not modify the [positions][11].
*
* If the match succeeds:
*
* - Returns the matched substring.
* - Sets all [match values][9].
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.pos = 3
* scanner.check('bar') # => "bar"
* put_match_values(scanner)
* # Basic match values:
* # matched?: true
* # matched_size: 3
* # pre_match: "foo"
* # matched : "bar"
* # post_match: "baz"
* # Captured match values:
* # size: 1
* # captures: []
* # named_captures: {}
* # values_at: ["bar", nil]
* # []:
* # [0]: "bar"
* # [1]: nil
* # => 0..1
* put_situation(scanner)
* # Situation:
* # pos: 3
* # charpos: 3
* # rest: "barbaz"
* # rest_size: 6
* ```
*
* If the match fails:
*
* - Returns `nil`.
* - Clears all [match values][9].
*
* ```rb
* scanner.check(/nope/) # => nil
* match_values_cleared?(scanner) # => true
* ```
*
*/
static VALUE
strscan_check(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 0, 1, 1);
}
/*
* call-seq:
* scan_full(pattern, advance_pointer_p, return_string_p) -> matched_substring or nil
*
* Equivalent to one of the following:
*
* - +advance_pointer_p+ +true+:
*
* - +return_string_p+ +true+: StringScanner#scan(pattern).
* - +return_string_p+ +false+: StringScanner#skip(pattern).
*
* - +advance_pointer_p+ +false+:
*
* - +return_string_p+ +true+: StringScanner#check(pattern).
* - +return_string_p+ +false+: StringScanner#match?(pattern).
*
*/
/* :nodoc: */
static VALUE
strscan_scan_full(VALUE self, VALUE re, VALUE s, VALUE f)
{
return strscan_do_scan(self, re, RTEST(s), RTEST(f), 1);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/scan_until.md
*/
static VALUE
strscan_scan_until(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 1, 1, 0);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* exist?(pattern) -> byte_offset or nil
*
* Attempts to [match][17] the given `pattern`
* anywhere (at any [position][2])
* n the [target substring][3];
* does not modify the [positions][11].
*
* If the match succeeds:
*
* - Returns a byte offset:
* the distance in bytes between the current [position][2]
* and the end of the matched substring.
* - Sets all [match values][9].
*
* ```rb
* scanner = StringScanner.new('foobarbazbatbam')
* scanner.pos = 6
* scanner.exist?(/bat/) # => 6
* put_match_values(scanner)
* # Basic match values:
* # matched?: true
* # matched_size: 3
* # pre_match: "foobarbaz"
* # matched : "bat"
* # post_match: "bam"
* # Captured match values:
* # size: 1
* # captures: []
* # named_captures: {}
* # values_at: ["bat", nil]
* # []:
* # [0]: "bat"
* # [1]: nil
* put_situation(scanner)
* # Situation:
* # pos: 6
* # charpos: 6
* # rest: "bazbatbam"
* # rest_size: 9
* ```
*
* If the match fails:
*
* - Returns `nil`.
* - Clears all [match values][9].
*
* ```rb
* scanner.exist?(/nope/) # => nil
* match_values_cleared?(scanner) # => true
* ```
*
*/
static VALUE
strscan_exist_p(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 0, 0, 0);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/skip_until.md
*/
static VALUE
strscan_skip_until(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 1, 0, 0);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* check_until(pattern) -> substring or nil
*
* Attempts to [match][17] the given `pattern`
* anywhere (at any [position][2])
* in the [target substring][3];
* does not modify the [positions][11].
*
* If the match succeeds:
*
* - Sets all [match values][9].
* - Returns the matched substring,
* which extends from the current [position][2]
* to the end of the matched substring.
*
* ```rb
* scanner = StringScanner.new('foobarbazbatbam')
* scanner.pos = 6
* scanner.check_until(/bat/) # => "bazbat"
* put_match_values(scanner)
* # Basic match values:
* # matched?: true
* # matched_size: 3
* # pre_match: "foobarbaz"
* # matched : "bat"
* # post_match: "bam"
* # Captured match values:
* # size: 1
* # captures: []
* # named_captures: {}
* # values_at: ["bat", nil]
* # []:
* # [0]: "bat"
* # [1]: nil
* put_situation(scanner)
* # Situation:
* # pos: 6
* # charpos: 6
* # rest: "bazbatbam"
* # rest_size: 9
* ```
*
* If the match fails:
*
* - Clears all [match values][9].
* - Returns `nil`.
*
* ```rb
* scanner.check_until(/nope/) # => nil
* match_values_cleared?(scanner) # => true
* ```
*
*/
static VALUE
strscan_check_until(VALUE self, VALUE re)
{
return strscan_do_scan(self, re, 0, 1, 0);
}
/*
* call-seq:
* search_full(pattern, advance_pointer_p, return_string_p) -> matched_substring or position_delta or nil
*
* Equivalent to one of the following:
*
* - +advance_pointer_p+ +true+:
*
* - +return_string_p+ +true+: StringScanner#scan_until(pattern).
* - +return_string_p+ +false+: StringScanner#skip_until(pattern).
*
* - +advance_pointer_p+ +false+:
*
* - +return_string_p+ +true+: StringScanner#check_until(pattern).
* - +return_string_p+ +false+: StringScanner#exist?(pattern).
*
*/
/* :nodoc: */
static VALUE
strscan_search_full(VALUE self, VALUE re, VALUE s, VALUE f)
{
return strscan_do_scan(self, re, RTEST(s), RTEST(f), 0);
}
static void
adjust_registers_to_matched(struct strscanner *p)
{
onig_region_clear(&(p->regs));
if (p->fixed_anchor_p) {
onig_region_set(&(p->regs), 0, (int)p->prev, (int)p->curr);
}
else {
onig_region_set(&(p->regs), 0, 0, (int)(p->curr - p->prev));
}
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/getch.md
*/
static VALUE
strscan_getch(VALUE self)
{
struct strscanner *p;
long len;
GET_SCANNER(self, p);
CLEAR_MATCH_STATUS(p);
if (EOS_P(p))
return Qnil;
len = rb_enc_mbclen(CURPTR(p), S_PEND(p), rb_enc_get(p->str));
len = minl(len, S_RESTLEN(p));
p->prev = p->curr;
p->curr += len;
MATCHED(p);
adjust_registers_to_matched(p);
return extract_range(p,
adjust_register_position(p, p->regs.beg[0]),
adjust_register_position(p, p->regs.end[0]));
}
/*
* call-seq:
* scan_byte -> integer_byte
*
* Scans one byte and returns it as an integer.
* This method is not multibyte character sensitive.
* See also: #getch.
*
*/
static VALUE
strscan_scan_byte(VALUE self)
{
struct strscanner *p;
VALUE byte;
GET_SCANNER(self, p);
CLEAR_MATCH_STATUS(p);
if (EOS_P(p))
return Qnil;
byte = INT2FIX((unsigned char)*CURPTR(p));
p->prev = p->curr;
p->curr++;
MATCHED(p);
adjust_registers_to_matched(p);
return byte;
}
/*
* Peeks at the current byte and returns it as an integer.
*
* s = StringScanner.new('ab')
* s.peek_byte # => 97
*/
static VALUE
strscan_peek_byte(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (EOS_P(p))
return Qnil;
return INT2FIX((unsigned char)*CURPTR(p));
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
* :include: strscan/methods/get_byte.md
*/
static VALUE
strscan_get_byte(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
CLEAR_MATCH_STATUS(p);
if (EOS_P(p))
return Qnil;
p->prev = p->curr;
p->curr++;
MATCHED(p);
adjust_registers_to_matched(p);
return extract_range(p,
adjust_register_position(p, p->regs.beg[0]),
adjust_register_position(p, p->regs.end[0]));
}
/*
* call-seq:
* getbyte
*
* Equivalent to #get_byte.
* This method is obsolete; use #get_byte instead.
*/
/* :nodoc: */
static VALUE
strscan_getbyte(VALUE self)
{
rb_warning("StringScanner#getbyte is obsolete; use #get_byte instead");
return strscan_get_byte(self);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* peek(length) -> substring
*
* Returns the substring `string[pos, length]`;
* does not update [match values][9] or [positions][11]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.pos = 3
* scanner.peek(3) # => "bar"
* scanner.terminate
* scanner.peek(3) # => ""
* ```
*
*/
static VALUE
strscan_peek(VALUE self, VALUE vlen)
{
struct strscanner *p;
long len;
GET_SCANNER(self, p);
len = NUM2LONG(vlen);
if (EOS_P(p))
return str_new(p, "", 0);
len = minl(len, S_RESTLEN(p));
return extract_beg_len(p, p->curr, len);
}
/*
* call-seq:
* peep
*
* Equivalent to #peek.
* This method is obsolete; use #peek instead.
*/
/* :nodoc: */
static VALUE
strscan_peep(VALUE self, VALUE vlen)
{
rb_warning("StringScanner#peep is obsolete; use #peek instead");
return strscan_peek(self, vlen);
}
static VALUE
strscan_parse_integer(struct strscanner *p, int base, long len)
{
VALUE buffer_v, integer;
char *buffer = RB_ALLOCV_N(char, buffer_v, len + 1);
MEMCPY(buffer, CURPTR(p), char, len);
buffer[len] = '\0';
integer = rb_cstr2inum(buffer, base);
RB_ALLOCV_END(buffer_v);
p->curr += len;
MATCHED(p);
adjust_registers_to_matched(p);
return integer;
}
static inline bool
strscan_ascii_compat_fastpath(VALUE str) {
int encindex = ENCODING_GET_INLINED(str);
// The overwhelming majority of strings are in one of these 3 encodings.
return encindex == utf8_encindex || encindex == binary_encindex || encindex == usascii_encindex;
}
static inline void
strscan_must_ascii_compat(VALUE str)
{
// The overwhelming majority of strings are in one of these 3 encodings.
if (RB_LIKELY(strscan_ascii_compat_fastpath(str))) {
return;
}
rb_must_asciicompat(str);
}
static VALUE
strscan_scan_base10_integer(VALUE self)
{
char *ptr;
long len = 0;
struct strscanner *p;
GET_SCANNER(self, p);
CLEAR_MATCH_STATUS(p);
strscan_must_ascii_compat(p->str);
ptr = CURPTR(p);
long remaining_len = S_RESTLEN(p);
if (remaining_len <= 0) {
return Qnil;
}
if (ptr[len] == '-' || ptr[len] == '+') {
len++;
}
if (!rb_isdigit(ptr[len])) {
return Qnil;
}
p->prev = p->curr;
while (len < remaining_len && rb_isdigit(ptr[len])) {
len++;
}
return strscan_parse_integer(p, 10, len);
}
static VALUE
strscan_scan_base16_integer(VALUE self)
{
char *ptr;
long len = 0;
struct strscanner *p;
GET_SCANNER(self, p);
CLEAR_MATCH_STATUS(p);
strscan_must_ascii_compat(p->str);
ptr = CURPTR(p);
long remaining_len = S_RESTLEN(p);
if (remaining_len <= 0) {
return Qnil;
}
if (ptr[len] == '-' || ptr[len] == '+') {
len++;
}
if ((remaining_len >= (len + 3)) && ptr[len] == '0' && ptr[len + 1] == 'x' && rb_isxdigit(ptr[len + 2])) {
len += 2;
}
if (len >= remaining_len || !rb_isxdigit(ptr[len])) {
return Qnil;
}
p->prev = p->curr;
while (len < remaining_len && rb_isxdigit(ptr[len])) {
len++;
}
return strscan_parse_integer(p, 16, len);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* unscan -> self
*
* Sets the [position][2] to its value previous to the recent successful
* [match][17] attempt:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.scan(/foo/)
* put_situation(scanner)
* # Situation:
* # pos: 3
* # charpos: 3
* # rest: "barbaz"
* # rest_size: 6
* scanner.unscan
* # => #<StringScanner 0/9 @ "fooba...">
* put_situation(scanner)
* # Situation:
* # pos: 0
* # charpos: 0
* # rest: "foobarbaz"
* # rest_size: 9
* ```
*
* Raises an exception if match values are clear:
*
* ```rb
* scanner.scan(/nope/) # => nil
* match_values_cleared?(scanner) # => true
* scanner.unscan # Raises StringScanner::Error.
* ```
*
*/
static VALUE
strscan_unscan(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (! MATCHED_P(p))
rb_raise(ScanError, "unscan failed: previous match record not exist");
p->curr = p->prev;
CLEAR_MATCH_STATUS(p);
return self;
}
/*
*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* beginning_of_line? -> true or false
*
* Returns whether the [position][2] is at the beginning of a line;
* that is, at the beginning of the [stored string][1]
* or immediately after a newline:
*
* scanner = StringScanner.new(MULTILINE_TEXT)
* scanner.string
* # => "Go placidly amid the noise and haste,\nand remember what peace there may be in silence.\n"
* scanner.pos # => 0
* scanner.beginning_of_line? # => true
*
* scanner.scan_until(/,/) # => "Go placidly amid the noise and haste,"
* scanner.beginning_of_line? # => false
*
* scanner.scan(/\n/) # => "\n"
* scanner.beginning_of_line? # => true
*
* scanner.terminate
* scanner.beginning_of_line? # => true
*
* scanner.concat('x')
* scanner.terminate
* scanner.beginning_of_line? # => false
*
* StringScanner#bol? is an alias for StringScanner#beginning_of_line?.
*/
static VALUE
strscan_bol_p(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (CURPTR(p) > S_PEND(p)) return Qnil;
if (p->curr == 0) return Qtrue;
return (*(CURPTR(p) - 1) == '\n') ? Qtrue : Qfalse;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* eos? -> true or false
*
* Returns whether the [position][2]
* is at the end of the [stored string][1]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.eos? # => false
* pos = 3
* scanner.eos? # => false
* scanner.terminate
* scanner.eos? # => true
* ```
*
*/
static VALUE
strscan_eos_p(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
return EOS_P(p) ? Qtrue : Qfalse;
}
/*
* call-seq:
* empty?
*
* Equivalent to #eos?.
* This method is obsolete, use #eos? instead.
*/
/* :nodoc: */
static VALUE
strscan_empty_p(VALUE self)
{
rb_warning("StringScanner#empty? is obsolete; use #eos? instead");
return strscan_eos_p(self);
}
/*
* call-seq:
* rest?
*
* Returns true if and only if there is more data in the string. See #eos?.
* This method is obsolete; use #eos? instead.
*
* s = StringScanner.new('test string')
* # These two are opposites
* s.eos? # => false
* s.rest? # => true
*/
/* :nodoc: */
static VALUE
strscan_rest_p(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
return EOS_P(p) ? Qfalse : Qtrue;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* matched? -> true or false
*
* Returns `true` of the most recent [match attempt][17] was successful,
* `false` otherwise;
* see [Basic Matched Values][18]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.matched? # => false
* scanner.pos = 3
* scanner.exist?(/baz/) # => 6
* scanner.matched? # => true
* scanner.exist?(/nope/) # => nil
* scanner.matched? # => false
* ```
*
*/
static VALUE
strscan_matched_p(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
return MATCHED_P(p) ? Qtrue : Qfalse;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* matched -> matched_substring or nil
*
* Returns the matched substring from the most recent [match][17] attempt
* if it was successful,
* or `nil` otherwise;
* see [Basic Matched Values][18]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.matched # => nil
* scanner.pos = 3
* scanner.match?(/bar/) # => 3
* scanner.matched # => "bar"
* scanner.match?(/nope/) # => nil
* scanner.matched # => nil
* ```
*
*/
static VALUE
strscan_matched(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
return extract_range(p,
adjust_register_position(p, p->regs.beg[0]),
adjust_register_position(p, p->regs.end[0]));
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* matched_size -> substring_size or nil
*
* Returns the size (in bytes) of the matched substring
* from the most recent match [match attempt][17] if it was successful,
* or `nil` otherwise;
* see [Basic Matched Values][18]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.matched_size # => nil
*
* pos = 3
* scanner.exist?(/baz/) # => 9
* scanner.matched_size # => 3
*
* scanner.exist?(/nope/) # => nil
* scanner.matched_size # => nil
* ```
*
*/
static VALUE
strscan_matched_size(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
return LONG2NUM(p->regs.end[0] - p->regs.beg[0]);
}
static int
name_to_backref_number(struct re_registers *regs, VALUE regexp, const char* name, const char* name_end, rb_encoding *enc)
{
if (RTEST(regexp)) {
int num = onig_name_to_backref_number(RREGEXP_PTR(regexp),
(const unsigned char* )name,
(const unsigned char* )name_end,
regs);
if (num >= 1) {
return num;
}
}
rb_enc_raise(enc, rb_eIndexError, "undefined group name reference: %.*s",
rb_long2int(name_end - name), name);
}
/*
*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* [](specifier) -> substring or nil
*
* Returns a captured substring or `nil`;
* see [Captured Match Values][13].
*
* When there are captures:
*
* ```rb
* scanner = StringScanner.new('Fri Dec 12 1975 14:39')
* scanner.scan(/(?<wday>\w+) (?<month>\w+) (?<day>\d+) /)
* ```
*
* - `specifier` zero: returns the entire matched substring:
*
* ```rb
* scanner[0] # => "Fri Dec 12 "
* scanner.pre_match # => ""
* scanner.post_match # => "1975 14:39"
* ```
*
* - `specifier` positive integer. returns the `n`th capture, or `nil` if out of range:
*
* ```rb
* scanner[1] # => "Fri"
* scanner[2] # => "Dec"
* scanner[3] # => "12"
* scanner[4] # => nil
* ```
*
* - `specifier` negative integer. counts backward from the last subgroup:
*
* ```rb
* scanner[-1] # => "12"
* scanner[-4] # => "Fri Dec 12 "
* scanner[-5] # => nil
* ```
*
* - `specifier` symbol or string. returns the named subgroup, or `nil` if no such:
*
* ```rb
* scanner[:wday] # => "Fri"
* scanner['wday'] # => "Fri"
* scanner[:month] # => "Dec"
* scanner[:day] # => "12"
* scanner[:nope] # => nil
* ```
*
* When there are no captures, only `[0]` returns non-`nil`:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.exist?(/bar/)
* scanner[0] # => "bar"
* scanner[1] # => nil
* ```
*
* For a failed match, even `[0]` returns `nil`:
*
* ```rb
* scanner.scan(/nope/) # => nil
* scanner[0] # => nil
* scanner[1] # => nil
* ```
*
*/
static VALUE
strscan_aref(VALUE self, VALUE idx)
{
const char *name;
struct strscanner *p;
long i;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
switch (TYPE(idx)) {
case T_SYMBOL:
idx = rb_sym2str(idx);
/* fall through */
case T_STRING:
RSTRING_GETMEM(idx, name, i);
i = name_to_backref_number(&(p->regs), p->regex, name, name + i, rb_enc_get(idx));
break;
default:
i = NUM2LONG(idx);
}
if (i < 0)
i += p->regs.num_regs;
if (i < 0) return Qnil;
if (i >= p->regs.num_regs) return Qnil;
if (p->regs.beg[i] == -1) return Qnil;
return extract_range(p,
adjust_register_position(p, p->regs.beg[i]),
adjust_register_position(p, p->regs.end[i]));
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* size -> captures_count
*
* Returns the count of captures if the most recent match attempt succeeded, `nil` otherwise;
* see [Captures Match Values][13]:
*
* ```rb
* scanner = StringScanner.new('Fri Dec 12 1975 14:39')
* scanner.size # => nil
*
* pattern = /(?<wday>\w+) (?<month>\w+) (?<day>\d+) /
* scanner.match?(pattern)
* scanner.values_at(*0..scanner.size) # => ["Fri Dec 12 ", "Fri", "Dec", "12", nil]
* scanner.size # => 4
*
* scanner.match?(/nope/) # => nil
* scanner.size # => nil
* ```
*
*/
static VALUE
strscan_size(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
return INT2FIX(p->regs.num_regs);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* captures -> substring_array or nil
*
* Returns the array of [captured match values][13] at indexes `(1..)`
* if the most recent match attempt succeeded, or `nil` otherwise:
*
* ```rb
* scanner = StringScanner.new('Fri Dec 12 1975 14:39')
* scanner.captures # => nil
*
* scanner.exist?(/(?<wday>\w+) (?<month>\w+) (?<day>\d+) /)
* scanner.captures # => ["Fri", "Dec", "12"]
* scanner.values_at(*0..4) # => ["Fri Dec 12 ", "Fri", "Dec", "12", nil]
*
* scanner.exist?(/Fri/)
* scanner.captures # => []
*
* scanner.scan(/nope/)
* scanner.captures # => nil
* ```
*
*/
static VALUE
strscan_captures(VALUE self)
{
struct strscanner *p;
int i, num_regs;
VALUE new_ary;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
num_regs = p->regs.num_regs;
new_ary = rb_ary_new2(num_regs);
for (i = 1; i < num_regs; i++) {
VALUE str;
if (p->regs.beg[i] == -1)
str = Qnil;
else
str = extract_range(p,
adjust_register_position(p, p->regs.beg[i]),
adjust_register_position(p, p->regs.end[i]));
rb_ary_push(new_ary, str);
}
return new_ary;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* values_at(*specifiers) -> array_of_captures or nil
*
* Returns an array of captured substrings, or `nil` of none.
*
* For each `specifier`, the returned substring is `[specifier]`;
* see #[].
*
* ```rb
* scanner = StringScanner.new('Fri Dec 12 1975 14:39')
* pattern = /(?<wday>\w+) (?<month>\w+) (?<day>\d+) /
* scanner.match?(pattern)
* scanner.values_at(*0..3) # => ["Fri Dec 12 ", "Fri", "Dec", "12"]
* scanner.values_at(*%i[wday month day]) # => ["Fri", "Dec", "12"]
* ```
*
*/
static VALUE
strscan_values_at(int argc, VALUE *argv, VALUE self)
{
struct strscanner *p;
long i;
VALUE new_ary;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
new_ary = rb_ary_new2(argc);
for (i = 0; i<argc; i++) {
rb_ary_push(new_ary, strscan_aref(self, argv[i]));
}
return new_ary;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* pre_match -> substring
*
* Returns the substring that precedes the matched substring
* from the most recent match attempt if it was successful,
* or `nil` otherwise;
* see [Basic Match Values][18]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.pre_match # => nil
*
* scanner.pos = 3
* scanner.exist?(/baz/) # => 6
* scanner.pre_match # => "foobar" # Substring of entire string, not just target string.
*
* scanner.exist?(/nope/) # => nil
* scanner.pre_match # => nil
* ```
*
*/
static VALUE
strscan_pre_match(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
return extract_range(p,
0,
adjust_register_position(p, p->regs.beg[0]));
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* post_match -> substring
*
* Returns the substring that follows the matched substring
* from the most recent match attempt if it was successful,
* or `nil` otherwise;
* see [Basic Match Values][18]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.post_match # => nil
*
* scanner.pos = 3
* scanner.match?(/bar/) # => 3
* scanner.post_match # => "baz"
*
* scanner.match?(/nope/) # => nil
* scanner.post_match # => nil
* ```
*
*/
static VALUE
strscan_post_match(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (! MATCHED_P(p)) return Qnil;
return extract_range(p,
adjust_register_position(p, p->regs.end[0]),
S_LEN(p));
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* rest -> target_substring
*
* Returns the 'rest' of the [stored string][1] (all after the current [position][2]),
* which is the [target substring][3]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.rest # => "foobarbaz"
* scanner.pos = 3
* scanner.rest # => "barbaz"
* scanner.terminate
* scanner.rest # => ""
* ```
*
*/
static VALUE
strscan_rest(VALUE self)
{
struct strscanner *p;
GET_SCANNER(self, p);
if (EOS_P(p)) {
return str_new(p, "", 0);
}
return extract_range(p, p->curr, S_LEN(p));
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* rest_size -> integer
*
* Returns the size (in bytes) of the #rest of the [stored string][1]:
*
* ```rb
* scanner = StringScanner.new('foobarbaz')
* scanner.rest # => "foobarbaz"
* scanner.rest_size # => 9
* scanner.pos = 3
* scanner.rest # => "barbaz"
* scanner.rest_size # => 6
* scanner.terminate
* scanner.rest # => ""
* scanner.rest_size # => 0
* ```
*
*/
static VALUE
strscan_rest_size(VALUE self)
{
struct strscanner *p;
long i;
GET_SCANNER(self, p);
if (EOS_P(p)) {
return INT2FIX(0);
}
i = S_RESTLEN(p);
return INT2FIX(i);
}
/*
* call-seq:
* restsize
*
* <tt>s.restsize</tt> is equivalent to <tt>s.rest_size</tt>.
* This method is obsolete; use #rest_size instead.
*/
/* :nodoc: */
static VALUE
strscan_restsize(VALUE self)
{
rb_warning("StringScanner#restsize is obsolete; use #rest_size instead");
return strscan_rest_size(self);
}
#define INSPECT_LENGTH 5
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* inspect -> string
*
* Returns a string representation of `self` that may show:
*
* 1. The current [position][2].
* 2. The size (in bytes) of the [stored string][1].
* 3. The substring preceding the current position.
* 4. The substring following the current position (which is also the [target substring][3]).
*
* ```rb
* scanner = StringScanner.new("Fri Dec 12 1975 14:39")
* scanner.pos = 11
* scanner.inspect # => "#<StringScanner 11/21 \"...c 12 \" @ \"1975 ...\">"
* ```
*
* If at beginning-of-string, item 4 above (following substring) is omitted:
*
* ```rb
* scanner.reset
* scanner.inspect # => "#<StringScanner 0/21 @ \"Fri D...\">"
* ```
*
* If at end-of-string, all items above are omitted:
*
* ```rb
* scanner.terminate
* scanner.inspect # => "#<StringScanner fin>"
* ```
*
*/
static VALUE
strscan_inspect(VALUE self)
{
struct strscanner *p;
VALUE a, b;
p = check_strscan(self);
if (NIL_P(p->str)) {
a = rb_sprintf("#<%"PRIsVALUE" (uninitialized)>", rb_obj_class(self));
return a;
}
if (EOS_P(p)) {
a = rb_sprintf("#<%"PRIsVALUE" fin>", rb_obj_class(self));
return a;
}
if (p->curr == 0) {
b = inspect2(p);
a = rb_sprintf("#<%"PRIsVALUE" %ld/%ld @ %"PRIsVALUE">",
rb_obj_class(self),
p->curr, S_LEN(p),
b);
return a;
}
a = inspect1(p);
b = inspect2(p);
a = rb_sprintf("#<%"PRIsVALUE" %ld/%ld %"PRIsVALUE" @ %"PRIsVALUE">",
rb_obj_class(self),
p->curr, S_LEN(p),
a, b);
return a;
}
static VALUE
inspect1(struct strscanner *p)
{
VALUE str;
long len;
if (p->curr == 0) return rb_str_new2("");
if (p->curr > INSPECT_LENGTH) {
str = rb_str_new_cstr("...");
len = INSPECT_LENGTH;
}
else {
str = rb_str_new(0, 0);
len = p->curr;
}
rb_str_cat(str, CURPTR(p) - len, len);
return rb_str_dump(str);
}
static VALUE
inspect2(struct strscanner *p)
{
VALUE str;
long len;
if (EOS_P(p)) return rb_str_new2("");
len = S_RESTLEN(p);
if (len > INSPECT_LENGTH) {
str = rb_str_new(CURPTR(p), INSPECT_LENGTH);
rb_str_cat2(str, "...");
}
else {
str = rb_str_new(CURPTR(p), len);
}
return rb_str_dump(str);
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* fixed_anchor? -> true or false
*
* Returns whether the [fixed-anchor property][10] is set.
*/
static VALUE
strscan_fixed_anchor_p(VALUE self)
{
struct strscanner *p;
p = check_strscan(self);
return p->fixed_anchor_p ? Qtrue : Qfalse;
}
typedef struct {
VALUE self;
VALUE captures;
} named_captures_data;
static int
named_captures_iter(const OnigUChar *name,
const OnigUChar *name_end,
int back_num,
int *back_refs,
OnigRegex regex,
void *arg)
{
named_captures_data *data = arg;
VALUE key = rb_str_new((const char *)name, name_end - name);
VALUE value = RUBY_Qnil;
int i;
for (i = 0; i < back_num; i++) {
value = strscan_aref(data->self, INT2NUM(back_refs[i]));
}
rb_hash_aset(data->captures, key, value);
return 0;
}
/*
* :markup: markdown
* :include: strscan/link_refs.txt
*
* call-seq:
* named_captures -> hash
*
* Returns the array of captured match values at indexes (1..)
* if the most recent match attempt succeeded, or nil otherwise;
* see [Captured Match Values][13]:
*
* ```rb
* scanner = StringScanner.new('Fri Dec 12 1975 14:39')
* scanner.named_captures # => {}
*
* pattern = /(?<wday>\w+) (?<month>\w+) (?<day>\d+) /
* scanner.match?(pattern)
* scanner.named_captures # => {"wday"=>"Fri", "month"=>"Dec", "day"=>"12"}
*
* scanner.string = 'nope'
* scanner.match?(pattern)
* scanner.named_captures # => {"wday"=>nil, "month"=>nil, "day"=>nil}
*
* scanner.match?(/nosuch/)
* scanner.named_captures # => {}
* ```
*
*/
static VALUE
strscan_named_captures(VALUE self)
{
struct strscanner *p;
named_captures_data data;
GET_SCANNER(self, p);
data.self = self;
data.captures = rb_hash_new();
if (!RB_NIL_P(p->regex)) {
onig_foreach_name(RREGEXP_PTR(p->regex), named_captures_iter, &data);
}
return data.captures;
}
/* =======================================================================
Ruby Interface
======================================================================= */
/*
* Document-class: StringScanner
*
* :markup: markdown
*
* :include: strscan/link_refs.txt
* :include: strscan/strscan.md
*
*/
void
Init_strscan(void)
{
#ifdef HAVE_RB_EXT_RACTOR_SAFE
rb_ext_ractor_safe(true);
#endif
#undef rb_intern
ID id_scanerr = rb_intern("ScanError");
VALUE tmp;
id_byteslice = rb_intern("byteslice");
usascii_encindex = rb_usascii_encindex();
utf8_encindex = rb_utf8_encindex();
binary_encindex = rb_ascii8bit_encindex();
StringScanner = rb_define_class("StringScanner", rb_cObject);
ScanError = rb_define_class_under(StringScanner, "Error", rb_eStandardError);
if (!rb_const_defined(rb_cObject, id_scanerr)) {
rb_const_set(rb_cObject, id_scanerr, ScanError);
}
tmp = rb_str_new2(STRSCAN_VERSION);
rb_obj_freeze(tmp);
rb_const_set(StringScanner, rb_intern("Version"), tmp);
tmp = rb_str_new2("$Id$");
rb_obj_freeze(tmp);
rb_const_set(StringScanner, rb_intern("Id"), tmp);
rb_define_alloc_func(StringScanner, strscan_s_allocate);
rb_define_private_method(StringScanner, "initialize", strscan_initialize, -1);
rb_define_private_method(StringScanner, "initialize_copy", strscan_init_copy, 1);
rb_define_singleton_method(StringScanner, "must_C_version", strscan_s_mustc, 0);
rb_define_method(StringScanner, "reset", strscan_reset, 0);
rb_define_method(StringScanner, "terminate", strscan_terminate, 0);
rb_define_method(StringScanner, "clear", strscan_clear, 0);
rb_define_method(StringScanner, "string", strscan_get_string, 0);
rb_define_method(StringScanner, "string=", strscan_set_string, 1);
rb_define_method(StringScanner, "concat", strscan_concat, 1);
rb_define_method(StringScanner, "<<", strscan_concat, 1);
rb_define_method(StringScanner, "pos", strscan_get_pos, 0);
rb_define_method(StringScanner, "pos=", strscan_set_pos, 1);
rb_define_method(StringScanner, "charpos", strscan_get_charpos, 0);
rb_define_method(StringScanner, "pointer", strscan_get_pos, 0);
rb_define_method(StringScanner, "pointer=", strscan_set_pos, 1);
rb_define_method(StringScanner, "scan", strscan_scan, 1);
rb_define_method(StringScanner, "skip", strscan_skip, 1);
rb_define_method(StringScanner, "match?", strscan_match_p, 1);
rb_define_method(StringScanner, "check", strscan_check, 1);
rb_define_method(StringScanner, "scan_full", strscan_scan_full, 3);
rb_define_method(StringScanner, "scan_until", strscan_scan_until, 1);
rb_define_method(StringScanner, "skip_until", strscan_skip_until, 1);
rb_define_method(StringScanner, "exist?", strscan_exist_p, 1);
rb_define_method(StringScanner, "check_until", strscan_check_until, 1);
rb_define_method(StringScanner, "search_full", strscan_search_full, 3);
rb_define_method(StringScanner, "getch", strscan_getch, 0);
rb_define_method(StringScanner, "get_byte", strscan_get_byte, 0);
rb_define_method(StringScanner, "getbyte", strscan_getbyte, 0);
rb_define_method(StringScanner, "scan_byte", strscan_scan_byte, 0);
rb_define_method(StringScanner, "peek", strscan_peek, 1);
rb_define_method(StringScanner, "peek_byte", strscan_peek_byte, 0);
rb_define_method(StringScanner, "peep", strscan_peep, 1);
rb_define_private_method(StringScanner, "scan_base10_integer", strscan_scan_base10_integer, 0);
rb_define_private_method(StringScanner, "scan_base16_integer", strscan_scan_base16_integer, 0);
rb_define_method(StringScanner, "unscan", strscan_unscan, 0);
rb_define_method(StringScanner, "beginning_of_line?", strscan_bol_p, 0);
rb_alias(StringScanner, rb_intern("bol?"), rb_intern("beginning_of_line?"));
rb_define_method(StringScanner, "eos?", strscan_eos_p, 0);
rb_define_method(StringScanner, "empty?", strscan_empty_p, 0);
rb_define_method(StringScanner, "rest?", strscan_rest_p, 0);
rb_define_method(StringScanner, "matched?", strscan_matched_p, 0);
rb_define_method(StringScanner, "matched", strscan_matched, 0);
rb_define_method(StringScanner, "matched_size", strscan_matched_size, 0);
rb_define_method(StringScanner, "[]", strscan_aref, 1);
rb_define_method(StringScanner, "pre_match", strscan_pre_match, 0);
rb_define_method(StringScanner, "post_match", strscan_post_match, 0);
rb_define_method(StringScanner, "size", strscan_size, 0);
rb_define_method(StringScanner, "captures", strscan_captures, 0);
rb_define_method(StringScanner, "values_at", strscan_values_at, -1);
rb_define_method(StringScanner, "rest", strscan_rest, 0);
rb_define_method(StringScanner, "rest_size", strscan_rest_size, 0);
rb_define_method(StringScanner, "restsize", strscan_restsize, 0);
rb_define_method(StringScanner, "inspect", strscan_inspect, 0);
rb_define_method(StringScanner, "fixed_anchor?", strscan_fixed_anchor_p, 0);
rb_define_method(StringScanner, "named_captures", strscan_named_captures, 0);
rb_require("strscan/strscan");
}
|