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
|
if not modules then modules = { } end modules ['data-zip'] = {
version = 1.001,
comment = "companion to luat-lib.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- real old code ... partly redone .. needs testing due to changes as well as a decent overhaul
local format, find, match = string.format, string.find, string.match
local trace_locating = false trackers.register("resolvers.locating", function(v) trace_locating = v end)
local report_zip = logs.reporter("resolvers","zip")
--[[ldx--
<p>We use a url syntax for accessing the zip file itself and file in it:</p>
<typing>
zip:///oeps.zip?name=bla/bla.tex
zip:///oeps.zip?tree=tex/texmf-local
zip:///texmf.zip?tree=/tex/texmf
zip:///texmf.zip?tree=/tex/texmf-local
zip:///texmf-mine.zip?tree=/tex/texmf-projects
</typing>
--ldx]]--
local resolvers = resolvers
zip = zip or { }
local zip = zip
local archives = zip.archives or { }
zip.archives = archives
local registeredfiles = zip.registeredfiles or { }
zip.registeredfiles = registeredfiles
local zipfiles = utilities.zipfiles
local openzip, closezip, validfile, wholefile, filehandle, traversezip
if zipfiles then
local ipairs = ipairs
openzip = zipfiles.open
closezip = zipfiles.close
validfile = zipfiles.found
wholefile = zipfiles.unzip
traversezip = function(zfile)
return ipairs(zipfiles.list(zfile))
end
local streams = utilities.streams
local openstream = streams.open
local readstring = streams.readstring
local streamsize = streams.size
local metatable = {
close = streams.close,
read = function(stream,n)
readstring(stream,n == "*a" and streamsize(stream) or n)
end
}
filehandle = function(zfile,queryname)
local data = wholefile(zfile,queryname)
if data then
local stream = openstream(data)
if stream then
return setmetatableindex(stream,metatable)
end
end
end
else
openzip = zip.open
closezip = zip.close
validfile = function(zfile,queryname)
local dfile = zfile:open(queryname)
if dfile then
dfile:close()
return true
end
return false
end
traversezip = function(zfile)
return z:files()
end
wholefile = function(zfile,queryname)
local dfile = zfile:open(queryname)
if dfile then
local s = dfile:read("*all")
dfile:close()
return s
end
end
filehandle = function(zfile,queryname)
local dfile = zfile:open(queryname)
if dfile then
return dfile
end
end
end
local function validzip(str) -- todo: use url splitter
if not find(str,"^zip://") then
return "zip:///" .. str
else
return str
end
end
function zip.openarchive(name)
if not name or name == "" then
return nil
else
local arch = archives[name]
if not arch then
local full = resolvers.findfile(name) or ""
arch = full ~= "" and openzip(full) or false
archives[name] = arch
end
return arch
end
end
function zip.closearchive(name)
if not name or (name == "" and archives[name]) then
closezip(archives[name])
archives[name] = nil
end
end
function resolvers.locators.zip(specification)
local archive = specification.filename
local zipfile = archive and archive ~= "" and zip.openarchive(archive) -- tricky, could be in to be initialized tree
if trace_locating then
if zipfile then
report_zip("locator: archive %a found",archive)
else
report_zip("locator: archive %a not found",archive)
end
end
end
function resolvers.hashers.zip(specification)
local archive = specification.filename
if trace_locating then
report_zip("loading file %a",archive)
end
resolvers.usezipfile(specification.original)
end
function resolvers.concatinators.zip(zipfile,path,name) -- ok ?
if not path or path == "" then
return format('%s?name=%s',zipfile,name)
else
return format('%s?name=%s/%s',zipfile,path,name)
end
end
function resolvers.finders.zip(specification)
local original = specification.original
local archive = specification.filename
if archive then
local query = url.query(specification.query)
local queryname = query.name
if queryname then
local zfile = zip.openarchive(archive)
if zfile then
if trace_locating then
report_zip("finder: archive %a found",archive)
end
if validfile(zfile,queryname) then
if trace_locating then
report_zip("finder: file %a found",queryname)
end
return specification.original
elseif trace_locating then
report_zip("finder: file %a not found",queryname)
end
elseif trace_locating then
report_zip("finder: unknown archive %a",archive)
end
end
end
if trace_locating then
report_zip("finder: %a not found",original)
end
return resolvers.finders.notfound()
end
function resolvers.openers.zip(specification)
local original = specification.original
local archive = specification.filename
if archive then
local query = url.query(specification.query)
local queryname = query.name
if queryname then
local zfile = zip.openarchive(archive)
if zfile then
if trace_locating then
report_zip("opener; archive %a opened",archive)
end
local handle = filehandle(zfile,queryname)
if handle then
if trace_locating then
report_zip("opener: file %a found",queryname)
end
return resolvers.openers.helpers.textopener('zip',original,handle)
elseif trace_locating then
report_zip("opener: file %a not found",queryname)
end
elseif trace_locating then
report_zip("opener: unknown archive %a",archive)
end
end
end
if trace_locating then
report_zip("opener: %a not found",original)
end
return resolvers.openers.notfound()
end
function resolvers.loaders.zip(specification)
local original = specification.original
local archive = specification.filename
if archive then
local query = url.query(specification.query)
local queryname = query.name
if queryname then
local zfile = zip.openarchive(archive)
if zfile then
if trace_locating then
report_zip("loader: archive %a opened",archive)
end
local data = wholefile(zfile,queryname)
if data then
logs.show_load(original)
if trace_locating then
report_zip("loader; file %a loaded",original)
end
return true, data, #data
elseif trace_locating then
report_zip("loader: file %a not found",queryname)
end
elseif trace_locating then
report_zip("loader; unknown archive %a",archive)
end
end
end
if trace_locating then
report_zip("loader: %a not found",original)
end
return resolvers.openers.notfound()
end
-- zip:///somefile.zip
-- zip:///somefile.zip?tree=texmf-local -> mount
function resolvers.usezipfile(archive)
local specification = resolvers.splitmethod(archive) -- to be sure
local archive = specification.filename
if archive and not registeredfiles[archive] then
local z = zip.openarchive(archive)
if z then
local tree = url.query(specification.query).tree or ""
if trace_locating then
report_zip("registering: archive %a",archive)
end
resolvers.starttiming()
resolvers.prependhash('zip',archive)
resolvers.extendtexmfvariable(archive) -- resets hashes too
registeredfiles[archive] = z
resolvers.registerfilehash(archive,resolvers.registerzipfile(z,tree))
resolvers.stoptiming()
elseif trace_locating then
report_zip("registering: unknown archive %a",archive)
end
elseif trace_locating then
report_zip("registering: archive %a not found",archive)
end
end
function resolvers.registerzipfile(z,tree)
local names = { }
local files = { } -- somewhat overkill .. todo
local remap = { } -- somewhat overkill .. todo
local n = 0
local filter = tree == "" and "^(.+)/(.-)$" or format("^%s/(.+)/(.-)$",tree)
local register = resolvers.registerfile
if trace_locating then
report_zip("registering: using filter %a",filter)
end
for i in traversezip(z) do
local filename = i.filename
local path, name = match(filename,filter)
if not path then
n = n + 1
register(names,filename,"")
local usedname = lower(filename)
files[usedname] = ""
if usedname ~= filename then
remap[usedname] = filename
end
elseif name and name ~= "" then
n = n + 1
register(names,name,path)
local usedname = lower(name)
files[usedname] = path
if usedname ~= name then
remap[usedname] = name
end
else
-- directory
end
end
report_zip("registering: %s files registered",n)
return {
-- metadata = { },
files = files,
remap = remap,
}
end
|