summaryrefslogtreecommitdiff
path: root/tex/context/base/core-job.lua
blob: f58344f9358fd975ccc0b25c17f2d0d249e710ec (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
if not modules then modules = { } end modules ['core-job'] = {
    version   = 1.001,
    comment   = "companion to core-job.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local texsprint, texprint, texwrite = tex.sprint, tex.print, tex.write
local ctxcatcodes, texcatcodes = tex.ctxcatcodes, tex.texcatcodes
local lower, format, find, gmatch, gsub, match = string.lower, string.format, string.find, string.gmatch, string.gsub, string.match
local concat = table.concat

local commands, resolvers = commands, resolvers

-- main code

resolvers.maxreadlevel = 3

directives.register("resolvers.maxreadlevel", function(v) resolvers.maxreadlevel = tonumber(v) or resolvers.maxreadlevel end)

local function exists(n)
    if io.exists(n) then
        return n
    else
        n = file.addsuffix(n,'tex')
        if io.exists(n) then
            return n
        end
    end
    return nil
end

function resolvers.findctxfile(name,maxreadlevel)
    if file.is_qualified_path(name) then
        return name
    else
        -- not that efficient, too many ./ lookups
        local n = "./" .. name
        local found = exists(n)
        if found then
            return found
        else
            for i=1,maxreadlevel or resolvers.maxreadlevel or 0 do
                n = "../" .. n
                found = exists(n)
                if found then
                    return found
                end
            end
        end
        return resolvers.find_file(name) or ""
    end
end

function commands.maxreadlevel()
    texwrite(resolvers.maxreadlevel)
end

function commands.processfile(name,maxreadlevel)
    name = resolvers.findctxfile(name,maxreadlevel)
    if name ~= "" then
        texsprint(ctxcatcodes,format("\\input %s\\relax",name)) -- we need \input {name}
    end
end

function commands.doifinputfileelse(name,maxreadlevel)
    commands.doifelse(resolvers.findctxfile(name,maxreadlevel) ~= "")
end

function commands.locatefilepath(name,maxreadlevel)
    texsprint(texcatcodes,file.dirname(resolvers.findctxfile(name,maxreadlevel)))
end

function commands.usepath(paths,maxreadlevel)
    resolvers.register_extra_path(paths)
    texsprint(texcatcodes,concat(resolvers.instance.extra_paths or {}, ""))
end

function commands.usesubpath(subpaths,maxreadlevel)
    resolvers.register_extra_path(nil,subpaths)
    texsprint(texcatcodes,concat(resolvers.instance.extra_paths or {}, ""))
end

function commands.usezipfile(name,tree)
    if tree and tree ~= "" then
        resolvers.usezipfile(format("zip:///%s?tree=%s",name,tree))
    else
        resolvers.usezipfile(format("zip:///%s",name))
    end
end

-- for the moment here, maybe a module

--~ <?xml version='1.0' standalone='yes'?>
--~ <exa:variables xmlns:exa='htpp://www.pragma-ade.com/schemas/exa-variables.rng'>
--~ 	<exa:variable label='mode:pragma'>nee</exa:variable>
--~ 	<exa:variable label='mode:variant'>standaard</exa:variable>
--~ </exa:variables>

local function convertexamodes(str)
    local x = xml.convert(str)
    for e in xml.collected(x,"exa:variable") do
        local label = e.at and e.at.label
        if label and label ~= "" then
            local data = xml.text(e)
            local mode = match(label,"^mode:(.+)$")
            if mode then
                texsprint(ctxcatcodes,format("\\enablemode[%s:%s]",mode,data))
            end
            texsprint(ctxcatcodes,format("\\setvariable{exa:variables}{%s}{%s}",label,gsub(data,"([{}])","\\%1")))
        end
    end
end

-- we need a system file option: ,. .. etc + paths but no tex lookup so resolvers.find_file is wrong here

function commands.loadexamodes(filename)
    if not filename or filename == "" then
        filename = file.removesuffix(tex.jobname)
    end
    filename = resolvers.find_file(file.addsuffix(filename,'ctm')) or ""
    if filename ~= "" then
        commands.writestatus("examodes","loading %s",filename) -- todo: message system
        convertexamodes(io.loaddata(filename))
    else
        commands.writestatus("examodes","no mode file %s",filename) -- todo: message system
    end
end

function commands.logoptionfile(name)
    -- todo: xml if xml logmode
    local f = io.open(name)
    if f then
        texio.write_nl("log","%\n%\tbegin of optionfile\n%\n")
        for line in f:lines() do
            texio.write("log",format("%%\t%s\n",line))
        end
        texio.write("log","%\n%\tend of optionfile\n%\n")
        f:close()
    end
end

--~ set functions not ok and not faster on mk runs either
--~
--~ local function doifcommonelse(a,b)
--~     local ba = find(a,",")
--~     local bb = find(b,",")
--~     if ba and bb then
--~         for sa in gmatch(a,"[^ ,]+") do
--~             for sb in gmatch(b,"[^ ,]+") do
--~                 if sa == sb then
--~                     texsprint(ctxcatcodes,"\\def\\commalistelement{",sa,"}")
--~                     return true
--~                 end
--~             end
--~         end
--~     elseif ba then
--~         for sa in gmatch(a,"[^ ,]+") do
--~             if sa == b then
--~                 texsprint(ctxcatcodes,"\\def\\commalistelement{",b,"}")
--~                 return true
--~             end
--~         end
--~     elseif bb then
--~         for sb in gmatch(b,"[^ ,]+") do
--~             if a == sb then
--~                 texsprint(ctxcatcodes,"\\def\\commalistelement{",a,"}")
--~                 return true
--~             end
--~         end
--~     else
--~         if a == b then
--~             texsprint(ctxcatcodes,"\\def\\commalistelement{",a,"}")
--~             return true
--~         end
--~     end
--~     texsprint(ctxcatcodes,"\\let\\commalistelement\\empty")
--~     return false
--~ end
--~ local function doifinsetelse(a,b)
--~     local bb = find(b,",")
--~     if bb then
--~         for sb in gmatch(b,"[^ ,]+") do
--~             if a == sb then
--~                 texsprint(ctxcatcodes,"\\def\\commalistelement{",a,"}")
--~                 return true
--~             end
--~         end
--~     else
--~         if a == b then
--~             texsprint(ctxcatcodes,"\\def\\commalistelement{",a,"}")
--~             return true
--~         end
--~     end
--~     texsprint(ctxcatcodes,"\\let\\commalistelement\\empty")
--~     return false
--~ end
--~ function commands.doifcommon    (a,b) commands.doif    (doifcommonelse(a,b)) end
--~ function commands.doifnotcommon (a,b) commands.doifnot (doifcommonelse(a,b)) end
--~ function commands.doifcommonelse(a,b) commands.doifelse(doifcommonelse(a,b)) end
--~ function commands.doifinset     (a,b) commands.doif    (doifinsetelse(a,b)) end
--~ function commands.doifnotinset  (a,b) commands.doifnot (doifinsetelse(a,b)) end
--~ function commands.doifinsetelse (a,b) commands.doifelse(doifinsetelse(a,b)) end