summaryrefslogtreecommitdiff
path: root/tex/context/base/publ-tra.lua
blob: 0b7e840c81baa9154cfadcf953d7bff9b6c50c06 (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
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
if not modules then modules = { } end modules ['publ-tra'] = {
    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"
}

local next, type = next, type

local sortedhash, sortedkeys = table.sortedhash, table.sortedkeys
local settings_to_array = utilities.parsers.settings_to_array
local formatters = string.formatters

local tracers        = { }
publications.tracers = tracers
local datasets       = publications.datasets

local context = context

local ctx_NC, ctx_NR, ctx_HL, ctx_FL, ctx_ML, ctx_LL = context.NC, context.NR, context.HL, context.FL, context.ML, context.LL
local ctx_bold, ctx_rotate, ctx_llap = context.bold, context.rotate, context.llap
local ctx_darkgreen, ctx_darkred, ctx_darkblue = context.darkgreen, context.darkred, context.darkblue
local ctx_starttabulate, ctx_stoptabulate = context.starttabulate, context.stoptabulate

-- TEXT hyperlink author number date

local fields = table.sorted {
    "abstract",
    "address",
    "annotate",
    "author",
    "booktitle",
    "chapter",
    "comment",
    "country",
    "doi",
    "edition",
    "editor",
    "eprint",
    "howpublished",
    "institution",
    "isbn",
    "issn",
    "journal",
    "key",
    "keyword",
    "keywords",
    "language",
    "lastchecked",
    "month",
    "names",
    "note",
    "notes",
    "number",
    "organization",
    "pages",
    "publisher",
    "school",
    "series",
    "size",
    "title",
    "type",
    "url",
    "volume",
    "year",
    "nationality",
    "assignee",
    "bibnumber",
    "day",
    "dayfiled",
    "monthfiled",
    "yearfiled",
    "revision",
}

local citevariants = table.sorted {
    "author",
    "authoryear",
    "authoryears",
    "authornum",
    "year",
    "short",
    "serial",
    "key",
    "doi",
    "url",
    "type",
    "page",
    "none",
    "num",
}

local listvariants = table.sorted {
    "author",
    "editor",
    "artauthor",
}

local categories = {
    article = {
        required = { "author", "title", "journal", "year" },
        optional = { "volume", "number", "pages", "month", "note" },
    },
    book = {
        required = { { "author", "editor" }, "title", "publisher", "year" },
        optional = { { "volume", "number" }, "series", "address", "edition", "month","note" },
    },
    booklet = {
        required = { "title" },
        optional = { "author", "howpublished", "address", "month", "year", "note" },
    },
    inbook = {
        required = { { "author", "editor" }, "title", { "chapter", "pages" }, "publisher","year" },
        optional = { { "volume", "number" }, "series", "type", "address", "edition", "month", "note" },
    },
    incollection = {
        required = { "author", "title", "booktitle", "publisher", "year" },
        optional = { "editor", { "volume", "number" }, "series", "type", "chapter", "pages", "address", "edition", "month", "note" },
    },
    inproceedings = {
        required = { "author", "title", "booktitle", "year" },
        optional = { "editor", { "volume", "number" }, "series", "pages", "address", "month","organization", "publisher", "note" },
    },
    manual = {
        required = { "title" },
        optional = { "author", "organization", "address", "edition", "month", "year", "note" },
    },
    mastersthesis = {
        required = { "author", "title", "school", "year" },
        optional = { "type", "address", "month", "note" },
    },
    misc = {
        required = { "author", "title", "howpublished", "month", "year", "note" },
        optional = { "author", "title", "howpublished", "month", "year", "note" },
    },
    phdthesis = {
        required = { "author", "title", "school", "year" },
        optional = { "type", "address", "month", "note" },
    },
    proceedings = {
        required = { "title", "year" },
        optional = { "editor", { "volume", "number" }, "series", "address", "month", "organization", "publisher", "note" },
    },
    techreport = {
        required = { "author", "title", "institution", "year" },
        optional = { "type", "number", "address", "month", "note" },
    },
    patent = {
        required = { "nationality", "number", "year", "yearfiled" },
        optional = { "author", "title", "language", "assignee", "address", "type", "day", "dayfiled", "month", "monthfiled", "note", },
    },
    unpublished = {
        required = { "author", "title", "note" },
        optional = { "month", "year" },
    },
}


publications.tracers.fields       = fields
publications.tracers.categories   = categories
publications.tracers.citevariants = citevariants
publications.tracers.listvariants = listvariants

-- -- --

function tracers.showdatasetfields(dataset)
    local luadata = datasets[dataset].luadata
    if next(luadata) then
        ctx_starttabulate { "|lT|lT|pT|" }
            ctx_NC() ctx_bold("tag")
            ctx_NC() ctx_bold("category")
            ctx_NC() ctx_bold("fields")
            ctx_NC() ctx_NR()
            ctx_FL()
            for k, v in sortedhash(luadata) do
                ctx_NC() context(k)
                ctx_NC() context(v.category)
                ctx_NC()
                for k, v in sortedhash(v) do
                    if k ~= "details" and k ~= "tag" and k ~= "category" then
                        context("%s ",k)
                    end
                end
                ctx_NC() ctx_NR()
            end
        ctx_stoptabulate()
    end
end

function tracers.showdatasetcompleteness(dataset)

    dataset = datasets[dataset]

    local preamble = { "|lBTw(10em)|p|" }

    local function required(foundfields,key,value,indirect)
        ctx_NC() ctx_darkgreen(key)
        ctx_NC() if indirect then
                ctx_darkblue(value)
             elseif value then
                context(value)
             else
                ctx_darkred("\\tttf [missing]")
             end
        ctx_NC() ctx_NR()
        foundfields[key] = nil
    end

    local function optional(foundfields,key,value,indirect)
        ctx_NC() context(key)
        ctx_NC() if indirect then
                ctx_darkblue(value)
             elseif value then
                context(value)
             end
        ctx_NC() ctx_NR()
        foundfields[key] = nil
    end

    local function identified(tag,category,crossref)
        ctx_NC() context(category)
        ctx_NC() if crossref then
                context("\\tttf %s\\hfill\\darkblue => %s",tag,crossref)
             else
                context("\\tttf %s",tag)
             end
        ctx_NC() ctx_NR()
    end

    local function extra(key,value)
        ctx_NC() ctx_llap("+") context(key)
        ctx_NC() context(value)
        ctx_NC() ctx_NR()
    end

    local luadata = datasets[dataset].luadata

    if next(luadata) then
        for tag, entry in sortedhash(luadata) do
            local category = entry.category
            local fields = categories[category]
            if fields then
                local foundfields = { }
                for k, v in next, entry do
                    foundfields[k] = true
                end
                ctx_starttabulate(preamble)
                identified(tag,category,entry.crossref)
                ctx_FL()
                local requiredfields = fields.required
                local optionalfields = fields.optional
                if requiredfields then
                    for i=1,#requiredfields do
                        local r = requiredfields[i]
                        if type(r) == "table" then
                            local okay = true
                            for i=1,#r do
                                local ri = r[i]
                                if rawget(entry,ri) then
                                    required(foundfields,ri,entry[ri])
                                    okay = true
                                elseif entry[ri] then
                                    required(foundfields,ri,entry[ri],true)
                                    okay = true
                                end
                            end
                            if not okay then
                                required(foundfields,table.concat(r,"\\letterbar "))
                            end
                        elseif rawget(entry,r) then
                            required(foundfields,r,entry[r])
                        elseif entry[r] then
                            required(foundfields,r,entry[r],true)
                        else
                            required(foundfields,r)
                        end
                    end
                end
                if optionalfields then
                    for i=1,#optionalfields do
                        local o = optionalfields[i]
                        if type(o) == "table" then
                            for i=1,#o do
                                local oi = o[i]
                                if rawget(entry,oi) then
                                    optional(foundfields,oi,entry[oi])
                                elseif entry[oi] then
                                    optional(foundfields,oi,entry[oi],true)
                                end
                            end
                        elseif rawget(entry,o) then
                            optional(foundfields,o,entry[o])
                        elseif entry[o] then
                            optional(foundfields,o,entry[o],true)
                        end
                    end
                end
                foundfields.category = nil
                foundfields.tag = nil
                for k, v in sortedhash(foundfields) do
                    extra(k,entry[k])
                end
                ctx_stoptabulate()
            else
                -- error
            end
        end
    end

end

function tracers.showfields(settings)
    local rotation    = settings.rotation
    local swapped     = { }
    local validfields = { }
    for category, fields in next, categories do
        local categoryfields = { }
        for name, list in next, fields do
            for i=1,#list do
                local field = list[i]
                if type(field) == "table" then
                    field = table.concat(field," + ")
                end
                validfields[field] = true
                if swapped[field] then
                    swapped[field][category] = true
                else
                    swapped[field] = { [category] = true }
                end
            end
        end
    end
    local s_categories = sortedkeys(categories)
    local s_fields     = sortedkeys(validfields)
    ctx_starttabulate { "|l" .. string.rep("|c",#s_categories) .. "|" }
    ctx_FL()
    ctx_NC()
    if rotation then
        rotation = { rotation = rotation }
    end
    for i=1,#s_categories do
        ctx_NC()
        local txt = formatters["\\bf %s"](s_categories[i])
        if rotation then
            ctx_rotate(rotation,txt)
        else
            context(txt)
        end
    end
    ctx_NC() ctx_NR()
    ctx_FL()
    for i=1,#s_fields do
        local field  = s_fields[i]
        local fields = swapped[field]
        ctx_NC()
        ctx_bold(field)
        for j=1,#s_categories do
            ctx_NC()
            if fields[s_categories[j]] then
                context("*")
            end
        end
        ctx_NC() ctx_NR()
    end
    ctx_LL()
    ctx_stoptabulate()
end

function tracers.addfield(f,c)
    -- no checking now
    if type(f) == "string" then
        f = settings_to_array(f)
    end
    for i=1,#f do
        local field = f[i]
        if not table.contains(fields,field) then
            fields[#fields+1] = field
        end
    end
    if #f == 1 then
        f = f[1]
    end
    if type(c) == "string" then
        c = settings_to_array(c)
    end
    for i=1,#c do
        local ci = c[i]
        local category = categories[ci]
        if category then
            local optional = category.optional
            if optional then
                optional[#optional+1] = f
            else
                categories[ci] = { optional = { f } }
            end
        else
            categories[ci] = { optional = { f } }
        end
    end
end


commands.showbtxdatasetfields       = tracers.showdatasetfields
commands.showbtxdatasetcompleteness = tracers.showdatasetcompleteness
commands.showbtxfields              = tracers.showfields
commands.btxaddfield                = tracers.addfield