Class: EmailAddressValidator::RFC822Parser

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

Defined Under Namespace

Classes: 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) ⇒ RFC822Parser

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



7
8
9
# File 'lib/email_address_validator/rfc822-parser.rb', line 7

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

Instance Attribute Details

#failed_ruleObject (readonly)

Returns the value of attribute failed_rule.



153
154
155
# File 'lib/email_address_validator/rfc822-parser.rb', line 153

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/rfc822-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/rfc822-parser.rb', line 27

def pos
  @pos
end

#resultObject

Returns the value of attribute result.



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

def result
  @result
end

#stringObject (readonly)

Returns the value of attribute string.



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

def string
  @string
end

#validate_domainObject

:startdoc:



358
359
360
# File 'lib/email_address_validator/rfc822-parser.rb', line 358

def validate_domain
  @validate_domain
end

Class Method Details

.rule_info(name, rendered) ⇒ Object



351
352
353
# File 'lib/email_address_validator/rfc822-parser.rb', line 351

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

Instance Method Details

#__hyphen_Object

  • SPACE*



392
393
394
395
396
397
398
399
400
# File 'lib/email_address_validator/rfc822-parser.rb', line 392

def __hyphen_
  while true
    _tmp = apply(:_SPACE)
    break unless _tmp
  end
  _tmp = true
  set_failed_rule :__hyphen_ unless _tmp
  return _tmp
end

#_addr_specObject

addr_spec = local_part ocms “@” ocms domain



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

def _addr_spec

  _save = self.pos
  while true # sequence
    _tmp = apply(:_local_part)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string("@")
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_domain)
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_addr_spec unless _tmp
  return _tmp
end

#_addressObject

address = (mailbox | group)



833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
# File 'lib/email_address_validator/rfc822-parser.rb', line 833

def _address

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

  set_failed_rule :_address unless _tmp
  return _tmp
end

#_angle_addrObject

angle_addr = “<” ocms route? ocms addr_spec “>”



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

def _angle_addr

  _save = self.pos
  while true # sequence
    _tmp = match_string("<")
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _save1 = self.pos
    _tmp = apply(:_route)
    unless _tmp
      _tmp = true
      self.pos = _save1
    end
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_addr_spec)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string(">")
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_angle_addr unless _tmp
  return _tmp
end

#_ATObject

AT = “@”



403
404
405
406
407
# File 'lib/email_address_validator/rfc822-parser.rb', line 403

def _AT
  _tmp = match_string("@")
  set_failed_rule :_AT unless _tmp
  return _tmp
end

#_atomObject

atom = /[^]x00-x20 x7Fx80-xFF()<>@,;:\“.[]+/n



525
526
527
528
529
# File 'lib/email_address_validator/rfc822-parser.rb', line 525

def _atom
  _tmp = scan(/\A(?-mix:[^\]\x00-\x20 \x7F\x80-\xFF()<>@,;:\\".\[]+)/n)
  set_failed_rule :_atom unless _tmp
  return _tmp
end

#_CHARObject

CHAR = /[x00-x7f]/



428
429
430
431
432
# File 'lib/email_address_validator/rfc822-parser.rb', line 428

def _CHAR
  _tmp = scan(/\A(?-mix:[\x00-\x7f])/)
  set_failed_rule :_CHAR unless _tmp
  return _tmp
end

#_commentObject

comment = “(” (ctext | quoted_pair | comment)* “)”



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

def _comment

  _save = self.pos
  while true # sequence
    _tmp = match_string("(")
    unless _tmp
      self.pos = _save
      break
    end
    while true

      _save2 = self.pos
      while true # choice
        _tmp = apply(:_ctext)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_quoted_pair)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_comment)
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      break unless _tmp
    end
    _tmp = true
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string(")")
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_comment unless _tmp
  return _tmp
end

#_CRObject

CR = /x0D/



378
379
380
381
382
# File 'lib/email_address_validator/rfc822-parser.rb', line 378

def _CR
  _tmp = scan(/\A(?-mix:\x0D)/)
  set_failed_rule :_CR unless _tmp
  return _tmp
end

#_CRLFObject

CRLF = CR LF



449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
# File 'lib/email_address_validator/rfc822-parser.rb', line 449

def _CRLF

  _save = self.pos
  while true # sequence
    _tmp = apply(:_CR)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_LF)
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_CRLF unless _tmp
  return _tmp
end

#_ctextObject

ctext = (/[^)\x0Dx80-xFF(]+/n | linear_white_space)



532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
# File 'lib/email_address_validator/rfc822-parser.rb', line 532

def _ctext

  _save = self.pos
  while true # choice
    _tmp = scan(/\A(?-mix:[^)\\\x0D\x80-\xFF(]+)/n)
    break if _tmp
    self.pos = _save
    _tmp = apply(:_linear_white_space)
    break if _tmp
    self.pos = _save
    break
  end # end choice

  set_failed_rule :_ctext unless _tmp
  return _tmp
end

#_CTLObject

CTL = /[x00-x1fx7f]/



435
436
437
438
439
# File 'lib/email_address_validator/rfc822-parser.rb', line 435

def _CTL
  _tmp = scan(/\A(?-mix:[\x00-\x1f\x7f])/)
  set_failed_rule :_CTL unless _tmp
  return _tmp
end

#_domainObject

domain = (domain_literal | < sub_domain ocms (“.” ocms sub_domain)* > &{ @validate_domain ? EmailAddressValidator::DomainParser.new(text).parse : true })



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

def _domain

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

    _save1 = self.pos
    while true # sequence
      _text_start = self.pos

      _save2 = self.pos
      while true # sequence
        _tmp = apply(:_sub_domain)
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_ocms)
        unless _tmp
          self.pos = _save2
          break
        end
        while true

          _save4 = self.pos
          while true # sequence
            _tmp = match_string(".")
            unless _tmp
              self.pos = _save4
              break
            end
            _tmp = apply(:_ocms)
            unless _tmp
              self.pos = _save4
              break
            end
            _tmp = apply(:_sub_domain)
            unless _tmp
              self.pos = _save4
            end
            break
          end # end sequence

          break unless _tmp
        end
        _tmp = true
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      if _tmp
        text = get_text(_text_start)
      end
      unless _tmp
        self.pos = _save1
        break
      end
      _save5 = self.pos
      _tmp = begin;  @validate_domain ? EmailAddressValidator::DomainParser.new(text).parse : true ; end
      self.pos = _save5
      unless _tmp
        self.pos = _save1
      end
      break
    end # end sequence

    break if _tmp
    self.pos = _save
    break
  end # end choice

  set_failed_rule :_domain unless _tmp
  return _tmp
end

#_domain_literalObject

domain_literal = “[” (dtext | quoted_pair)* “]”



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

def _domain_literal

  _save = self.pos
  while true # sequence
    _tmp = match_string("[")
    unless _tmp
      self.pos = _save
      break
    end
    while true

      _save2 = self.pos
      while true # choice
        _tmp = apply(:_dtext)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_quoted_pair)
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      break unless _tmp
    end
    _tmp = true
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string("]")
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_domain_literal unless _tmp
  return _tmp
end

#_domain_refObject

domain_ref = atom



1275
1276
1277
1278
1279
# File 'lib/email_address_validator/rfc822-parser.rb', line 1275

def _domain_ref
  _tmp = apply(:_atom)
  set_failed_rule :_domain_ref unless _tmp
  return _tmp
end

#_dtextObject

dtext = (/[^]\x0Dx80-xFF[]+/n | linear_white_space)



550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
# File 'lib/email_address_validator/rfc822-parser.rb', line 550

def _dtext

  _save = self.pos
  while true # choice
    _tmp = scan(/\A(?-mix:[^\]\\\x0D\x80-\xFF\[]+)/n)
    break if _tmp
    self.pos = _save
    _tmp = apply(:_linear_white_space)
    break if _tmp
    self.pos = _save
    break
  end # end choice

  set_failed_rule :_dtext unless _tmp
  return _tmp
end

#_groupObject

group = phrase ocms “:” ocms mailbox (ocms “,” ocms mailbox)* ocms “;”



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

def _group

  _save = self.pos
  while true # sequence
    _tmp = apply(:_phrase)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string(":")
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_mailbox)
    unless _tmp
      self.pos = _save
      break
    end
    while true

      _save2 = self.pos
      while true # sequence
        _tmp = apply(:_ocms)
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = match_string(",")
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_ocms)
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_mailbox)
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      break unless _tmp
    end
    _tmp = true
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string(";")
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_group unless _tmp
  return _tmp
end

#_HTABObject

HTAB = /x09/



364
365
366
367
368
# File 'lib/email_address_validator/rfc822-parser.rb', line 364

def _HTAB
  _tmp = scan(/\A(?-mix:\x09)/)
  set_failed_rule :_HTAB unless _tmp
  return _tmp
end

#_LFObject

LF = /x0A/



371
372
373
374
375
# File 'lib/email_address_validator/rfc822-parser.rb', line 371

def _LF
  _tmp = scan(/\A(?-mix:\x0A)/)
  set_failed_rule :_LF unless _tmp
  return _tmp
end

#_linear_white_spaceObject

linear_white_space = (CRLF? LWSP_char)+



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

def _linear_white_space
  _save = self.pos

  _save1 = self.pos
  while true # sequence
    _save2 = self.pos
    _tmp = apply(:_CRLF)
    unless _tmp
      _tmp = true
      self.pos = _save2
    end
    unless _tmp
      self.pos = _save1
      break
    end
    _tmp = apply(:_LWSP_char)
    unless _tmp
      self.pos = _save1
    end
    break
  end # end sequence

  if _tmp
    while true

      _save3 = self.pos
      while true # sequence
        _save4 = self.pos
        _tmp = apply(:_CRLF)
        unless _tmp
          _tmp = true
          self.pos = _save4
        end
        unless _tmp
          self.pos = _save3
          break
        end
        _tmp = apply(:_LWSP_char)
        unless _tmp
          self.pos = _save3
        end
        break
      end # end sequence

      break unless _tmp
    end
    _tmp = true
  else
    self.pos = _save
  end
  set_failed_rule :_linear_white_space unless _tmp
  return _tmp
end

#_local_partObject

local_part = word ocms (“.” ocms word)*



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

def _local_part

  _save = self.pos
  while true # sequence
    _tmp = apply(:_word)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    while true

      _save2 = self.pos
      while true # sequence
        _tmp = match_string(".")
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_ocms)
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:_word)
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      break unless _tmp
    end
    _tmp = true
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_local_part unless _tmp
  return _tmp
end

#_LWSP_charObject

LWSP_char = (SPACE | HTAB)



410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
# File 'lib/email_address_validator/rfc822-parser.rb', line 410

def _LWSP_char

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

  set_failed_rule :_LWSP_char unless _tmp
  return _tmp
end

#_mailboxObject

mailbox = (addr_spec | phrase - ocms - angle_addr)



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

def _mailbox

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

    _save1 = self.pos
    while true # sequence
      _tmp = apply(:_phrase)
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:__hyphen_)
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:_ocms)
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:__hyphen_)
      unless _tmp
        self.pos = _save1
        break
      end
      _tmp = apply(:_angle_addr)
      unless _tmp
        self.pos = _save1
      end
      break
    end # end sequence

    break if _tmp
    self.pos = _save
    break
  end # end choice

  set_failed_rule :_mailbox unless _tmp
  return _tmp
end

#_ocmsObject

ocms = comment*



733
734
735
736
737
738
739
740
741
# File 'lib/email_address_validator/rfc822-parser.rb', line 733

def _ocms
  while true
    _tmp = apply(:_comment)
    break unless _tmp
  end
  _tmp = true
  set_failed_rule :_ocms unless _tmp
  return _tmp
end

#_only_addr_specObject

only_addr_spec = addr_spec !.



1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
# File 'lib/email_address_validator/rfc822-parser.rb', line 1306

def _only_addr_spec

  _save = self.pos
  while true # sequence
    _tmp = apply(:_addr_spec)
    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 :_only_addr_spec unless _tmp
  return _tmp
end

#_phraseObject

phrase = (word -)+



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

def _phrase
  _save = self.pos

  _save1 = self.pos
  while true # sequence
    _tmp = apply(:_word)
    unless _tmp
      self.pos = _save1
      break
    end
    _tmp = apply(:__hyphen_)
    unless _tmp
      self.pos = _save1
    end
    break
  end # end sequence

  if _tmp
    while true

      _save2 = self.pos
      while true # sequence
        _tmp = apply(:_word)
        unless _tmp
          self.pos = _save2
          break
        end
        _tmp = apply(:__hyphen_)
        unless _tmp
          self.pos = _save2
        end
        break
      end # end sequence

      break unless _tmp
    end
    _tmp = true
  else
    self.pos = _save
  end
  set_failed_rule :_phrase unless _tmp
  return _tmp
end

#_qtextObject

qtext = (/[^“\x0Dx80-xFF]+/n | linear_white_space)



568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
# File 'lib/email_address_validator/rfc822-parser.rb', line 568

def _qtext

  _save = self.pos
  while true # choice
    _tmp = scan(/\A(?-mix:[^"\\\x0D\x80-\xFF]+)/n)
    break if _tmp
    self.pos = _save
    _tmp = apply(:_linear_white_space)
    break if _tmp
    self.pos = _save
    break
  end # end choice

  set_failed_rule :_qtext unless _tmp
  return _tmp
end

#_quoted_pairObject

quoted_pair = “\” CHAR



586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
# File 'lib/email_address_validator/rfc822-parser.rb', line 586

def _quoted_pair

  _save = self.pos
  while true # sequence
    _tmp = match_string("\\")
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_CHAR)
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_quoted_pair unless _tmp
  return _tmp
end

#_quoted_stringObject

quoted_string = “"” (qtext | quoted_pair)* “"”



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

def _quoted_string

  _save = self.pos
  while true # sequence
    _tmp = match_string("\"")
    unless _tmp
      self.pos = _save
      break
    end
    while true

      _save2 = self.pos
      while true # choice
        _tmp = apply(:_qtext)
        break if _tmp
        self.pos = _save2
        _tmp = apply(:_quoted_pair)
        break if _tmp
        self.pos = _save2
        break
      end # end choice

      break unless _tmp
    end
    _tmp = true
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string("\"")
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_quoted_string unless _tmp
  return _tmp
end

#_rootObject

root = valid !.



1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
# File 'lib/email_address_validator/rfc822-parser.rb', line 1282

def _root

  _save = self.pos
  while true # sequence
    _tmp = apply(:_valid)
    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

#_routeObject

route = (AT ocms domain)+ “:”



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

def _route

  _save = self.pos
  while true # sequence
    _save1 = self.pos

    _save2 = self.pos
    while true # sequence
      _tmp = apply(:_AT)
      unless _tmp
        self.pos = _save2
        break
      end
      _tmp = apply(:_ocms)
      unless _tmp
        self.pos = _save2
        break
      end
      _tmp = apply(:_domain)
      unless _tmp
        self.pos = _save2
      end
      break
    end # end sequence

    if _tmp
      while true

        _save3 = self.pos
        while true # sequence
          _tmp = apply(:_AT)
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = apply(:_ocms)
          unless _tmp
            self.pos = _save3
            break
          end
          _tmp = apply(:_domain)
          unless _tmp
            self.pos = _save3
          end
          break
        end # end sequence

        break unless _tmp
      end
      _tmp = true
    else
      self.pos = _save1
    end
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = match_string(":")
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_route unless _tmp
  return _tmp
end

#_SPACEObject

SPACE = “ ”



385
386
387
388
389
# File 'lib/email_address_validator/rfc822-parser.rb', line 385

def _SPACE
  _tmp = match_string(" ")
  set_failed_rule :_SPACE unless _tmp
  return _tmp
end

#_specialObject

special = /[]()<>@,;:\“.[]/



442
443
444
445
446
# File 'lib/email_address_validator/rfc822-parser.rb', line 442

def _special
  _tmp = scan(/\A(?-mix:[\]()<>@,;:\\".\[])/)
  set_failed_rule :_special unless _tmp
  return _tmp
end

#_sub_domainObject

sub_domain = (domain_ref | domain_literal)



1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
# File 'lib/email_address_validator/rfc822-parser.rb', line 1257

def _sub_domain

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

  set_failed_rule :_sub_domain unless _tmp
  return _tmp
end

#_validObject

valid = ocms address ocms



807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
# File 'lib/email_address_validator/rfc822-parser.rb', line 807

def _valid

  _save = self.pos
  while true # sequence
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_address)
    unless _tmp
      self.pos = _save
      break
    end
    _tmp = apply(:_ocms)
    unless _tmp
      self.pos = _save
    end
    break
  end # end sequence

  set_failed_rule :_valid unless _tmp
  return _tmp
end

#_wordObject

word = (atom | quoted_string)



744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
# File 'lib/email_address_validator/rfc822-parser.rb', line 744

def _word

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

  set_failed_rule :_word unless _tmp
  return _tmp
end

#apply(rule) ⇒ Object



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

def apply(rule)
  if m = @memoizations[rule][@pos]
    @pos = m.pos
    if !m.set
      m.left_rec = true
      return nil
    end

    @result = m.result

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

    ans = __send__ rule

    lr = m.left_rec

    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
      return grow_lr(rule, nil, start_pos, m)
    else
      return ans
    end

    return ans
  end
end

#apply_with_args(rule, *args) ⇒ Object



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/rfc822-parser.rb', line 251

def apply_with_args(rule, *args)
  memo_key = [rule, args]
  if m = @memoizations[memo_key][@pos]
    @pos = m.pos
    if !m.set
      m.left_rec = true
      return nil
    end

    @result = m.result

    return m.ans
  else
    m = MemoEntry.new(nil, @pos)
    @memoizations[memo_key][@pos] = m
    start_pos = @pos

    ans = __send__ rule, *args

    lr = m.left_rec

    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
      return grow_lr(rule, args, start_pos, m)
    else
      return ans
    end

    return ans
  end
end

#current_column(target = pos) ⇒ Object



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

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



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

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



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

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

  set_string other.string, other.pos

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

#failure_caretObject



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

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



98
99
100
101
102
# File 'lib/email_address_validator/rfc822-parser.rb', line 98

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

#failure_infoObject



78
79
80
81
82
83
84
85
86
87
88
# File 'lib/email_address_validator/rfc822-parser.rb', line 78

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



104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/email_address_validator/rfc822-parser.rb', line 104

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



176
177
178
179
180
181
182
183
184
# File 'lib/email_address_validator/rfc822-parser.rb', line 176

def get_byte
  if @pos >= @string_size
    return nil
  end

  s = @string[@pos].ord
  @pos += 1
  s
end

#get_text(start) ⇒ Object



58
59
60
# File 'lib/email_address_validator/rfc822-parser.rb', line 58

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

#grow_lr(rule, args, start_pos, m) ⇒ Object



320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
# File 'lib/email_address_validator/rfc822-parser.rb', line 320

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

    if args
      ans = __send__ rule, *args
    else
      ans = __send__ rule
    end
    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



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

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

#match_string(str) ⇒ Object



155
156
157
158
159
160
161
162
163
# File 'lib/email_address_validator/rfc822-parser.rb', line 155

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

  return nil
end

#parse(rule = nil) ⇒ Object



197
198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/email_address_validator/rfc822-parser.rb', line 197

def parse(rule=nil)
  # We invoke the rules indirectly via apply
  # instead of by just calling them as methods because
  # if the rules use left recursion, apply needs to
  # manage that.

  if !rule
    apply(:_root)
  else
    method = rule.gsub("-","_hyphen_")
    apply :"_#{method}"
  end
end

#raise_errorObject

Raises:



121
122
123
# File 'lib/email_address_validator/rfc822-parser.rb', line 121

def raise_error
  raise ParseError, failure_oneline
end

#scan(reg) ⇒ Object



165
166
167
168
169
170
171
172
173
# File 'lib/email_address_validator/rfc822-parser.rb', line 165

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



146
147
148
149
150
151
# File 'lib/email_address_validator/rfc822-parser.rb', line 146

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

#set_string(string, pos) ⇒ Object

Sets the string and current parsing position for the parser.



63
64
65
66
67
# File 'lib/email_address_validator/rfc822-parser.rb', line 63

def set_string string, pos
  @string = string
  @string_size = string ? string.size : 0
  @pos = pos
end

#setup_foreign_grammarObject

:stopdoc:



361
# File 'lib/email_address_validator/rfc822-parser.rb', line 361

def setup_foreign_grammar; end

#setup_parser(str, debug = false) ⇒ Object

Prepares for parsing str. If you define a custom initialize you must call this method before #parse



15
16
17
18
19
20
21
22
23
# File 'lib/email_address_validator/rfc822-parser.rb', line 15

def setup_parser(str, debug=false)
  set_string str, 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



125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/email_address_validator/rfc822-parser.rb', line 125

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



69
70
71
72
73
74
75
76
# File 'lib/email_address_validator/rfc822-parser.rb', line 69

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