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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
|
local info = {
version = 1.002,
comment = "scintilla lpeg lexer for context",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files",
}
-- maybe: _LINEBYLINE variant for large files (no nesting)
-- maybe: protected_macros
--[[
experiment dd 2009/10/28 .. todo:
-- figure out if tabs instead of splits are possible
-- locate an option to enter name in file dialogue (like windows permits)
-- figure out why loading a file fails
-- we cannot print to the log pane
-- we cannot access props["keywordclass.macros.context.en"]
-- lexer.get_property only handles integers
-- we cannot run a command to get the location of mult-def.lua
-- local interface = props["keywordclass.macros.context.en"]
-- local interface = lexer.get_property("keywordclass.macros.context.en","")
]]--
local global, string, table, lpeg = _G, string, table, lpeg
local P, R, S, V, C, Cmt, Cp, Cc, Ct = lpeg.P, lpeg.R, lpeg.S, lpeg.V, lpeg.C, lpeg.Cmt, lpeg.Cp, lpeg.Cc, lpeg.Ct
local type, next = type, next
local find, match, lower, upper = string.find, string.match, string.lower, string.upper
local lexer = require("lexer")
local context = lexer.context
local patterns = context.patterns
local inform = context.inform
local token = lexer.token
local exact_match = lexer.exact_match
local contextlexer = lexer.new("tex","scite-context-lexer-tex")
local whitespace = contextlexer.whitespace
local cldlexer = lexer.load("scite-context-lexer-cld")
local mpslexer = lexer.load("scite-context-lexer-mps")
local commands = { en = { } }
local primitives = { }
local helpers = { }
local constants = { }
do -- todo: only once, store in global
-- commands helpers primitives
local definitions = context.loaddefinitions("scite-context-data-interfaces")
if definitions then
local list = { }
for interface, list in next, definitions do
list[#list+1] = interface
local c = { }
for i=1,#list do
c[list[i]] = true
end
if interface ~= "en" then
list = definitions.en
if list then
for i=1,#list do
c[list[i]] = true
end
end
end
commands[interface] = c
end
inform("context user interfaces '%s' supported",table.concat(list," "))
end
local definitions = context.loaddefinitions("scite-context-data-context")
local overloaded = { }
if definitions then
helpers = definitions.helpers or { }
constants = definitions.constants or { }
for i=1,#helpers do
overloaded[helpers[i]] = true
end
for i=1,#constants do
overloaded[constants[i]] = true
end
end
local definitions = context.loaddefinitions("scite-context-data-tex")
if definitions then
local function add(data,normal)
for k, v in next, data do
if v ~= "/" and v ~= "-" then
if not overloaded[v] then
primitives[#primitives+1] = v
end
if normal then
v = "normal" .. v
if not overloaded[v] then
primitives[#primitives+1] = v
end
end
end
end
end
add(definitions.tex,true)
add(definitions.etex,true)
add(definitions.pdftex,true)
add(definitions.aleph,true)
add(definitions.omega,true)
add(definitions.luatex,true)
add(definitions.xetex,true)
end
end
local currentcommands = commands.en or { }
local cstoken = R("az","AZ","\127\255") + S("@!?_")
local knowncommand = Cmt(cstoken^1, function(_,i,s)
return currentcommands[s] and i
end)
local utfchar = context.utfchar
local wordtoken = context.patterns.wordtoken
local iwordtoken = context.patterns.iwordtoken
local wordpattern = context.patterns.wordpattern
local iwordpattern = context.patterns.iwordpattern
local invisibles = context.patterns.invisibles
local checkedword = context.checkedword
local styleofword = context.styleofword
local setwordlist = context.setwordlist
local validwords = false
local validminimum = 3
-- % language=uk
-- fails (empty loop message) ... latest lpeg issue?
local knownpreamble = Cmt(P("% "), function(input,i,_) -- todo : utfbomb, was #P("% ")
if i < 10 then
validwords, validminimum = false, 3
local s, e, word = find(input,"^(.+)[\n\r]",i) -- combine with match
if word then
local interface = match(word,"interface=([a-z]+)")
if interface and #interface == 2 then
inform("enabling context user interface '%s'",interface)
currentcommands = commands[interface] or commands.en or { }
end
local language = match(word,"language=([a-z]+)")
validwords, validminimum = setwordlist(language)
end
end
return false
end)
-- -- the token list contains { "style", endpos } entries
-- --
-- -- in principle this is faster but it is also crash sensitive for large files
-- local constants_hash = { } for i=1,#constants do constants_hash [constants [i]] = true end
-- local helpers_hash = { } for i=1,#helpers do helpers_hash [helpers [i]] = true end
-- local primitives_hash = { } for i=1,#primitives do primitives_hash[primitives[i]] = true end
-- local specialword = Ct( P("\\") * Cmt( C(cstoken^1), function(input,i,s)
-- if currentcommands[s] then
-- return true, "command", i
-- elseif constants_hash[s] then
-- return true, "data", i
-- elseif helpers_hash[s] then
-- return true, "plain", i
-- elseif primitives_hash[s] then
-- return true, "primitive", i
-- else -- if starts with if then primitive
-- return true, "user", i
-- end
-- end) )
-- local specialword = P("\\") * Cmt( C(cstoken^1), function(input,i,s)
-- if currentcommands[s] then
-- return true, { "command", i }
-- elseif constants_hash[s] then
-- return true, { "data", i }
-- elseif helpers_hash[s] then
-- return true, { "plain", i }
-- elseif primitives_hash[s] then
-- return true, { "primitive", i }
-- else -- if starts with if then primitive
-- return true, { "user", i }
-- end
-- end)
-- experiment: keep space with whatever ... less tables
-- 10pt
local commentline = P("%") * (1-S("\n\r"))^0
local endline = S("\n\r")^1
local space = patterns.space -- S(" \n\r\t\f\v")
local any = patterns.any
local backslash = P("\\")
local hspace = S(" \t")
local p_spacing = space^1
local p_rest = any
local p_preamble = knownpreamble
local p_comment = commentline
local p_command = backslash * knowncommand
local p_constant = backslash * exact_match(constants)
local p_helper = backslash * exact_match(helpers)
local p_primitive = backslash * exact_match(primitives)
local p_ifprimitive = P("\\if") * cstoken^1
local p_csname = backslash * (cstoken^1 + P(1))
local p_grouping = S("{$}")
local p_special = S("#()[]<>=\"")
local p_extra = S("`~%^&_-+/\'|")
local p_text = iwordtoken^1 --maybe add punctuation and space
local p_reserved = backslash * (
P("??") + R("az") * P("!")
) * cstoken^1
local p_number = context.patterns.real
local p_unit = P("pt") + P("bp") + P("sp") + P("mm") + P("cm") + P("cc") + P("dd")
-- no looking back = #(1-S("[=")) * cstoken^3 * #(1-S("=]"))
-- This one gives stack overflows:
--
-- local p_word = Cmt(iwordpattern, function(_,i,s)
-- if validwords then
-- return checkedword(validwords,validminimum,s,i)
-- else
-- -- return true, { "text", i }
-- return true, "text", i
-- end
-- end)
--
-- So we use this one instead:
----- p_word = Ct( iwordpattern / function(s) return styleofword(validwords,validminimum,s) end * Cp() ) -- the function can be inlined
local p_word = iwordpattern / function(s) return styleofword(validwords,validminimum,s) end * Cp() -- the function can be inlined
----- p_text = (1 - p_grouping - p_special - p_extra - backslash - space + hspace)^1
-- keep key pressed at end-of syst-aux.mkiv:
--
-- 0 : 15 sec
-- 1 : 13 sec
-- 2 : 10 sec
--
-- the problem is that quite some style subtables get generated so collapsing ranges helps
local option = 1
if option == 1 then
p_comment = p_comment^1
p_grouping = p_grouping^1
p_special = p_special^1
p_extra = p_extra^1
p_command = p_command^1
p_constant = p_constant^1
p_helper = p_helper^1
p_primitive = p_primitive^1
p_ifprimitive = p_ifprimitive^1
p_reserved = p_reserved^1
elseif option == 2 then
local included = space^0
p_comment = (p_comment * included)^1
p_grouping = (p_grouping * included)^1
p_special = (p_special * included)^1
p_extra = (p_extra * included)^1
p_command = (p_command * included)^1
p_constant = (p_constant * included)^1
p_helper = (p_helper * included)^1
p_primitive = (p_primitive * included)^1
p_ifprimitive = (p_ifprimitive * included)^1
p_reserved = (p_reserved * included)^1
end
local p_invisible = invisibles^1
local spacing = token(whitespace, p_spacing )
local rest = token("default", p_rest )
local preamble = token("preamble", p_preamble )
local comment = token("comment", p_comment )
local command = token("command", p_command )
local constant = token("data", p_constant )
local helper = token("plain", p_helper )
local primitive = token("primitive", p_primitive )
local ifprimitive = token("primitive", p_ifprimitive)
local reserved = token("reserved", p_reserved )
local csname = token("user", p_csname )
local grouping = token("grouping", p_grouping )
local number = token("number", p_number )
* token("constant", p_unit )
local special = token("special", p_special )
local reserved = token("reserved", p_reserved ) -- reserved internal preproc
local extra = token("extra", p_extra )
local invisible = token("invisible", p_invisible )
local text = token("default", p_text )
local word = p_word
----- startluacode = token("grouping", P("\\startluacode"))
----- stopluacode = token("grouping", P("\\stopluacode"))
local luastatus = false
local luatag = nil
local lualevel = 0
local function startdisplaylua(_,i,s)
luatag = s
luastatus = "display"
cldlexer._directives.cld_inline = false
return true
end
local function stopdisplaylua(_,i,s)
local ok = luatag == s
if ok then
cldlexer._directives.cld_inline = false
luastatus = false
end
return ok
end
local function startinlinelua(_,i,s)
if luastatus == "display" then
return false
elseif not luastatus then
luastatus = "inline"
cldlexer._directives.cld_inline = true
lualevel = 1
return true
else-- if luastatus == "inline" then
lualevel = lualevel + 1
return true
end
end
local function stopinlinelua_b(_,i,s) -- {
if luastatus == "display" then
return false
elseif luastatus == "inline" then
lualevel = lualevel + 1 -- ?
return false
else
return true
end
end
local function stopinlinelua_e(_,i,s) -- }
if luastatus == "display" then
return false
elseif luastatus == "inline" then
lualevel = lualevel - 1
local ok = lualevel <= 0 -- was 0
if ok then
cldlexer._directives.cld_inline = false
luastatus = false
end
return ok
else
return true
end
end
contextlexer._reset_parser = function()
luastatus = false
luatag = nil
lualevel = 0
end
local luaenvironment = P("lua") * (P("setups") + P("code") + P(true))
+ P("ctxfunction") * (P("definition") + P(true))
local inlinelua = P("\\") * (
P("ctx") * (P("lua") + P("command") + P("late") * (P("lua") + P("command")) + P("function"))
+ P("cld") * (P("command") + P("context"))
+ P("luaexpr")
+ (P("direct") + P("late")) * P("lua")
)
local startlua = P("\\start") * Cmt(luaenvironment,startdisplaylua)
+ P("<?lua") * Cmt(P(true),startdisplaylua)
+ inlinelua * space^0 * ( Cmt(P("{"),startinlinelua) )
local stoplua = P("\\stop") * Cmt(luaenvironment,stopdisplaylua)
+ P("?>") * Cmt(P(true),stopdisplaylua)
+ Cmt(P("{"),stopinlinelua_b)
+ Cmt(P("}"),stopinlinelua_e)
local startluacode = token("embedded", startlua)
local stopluacode = #stoplua * token("embedded", stoplua)
local metafuncall = ( P("reusable") + P("usable") + P("unique") + P("use") + P("reuse") ) * ("MPgraphic")
+ P("uniqueMPpagegraphic")
+ P("MPpositiongraphic")
local metafunenvironment = metafuncall -- ( P("use") + P("reusable") + P("unique") ) * ("MPgraphic")
+ P("MP") * ( P("code")+ P("page") + P("inclusions") + P("initializations") + P("definitions") + P("extensions") + P("graphic") + P("calculation") )
local startmetafun = P("\\start") * metafunenvironment
local stopmetafun = P("\\stop") * metafunenvironment -- todo match start
local openargument = token("special", P("{"))
local closeargument = token("special", P("}"))
local argumentcontent = token("default",(1-P("}"))^0) -- maybe space needs a treatment
local metafunarguments = (spacing^0 * openargument * argumentcontent * closeargument)^-2
local startmetafuncode = token("embedded", startmetafun) * metafunarguments
local stopmetafuncode = token("embedded", stopmetafun)
local callers = token("embedded", P("\\") * metafuncall) * metafunarguments
lexer.embed_lexer(contextlexer, cldlexer, startluacode, stopluacode)
lexer.embed_lexer(contextlexer, mpslexer, startmetafuncode, stopmetafuncode)
contextlexer._rules = {
{ "whitespace", spacing },
{ "preamble", preamble },
{ "word", word },
{ "text", text }, -- non words
{ "comment", comment },
{ "constant", constant },
{ "callers", callers },
{ "helper", helper },
{ "command", command },
{ "primitive", primitive },
{ "ifprimitive", ifprimitive },
{ "reserved", reserved },
{ "csname", csname },
-- { "whatever", specialword }, -- not yet, crashes
{ "grouping", grouping },
-- { "number", number },
{ "special", special },
{ "extra", extra },
{ "invisible", invisible },
{ "rest", rest },
}
-- Watch the text grabber, after all, we're talking mostly of text (beware,
-- no punctuation here as it can be special). We might go for utf here.
local web = lexer.loadluafile("scite-context-lexer-web-snippets")
if web then
lexer.inform("supporting web snippets in tex lexer")
contextlexer._rules_web = {
{ "whitespace", spacing },
{ "text", text }, -- non words
{ "comment", comment },
{ "constant", constant },
{ "callers", callers },
{ "helper", helper },
{ "command", command },
{ "primitive", primitive },
{ "ifprimitive", ifprimitive },
{ "reserved", reserved },
{ "csname", csname },
{ "grouping", grouping },
{ "special", special },
{ "extra", extra },
{ "invisible", invisible },
{ "web", web.pattern },
{ "rest", rest },
}
else
lexer.report("not supporting web snippets in tex lexer")
contextlexer._rules_web = {
{ "whitespace", spacing },
{ "text", text }, -- non words
{ "comment", comment },
{ "constant", constant },
{ "callers", callers },
{ "helper", helper },
{ "command", command },
{ "primitive", primitive },
{ "ifprimitive", ifprimitive },
{ "reserved", reserved },
{ "csname", csname },
{ "grouping", grouping },
{ "special", special },
{ "extra", extra },
{ "invisible", invisible },
{ "rest", rest },
}
end
contextlexer._tokenstyles = context.styleset
local environment = {
["\\start"] = 1, ["\\stop"] = -1,
-- ["\\begin"] = 1, ["\\end" ] = -1,
}
-- local block = {
-- ["\\begin"] = 1, ["\\end" ] = -1,
-- }
local group = {
["{"] = 1, ["}"] = -1,
}
contextlexer._foldpattern = P("\\" ) * (P("start") + P("stop")) + S("{}") -- separate entry else interference
contextlexer._foldsymbols = { -- these need to be style references .. todo: multiple styles
_patterns = {
"\\start", "\\stop", -- regular environments
-- "\\begin", "\\end", -- (moveable) blocks
"[{}]",
},
["command"] = environment,
["constant"] = environment,
["data"] = environment,
["user"] = environment,
["embedded"] = environment,
["helper"] = environment,
["plain"] = environment,
["grouping"] = group,
}
-- context.inspect(contextlexer)
return contextlexer
|