-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathbibtex.y
141 lines (103 loc) · 4.53 KB
/
bibtex.y
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
#--
# BibTeX-Ruby
# Copyright (C) 2010-2011 Sylvester Keil <http://sylvester.keil.or.at>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#++
#
# A BibTeX grammar for the parser generator +racc+
#
# -*- racc -*-
class BibTeX::Parser
token AT COMMA COMMENT CONTENT ERROR EQ LBRACE META_CONTENT KEY
NAME NUMBER PREAMBLE RBRACE SHARP STRING STRING_LITERAL
expect 0
rule
bibliography : /* empty */ { result = BibTeX::Bibliography.new(@options) }
| objects { result = val[0] }
objects : object { result = BibTeX::Bibliography.new(@options) << val[0] }
| objects object { result << val[1] }
object : AT at_object { result = val[1] }
| META_CONTENT { result = BibTeX::MetaContent.new(val[0]) }
| ERROR { result = BibTeX::Error.new(val[0]) }
at_object : comment { result = val[0] }
| string { result = val[0] }
| preamble { result = val[0] }
| entry { result = val[0] }
comment : COMMENT LBRACE content RBRACE { result = BibTeX::Comment.new(val[2]) }
content : /* empty */ { result = '' }
| CONTENT { result = val[0] }
preamble : PREAMBLE LBRACE string_value RBRACE { result = BibTeX::Preamble.new(val[2]) }
string : STRING LBRACE string_assignment RBRACE { result = BibTeX::String.new(val[2][0],val[2][1]); }
string_assignment : NAME EQ string_value { result = [val[0].downcase.to_sym, val[2]] }
string_value : string_literal { result = [val[0]] }
| string_value SHARP string_literal { result << val[2] }
string_literal : NAME { result = val[0].downcase.to_sym }
| LBRACE content RBRACE { result = val[1] }
| STRING_LITERAL { result = val[0] }
entry : entry_head assignments RBRACE { result = val[0] << val[1] }
| entry_head assignments COMMA RBRACE { result = val[0] << val[1] }
| entry_head RBRACE { result = val[0] }
entry_head : NAME LBRACE opt_key { result = BibTeX::Entry.new(:bibtex_type => val[0].downcase.to_sym, :bibtex_key => val[2]) }
opt_key : { missing_key }
| KEY
assignments : assignment { result = val[0] }
| assignments COMMA assignment { result.merge!(val[2]) }
assignment : NAME EQ value { result = { val[0].downcase.to_sym => val[2] } }
value : string_value { result = val[0] }
| NUMBER { result = val[0] }
end
---- header
require 'bibtex/lexer'
---- inner
attr_reader :lexer, :options
@defaults = {
:include => [:errors],
:allow_missing_keys => false,
:debug => false
}.freeze
class << self
attr_reader :defaults
end
def initialize(options = {})
@options = Parser.defaults.merge(options)
@lexer = Lexer.new(@options)
end
def parse(input)
@yydebug = debug?
lexer.analyse(input)
do_parse
#yyparse(@lexer,:each)
end
def next_token
lexer.next_token
end
def debug?
options[:debug] || ENV['DEBUG']
end
def allow_missing_keys?
options[:allow_missing_keys]
end
def missing_key
unless allow_missing_keys?
raise ParseError, "Failed to parse BibTeX entry: cite-key missing"
end
end
def on_error(tid, val, vstack)
message =
"Failed to parse BibTeX on value #{val.inspect} (#{token_to_str(tid) || '?'}) #{ vstack.inspect}"
BibTeX.log.error message
raise ParseError, message
end
# -*- racc -*-