-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstrscan.rb
601 lines (536 loc) · 16.1 KB
/
strscan.rb
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
# original copy from Rubinius March 09
# modified to be Maglev style efficient ruby code.
# see file strscan.rb.base for the original Rubinius code
class ScanError < StandardError; end
class StringScanner
# attr_reader :pos, :match, :string
# Returns the position of the scan pointer. In the <em>reset</tm>
# position, this value is zero. In the <em>terminated</em> position
# (i.e. the string is exhausted), this value is the length of the string.
#
# In short, it's a 0-based index into the string.
#
# s = StringScanner.new('test string')
# s.pos # -> 0
# s.scan_until /str/ # -> "test str"
# s.pos # -> 8
# s.terminate # -> #<StringScanner fin>
# s.pos # -> 11
def pos
@pos
end
def match
@match
end
# Modify the scan pointer.
#
# s = StringScanner.new('test string')
# s.pos = 7 # -> 7
# s.rest # -> "ring"
def pos=(n)
unless n.is_a?(Fixnum)
n = n.to_i
end
raise RangeError, "xxx" if n > @string.size
@pos = n
end
alias :pointer :pos
alias :pointer= :pos=
# Return the n-th subgroup in the most recent match.
#
# s = StringScanner.new("Fri Dec 12 1975 14:39")
# s.scan(/(\w+) (\w+) (\d+) /) # -> "Fri Dec 12 "
# s[0] # -> "Fri Dec 12 "
# s[1] # -> "Fri"
# s[2] # -> "Dec"
# s[3] # -> "12"
# s.post_match # -> "1975 14:39"
# s.pre_match # -> ""
def [](n)
# coercion will be implicit by match[] primitive
unless n.is_a?(Fixnum)
n = n.to_i
end
begin
m = self.match
unless match.eql?(nil)
m = m[n]
end
m
rescue IndexError
nil
end
end
# Returns true iff the scan pointer is at the beginning of the line.
#
# s = StringScanner.new("test\ntest\n")
# s.bol? # => true
# s.scan(/te/)
# s.bol? # => false
# s.scan(/st\n/)
# s.bol? # => true
# s.terminate
# s.bol? # => true
def bol?
if pos == 0
return true
end
pminus = pos - 1
string[pminus..pminus] == "\n"
end
alias :beginning_of_line? :bol?
# This returns the value that scan would return, without advancing the
# scan pointer. The match register is affected, though.
#
# s = StringScanner.new("Fri Dec 12 1975 14:39")
# s.check /Fri/ # -> "Fri"
# s.pos # -> 0
# s.matched # -> "Fri"
# s.check /12/ # -> nil
# s.matched # -> nil
#
# Mnemonic: it "checks" to see whether a scan will return a value.
#
def check(pattern)
_scan_headonly(pattern, false, true)
end
# This returns the value that scan_until would return, without advancing
# the scan pointer. The match register is affected, though.
#
# s = StringScanner.new("Fri Dec 12 1975 14:39")
# s.check_until /12/ # -> "Fri Dec 12"
# s.pos # -> 0
# s.matched # -> 12
#
# Mnemonic: it "checks" to see whether a scan_until will return a value.
#
def check_until(pattern)
_scan(pattern, false, true)
end
# Equivalent to #terminate. This method is obsolete; use #terminate instead.
def clear
#warn "StringScanner#clear is obsolete; use #terminate instead" if $VERBOSE
terminate
end
# Appends +str+ to the string being scanned. This method does not affect
# scan pointer.
#
# s = StringScanner.new("Fri Dec 12 1975 14:39")
# s.scan(/Fri /)
# s << " +1000 GMT"
# s.string # -> "Fri Dec 12 1975 14:39 +1000 GMT"
# s.scan(/Dec/) # -> "Dec"
#
def concat(str)
@string << str
self
end
alias :<< :concat # TODO: reverse
# Equivalent to #eos?. This method is obsolete, use #eos? instead.
def empty?
#warn "StringScanner#empty? is obsolete; use #eos? instead?" if $VERBOSE
eos?
end
# Returns true if the scan pointer is at the end of the string.
#
# s = StringScanner.new('test string')
# p s.eos? # => false
# s.scan(/test/)
# p s.eos? # => false
# s.terminate
# p s.eos? # => true
def eos?
@pos >= @string.size
end
# Looks ahead to see if the pattern exists anywhere in the string,
# without advancing the scan pointer. This predicates whether a
# #scan_until will return a value.
#
# s = StringScanner.new('test string')
# s.exist? /s/ # -> 3
# s.scan /test/ # -> "test"
# s.exist? /s/ # -> 6
# s.exist? /e/ # -> nil
def exist?(pattern)
p = _scan(pattern, false, false)
if p == nil
p
else
@pos > 0 ? p -1 : p
end
end
# Scans one byte and returns it. This method is NOT multi-byte character
# sensitive. See also getch.
#
# s = StringScanner.new('ab')
# s.get_byte # => "a"
# s.get_byte # => "b"
# s.get_byte # => nil
#
# s = StringScanner.new("\244\242")
# s.get_byte # => "\244"
# s.get_byte # => "\242"
# s.get_byte # => nil
def get_byte
scan(/./mn)
end
# Equivalent to #get_byte. This method is obsolete; use #get_byte instead.
def getbyte
#warn "StringScanner#getbyte is obsolete; use #get_byte instead" if $VERBOSE
get_byte
end
# Scans one character and returns it. This method is multi-byte character
# sensitive. See also #get_byte.
#
# s = StringScanner.new('ab')
# s.getch # => "a"
# s.getch # => "b"
# s.getch # => nil
#
# $KCODE = 'EUC'
# s = StringScanner.new("\244\242")
# s.getch # => "\244\242" # Japanese hira-kana "A" in EUC-JP
# s.getch # => nil
def getch
scan(/./m)
end
# Creates a new StringScanner object to scan over the given
# +string+. +dup+ argument is obsolete and not used now.
def initialize(string, dup = false)
unless string.is_a?(String)
string = string.to_s
end
@string = string
self.reset
end
def initialize_copy(orig)
@match = orig.match
@pos = orig.pos
s = orig.string
@string = s
end
# Returns a string that represents the StringScanner object, showing:
# <ul>
# <li>the current position</li>
# <li>the size of the string</li>
# <li>the characters surrounding the scan pointer</li>
# </ul>
#
# s = StringScanner.new("Fri Dec 12 1975 14:39") s.inspect # -> ¡¯#<StringScanner 0/21 @ "Fri D¡">¡¯ s.scan_until /12/ # -> "Fri Dec 12" s.inspect # -> ¡¯#<StringScanner 10/21 "¡ec 12" @ " 1975¡">¡¯
#
def inspect
if defined? @string then
rest = string.size > 5 ? string[pos..pos+4] + "..." : string
r = if eos? then
"#<StringScanner fin>"
elsif pos > 0 then
prev = string[0...pos].inspect
"#<StringScanner #{pos}/#{string.size} #{prev} @ #{rest.inspect}>"
else
"#<StringScanner #{pos}/#{string.size} @ #{rest.inspect}>"
end
r.taint if self.string.tainted?
r
else
"#<StringScanner (uninitialized)>"
end
end
# Tests whether the given pattern is #matched from the current scan
# pointer. Returns the length of the match, or +nil+. The scan pointer is
# not advanced.
#
# s = StringScanner.new('test string')
# p s.match?(/\w+/) # -> 4
# p s.match?(/\w+/) # -> 4
# p s.match?(/\s+/) # -> nil
def match?(pattern)
_scan_headonly(pattern, false, false)
end
# Returns the last matched string.
#
# s = StringScanner.new('test string')
# s.match?(/\w+/) # -> 4
# s.matched # -> "test"
def matched
match.to_s if matched?
end
# Returns +true+ iff the last match was successful.
#
# s = StringScanner.new('test string')
# s.match?(/\w+/) # => 4
# s.matched? # => true
# s.match?(/\d+/) # => nil
# s.matched? # => false
def matched?
not @match.eql? nil
end
# Returns the size of the most recent match (see #matched), or +nil+ if
# there was no recent match.
#
# s = StringScanner.new('test string')
# s.check /\w+/ # -> "test"
# s.matched_size # -> 4
# s.check /\d+/ # -> nil
# s.matched_size # -> nil
def matched_size
m = @match
m.to_s.size if (not m.eql? nil)
end
# Equivalent to #matched_size. This method is obsolete; use #matched_size
# instead.
def matchedsize
#warn "StringScanner#matchedsize is obsolete; use #matched_size instead" if $VERBOSE
matched_size
end
# Return the post-match (in the regular expression sense) of the last
# #scan.
#
# s = StringScanner.new('test string')
# s.scan(/\w+/) # -> "test"
# s.scan(/\s+/) # -> " "
# s.pre_match # -> "test"
# s.post_match # -> "string"
def post_match
m = @match
m.post_match if (not m.eql?(nil))
end
# Return the pre-match (in the regular expression sense) of the last
# #scan.
#
# s = StringScanner.new('test string')
# s.scan(/\w+/) # -> "test"
# s.scan(/\s+/) # -> " "
# s.pre_match # -> "test"
# s.post_match # -> "string"
def pre_match
m = @match
@string[0...(@pos - m.to_s.size)] if (not m.eql?(nil))
end
# Reset the scan pointer (index 0) and clear matching data.
def reset
@prev_pos = @pos = 0
@match = nil
self
end
# Returns the "rest" of the string (i.e. everything after the scan
# pointer). If there is no more data (eos? = true), it returns
# <tt>""</tt>.
def rest
@string[@pos..-1]
end
# Returns true iff there is more data in the string. See eos?. This
# method is obsolete; use eos? instead.
#
# s = StringScanner.new('test string')
# s.eos? # These two
# s.rest? # are opposites.
def rest?
@pos < @string.size
end
# s.rest_size is equivalent to s.rest.size.
def rest_size
p = @pos
ss = @string.size
if p < ss
ss - p
else
0
end
end
# s.restsize is equivalent to s.rest_size. This method is obsolete; use
# #rest_size instead.
def restsize
#warn "StringScanner#restsize is obsolete; use #rest_size instead" if $VERBOSE
rest_size
end
# Tries to match with pattern at the current position. If there's a
# match, the scanner advances the "scan pointer" and returns the matched
# string. Otherwise, the scanner returns nil.
#
# s = StringScanner.new('test string')
# p s.scan(/\w+/) # -> "test"
# p s.scan(/\w+/) # -> nil
# p s.scan(/\s+/) # -> " "
# p s.scan(/\w+/) # -> "string"
# p s.scan(/./) # -> nil
def scan(pattern)
_scan_headonly(pattern, true, true)
end
# Scans the string until the pattern is matched. Returns the substring up
# to and including the end of the match, advancing the scan pointer to
# that location. If there is no match, nil is returned.
#
# s = StringScanner.new("Fri Dec 12 1975 14:39")
# s.scan_until(/1/) # -> "Fri Dec 1"
# s.pre_match # -> "Fri Dec "
# s.scan_until(/XYZ/) # -> nil
def scan_until(pattern)
_scan(pattern, true, true)
end
# Tests whether the given pattern is matched from the current scan
# pointer. Returns the matched string if return_string_p is
# true. Advances the scan pointer if advance_pointer_p is true. The match
# register is affected.
#
# "full" means "scan with full parameters".
def scan_full(pattern, succptr, getstr)
_scan_headonly(pattern, succptr, getstr)
end
# Scans the string until the pattern is matched. Returns the matched
# string if return_string_p is true, otherwise returns the number of
# bytes advanced. Advances the scan pointer if advance_pointer_p,
# otherwise not. This method does affect the match register.
def search_full(pattern, succptr, getstr)
_scan(pattern, succptr, getstr)
end
def self.must_C_version
self
end
# Attempts to skip over the given pattern beginning with the scan
# pointer. If it matches, the scan pointer is advanced to the end of the
# match, and the length of the match is returned. Otherwise, nil is
# returned.
#
# It's similar to scan, but without returning the matched string.
#
# s = StringScanner.new('test string')
# p s.skip(/\w+/) # -> 4
# p s.skip(/\w+/) # -> nil
# p s.skip(/\s+/) # -> 1
# p s.skip(/\w+/) # -> 6
# p s.skip(/./) # -> nil
def skip(pattern)
_scan_headonly(pattern, true, false)
end
# Advances the scan pointer until pattern is matched and
# consumed. Returns the number of bytes advanced, or nil if no match was
# found.
#
# Look ahead to match pattern, and advance the scan pointer to the end of
# the match. Return the number of characters advanced, or nil if the
# match was unsuccessful.
#
# It's similar to scan_until, but without returning the intervening
# string.
#
# s = StringScanner.new("Fri Dec 12 1975 14:39")
# s.skip_until /12/ # -> 10
# s #
#
def skip_until(pattern)
x = @pos || 0
y = _scan(pattern, true, false)
y.nil? ? nil : y - x
end
# Returns the string being scanned.
def string
@string
end
# Changes the string being scanned to +str+ and resets the
# scanner. Returns +str+.
def string=(str)
unless str.is_a?(String)
str = str.to_s
end
reset
@string = str
end
# Set the scan pointer to the end of the string and clear matching data.
def terminate
@match = nil
@pos = @string.size
self
end
# Set the scan pointer to the previous position. Only one previous
# position is remembered, and it changes with each scanning operation.
#
# s = StringScanner.new('test string')
# s.scan(/\w+/) # => "test"
# s.unscan
# s.scan(/../) # => "te"
# s.scan(/\d/) # => nil
# s.unscan # ScanError: unscan failed: previous match had failed
def unscan
raise ScanError if @match.eql?(nil)
@pos = @prev_pos
@prev_pos = nil
@match = nil
self
end
# Extracts a string corresponding to <tt>string[pos,len]</tt>, without
# advancing the scan pointer.
#
# s = StringScanner.new('test string')
# s.peek(7) # => "test st"
# s.peek(7) # => "test st"
#
def peek(len)
unless len.is_a?(Fixnum)
raise RangeError,'expected Fixnum'
end
raise ArgumentError if len < 0
return "" if len == 0
return @string[@pos, len]
end
# Equivalent to #peek. This method is obsolete; use #peek instead.
def peep len
#warn "StringScanner#peep is obsolete; use #peek instead" if $VERBOSE
peek len
end
def _scan(pattern, succptr, getstr)
if pattern.is_a?(String)
# ok
elsif pattern.is_a?(Regexp)
# ok
else
raise TypeError
end
@match = nil
ppos = @pos
sstr = @string
return nil if (sstr.size - ppos) < 0 # TODO: make more elegant
# rest = self.rest
# @match = pattern.match(rest)
mmatch = pattern.match(sstr)#_from_nocheck(sstr, ppos)
@match = mmatch
return nil unless mmatch
m = rest[0, mmatch.end(0)]
if succptr then
@prev_pos = ppos
@pos = mmatch.end(0)
end
if getstr then
m
else
m.size
end
end
private :_scan
def _scan_headonly(pattern, succptr, getstr)
unless pattern.is_a?(Regexp)
raise TypeError, "expected a Regexp"
end
@match = nil
ppos = @pos
sstr = @string
return nil if (sstr.size - ppos) < 0 # TODO: make more elegant
# rest = self.rest
rest = sstr[ppos..-1]
# NOTE - match_start is an Oniguruma feature that Rubinius exposes.
# We use it here to avoid creating a new Regexp with '^' prepended.
mmatch = pattern.match(rest)
@match = mmatch
return nil unless mmatch
m = rest[0, mmatch.end(0)]
if succptr then
@prev_pos = ppos
@pos += m.size
end
if getstr then
m
else
m.size
end
end
private :_scan_headonly
end