Class: EmailAddressValidator::DomainParser

Inherits:
Object
  • Object
show all
Defined in:
lib/email_address_validator/domain-parser.rb

Defined Under Namespace

Classes: LeftRecursive, MemoEntry, ParseError, RuleInfo

Constant Summary collapse

Rules =
{}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(str, debug = false) ⇒ DomainParser

This is distinct from setup_parser so that a standalone parser can redefine #initialize and still have access to the proper parser setup code.



21
22
23
# File 'lib/email_address_validator/domain-parser.rb', line 21

def initialize(str, debug=false)
  setup_parser(str, debug)
end

Instance Attribute Details

#failed_ruleObject (readonly)

Returns the value of attribute failed_rule.



147
148
149
# File 'lib/email_address_validator/domain-parser.rb', line 147

def failed_rule
  @failed_rule
end

#failing_rule_offsetObject (readonly)

Returns the value of attribute failing_rule_offset.



26
27
28
# File 'lib/email_address_validator/domain-parser.rb', line 26

def failing_rule_offset
  @failing_rule_offset
end

#posObject

Returns the value of attribute pos.



27
28
29
# File 'lib/email_address_validator/domain-parser.rb', line 27

def pos
  @pos
end

#resultObject (readonly)

Returns the value of attribute result.



26
27
28
# File 'lib/email_address_validator/domain-parser.rb', line 26

def result
  @result
end

#stringObject (readonly)

Returns the value of attribute string.



25
26
27
# File 'lib/email_address_validator/domain-parser.rb', line 25

def string
  @string
end

Class Method Details

.rule_info(name, rendered) ⇒ Object



313
314
315
# File 'lib/email_address_validator/domain-parser.rb', line 313

def self.rule_info(name, rendered)
  RuleInfo.new(name, rendered)
end

Instance Method Details

#_digitObject

digit = /[0-9]/



464
465
466
467
468
# File 'lib/email_address_validator/domain-parser.rb', line 464

def _digit
  _tmp = scan(/\A(?-mix:[0-9])/)
  set_failed_rule :_digit unless _tmp
  return _tmp
end

#_domainObject

domain = < subdomain > &{ text.size < 255 }



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
# File 'lib/email_address_validator/domain-parser.rb', line 321

def _domain

  _save = self.pos
  while true # sequence
  _text_start = self.pos
  _tmp = apply(:_subdomain)
  if _tmp
    text = get_text(_text_start)
  end
  unless _tmp
    self.pos = _save
    break
  end
  _save1 = self.pos
  _tmp = begin;  text.size < 255 ; end
  self.pos = _save1
  unless _tmp
    self.pos = _save
  end
  break
  end # end sequence

  set_failed_rule :_domain unless _tmp
  return _tmp
end

#_labelObject

label = let-dig < let-dig-hyp* > &{ text.size < 63 && (text.size == 0 || text != ?-) }



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
# File 'lib/email_address_validator/domain-parser.rb', line 385

def _label

  _save = self.pos
  while true # sequence
  _tmp = apply(:_let_hyphen_dig)
  unless _tmp
    self.pos = _save
    break
  end
  _text_start = self.pos
  while true
  _tmp = apply(:_let_hyphen_dig_hyphen_hyp)
  break unless _tmp
  end
  _tmp = true
  if _tmp
    text = get_text(_text_start)
  end
  unless _tmp
    self.pos = _save
    break
  end
  _save2 = self.pos
  _tmp = begin;  text.size < 63 && (text.size == 0 || text[-1] != ?-) ; end
  self.pos = _save2
  unless _tmp
    self.pos = _save
  end
  break
  end # end sequence

  set_failed_rule :_label unless _tmp
  return _tmp
end

#_let_hyphen_digObject

let-dig = (letter | digit)



439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
# File 'lib/email_address_validator/domain-parser.rb', line 439

def _let_hyphen_dig

  _save = self.pos
  while true # choice
  _tmp = apply(:_letter)
  break if _tmp
  self.pos = _save
  _tmp = apply(:_digit)
  break if _tmp
  self.pos = _save
  break
  end # end choice

  set_failed_rule :_let_hyphen_dig unless _tmp
  return _tmp
end

#_let_hyphen_dig_hyphen_hypObject

let-dig-hyp = (let-dig | “-”)



421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# File 'lib/email_address_validator/domain-parser.rb', line 421

def _let_hyphen_dig_hyphen_hyp

  _save = self.pos
  while true # choice
  _tmp = apply(:_let_hyphen_dig)
  break if _tmp
  self.pos = _save
  _tmp = match_string("-")
  break if _tmp
  self.pos = _save
  break
  end # end choice

  set_failed_rule :_let_hyphen_dig_hyphen_hyp unless _tmp
  return _tmp
end

#_letterObject

letter = /[A-Za-z]/



457
458
459
460
461
# File 'lib/email_address_validator/domain-parser.rb', line 457

def _letter
  _tmp = scan(/\A(?-mix:[A-Za-z])/)
  set_failed_rule :_letter unless _tmp
  return _tmp
end

#_rootObject

root = domain !.



471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
# File 'lib/email_address_validator/domain-parser.rb', line 471

def _root

  _save = self.pos
  while true # sequence
  _tmp = apply(:_domain)
  unless _tmp
    self.pos = _save
    break
  end
  _save1 = self.pos
  _tmp = get_byte
  _tmp = _tmp ? nil : true
  self.pos = _save1
  unless _tmp
    self.pos = _save
  end
  break
  end # end sequence

  set_failed_rule :_root unless _tmp
  return _tmp
end

#_subdomainObject

subdomain = (subdomain “.” label | label)



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
# File 'lib/email_address_validator/domain-parser.rb', line 348

def _subdomain

  _save = self.pos
  while true # choice

  _save1 = self.pos
  while true # sequence
  _tmp = apply(:_subdomain)
  unless _tmp
    self.pos = _save1
    break
  end
  _tmp = match_string(".")
  unless _tmp
    self.pos = _save1
    break
  end
  _tmp = apply(:_label)
  unless _tmp
    self.pos = _save1
  end
  break
  end # end sequence

  break if _tmp
  self.pos = _save
  _tmp = apply(:_label)
  break if _tmp
  self.pos = _save
  break
  end # end choice

  set_failed_rule :_subdomain unless _tmp
  return _tmp
end

#apply(rule) ⇒ Object



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
# File 'lib/email_address_validator/domain-parser.rb', line 250

def apply(rule)
  if m = @memoizations[rule][@pos]
    m.inc!

    prev = @pos
    @pos = m.pos
    if m.ans.kind_of? LeftRecursive
      m.ans.detected = true
      return nil
    end

    @result = m.result

    return m.ans
  else
    lr = LeftRecursive.new(false)
    m = MemoEntry.new(lr, @pos)
    @memoizations[rule][@pos] = m
    start_pos = @pos

    ans = __send__ rule

    m.move! ans, @pos, @result

    # Don't bother trying to grow the left recursion
    # if it's failing straight away (thus there is no seed)
    if ans and lr.detected
      return grow_lr(rule, start_pos, m)
    else
      return ans
    end

    return ans
  end
end

#current_column(target = pos) ⇒ Object

STANDALONE START



30
31
32
33
34
35
36
# File 'lib/email_address_validator/domain-parser.rb', line 30

def current_column(target=pos)
  if c = string.rindex("\n", target-1)
    return target - c - 1
  end

  target + 1
end

#current_line(target = pos) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/email_address_validator/domain-parser.rb', line 38

def current_line(target=pos)
  cur_offset = 0
  cur_line = 0

  string.each_line do |line|
    cur_line += 1
    cur_offset += line.size
    return cur_line if cur_offset >= target
  end

  -1
end

#external_invoke(other, rule, *args) ⇒ Object



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/email_address_validator/domain-parser.rb', line 230

def external_invoke(other, rule, *args)
  old_pos = @pos
  old_string = @string

  @pos = other.pos
  @string = other.string

  begin
    if val = __send__(rule, *args)
      other.pos = @pos
    else
      other.set_failed_rule "#{self.class}##{rule}"
    end
    val
  ensure
    @pos = old_pos
    @string = old_string
  end
end

#failure_caretObject



84
85
86
87
88
89
90
# File 'lib/email_address_validator/domain-parser.rb', line 84

def failure_caret
  l = current_line @failing_rule_offset
  c = current_column @failing_rule_offset

  line = lines[l-1]
  "#{line}\n#{' ' * (c - 1)}^"
end

#failure_characterObject



92
93
94
95
96
# File 'lib/email_address_validator/domain-parser.rb', line 92

def failure_character
  l = current_line @failing_rule_offset
  c = current_column @failing_rule_offset
  lines[l-1][c-1, 1]
end

#failure_infoObject



72
73
74
75
76
77
78
79
80
81
82
# File 'lib/email_address_validator/domain-parser.rb', line 72

def failure_info
  l = current_line @failing_rule_offset
  c = current_column @failing_rule_offset

  if @failed_rule.kind_of? Symbol
    info = self.class::Rules[@failed_rule]
    "line #{l}, column #{c}: failed rule '#{info.name}' = '#{info.rendered}'"
  else
    "line #{l}, column #{c}: failed rule '#{@failed_rule}'"
  end
end

#failure_onelineObject



98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/email_address_validator/domain-parser.rb', line 98

def failure_oneline
  l = current_line @failing_rule_offset
  c = current_column @failing_rule_offset

  char = lines[l-1][c-1, 1]

  if @failed_rule.kind_of? Symbol
    info = self.class::Rules[@failed_rule]
    "@#{l}:#{c} failed rule '#{info.name}', got '#{char}'"
  else
    "@#{l}:#{c} failed rule '#{@failed_rule}', got '#{char}'"
  end
end

#get_byteObject



170
171
172
173
174
175
176
177
178
# File 'lib/email_address_validator/domain-parser.rb', line 170

def get_byte
  if @pos >= @string.size
    return nil
  end

  s = @string.getbyte @pos
  @pos += 1
  s
end

#get_text(start) ⇒ Object



59
60
61
# File 'lib/email_address_validator/domain-parser.rb', line 59

def get_text(start)
  @string[start..@pos-1]
end

#grow_lr(rule, start_pos, m) ⇒ Object



286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# File 'lib/email_address_validator/domain-parser.rb', line 286

def grow_lr(rule, start_pos, m)
  while true
    @pos = start_pos
    @result = m.result

    ans = __send__ rule
    return nil unless ans

    break if @pos <= m.pos

    m.move! ans, @pos, @result
  end

  @result = m.result
  @pos = m.pos
  return m.ans
end

#linesObject



51
52
53
54
55
# File 'lib/email_address_validator/domain-parser.rb', line 51

def lines
  lines = []
  string.each_line { |l| lines << l }
  lines
end

#match_string(str) ⇒ Object



149
150
151
152
153
154
155
156
157
# File 'lib/email_address_validator/domain-parser.rb', line 149

def match_string(str)
  len = str.size
  if @string[pos,len] == str
    @pos += len
    return str
  end

  return nil
end

#parse(rule = nil) ⇒ Object



191
192
193
194
195
196
197
198
199
# File 'lib/email_address_validator/domain-parser.rb', line 191

def parse(rule=nil)
  if !rule
    _root ? true : false
  else
    # This is not shared with code_generator.rb so this can be standalone
    method = rule.gsub("-","_hyphen_")
    __send__("_#{method}") ? true : false
  end
end

#raise_errorObject

Raises:



115
116
117
# File 'lib/email_address_validator/domain-parser.rb', line 115

def raise_error
  raise ParseError, failure_oneline
end

#scan(reg) ⇒ Object



159
160
161
162
163
164
165
166
167
# File 'lib/email_address_validator/domain-parser.rb', line 159

def scan(reg)
  if m = reg.match(@string[@pos..-1])
    width = m.end(0)
    @pos += width
    return true
  end

  return nil
end

#set_failed_rule(name) ⇒ Object



140
141
142
143
144
145
# File 'lib/email_address_validator/domain-parser.rb', line 140

def set_failed_rule(name)
  if @pos > @failing_rule_offset
    @failed_rule = name
    @failing_rule_offset = @pos
  end
end

#setup_foreign_grammarObject



14
15
# File 'lib/email_address_validator/domain-parser.rb', line 14

def setup_foreign_grammar
end

#setup_parser(str, debug = false) ⇒ Object

STANDALONE START



3
4
5
6
7
8
9
10
11
12
# File 'lib/email_address_validator/domain-parser.rb', line 3

def setup_parser(str, debug=false)
  @string = str
  @pos = 0
  @memoizations = Hash.new { |h,k| h[k] = {} }
  @result = nil
  @failed_rule = nil
  @failing_rule_offset = -1

  setup_foreign_grammar
end

#show_error(io = STDOUT) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/email_address_validator/domain-parser.rb', line 119

def show_error(io=STDOUT)
  error_pos = @failing_rule_offset
  line_no = current_line(error_pos)
  col_no = current_column(error_pos)

  io.puts "On line #{line_no}, column #{col_no}:"

  if @failed_rule.kind_of? Symbol
    info = self.class::Rules[@failed_rule]
    io.puts "Failed to match '#{info.rendered}' (rule '#{info.name}')"
  else
    io.puts "Failed to match rule '#{@failed_rule}'"
  end

  io.puts "Got: #{string[error_pos,1].inspect}"
  line = lines[line_no-1]
  io.puts "=> #{line}"
  io.print(" " * (col_no + 3))
  io.puts "^"
end

#show_posObject



63
64
65
66
67
68
69
70
# File 'lib/email_address_validator/domain-parser.rb', line 63

def show_pos
  width = 10
  if @pos < width
    "#{@pos} (\"#{@string[0,@pos]}\" @ \"#{@string[@pos,width]}\")"
  else
    "#{@pos} (\"... #{@string[@pos - width, width]}\" @ \"#{@string[@pos,width]}\")"
  end
end