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 ['java-ini'] = {
version = 1.001,
comment = "companion to java-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local format = string.format
local concat = table.concat
local lpegmatch, lpegP, lpegR, lpegS, lpegC, lpegCarg = lpeg.match, lpeg.P, lpeg.R, lpeg.S, lpeg.C, lpeg.Carg
local allocate = utilities.storage.allocate
local variables = interfaces.variables
-- todo: don't flush scripts if no JS key
local trace_javascript = false trackers.register("backends.javascript", function(v) trace_javascript = v end)
local report_javascripts = logs.reporter ("interactions","javascripts")
local status_javascripts = logs.messenger("interactions","javascripts")
interactions.javascripts = interactions.javascripts or { }
local javascripts = interactions.javascripts
javascripts.codes = allocate()
javascripts.preambles = allocate()
javascripts.functions = allocate()
local codes, preambles, functions = javascripts.codes, javascripts.preambles, javascripts.functions
local preambled = { }
local function storefunction(s,preamble)
functions[s] = preamble
end
local uses = lpegP("uses")
local used = lpegP("used")
local left = lpegP("{")
local right = lpegP("}")
local space = lpegS(" \r\n")
local spaces = space^0
local braced = left * lpegC((1-right-space)^1) * right
local unbraced = lpegC((1-space)^1)
local name = spaces * (braced + unbraced) * spaces
local any = lpegP(1)
local script = lpegC(any^1)
local funct = lpegP("function")
local leftp = lpegP("(")
local rightp = lpegP(")")
local fname = spaces * funct * spaces * (lpegC((1-space-left-leftp)^1) * lpegCarg(1) / storefunction) * spaces * leftp
local parsecode = name * ((uses * name) + lpeg.Cc("")) * spaces * script
local parsepreamble = name * ((used * name) + lpeg.Cc("")) * spaces * script
local parsefunctions = (fname + any)^0
function javascripts.storecode(str)
local name, uses, script = lpegmatch(parsecode,str)
if name and name ~= "" then
codes[name] = { uses, script }
end
end
function javascripts.storepreamble(str) -- now later
local name, used, script = lpegmatch(parsepreamble,str)
if name and name ~= "" and not preambled[name] then
local n = #preambles + 1
preambles[n] = { name, used, script }
preambled[name] = n
if trace_javascript then
report_javascripts("stored: preamble '%s', state '%s', order '%s'",name,used,n)
end
lpegmatch(parsefunctions,script,1,n)
end
end
function javascripts.setpreamble(name,script) -- now later
if name and name ~= "" and not preambled[name] then
local n = #preambles + 1
preambles[n] = { name, "now", script }
preambled[name] = n
if trace_javascript then
report_javascripts("adapted: preamble '%s', state '%s', order '%s'",name,"now",n)
end
lpegmatch(parsefunctions,script,1,n)
end
end
function javascripts.addtopreamble(name,script)
if name and name ~= "" then
local p = preambled[name]
if p then
preambles[p] = { "now", preambles[p] .. " ;\n" .. script }
if trace_javascript then
report_javascripts("extended: preamble '%s', state '%s', order '%s'",name,"now",p)
end
else
local n = #preambles + 1
preambles[n] = { name, "now", script }
preambled[name] = n
if trace_javascript then
report_javascripts("stored: preamble '%s', state '%s', order '%s'",name,"now",n)
end
lpegmatch(parsefunctions,script,1,n)
end
end
end
function javascripts.usepreamblenow(name) -- now later
if name and name ~= "" and name ~= variables.reset then -- todo: reset
local names = utilities.parsers.settings_to_array(name)
for i=1,#names do
local somename = names[i]
if not preambled[somename] then
preambles[preambled[somename]][2] = "now"
if trace_javascript then
report_javascripts("used: preamble '%s', state '%s', order '%s'",somename,"now","auto")
end
end
end
end
end
local splitter = lpeg.Ct(lpeg.splitat(lpeg.patterns.commaspacer))
local used, reported = false, { } -- we can cache more
function javascripts.code(name,arguments)
local c = codes[name]
if c then
local u, code = c[1], c[2]
if u ~= "" then
local p = preambled[u]
if p then
preambles[p][2] = "now"
if trace_javascript and not reported[name] then
reported[name] = true
report_javascripts("used: code '%s', preamble '%s'",name,u)
end
elseif trace_javascript and not reported[name] then
reported[name] = true
report_javascripts("used: code '%s'",name)
end
elseif trace_javascript and not reported[name] then
reported[name] = true
report_javascripts("used: code '%s'",name)
end
used = true
return code
end
local f = functions[name]
if f then
used = true
if trace_javascript and not reported[name] then
reported[name] = true
report_javascripts("used: function '%s'",name)
end
preambles[f][2] = "now" -- automatically tag preambles that define the function (as later)
if arguments then
local args = lpegmatch(splitter,arguments)
for i=1,#args do -- can be a helper
args[i] = format("%q",args[i])
end
return format("%s(%s)",name,concat(args,","))
else
return format("%s()",name)
end
end
end
function javascripts.flushpreambles()
local t = { }
if used then
for i=1,#preambles do
local preamble = preambles[i]
if preamble[2] == "now" then
if trace_javascript then
report_javascripts("flushed: preamble '%s'",preamble[1])
end
t[#t+1] = { preamble[1], preamble[3] }
end
end
end
return t
end
local patterns = { "java-imp-%s.mkiv", "java-imp-%s.tex", "java-%s.mkiv", "java-%s.tex" }
function javascripts.usescripts(name)
-- this will become pure lua, no context
if name ~= variables.reset then -- reset is obsolete
commands.uselibrary(name,patterns,function(name,foundname)
context.startnointerference()
context.startreadingfile()
context.input(foundname)
status_javascripts("loaded: library '%s'",name)
context.stopreadingfile()
context.stopnointerference()
end, function(name)
report_javascripts("unknown: library '%s'",name)
end)
end
end
|