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
|
if not modules then modules = { } end modules ['publ-dat'] = {
version = 1.001,
comment = "this module part of publication support",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- todo: strip the @ in the lpeg instead of on do_definition and do_shortcut
-- todo: store bibroot and bibrootdt
--[[ldx--
<p>This is a prelude to integrated bibliography support. This file just loads
bibtex files and converts them to xml so that the we access the content
in a convenient way. Actually handling the data takes place elsewhere.</p>
--ldx]]--
if not characters then
dofile(resolvers.findfile("char-def.lua"))
dofile(resolvers.findfile("char-ini.lua"))
dofile(resolvers.findfile("char-tex.lua"))
end
local chardata = characters.data
local lowercase = characters.lower
local lower, gsub, find = string.lower, string.gsub, string.find
local concat = table.concat
local next, type, rawget = next, type, rawget
local utfchar = utf.char
local lpegmatch, lpegpatterns = lpeg.match, lpeg.patterns
local textoutf = characters and characters.tex.toutf
local settings_to_hash, settings_to_array = utilities.parsers.settings_to_hash, utilities.parsers.settings_to_array
local formatters = string.formatters
local sortedkeys, sortedhash = table.sortedkeys, table.sortedhash
local xmlcollected, xmltext, xmlconvert = xml.collected, xml.text, xmlconvert
local setmetatableindex = table.setmetatableindex
-- todo: more allocate
local P, R, S, V, C, Cc, Cs, Ct, Carg = lpeg.P, lpeg.R, lpeg.S, lpeg.V, lpeg.C, lpeg.Cc, lpeg.Cs, lpeg.Ct, lpeg.Carg
local trace = false trackers.register("publications", function(v) trace = v end)
local report = logs.reporter("publications")
publications = publications or { }
local publications = publications
local datasets = publications.datasets or { }
publications.datasets = datasets
publications.statistics = publications.statistics or { }
local publicationsstats = publications.statistics
publicationsstats.nofbytes = 0
publicationsstats.nofdefinitions = 0
publicationsstats.nofshortcuts = 0
publicationsstats.nofdatasets = 0
local xmlplaceholder = "<?xml version='1.0' standalone='yes'?>\n<bibtex></bibtex>"
local defaultshortcuts = {
jan = "1",
feb = "2",
mar = "3",
apr = "4",
may = "5",
jun = "6",
jul = "7",
aug = "8",
sep = "9",
oct = "10",
nov = "11",
dec = "12",
}
local space = lpeg.patterns.whitespace^0
local separator = space * "+" * space
local l_splitter = lpeg.tsplitat(separator)
local d_splitter = lpeg.splitat (separator)
function publications.parenttag(dataset,tag)
if find(tag,"%+") then
local tags = lpegmatch(l_splitter,tag)
local parent = tags[1]
local luadata = datasets[dataset].luadata
local first = luadata[parent]
if first then
local combined = first.combined
if not combined then
combined = { }
first.combined = combined
end
-- add new ones but only once
for i=2,#tags do
local tag = tags[i]
for j=1,#combined do
if combined[j] == tag then
tag = false
end
end
if tag then
local entry = luadata[tag]
if entry then
combined[#combined+1] = tag
end
end
end
return parent
end
end
return tag
end
function publications.new(name)
publicationsstats.nofdatasets = publicationsstats.nofdatasets + 1
local dataset = {
name = name or "dataset " .. publicationsstats.nofdatasets,
nofentries = 0,
shortcuts = { },
luadata = { },
suffixes = { },
xmldata = xmlconvert(xmlplaceholder),
-- details = { },
nofbytes = 0,
entries = nil, -- empty == all
sources = { },
loaded = { },
fields = { },
userdata = { },
used = { },
commands = { }, -- for statistical purposes
status = {
resources = false,
userdata = false,
},
}
-- we delay details till we need it (maybe we just delay the
-- individual fields but that is tricky as there can be some
-- depedencies)
setmetatableindex(dataset,function(t,k)
-- will become a plugin
if k == "details" and publications.enhance then
dataset.details = { }
publications.enhance(dataset.name)
return dataset.details
end
end)
return dataset
end
function publications.markasupdated(name)
if name == "string" then
datasets[name].details = nil
else
datasets.details = nil
end
end
setmetatableindex(datasets,function(t,k)
if type(k) == "table" then
return k -- so we can use this accessor as checker
else
local v = publications.new(k)
datasets[k] = v
return v
end
end)
-- we apply some normalization
local space = S(" \t\n\r\f") -- / " "
----- command = P("\\") * Cc("btxcmd{") * (R("az","AZ")^1) * Cc("}")
----- command = P("\\") * (Carg(1) * C(R("az","AZ")^1) / function(list,c) list[c] = (list[c] or 0) + 1 return "btxcmd{" .. c .. "}" end)
local command = P("\\") * (Carg(1) * C(R("az","AZ")^1) * space^0 / function(list,c) list[c] = (list[c] or 0) + 1 return "btxcmd{" .. c .. "}" end)
local somemath = P("$") * ((1-P("$"))^1) * P("$") -- let's not assume nested math
local any = P(1)
local done = P(-1)
local one_l = P("{") / ""
local one_r = P("}") / ""
local two_l = P("{{") / ""
local two_r = P("}}") / ""
local special = P("#") / "\\letterhash"
local filter_0 = S('\\{}')
local filter_1 = (1-filter_0)^0 * filter_0
local filter_2 = Cs(
-- {{...}} ... {{...}}
-- two_l * (command + special + any - two_r - done)^0 * two_r * done +
-- one_l * (command + special + any - one_r - done)^0 * one_r * done +
(somemath + command + special + any )^0
)
-- Currently we expand shortcuts and for large ones (like the acknowledgements
-- in tugboat.bib) this is not that efficient. However, eventually strings get
-- hashed again.
local function do_shortcut(key,value,dataset)
publicationsstats.nofshortcuts = publicationsstats.nofshortcuts + 1
dataset.shortcuts[key] = value
end
local function getindex(dataset,luadata,tag)
local found = luadata[tag]
if found then
return found.index or 0
else
local index = dataset.nofentries + 1
dataset.nofentries = index
return index
end
end
publications.getindex = getindex
-- todo: categories : metatable that lowers and also counts
-- todo: fields : metatable that lowers
local function do_definition(category,tag,tab,dataset)
publicationsstats.nofdefinitions = publicationsstats.nofdefinitions + 1
local fields = dataset.fields
local luadata = dataset.luadata
local found = luadata[tag]
local index = getindex(dataset,luadata,tag)
local entries = {
category = lower(category),
tag = tag,
index = index,
}
for i=1,#tab,2 do
local original = tab[i]
local normalized = fields[original]
if not normalized then
normalized = lower(original) -- we assume ascii fields
fields[original] = normalized
end
local value = tab[i+1]
value = textoutf(value)
if lpegmatch(filter_1,value) then
value = lpegmatch(filter_2,value,1,dataset.commands) -- we need to start at 1 for { }
end
if normalized == "crossref" then
local parent = luadata[value]
if parent then
setmetatableindex(entries,parent)
else
-- warning
end
end
entries[normalized] = value
end
luadata[tag] = entries
end
local function resolve(s,dataset)
return dataset.shortcuts[s] or defaultshortcuts[s] or s -- can be number
end
local percent = P("%")
local start = P("@")
local comma = P(",")
local hash = P("#")
local escape = P("\\")
local single = P("'")
local double = P('"')
local left = P('{')
local right = P('}')
local both = left + right
local lineending = S("\n\r")
local space = S(" \t\n\r\f") -- / " "
local spacing = space^0
local equal = P("=")
----- collapsed = (space^1)/ " "
local collapsed = (lpegpatterns.whitespace^1)/ " "
----- balanced = lpegpatterns.balanced
local balanced = P {
[1] = ((escape * (left+right)) + (collapsed + 1 - (left+right)) + V(2))^0,
[2] = left * V(1) * right
}
local keyword = C((R("az","AZ","09") + S("@_:-"))^1)
local key = C((1-space-equal)^1)
local tag = C((1-space-comma)^1)
local reference = keyword
local category = P("@") * C((1-space-left)^1)
local s_quoted = ((escape*single) + collapsed + (1-single))^0
local d_quoted = ((escape*double) + collapsed + (1-double))^0
local b_value = (left /"") * balanced * (right /"")
local s_value = (single/"") * (b_value + s_quoted) * (single/"")
local d_value = (double/"") * (b_value + d_quoted) * (double/"")
local r_value = reference * Carg(1) /resolve
local somevalue = s_value + d_value + b_value + r_value
local value = Cs((somevalue * ((spacing * hash * spacing)/"" * somevalue)^0))
local assignment = spacing * key * spacing * equal * spacing * value * spacing
local shortcut = P("@") * (P("string") + P("STRING")) * spacing * left * ((assignment * Carg(1))/do_shortcut * comma^0)^0 * spacing * right
local definition = category * spacing * left * spacing * tag * spacing * comma * Ct((assignment * comma^0)^0) * spacing * right * Carg(1) / do_definition
local comment = keyword * spacing * left * (1-right)^0 * spacing * right
local forget = percent^1 * (1-lineending)^0
-- todo \%
local bibtotable = (space + forget + shortcut + definition + comment + 1)^0
-- loadbibdata -> dataset.luadata
-- loadtexdata -> dataset.luadata
-- loadluadata -> dataset.luadata
-- converttoxml -> dataset.xmldata from dataset.luadata
function publications.loadbibdata(dataset,content,source,kind)
dataset = datasets[dataset]
statistics.starttiming(publications)
publicationsstats.nofbytes = publicationsstats.nofbytes + #content
dataset.nofbytes = dataset.nofbytes + #content
if source then
table.insert(dataset.sources, { filename = source, checksum = md5.HEX(content) })
dataset.loaded[source] = kind or true
end
dataset.newtags = #dataset.luadata > 0 and { } or dataset.newtags
publications.markasupdated(dataset)
lpegmatch(bibtotable,content or "",1,dataset)
statistics.stoptiming(publications)
end
-- we could use xmlescape again
local cleaner_0 = S('<>&')
local cleaner_1 = (1-cleaner_0)^0 * cleaner_0
local cleaner_2 = Cs ( (
P("<") / "<" +
P(">") / ">" +
P("&") / "&" +
P(1)
)^0)
local compact = false -- can be a directive but then we also need to deal with newlines ... not now
function publications.converttoxml(dataset,nice) -- we have fields !
dataset = datasets[dataset]
local luadata = dataset and dataset.luadata
if luadata then
statistics.starttiming(publications)
statistics.starttiming(xml)
--
local result, r = { }, 0
--
r = r + 1 ; result[r] = "<?xml version='1.0' standalone='yes'?>"
r = r + 1 ; result[r] = "<bibtex>"
--
if nice then
local f_entry_start = formatters[" <entry tag='%s' category='%s' index='%s'>"]
local f_entry_stop = " </entry>"
local f_field = formatters[" <field name='%s'>%s</field>"]
for tag, entry in sortedhash(luadata) do
r = r + 1 ; result[r] = f_entry_start(tag,entry.category,entry.index)
for key, value in sortedhash(entry) do
if key ~= "tag" and key ~= "category" and key ~= "index" then
if lpegmatch(cleaner_1,value) then
value = lpegmatch(cleaner_2,value)
end
if value ~= "" then
r = r + 1 ; result[r] = f_field(key,value)
end
end
end
r = r + 1 ; result[r] = f_entry_stop
end
else
local f_entry_start = formatters["<entry tag='%s' category='%s' index='%s'>"]
local f_entry_stop = "</entry>"
local f_field = formatters["<field name='%s'>%s</field>"]
for tag, entry in next, luadata do
r = r + 1 ; result[r] = f_entry_start(entry.tag,entry.category,entry.index)
for key, value in next, entry do
if key ~= "tag" and key ~= "category" and key ~= "index" then
if lpegmatch(cleaner_1,value) then
value = lpegmatch(cleaner_2,value)
end
if value ~= "" then
r = r + 1 ; result[r] = f_field(key,value)
end
end
end
r = r + 1 ; result[r] = f_entry_stop
end
end
--
r = r + 1 ; result[r] = "</bibtex>"
--
result = concat(result,nice and "\n" or nil)
--
dataset.xmldata = xmlconvert(result, {
resolve_entities = true,
resolve_predefined_entities = true, -- in case we have escaped entities
-- unify_predefined_entities = true, -- & -> &
utfize_entities = true,
} )
--
statistics.stoptiming(xml)
statistics.stoptiming(publications)
if lxml then
lxml.register(formatters["btx:%s"](dataset.name),dataset.xmldata)
end
end
end
local loaders = publications.loaders or { }
publications.loaders = loaders
function loaders.bib(dataset,filename,kind)
dataset = datasets[dataset]
local data = io.loaddata(filename) or ""
if data == "" then
report("empty file %a, nothing loaded",filename)
elseif trace then
report("loading file",filename)
end
publications.loadbibdata(dataset,data,filename,kind)
end
function loaders.lua(dataset,filename) -- if filename is a table we load that one
dataset = datasets[dataset]
inspect(filename)
local data = type(filename) == "table" and filename or table.load(filename)
if data then
local luadata = dataset.luadata
for tag, entry in next, data do
if type(entry) == "table" then
entry.index = getindex(dataset,luadata,tag)
luadata[tag] = entry -- no cleaning yet
end
end
end
end
function loaders.xml(dataset,filename)
dataset = datasets[dataset]
local luadata = dataset.luadata
local root = xml.load(filename)
for bibentry in xmlcollected(root,"/bibtex/entry") do
local attributes = bibentry.at
local tag = attributes.tag
local entry = {
category = attributes.category
}
for field in xmlcollected(bibentry,"/field") do
-- entry[field.at.name] = xmltext(field)
entry[field.at.name] = field.dt[1] -- no cleaning yet
end
-- local edt = entry.dt
-- for i=1,#edt do
-- local e = edt[i]
-- local a = e.at
-- if a and a.name then
-- t[a.name] = e.dt[1] -- no cleaning yet
-- end
-- end
entry.index = getindex(dataset,luadata,tag)
luadata[tag] = entry
end
end
setmetatableindex(loaders,function(t,filetype)
local v = function(dataset,filename)
report("no loader for file %a with filetype %a",filename,filetype)
end
t[k] = v
return v
end)
function publications.load(dataset,filename,kind)
dataset = datasets[dataset]
statistics.starttiming(publications)
local files = settings_to_array(filename)
for i=1,#files do
local filetype, filename = string.splitup(files[i],"::")
if not filename then
filename = filetype
filetype = file.suffix(filename)
end
local fullname = resolvers.findfile(filename,"bib")
if dataset.loaded[fullname] then -- will become better
-- skip
elseif fullname == "" then
report("no file %a",filename)
else
loaders[filetype](dataset,fullname)
end
if kind then
dataset.loaded[fullname] = kind
end
end
statistics.stoptiming(publications)
return dataset
end
local checked = function(s,d) d[s] = (d[s] or 0) + 1 end
local checktex = ( (1-P("\\"))^1 + P("\\") * ((C(R("az","AZ")^1) * Carg(1))/checked))^0
function publications.analyze(dataset)
dataset = datasets[dataset]
local data = dataset.luadata
local categories = { }
local fields = { }
local commands = { }
for k, v in next, data do
categories[v.category] = (categories[v.category] or 0) + 1
for k, v in next, v do
fields[k] = (fields[k] or 0) + 1
lpegmatch(checktex,v,1,commands)
end
end
dataset.analysis = {
categories = categories,
fields = fields,
commands = commands,
}
end
-- str = [[
-- @COMMENT { CRAP }
-- @STRING{ hans = "h a n s" }
-- @STRING{ taco = "t a c o" }
-- @SOMETHING{ key1, abc = "t a c o" , def = "h a n s" }
-- @SOMETHING{ key2, abc = hans # taco }
-- @SOMETHING{ key3, abc = "hans" # taco }
-- @SOMETHING{ key4, abc = hans # "taco" }
-- @SOMETHING{ key5, abc = hans # taco # "hans" # "taco"}
-- @SOMETHING{ key6, abc = {oeps {oeps} oeps} }
-- ]]
-- local dataset = publications.new()
-- publications.tolua(dataset,str)
-- publications.toxml(dataset)
-- publications.toxml(dataset)
-- print(dataset.xmldata)
-- inspect(dataset.luadata)
-- inspect(dataset.xmldata)
-- inspect(dataset.shortcuts)
-- print(dataset.nofbytes,statistics.elapsedtime(publications))
-- local dataset = publications.new()
-- publications.load(dataset,"IEEEabrv.bib")
-- publications.load(dataset,"IEEEfull.bib")
-- publications.load(dataset,"IEEEexample.bib")
-- publications.toxml(dataset)
-- print(dataset.nofbytes,statistics.elapsedtime(publications))
-- local dataset = publications.new()
-- publications.load(dataset,"gut.bib")
-- publications.load(dataset,"komoedie.bib")
-- publications.load(dataset,"texbook1.bib")
-- publications.load(dataset,"texbook2.bib")
-- publications.load(dataset,"texbook3.bib")
-- publications.load(dataset,"texgraph.bib")
-- publications.load(dataset,"texjourn.bib")
-- publications.load(dataset,"texnique.bib")
-- publications.load(dataset,"tugboat.bib")
-- publications.toxml(dataset)
-- print(dataset.nofbytes,statistics.elapsedtime(publications))
-- print(table.serialize(dataset.luadata))
-- print(table.serialize(dataset.xmldata))
-- print(table.serialize(dataset.shortcuts))
-- print(xml.serialize(dataset.xmldata))
|