blob: 77b619a808c8e9491e80e1b0d6826cb912ed787e (
plain)
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
|
;;;; -*- Scheme -*-
;;;; bibtex-parser.y -- SILex input for BibTeX
;;;;
;;;; Copyright � 2004 Erick Gallesio - I3S-CNRS/ESSI <eg@essi.fr>
;;;;
;;;;
;;;; 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 2 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, write to the Free Software
;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
;;;; USA.
;;;;
;;;; Author: Erick Gallesio [eg@essi.fr]
;;;; Creation date: 21-Oct-2004 17:47 (eg)
;;;; Last file update: 22-Oct-2004 18:14 (eg)
;;;;
(load "lalr")
(define (main args)
;; Build the parser
(lalr-parser
;; Options
(output: parser "bibtex-parser.stk")
;; Terminal symbols
(CHAR BLANK IDENT STRING COMMA LBRACKET RBRACKET NUMBER EQUAL
BIBSTRING BIBITEM)
;; Rules
(S
()
(S string-def)
(S blank*)
(S bibtex-entry))
(blank*
()
(blank* BLANK))
(string-def
(BIBSTRING LBRACKET blank* IDENT blank* EQUAL blank* entry-value
blank* RBRACKET)
: (bibtex-string-def! (car $4) (car $8)))
(bibtex-entry
(BIBITEM LBRACKET blank* IDENT blank* COMMA blank* entry-item* RBRACKET)
: (make-bibentry $1 $4 $8))
(entry-item*
(blank*)
: '()
(entry-item)
: (list $1)
(entry-item COMMA entry-item*)
: (cons $1 $3))
(entry-item
(blank* IDENT blank* EQUAL blank* entry-value blank*)
: (cons (car $2) $6))
(entry-value
(NUMBER)
: (list (car $1))
(STRING)
: $1
(IDENT)
: (bibtex-string-ref (car $1))
(LBRACKET entry-value-block* RBRACKET)
: (list (apply string-append $2)))
(entry-value-block*
()
: '()
(entry-value-block* entry-value-block)
: (append $1 $2))
(entry-value-block
(LBRACKET entry-value-block* RBRACKET)
: $2
(COMMA)
: (list ",")
(IDENT)
: $1
(BLANK)
: (list " ")
(EQUAL)
: (list "=")
(CHAR)
: $1
(NUMBER)
: $1
(STRING)
: $1)
)
;; Terminate
0)
|