-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbib2sx.rkt
198 lines (137 loc) · 5.05 KB
/
bib2sx.rkt
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#lang racket
; bib2sx: A Racket script for converting a bibtex .bib file to S-Expressions
; Copyright (C) 2015 Matthew Might
; 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/>.
; ISSUES:
; + Does not support @comment or @preamble
; TODO:
; + Add --tokenize flag to tokenize into strings meaningful to BibTeX/LaTeX:
; $, \<cmd>, <whitespace>, <word>
; + Add flag to choose name fields (currently author, editor)
; + Add support for @comment and @preamble
; Output bibtex AST grammar:
; <bibtex-ast> ::= (<item> ...)
; <item> ::= (<item-type> <id> <attr> ...)
; <attr> ::= (<id> <expr> ...) ;
; | (<id> . <string>) ; if --flatten
; | (<id> <name> ...) ; if --parse-names
; <expr> ::= <string>
; | '<expr>
; | '(<expr> ...)
; | <id>
; <name> ::= (name (first <expr> ...) ; if --parse-names
; (von <expr> ...)
; (last <expr> ...)
; (jr <expr>))
; <item-type> ::= inproceedings | article | ...
(require "bibtex/main.rkt")
(require xml)
;; Handling command line options:
; <config>
(define bibtex-input-port (current-input-port))
(define bibtex-output-format 'sx)
(define bibtex-input-format 'bib)
(define inline? #f)
(define flatten? #f)
(define texenize? #f)
(define lex-only? #f)
(define parse-names? #f)
; </config>
(define (parse-options! args)
(match args
['()
(void)]
[(cons "--drracket" rest)
(set! bibtex-input-port (open-input-file "test/test.bib"))
(parse-options! rest)]
; choose the input format:
[`("--in" ,format . ,rest)
(set! bibtex-input-format (string->symbol format))
(parse-options! rest)]
; choose the output format:
[`("--out" ,format . ,rest)
(set! bibtex-output-format (string->symbol format))
(parse-options! rest)]
; just lexically analyze; don't parse:
[(cons "--lex" rest)
(set! lex-only? #t)
(parse-options! rest)]
; flatten values into a single string:
[(cons "--flatten" rest)
(set! flatten? #t)
(parse-options! rest)]
; parse names into a vector of vectors:
[(cons "--parse-names" rest)
(set! parse-names? #t)
(parse-options! rest)]
; inline all @string declarations:
[(cons "--inline" rest)
(set! inline? #t)
(parse-options! rest)]
; tokenize strings into units meaningful to TeX:
[(cons "--texenize" rest)
; useful if you want to render to a different output
; format such as HTML, and you need ot interpret TeX
(set! texenize? #t)
(parse-options! rest)]
; convert to a bibtex .bib file:
[(cons "--bib" rest)
(set! bibtex-output-format 'bib)
(parse-options! rest)]
; convert to JSON:
[(cons "--json" rest)
(set! bibtex-output-format 'json)
(parse-options! rest)]
; convert to JSON:
[(cons "--xml" rest)
(set! bibtex-output-format 'xml)
(parse-options! rest)]
; provide a filename to parse:
[(cons filename rest)
(set! bibtex-input-port (open-input-file filename))
(parse-options! rest)]
))
; for testing in DrRacket:
;(current-command-line-arguments #("--inline" "--flatten" "test/test.bib"))
(parse-options! (vector->list (current-command-line-arguments)))
; for debugging, allow looking at the lexical analyzers output:
(when lex-only?
(define tokens (bibtex-lexer bibtex-input-port))
(pretty-write (stream->list tokens))
(exit))
(define bibtex-ast
(match bibtex-input-format
['bib
(define token-generator (generate-token-generator bibtex-input-port))
(bibtex-parse token-generator)]
['sx
(read bibtex-input-port)]
[else
(error (format "unrecognized input format: ~a" bibtex-input-format))]))
(when inline?
(set! bibtex-ast (bibtex-inline-strings bibtex-ast)))
(when parse-names?
(set! bibtex-ast (map bibtex-parse-names bibtex-ast)))
(when flatten?
(set! bibtex-ast (bibtex-flatten-strings bibtex-ast)))
(when texenize?
(set! bibtex-ast (map bibtex-texenize-item bibtex-ast)))
(match bibtex-output-format
['sx (pretty-write bibtex-ast)]
['bib (for ([item bibtex-ast])
(display (bibtex-item->bibstring item))
(newline) (newline))]
['xml (let ([xml (bibtex-ast->xml bibtex-ast)])
(display-xml/content xml))]
['json (display (bibtex-ast->json bibtex-ast))]
[else (error (format "unrecognized output format: ~a"
bibtex-output-format))])