@@ -216,6 +216,7 @@ A structure allowing to parse a BibTeX formatted string one character at a time.
216
216
- `pos_start::Position`: pointer to the raw/col start position
217
217
- `pos_end::Position`: pointer to the raw/col end position
218
218
- `storage::Storage`: temporary storage of the content of an entry being parsed
219
+ - `rules_checker::Bool`: indicate which level `:error`, `:warn`, or `:none` should be raised when an entry violates BibTeX rules
219
220
- `task::Symbol`: describe which part of the BibTeX gramma is being parsed
220
221
"""
221
222
mutable struct Parser
@@ -226,6 +227,7 @@ mutable struct Parser
226
227
input:: Vector{Char}
227
228
pos_start:: Position
228
229
pos_end:: Position
230
+ rules_checker:: Symbol
229
231
storage:: Storage
230
232
task:: Symbol
231
233
@@ -237,11 +239,21 @@ mutable struct Parser
237
239
field= Field (),
238
240
pos_start= Position (1 , 1 ),
239
241
pos_end= Position (1 , 0 ),
242
+ rules_checker= :error ,
240
243
storage= Storage (),
241
244
task= :free ,
242
245
)
243
246
return new (
244
- acc, content, errors, field, collect (input), pos_start, pos_end, storage, task
247
+ acc,
248
+ content,
249
+ errors,
250
+ field,
251
+ collect (input),
252
+ pos_start,
253
+ pos_end,
254
+ rules_checker,
255
+ storage,
256
+ task,
245
257
)
246
258
end
247
259
end
@@ -326,10 +338,10 @@ function inc!(parser, char, dumped)
326
338
end
327
339
end
328
340
329
- is_dumped (parser , char, :: Val{:free} ) = char == ' @'
341
+ is_dumped (:: Parser , char, :: Val{:free} ) = char == ' @'
330
342
dump! (parser, char, :: Val ) = char == ' @' && (parser. task = :entry )
331
343
332
- is_dumped (parser , char, :: Val{:entry} ) = occursin (r" [@{\(\n ]" , char)
344
+ is_dumped (:: Parser , char, :: Val{:entry} ) = occursin (r" [@{\(\n ]" , char)
333
345
function dump! (parser, char, :: Val{:entry} )
334
346
if char == ' \n '
335
347
parser. task = :free
@@ -354,7 +366,7 @@ function dump!(parser, char, ::Val{:entry})
354
366
end
355
367
end
356
368
357
- is_dumped (parser , char, :: Val{:key} ) = char ∈ [' @' , ' ,' ]
369
+ is_dumped (:: Parser , char, :: Val{:key} ) = char ∈ [' @' , ' ,' ]
358
370
function dump! (parser, char, :: Val{:key} )
359
371
if char == ' @'
360
372
parser. task = :entry
@@ -378,7 +390,7 @@ function dump!(parser, char, ::Val{:key})
378
390
end
379
391
end
380
392
381
- is_dumped (parser , char, :: Val{:field_name} ) = char ∈ [' =' , ' @' ]
393
+ is_dumped (:: Parser , char, :: Val{:field_name} ) = char ∈ [' =' , ' @' ]
382
394
function dump! (parser, char, :: Val{:field_name} )
383
395
if char == ' @'
384
396
parser. task = :entry
@@ -405,7 +417,7 @@ function dump!(parser, char, ::Val{:field_name})
405
417
end
406
418
end
407
419
408
- is_dumped (parser , char, :: Val{:field_in} ) = occursin (r" [0-9@a-zA-Z\" {]" , char)
420
+ is_dumped (:: Parser , char, :: Val{:field_in} ) = occursin (r" [0-9@a-zA-Z\" {]" , char)
409
421
function dump! (parser, char, :: Val{:field_in} )
410
422
if char == ' @'
411
423
parser. task = :entry
@@ -456,7 +468,7 @@ function dump!(parser, char, ::Val{:field_inbrace})
456
468
end
457
469
end
458
470
459
- is_dumped (parser , char, :: Val{:field_inquote} ) = char ∈ [' {' , ' "' , ' }' ]
471
+ is_dumped (:: Parser , char, :: Val{:field_inquote} ) = char ∈ [' {' , ' "' , ' }' ]
460
472
function dump! (parser, char, :: Val{:field_inquote} )
461
473
if char == ' "' && parser. field. braces == 0
462
474
parser. field. value *= get_acc (parser; from= 2 )
@@ -489,18 +501,19 @@ function dump!(parser, char, ::Val{:field_outquote})
489
501
parser. task = :field_next
490
502
elseif char == rev (parser. storage. delim)
491
503
entry = make_entry (parser. storage)
504
+ check = parser. rules_checker
492
505
push! (
493
506
parser. content. entries,
494
507
parser. storage. key =>
495
- BibInternal. make_bibtex_entry (parser. storage. key, entry),
508
+ BibInternal. make_bibtex_entry (parser. storage. key, entry; check ),
496
509
)
497
510
parser. storage = Storage ()
498
511
parser. task = :free
499
512
end
500
513
end
501
514
end
502
515
503
- is_dumped (parser , char, :: Val{:field_concat} ) = occursin (r" [a-zA-Z\" @]" , char)
516
+ is_dumped (:: Parser , char, :: Val{:field_concat} ) = occursin (r" [a-zA-Z\" @]" , char)
504
517
function dump! (parser, char, :: Val{:field_concat} )
505
518
if char == ' @'
506
519
parser. task = :entry
@@ -540,10 +553,11 @@ function dump!(parser, char, ::Val{:field_var})
540
553
parser. task = :field_next
541
554
elseif char == rev (parser. storage. delim)
542
555
entry = make_entry (parser. storage)
556
+ check = parser. rules_checker
543
557
push! (
544
558
parser. content. entries,
545
559
parser. storage. key =>
546
- BibInternal. make_bibtex_entry (parser. storage. key, entry),
560
+ BibInternal. make_bibtex_entry (parser. storage. key, entry; check ),
547
561
)
548
562
parser. storage = Storage ()
549
563
parser. task = :free
@@ -579,10 +593,11 @@ function dump!(parser, char, ::Val{:field_number})
579
593
parser. task = :field_next
580
594
elseif char == rev (parser. storage. delim)
581
595
entry = make_entry (parser. storage)
596
+ check = parser. rules_checker
582
597
push! (
583
598
parser. content. entries,
584
599
parser. storage. key =>
585
- BibInternal. make_bibtex_entry (parser. storage. key, entry),
600
+ BibInternal. make_bibtex_entry (parser. storage. key, entry; check ),
586
601
)
587
602
parser. task = :free
588
603
end
@@ -608,9 +623,10 @@ function dump!(parser, char, ::Val{:field_out})
608
623
parser. task = :field_next
609
624
elseif char == rev (parser. storage. delim)
610
625
entry = make_entry (parser. storage)
626
+ check = parser. rules_checker
611
627
push! (
612
628
parser. content. entries,
613
- parser. storage. key => BibInternal. make_bibtex_entry (parser. storage. key, entry),
629
+ parser. storage. key => BibInternal. make_bibtex_entry (parser. storage. key, entry; check ),
614
630
)
615
631
parser. storage = Storage ()
616
632
parser. task = :free
@@ -641,16 +657,17 @@ function dump!(parser, char, ::Val{:field_next})
641
657
end
642
658
elseif char == rev (parser. storage. delim)
643
659
entry = make_entry (parser. storage)
660
+ check = parser. rules_checker
644
661
push! (
645
662
parser. content. entries,
646
- parser. storage. key => BibInternal. make_bibtex_entry (parser. storage. key, entry),
663
+ parser. storage. key => BibInternal. make_bibtex_entry (parser. storage. key, entry; check ),
647
664
)
648
665
parser. storage = Storage ()
649
666
parser. task = :free
650
667
end
651
668
end
652
669
653
- is_dumped (parser , char, :: Val{:string} ) = char ∈ [' =' , ' @' ]
670
+ is_dumped (:: Parser , char, :: Val{:string} ) = char ∈ [' =' , ' @' ]
654
671
function dump! (parser, char, :: Val{:string} )
655
672
if char == ' @'
656
673
parser. task = :entry
@@ -677,7 +694,7 @@ function dump!(parser, char, ::Val{:string})
677
694
end
678
695
end
679
696
680
- is_dumped (parser , char, :: Val{:string_inquote} ) = char ∈ [' "' , ' @' ]
697
+ is_dumped (:: Parser , char, :: Val{:string_inquote} ) = char ∈ [' "' , ' @' ]
681
698
function dump! (parser, char, :: Val{:string_inquote} )
682
699
if char == ' @'
683
700
parser. task = :entry
@@ -690,7 +707,7 @@ function dump!(parser, char, ::Val{:string_inquote})
690
707
end
691
708
end
692
709
693
- is_dumped (parser , char, :: Val{:string_value} ) = char ∈ [' "' ]
710
+ is_dumped (:: Parser , char, :: Val{:string_value} ) = char ∈ [' "' ]
694
711
function dump! (parser, char, :: Val{:string_value} )
695
712
if char == ' "'
696
713
parser. field. value = get_acc (parser; from= 2 )
747
764
748
765
Parse a BibTeX string of entries. Raise a detailed warning for each invalid entry.
749
766
"""
750
- function parse_string (str)
751
- parser = Parser (str)
767
+ function parse_string (str; check = :error )
768
+ parser = Parser (str; rules_checker = check )
752
769
foreach (char -> parse! (parser, char), parser. input)
753
770
foreach (error -> warn (error), parser. errors)
754
771
return get_entries (parser)
759
776
760
777
Parse a BibTeX file located at `path`. Raise a detailed warning for each invalid entry.
761
778
"""
762
- parse_file (path) = parse_string (read (path, String))
779
+ parse_file (path; check = :error ) = parse_string (read (path, String); check )
763
780
764
781
end # module
0 commit comments