summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/data-bin.lua
blob: 2bac901ea470945a3284fba669ab14f24ff9a528 (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
if not modules then modules = { } end modules ['data-bin'] = {
    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"
}

local resolvers     = resolvers
local methodhandler = resolvers.methodhandler
local notfound      = resolvers.loaders.notfound

function resolvers.findbinfile(filename,filetype)
    return methodhandler('finders',filename,filetype)
end

local function openbinfile(filename)
    return methodhandler('loaders',filename) -- a bit weird: load
end

resolvers.openbinfile = openbinfile

function resolvers.loadbinfile(filename,filetype)
    local fname = methodhandler('finders',filename,filetype)
    if fname and fname ~= "" then
        return openbinfile(fname) -- a bit weird: open
    else
        return notfound()
    end
end