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
|
local core = {}
local citeproc = require("citeproc")
local util = citeproc.util
require("lualibs")
core.locale_file_format = "csl-locales-%s.xml"
core.ids = {}
core.loaded_ids = {}
core.uncite_all_items = false
function core.error(message)
if luatexbase then
luatexbase.module_error("csl", message)
else
util.error(message)
end
end
function core.warning(message)
if luatexbase then
luatexbase.module_warning("csl", message)
else
util.warning(message)
end
end
function core.info(message)
if luatexbase then
luatexbase.module_info("csl", message)
else
util.info(message)
end
end
function core.read_file(file_name, ftype, file_info)
file_info = file_info or "file"
local path = kpse.find_file(file_name, ftype)
if not path then
if ftype and not util.endswith(file_name, ftype) then
file_name = file_name .. ftype
end
core.error(string.format('Failed to find %s "%s"', file_info, file_name))
return nil
end
local file = io.open(path, "r")
if not file then
core.error(string.format('Failed to open %s "%s"', file_info, path))
return nil
end
local contents = file:read("*a")
file:close()
return contents
end
local function load_bib(bib_files)
local bib = {}
for _, bib_file in ipairs(bib_files) do
-- TODO: try to load `<bibname>.json` first?
local bib_contents = core.read_file(bib_file, "bib", "database file")
local file_name = bib_file
if not util.endswith(file_name, ".bib") then
file_name = file_name .. ".bib"
end
-- TODO: parse bib entries on demand
local csl_items = citeproc.parse_bib(bib_contents)
for _, item in ipairs(csl_items) do
local id = item.id
if bib[id] then
core.error(string.format('Duplicate entry key "%s" in "%s".', id, file_name))
end
bib[id] = item
end
end
return bib
end
function core.make_citeproc_sys(bib_files)
core.bib = load_bib(bib_files)
local citeproc_sys = {
retrieveLocale = function (lang)
local locale_file_format = core.locale_file_format or "locales-%s.xml"
local filename = string.format(locale_file_format, lang)
return core.read_file(filename)
end,
retrieveItem = function (id)
local res = core.bib[id]
-- if not res then
-- core.warning(string.format('Failed to find entry "%s".', id))
-- end
return res
end
}
return citeproc_sys
end
function core.init(style_name, bib_files, lang)
if style_name == "" or #bib_files == 0 then
return nil
end
local style = core.read_file(style_name .. ".csl", nil, "style file")
if not style then
core.error(string.format('Failed to load style "%s.csl"', style_name))
return nil
end
local force_lang = nil
if lang and lang ~= "" then
force_lang = true
else
lang = nil
end
local citeproc_sys = core.make_citeproc_sys(bib_files)
local engine = citeproc.new(citeproc_sys, style, lang, force_lang)
return engine
end
function core.make_citation(citation_info)
-- `citation_info`: "{ITEM-1@2}{{id={ITEM-1},label={page},locator={6}}}{3}"
local arguments = {}
for argument in string.gmatch(citation_info, "(%b{})") do
table.insert(arguments, string.sub(argument, 2, -2))
end
if #arguments ~= 3 then
error(string.format('Invalid citation "%s"', citation_info))
return nil
end
local citation_id, cite_items_str, note_index = table.unpack(arguments)
local cite_items = {}
if citation_id == "nocite" then
for _, cite_id in ipairs(util.split(cite_items_str, "%s*,%s*")) do
table.insert(cite_items, {id = cite_id})
end
else
for item_str in string.gmatch(cite_items_str, "(%b{})") do
item_str = string.sub(item_str, 2, -2)
local cite_item = {}
for key, value in string.gmatch(item_str, "([%w%-]+)=(%b{})") do
if key == "sub-verbo" then
key = "sub verbo"
end
value = string.sub(value, 2, -2)
cite_item[key] = value
end
table.insert(cite_items, cite_item)
end
end
local citation = {
citationID = citation_id,
citationItems = cite_items,
properties = {
noteIndex = tonumber(note_index),
},
}
return citation
end
function core.process_citations(engine, citations)
local citations_pre = {}
-- Save the time of bibliography sorting by update all ids at one time.
core.update_item_ids(engine, citations)
local citation_strings = {}
for _, citation in ipairs(citations) do
if citation.citationID ~= "nocite" then
local res = engine:processCitationCluster(citation, citations_pre, {})
for _, citation_res in ipairs(res[2]) do
local citation_str = citation_res[2]
local citation_id = citation_res[3]
citation_strings[citation_id] = citation_str
end
table.insert(citations_pre, {citation.citationID, citation.properties.noteIndex})
end
end
return citation_strings
end
function core.update_item_ids(engine, citations)
if core.uncite_all_items then
for item_id, _ in pairs(core.bib) do
if not core.loaded_ids[item_id] then
table.insert(core.ids, item_id)
core.loaded_ids[item_id] = true
end
end
end
for _, citation in ipairs(citations) do
for _, cite_item in ipairs(citation.citationItems) do
local id = cite_item.id
if id == "*" then
for item_id, _ in pairs(core.bib) do
if not core.loaded_ids[item_id] then
table.insert(core.ids, item_id)
core.loaded_ids[item_id] = true
end
end
else
if not core.loaded_ids[id] then
table.insert(core.ids, id)
core.loaded_ids[id] = true
end
end
end
end
engine:updateItems(core.ids)
-- TODO: engine:updateUncitedItems(ids)
end
function core.make_bibliography(engine)
local result = engine:makeBibliography()
local params = result[1]
local bib_items = result[2]
local res = ""
local bib_options = ""
if params["hangingindent"] then
bib_options = bib_options .. "\n hanging-indent = true,"
end
if params["linespacing"] then
bib_options = bib_options .. string.format("\n line-spacing = %d,", params["linespacing"])
end
if params["entryspacing"] then
bib_options = bib_options .. string.format("\n entry-spacing = %d,", params["entryspacing"])
end
if bib_options ~= "" then
bib_options = "\\cslsetup{" .. bib_options .. "\n}\n\n"
res = res .. bib_options
end
if params.bibstart then
res = res .. params.bibstart
end
for _, bib_item in ipairs(bib_items) do
res = res .. "\n" .. bib_item
end
if params.bibend then
res = res .. "\n" .. params.bibend
end
return res
end
return core
|