forked from backtracking/bibtex2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ml
629 lines (576 loc) · 19.8 KB
/
main.ml
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
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
285
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
(**************************************************************************)
(* bibtex2html - A BibTeX to HTML translator *)
(* Copyright (C) 1997-2014 Jean-Christophe Filliâtre and Claude Marché *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU General Public *)
(* License version 2, as published by the Free Software Foundation. *)
(* *)
(* This software 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 version 2 for more details *)
(* (enclosed in the file GPL). *)
(**************************************************************************)
(*s Main module of bibtex2html. *)
open Printf
open Translate
(* Options. *)
let excluded = ref ([] : string list)
let add_exclude k = excluded := k :: !excluded
let style = ref "plain"
let command = ref "bibtex -min-crossrefs=1000"
type sort = Unsorted | By_date | By_author
let sort = ref Unsorted
let reverse_sort = ref false
let ignore_bibtex_errors = ref false
let expand_abbrev_in_bib_output = ref true
(* Optional citation file. *)
let use_cite_file = ref false
let citations = ref ([] : string list)
let add_citations file =
try
let chan = open_in file
and buf = Buffer.create 1024 in
try
while true do Buffer.add_char buf (input_char chan) done
with End_of_file ->
close_in chan;
citations :=
(Str.split (Str.regexp "[ \t\n]+") (Buffer.contents buf)) @
!citations
with Sys_error msg ->
prerr_endline ("Cannot open citation file (" ^ msg ^ ")");
exit 1
(*s Sorting the entries. *)
module KeyMap = Map.Make(struct type t = string let compare = compare end)
let keep_combine combine l1 l2 =
let map =
List.fold_left (fun m ((_,k,_) as e) -> KeyMap.add k e m) KeyMap.empty l2
in
let rec keep_rec = function
| [] ->
[]
| ((_,k,_) as x)::rem ->
if not (List.mem k !excluded) then
try
let y = KeyMap.find k map in (combine x y) :: (keep_rec rem)
with Not_found -> keep_rec rem
else
keep_rec rem
in
keep_rec l1
let combine_f (c,_,b) e = c,b,e
let rev_combine_f x y = combine_f y x
let sort_entries entries bibitems =
if not !Options.quiet then begin eprintf "Sorting..."; flush stderr end;
let el =
if !sort = By_author then
keep_combine combine_f bibitems entries
else
keep_combine rev_combine_f entries bibitems
in
let sl =
if !sort = By_date then
List.sort (fun (_,_,e1) (_,_,e2) -> Expand.date_compare entries e1 e2) el
else
el
in
if not !Options.quiet then begin eprintf "ok.\n"; flush stderr end;
if !reverse_sort then List.rev sl else sl
(* We use BibTeX itself to format the entries. Operations:
\begin{enumerate}
\item create an auxiliary file tmp.aux
\item call bibtex on it
\item read the resulting tmp.bbl file to get the formatted entries
\end{enumerate} *)
let create_aux_file fbib tmp =
let ch = open_out (tmp ^ ".aux") in
output_string ch "\\relax\n\\bibstyle{";
output_string ch !style;
output_string ch "}\n";
if !use_cite_file then
List.iter
(fun k -> output_string ch ("\\citation{" ^ k ^ "}\n"))
!citations
else
output_string ch "\\citation{*}\n";
output_string ch "\\bibdata{";
output_string ch (Filename.chop_suffix fbib ".bib");
output_string ch "}\n";
close_out ch
let rm f = try Sys.remove f with _ -> ()
let clean tmp =
if not !Options.debug then begin
rm (tmp ^ ".aux");
rm (tmp ^ ".blg");
rm (tmp ^ ".bbl");
rm tmp
end
let call_bibtex tmp =
if not !Options.quiet then begin
eprintf "calling BibTeX..."; flush stderr
end;
match
let redir =
if !output_file = "" || !Options.quiet then
match Sys.os_type with
| "Win32" -> "> nul 2>&1"
| _ -> "> /dev/null 2>&1"
else
""
in
let cmd = sprintf "%s %s %s" !command tmp redir in
if !Options.debug then begin
eprintf "\nbibtex command: %s\n" cmd; flush stderr
end;
Sys.command cmd
with
| 0 ->
if not !Options.quiet then begin eprintf "\n"; flush stderr end
| n ->
if !ignore_bibtex_errors then begin
if not !Options.quiet then begin
eprintf "error %d (ignored)\n" n;
flush stderr
end
end else begin
eprintf "error %d while running bibtex\n" n;
exit n
end
let read_one_biblio lb =
let rec read_items acc lb =
try
let (_,k,_) as item = Bbl_lexer.bibitem lb in
if !Options.debug then begin eprintf "[%s]" k; flush stderr end;
read_items (item::acc) lb
with Bbl_lexer.End_of_biblio ->
List.rev acc
in
let name = Bbl_lexer.biblio_header lb in
let items = read_items [] lb in
(name,items)
let read_biblios lb =
let rec read acc lb =
try
let b = read_one_biblio lb in
read (b::acc) lb
with
End_of_file -> List.rev acc
in
read [] lb
let read_bbl tmp =
let fbbl = tmp ^ ".bbl" in
if not !Options.quiet then begin
eprintf "Reading %s..." fbbl; flush stderr
end;
let ch = open_in fbbl in
let lexbuf = Lexing.from_channel ch in
let biblios = read_biblios lexbuf in
close_in ch;
clean tmp;
if not !Options.quiet then begin
eprintf "ok ";
List.iter
(fun (_,items) -> eprintf "(%d entries)" (List.length items))
biblios;
eprintf "\n"; flush stderr
end;
biblios
(* temporary files in current directory (from OCaml's standard library) *)
module Tmp = struct
external open_desc: string -> open_flag list -> int -> int = "caml_sys_open"
external close_desc: int -> unit = "caml_sys_close"
let prng = Random.State.make_self_init ()
let temp_file prefix suffix =
let rec try_name counter =
let rnd = (Random.State.bits prng) land 0xFFFFFF in
let name = Printf.sprintf "%s%06x%s" prefix rnd suffix in
try
close_desc (open_desc name [Open_wronly; Open_creat; Open_excl] 0o600);
name
with Sys_error _ as e ->
if counter >= 1000 then raise e else try_name (counter + 1)
in
try_name 0
end
let get_biblios fbib =
let tmp = Tmp.temp_file "bib2html" "" in
try
create_aux_file fbib tmp;
call_bibtex tmp;
read_bbl tmp
with
e -> clean tmp; raise e
(*i
let insert_title_url bib =
let rec remove_assoc x = function
| [] ->
raise Not_found
| ((y,v) as p) :: l ->
if x = y then
(v,l)
else
let (v',l') = remove_assoc x l in (v', p :: l')
in
let url_value = function
| [Bibtex.Id u] -> u
| [Bibtex.String u] -> u
| _ -> raise Not_found
in
let modify_entry f =
try
let t,f' = remove_assoc "title" f in
let u,f'' = remove_assoc "url" f' in
let u' = Html.normalize_url (url_value u) in
let nt =
(Bibtex.String
(sprintf "\\begin{rawhtml}<A HREF=\"%s\">\\end{rawhtml}" u'))
:: t @ [Bibtex.String "\\begin{rawhtml}</A>\\end{rawhtml}"]
in
("TITLE",nt) :: f''
with Not_found ->
f
in
Bibtex.fold
(fun com bib' -> match com with
| Bibtex.Entry (ty,k,f) ->
Bibtex.add_new_entry (Bibtex.Entry (ty,k,modify_entry f)) bib'
| _ ->
Bibtex.add_new_entry com bib')
bib Bibtex.empty_biblio
i*)
let parse_only = ref false
let print_keys = ref false
let translate fullname =
let input_bib = Readbib.read_entries_from_file fullname in
if !parse_only then exit 0;
let entries = List.rev (Expand.expand input_bib) in
let biblios =
if fullname = "" then begin
let tmp = Tmp.temp_file "bibtex2htmlinput" ".bib" in
let ch = open_out tmp in
Biboutput.output_bib ~html:false ch input_bib None;
close_out ch;
let bbl = get_biblios tmp in
Sys.remove tmp;
bbl
end else
get_biblios fullname
in
let sb =
List.map
(fun (name,bibitems) -> (name,sort_entries entries bibitems))
biblios
in
if !print_keys then begin
List.iter
(fun (_,bibitems) ->
List.iter (fun (_,_,(_,k,_)) -> printf "%s\n" k) bibitems)
sb;
flush stdout;
exit 0
end;
format_list
(if !expand_abbrev_in_bib_output then
Bibtex.expand_abbrevs input_bib
else input_bib)
sb
(if !use_cite_file then
let keys =
List.fold_right
(fun s e -> Bibtex.KeySet.add s e) !citations Bibtex.KeySet.empty in
let keys =
List.fold_right
(fun s e -> Bibtex.KeySet.remove s e) !excluded keys in
Some (Bibfilter.saturate input_bib keys)
else None)
(*s Reading macros in a file. *)
let read_macros f =
let chan = open_in f in
let lb = Lexing.from_channel chan in
Latexscan.read_macros lb;
close_in chan
(*s Command line parsing. *)
let usage ?(error=true) () =
if error then prerr_endline "bibtex2html: bad command line syntax";
(if error then prerr_endline else print_endline) "
Usage: bibtex2html <options> [filename]
-s style BibTeX style (plain, alpha, ...)
-c command BibTeX command (otherwise bibtex is searched in your path)
-d sort by date
-a sort as BibTeX (usually by author)
-u unsorted i.e. same order as in .bib file (default)
-r reverse the sort
-revkeys entries numbered in reverse order
-t title title of the HTML file (default is the filename)
-bg color background color of the HTML file (default is none)
-css file specify a style sheet file
-o file redirect the output
-header additional header in the HTML file
-footer additional footer in the HTML file
-i ignore BibTeX errors
-both produce versions with and without abstracts
-multiple produce one file per entry
-single produce a single page (with BibTeX input and output)
-nodoc only produces the body of the HTML documents
-nokeys do not print the BibTeX keys
-nolinks do not print any web link
-nobiblinks
do not add web links in the BibTeX output
-rawurl print URL instead of file type
-heveaurl use HeVeA's \\url macro
-noabstract
do not print the abstracts (if any)
-nokeywords
do not print the keywords (if any)
-nodoi do not insert the DOI links
-doi-prefix url
set the DOI links prefix (default is https://doi.org/)
-noeprint do not insert the eprint links
-eprint-prefix url
set the eprint links prefix (default is http://arxiv.org/abs/)
-linebreak add a linebreak between an entry and its links
-use-table enforce the use of HTML tables (to be used after -nokeys)
-noheader do not print the header (bibtex2html command)
-nofooter do not print the footer (bibtex2html web link)
-noexpand do not expand abbreviations in the BibTeX output
-nobibsource
do not produce the BibTeX entries file
-fsuffix give an alternate suffix for HTML files
-lsuffix give an alternate suffix for HTML links
-suffix s give an alternate suffix for HTML files and links
-citefile f
read keys to include from file f
-e key exclude an entry
-m file read (La)TeX macros in file
-f field add a web link for that BibTeX field
-nf field name
add a web link for that BibTeX field, with the supplied name
-note field
declare a note field
-dl use DL lists instead of TABLEs
-unicode use Unicode characters for some LaTeX macros (as HTML entities)
-html-entities
use HTML entities for some LaTeX macros
-labelname use the label name when inserting a link
--print-keys
print the sorted bibtex keys and exit
-debug verbose mode (to find incorrect BibTeX entries)
-q quiet mode
-w stop on warning
-v print version and exit
On-line documentation at http://www.lri.fr/~filliatr/bibtex2html/
";
exit (if error then 1 else 0)
let parse () =
let rec parse_rec = function
(* General aspect of the web page *)
| ("-t" | "-title" | "--title") :: s :: rem ->
title := s; title_spec := true; parse_rec rem
| ("-t" | "-title" | "--title") :: [] ->
usage()
| ("-bg" | "-background" | "--background") :: s :: rem ->
Html.bgcolor := Some s; parse_rec rem
| ("-bg" | "-background" | "--background") :: [] ->
usage()
| ("-css" | "-style-sheet" | "--style-sheet") :: f :: rem ->
Html.css := Some f; parse_rec rem
| ("-css" | "-style-sheet" | "--style-sheet") :: [] ->
usage()
| ("-header" | "--header") :: s :: rem ->
user_header := s; parse_rec rem
| ("-header" | "--header") :: [] ->
usage()
| ("-footer" | "--footer") :: s :: rem ->
user_footer := s; parse_rec rem
| ("-footer" | "--footer") :: [] ->
usage()
| ("-s" | "-style" | "--style") :: s :: rem ->
style := s; parse_rec rem
| ("-s" | "-style" | "--style") :: [] ->
usage()
| ("-noabstract" | "-no-abstract" | "--no-abstract") :: rem ->
print_abstract := false; parse_rec rem
| ("-nodoi" | "-no-doi" | "--no-doi") :: rem ->
doi := false; parse_rec rem
| ("-doi-prefix" | "--doi-prefix") :: s :: rem ->
doi_prefix := s; parse_rec rem
| ("-doi-prefix" | "--doi-prefix") :: [] ->
usage ()
| ("-noeprint" | "-no-eprint" | "--no-eprint") :: rem ->
eprint := false; parse_rec rem
| ("-eprint-prefix" | "--eprint-prefix") :: s :: rem ->
eprint_prefix := s; parse_rec rem
| ("-eprint-prefix" | "--eprint-prefix") :: [] ->
usage ()
| ("-nokeywords" | "-no-keywords" | "--no-keywords") :: rem ->
print_keywords := false; parse_rec rem
| ("-nolinks" | "-no-links" | "--no-links") :: rem ->
print_links := false; parse_rec rem
| ("-nobiblinks" | "-no-bib-links" | "--no-bib-links") :: rem ->
links_in_bib_file := false; parse_rec rem
| ("-nokeys" | "-no-keys" | "--no-keys") :: rem ->
nokeys := true; table := NoTable; parse_rec rem
| ("-use-table" | "--use-table") :: rem ->
table := Table; parse_rec rem
| ("-usekeys" | "-use-keys" | "--use-keys") :: rem ->
use_keys := true; parse_rec rem
| ("-rawurl" | "-raw-url" | "--raw-url") :: rem ->
raw_url := true; parse_rec rem
(*i
| ("-tu" | "-titleurl" | "--title-url") :: rem ->
title_url := true; parse_rec rem
i*)
| ("-heveaurl" | "-hevea-url" | "--hevea-url") :: rem ->
Latexscan.hevea_url := true; parse_rec rem
| ("-linebreak" | "--linebreak") :: rem ->
linebreak := true; parse_rec rem
| ("-noheader" | "-no-header" | "--no-header") :: rem ->
print_header := false; parse_rec rem
| ("-nofooter" | "-no-footer" | "--no-footer") :: rem ->
print_footer := false; parse_rec rem
| ("-f" | "-field" | "--field") :: s :: rem ->
add_field s; parse_rec rem
| ("-f" | "-field" | "--field") :: [] ->
usage()
| ("-nf" | "-named-field" | "--named-field") :: s :: name :: rem ->
add_named_field s name; parse_rec rem
| ("-nf" | "-named-field" | "--named-field") :: ([_] | []) ->
usage()
| ("-note" | "--note") :: s :: rem ->
add_note_field s; parse_rec rem
| ("-note" | "--note") :: [] ->
usage()
| ("-note-html" | "--note-html") :: s :: rem ->
add_note_html_field s; parse_rec rem
| ("-note-html" | "--note-html") :: [] ->
usage()
| ("-ln" | "-labelname" | "--labelname" | "--label-name") :: rem ->
use_label_name := true; parse_rec rem
| ("-multiple" | "--multiple") :: rem ->
multiple := true; parse_rec rem
| ("-single" | "--single") :: rem ->
multiple := false; both := false; print_keywords := false;
bib_entries := false; single := true; parse_rec rem
| ("-both" | "--both") :: rem ->
both := true; parse_rec rem
| ("-dl" | "--dl") :: rem ->
table := DL; parse_rec rem
| ("-unicode" | "--unicode") :: rem ->
Latexmacros.unicode_entities (); parse_rec rem
| ("-html-entities" | "--html-entities") :: rem ->
Latexscan.html_entities := true;
Latexmacros.html_entities (); parse_rec rem
(* Controlling the translation *)
| ("-m" | "-macros-from" | "--macros-from") :: f :: rem ->
read_macros f; parse_rec rem
| ("-m" | "-macros-from" | "--macros-from") :: [] ->
usage()
(* Sorting the entries *)
| ("-d" | "-sort-by-date" | "--sort-by-date") :: rem ->
sort := By_date; parse_rec rem
| ("-a" | "-sort-as-bibtex" | "--sort-as-bibtex") :: rem ->
sort := By_author; parse_rec rem
| ("-u" | "-unsorted" | "--unsorted") :: rem ->
sort := Unsorted; parse_rec rem
| ("-r" | "-reverse-sort" | "--reverse-sort") :: rem ->
reverse_sort := not !reverse_sort; parse_rec rem
| ("-revkeys" | "--revkeys") :: rem ->
reverse_sort := not !reverse_sort; revkeys := true; parse_rec rem
(* Options for selecting keys *)
| ("-citefile" | "--citefile") :: f :: rem ->
use_cite_file := true;
add_citations f;
parse_rec rem
| ("-citefile" | "--citefile") :: [] ->
usage()
| ("-e" | "-exclude" | "--exclude") :: k :: rem ->
add_exclude k; parse_rec rem
| ("-e" | "-exclude" | "--exclude") :: [] ->
usage()
(* Miscellaneous options *)
| ("-o" | "-output" | "--output") :: f :: rem ->
output_file := f;
parse_rec rem
| ("-o" | "-output" | "--output") :: [] ->
usage()
| ("-nobibsource" | "--nobibsource") :: rem ->
bib_entries := false; parse_rec rem
| ("-nodoc" | "--nodoc" | "-no-doc" | "--no-doc") :: rem ->
nodoc := true; parse_rec rem
| ("-noexpand" | "-no-expand" | "--no-expand") :: rem ->
expand_abbrev_in_bib_output := false; parse_rec rem
| ("-i" | "-ignore-errors" | "--ignore-errors") :: rem ->
ignore_bibtex_errors := true; parse_rec rem
| ("-suffix" | "--suffix") :: s :: rem ->
file_suffix := s; link_suffix := s; parse_rec rem
| ("-fsuffix" | "-file-suffix" | "--file-suffix") :: s :: rem ->
file_suffix := s; parse_rec rem
| ("-lsuffix" | "-link-suffix" | "--link-suffix") :: s :: rem ->
link_suffix := s; parse_rec rem
| ("-suffix" | "--suffix" | "-fsuffix" | "--file-suffix" | "-file-suffix" |
"-lsuffix" | "-link-suffix" | "--link-suffix") :: [] ->
usage()
| ("-c" | "-command" | "--command") :: s :: rem ->
command := s; parse_rec rem
| ("-c" | "-command" | "--command") :: [] ->
usage()
| ("-h" | "-help" | "-?" | "--help") :: rem ->
usage ~error:false ()
| ("-v" | "-version" | "--version") :: _ ->
Copying.banner "bibtex2html"; exit 0
| ("-warranty" | "--warranty") :: _ ->
Copying.banner "bibtex2html"; Copying.copying(); exit 0
| ("-w" | "-warn-error" | "--warn-error") :: rem ->
Options.warn_error := true; parse_rec rem
| ("-q" | "-quiet" | "--quiet") :: rem ->
Options.quiet := true; parse_rec rem
| ("-debug" | "--debug") :: rem ->
Options.debug := true; parse_rec rem
| "-parse-only" :: rem ->
parse_only := true; parse_rec rem
| ("-print-keys" | "--print-keys") :: rem ->
print_keys := true; parse_rec rem
| [fbib] ->
if not (Sys.file_exists fbib) then begin
eprintf "%s: no such file\n" fbib;
exit 1
end;
let basename = Filename.basename fbib in
if Filename.check_suffix basename ".bib" then
(fbib, Filename.chop_suffix basename ".bib")
else begin
prerr_endline "bibtex2html: BibTeX file must have suffix .bib";
exit 1
end
| [] ->
("","")
| _ -> usage ()
in
parse_rec (List.tl (Array.to_list Sys.argv))
(*s Main function. *)
let main () =
let (fbib,f) = parse () in
Copying.banner "bibtex2html";
if fbib = "" then begin
if not !title_spec then title := "bibtex2html output";
begin match !output_file with
| "" -> bib_entries := false
| "-" -> output_file := ""; bib_entries := false
| _ -> ()
end
end else begin
input_file := f ^ ".bib";
begin match !output_file with
| "" -> output_file := f;
| "-" -> output_file := ""; bib_entries := false
| _ -> ()
end;
if not !title_spec then title := f
end;
Latexmacros.init_style_macros !style;
(* producing the documents *)
translate fbib
let _ = Printexc.catch main ()