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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
|
if not modules then modules = { } end modules ['node-tsk'] = {
version = 1.001,
comment = "companion to node-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- This might move to task-* and become less code as in sequencers
-- we already have dirty flags as well. On the other hand, nodes are
-- rather specialized and here we focus on node related tasks.
local format = string.format
local trace_tasks = false trackers.register("tasks.creation", function(v) trace_tasks = v end)
local report_tasks = logs.reporter("tasks")
local allocate = utilities.storage.allocate
local context = context
local nodes = nodes
local tasks = nodes.tasks or { }
nodes.tasks = tasks
local tasksdata = { } -- no longer public
local sequencers = utilities.sequencers
local compile = sequencers.compile
local nodeprocessor = sequencers.nodeprocessor
local newsequencer = sequencers.new
local appendgroup = sequencers.appendgroup
----- prependgroup = sequencers.prependgroup
----- replacegroup = sequencers.replacegroup
local enablegroup = sequencers.enablegroup
local disablegroup = sequencers.disablegroup
local appendaction = sequencers.appendaction
local prependaction = sequencers.prependaction
local replaceaction = sequencers.replaceaction
local enableaction = sequencers.enableaction
local disableaction = sequencers.disableaction
local frozengroups = "no"
function tasks.freeze(kind)
frozengroups = kind or "tolerant" -- todo: hook into jobname
end
function tasks.new(specification) -- was: name,arguments,list
local name = specification.name
local sequence = specification.sequence
if name and sequence then
local tasklist = newsequencer {
name = name
-- we can move more to the sequencer now .. todo
}
tasksdata[name] = {
name = name,
list = tasklist,
runner = false,
frozen = { },
processor = specification.processor or nodeprocessor,
-- could be metatable but best freeze it
arguments = specification.arguments or 0,
templates = specification.templates,
}
for l=1,#sequence do
appendgroup(tasklist,sequence[l])
end
end
end
local function valid(name)
local data = tasksdata[name]
if not data then
report_tasks("unknown task %a",name)
else
return data
end
end
local function validgroup(name,group,what)
local data = tasksdata[name]
if not data then
report_tasks("unknown task %a",name)
else
local frozen = data.frozen[group]
if frozen then
if frozengroup == "no" then
-- default
elseif frozengroup == "strict" then
report_tasks("warning: group %a of task %a is frozen, %a applied but not supported",group,name,what)
return
else -- if frozengroup == "tolerant" then
report_tasks("warning: group %a of task %a is frozen, %a ignored",group,name,what)
end
end
return data
end
end
function tasks.freezegroup(name,group)
local data = valid(name)
if data then
data.frozen[group] = true
end
end
function tasks.restart(name)
local data = valid(name)
if data then
data.runner = false
end
end
function tasks.enableaction(name,action)
local data = valid(name)
if data then
enableaction(data.list,action)
data.runner = false
end
end
function tasks.disableaction(name,action)
local data = valid(name)
if data then
disableaction(data.list,action)
data.runner = false
end
end
function tasks.replaceaction(name,group,oldaction,newaction)
local data = valid(name)
if data then
replaceaction(data.list,group,oldaction,newaction)
data.runner = false
end
end
do
local enableaction = tasks.enableaction
local disableaction = tasks.disableaction
function tasks.setaction(name,action,value)
if value then
enableaction(name,action)
else
disableaction(name,action)
end
end
end
function tasks.enablegroup(name,group)
local data = validgroup(name,"enable group")
if data then
enablegroup(data.list,group)
data.runner = false
end
end
function tasks.disablegroup(name,group)
local data = validgroup(name,"disable group")
if data then
disablegroup(data.list,group)
data.runner = false
end
end
function tasks.appendaction(name,group,action,where,kind,state)
local data = validgroup(name,"append action")
if data then
local list = data.list
appendaction(list,group,action,where,kind)
if state == "disabled" or (state == "production" and environment.initex) then
disableaction(list,action)
end
data.runner = false
end
end
function tasks.prependaction(name,group,action,where,kind,state)
local data = validgroup(name,"prepend action")
if data then
local list = data.list
prependaction(list,group,action,where,kind)
if state == "disabled" or (state == "production" and environment.initex) then
disableaction(list,action)
end
data.runner = false
end
end
function tasks.removeaction(name,group,action)
local data = validgroup(name,"remove action")
if data then
removeaction(data.list,group,action)
data.runner = false
end
end
function tasks.showactions(name,group,action,where,kind)
local data = valid(name)
if data then
report_tasks("task %a, list:\n%s",name,nodeprocessor(data.list))
end
end
-- Optimizing for the number of arguments makes sense, but getting rid of
-- the nested call (no problem but then we also need to register the
-- callback with this mechanism so that it gets updated) does not save
-- much time (24K calls on mk.tex).
local created, total = 0, 0
statistics.register("node list callback tasks", function()
if total > 0 then
return format("%s unique task lists, %s instances (re)created, %s calls",table.count(tasksdata),created,total)
else
return nil
end
end)
local function create(data,t)
created = created + 1
local runner = compile(data.list,data.processor,t)
if trace_tasks then
report_tasks("creating runner %a, %i actions enabled",t.name,data.list.steps or 0)
end
data.runner = runner
return runner
end
function tasks.actions(name)
local data = tasksdata[name]
if data then
local t = data.templates
if t then
t.name = data.name
return function(...)
total = total + 1
return (data.runner or create(data,t))(...)
end
end
end
return nil
end
function tasks.table(name) --maybe move this to task-deb.lua
local tsk = tasksdata[name]
local lst = tsk and tsk.list
local HL, NC, NR, bold, type = context.HL, context.NC, context.NR, context.bold, context.type
if lst then
local list, order = lst.list, lst.order
if list and order then
context.starttabulate { "|l|l|" }
NC() bold("category") NC() bold("function") NC() NR()
for i=1,#order do
HL()
local o = order[i]
local l = list[o]
if #l == 0 then
NC() type(o) NC() context("unset") NC() NR()
else
local done = false
for k, v in table.sortedhash(l) do
NC() if not done then type(o) done = true end NC() type(v) NC() NR()
end
end
end
context.stoptabulate()
end
end
end
-- -- shipouts everypar -- --
-- the shipout handlers acts on boxes so we don't need to return something
-- and also don't need to keep the state (done)
local templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head)
local nuthead = tonut(head)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead))))
]],
nut = [[
nuthead = %action%(nuthead)
]],
nohead = [[
%action%(tonode(nuthead))
]],
nonut = [[
%action%(nuthead)
]],
}
tasks.new {
name = "shipouts",
processor = nodeprocessor,
sequence = {
"before", -- users
"normalizers", -- system
"finishers", -- system
"after", -- users
"wrapup", -- system
},
templates = templates
}
tasks.new {
name = "everypar",
processor = nodeprocessor,
sequence = {
"before", -- users
"normalizers", -- system
"after", -- users
},
templates = templates,
}
-- -- finalizers -- --
tasks.new {
name = "finalizers",
sequence = {
"before", -- for users
"normalizers",
"fonts",
"lists",
"after", -- for users
},
processor = nodeprocessor,
templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head,groupcode)
local nuthead = tonut(head)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead),groupcode)))
]],
nut = [[
nuthead = %action%(nuthead,groupcode)
]],
nohead = [[
%action%(tonode(nuthead),groupcode)
]],
nonut = [[
%action%(nuthead,groupcode)
]],
}
}
-- -- processors -- --
tasks.new {
name = "processors",
processor = nodeprocessor,
sequence = {
"before", -- for users
"normalizers",
"characters",
"words",
"fonts",
"lists",
"after", -- for users
},
templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head,groupcode,size,packtype,direction,attributes)
local nuthead = tonut(head)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead),groupcode,size,packtype,direction,attributes)))
]],
nut = [[
nuthead = %action%(nuthead,groupcode,size,packtype,direction,attributes)
]],
nohead = [[
%action%(tonode(nuthead),groupcode,size,packtype,direction,attributes)
]],
nonut = [[
%action%(nuthead,groupcode,size,packtype,direction,attributes)
]],
}
}
tasks.new {
name = "finalizers",
processor = nodeprocessor,
sequence = {
"before", -- for users
"normalizers",
"fonts",
"lists",
"after", -- for users
},
templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head)
local nuthead = tonut(head)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead))))
]],
nut = [[
nuthead = %action%(nuthead)
]],
nohead = [[
%action%(tonode(nuthead))
]],
nonut = [[
%action%(nuthead)
]],
}
}
tasks.new {
name = "mvlbuilders",
processor = nodeprocessor,
sequence = {
"before", -- for users
"normalizers",
"after", -- for users
},
templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head,groupcode)
local nuthead = tonut(head)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead),groupcode)))
]],
nut = [[
nuthead = %action%(nuthead,groupcode)
]],
nohead = [[
%action%(tonode(nuthead),groupcode)
]],
nonut = [[
%action%(nuthead,groupcode)
]],
}
}
tasks.new {
name = "vboxbuilders",
processor = nodeprocessor,
sequence = {
"before", -- for users
"normalizers",
"after", -- for users
},
templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head,groupcode,size,packtype,maxdepth,direction)
local nuthead = tonut(head)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead),groupcode,size,packtype,maxdepth,direction)))
]],
nut = [[
nuthead = %action%(nuthead,groupcode,size,packtype,maxdepth,direction)
]],
nohead = [[
%action%(tonode(nuthead),groupcode,size,packtype,maxdepth,direction)
]],
nonut = [[
%action%(nuthead,groupcode,size,packtype,maxdepth,direction)
]],
}
}
tasks.new {
name = "contributers",
processor = nodeprocessor,
sequence = {
"before", -- for users
"normalizers",
"after", -- for users
},
templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head,groupcode,line)
local nuthead = tonut(head)
local nutline = tonut(line)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead),groupcode,line)))
]],
nut = [[
nuthead = %action%(nuthead,groupcode,nutline)
]],
nohead = [[
%action%(tonode(nuthead),groupcode,line)
]],
nonut = [[
%action%(nuthead,groupcode,nutline)
]],
}
}
-- -- math -- --
tasks.new {
name = "math",
processor = nodeprocessor,
sequence = {
"before",
"normalizers",
"builders",
"after",
},
templates = {
default = [[
return function(head)
return head
end
]],
process = [[
local tonut = nodes.tonut
local tonode = nodes.nuts.tonode
%localize%
return function(head,style,penalties)
local nuthead = tonut(head)
%actions%
return tonode(nuthead)
end
]],
step = [[
nuthead = tonut((%action%(tonode(nuthead),style,penalties)))
]],
nut = [[
nuthead = %action%(nuthead,style,penalties)
]],
nohead = [[
%action%(tonode(nuthead),style,penalties)
]],
nonut = [[
%action%(nuthead,style,penalties)
]],
}
}
-- tasks.new {
-- name = "parbuilders",
-- arguments = 1,
-- processor = nodeprocessor,
-- sequence = {
-- "before", -- for users
-- "lists",
-- "after", -- for users
-- }
-- }
-- tasks.new {
-- name = "pagebuilders",
-- arguments = 5,
-- processor = nodeprocessor,
-- sequence = {
-- "before", -- for users
-- "lists",
-- "after", -- for users
-- }
-- }
-- for now quite useless (too fuzzy)
--
-- tasks.new {
-- name = "listbuilders",
-- processor = nodeprocessor,
-- sequence = {
-- "before", -- for users
-- "normalizers",
-- "after", -- for users
-- },
-- templates = {
-- -- we don't need a default
-- default = [[
-- return function(box,location,prevdepth)
-- return box, prevdepth
-- end
-- ]],
-- process = [[
-- %localize%
-- return function(box,location,prevdepth,mirrored)
-- %actions%
-- return box, prevdepth
-- end
-- ]],
-- step = [[
-- box, prevdepth = %action%(box,location,prevdepth,mirrored)
-- ]],
-- },
-- }
-- -- math -- --
-- not really a node processor
-- tasks.new {
-- name = "newpar",
-- processor = nodeprocessor,
-- sequence = {
-- "before",
-- "normalizers",
-- "after",
-- },
-- templates = {
--
-- default = [[
-- return function(mode,indent)
-- return indent
-- end
-- ]],
--
-- process = [[
-- %localize%
--
-- return function(mode,indent)
--
-- %actions%
-- return indent
-- end
-- ]],
--
-- step = [[
-- indent = %action%(mode,indent)
-- ]],
--
-- }
-- }
|