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
|
if not modules then modules = { } end modules ['typo-pag'] = {
version = 1.001,
comment = "companion to typo-pag.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
builders = builders or { }
local builders = builders
builders.paragraphs = builders.paragraphs or { }
local parbuilders = builders.paragraphs
local nodes = nodes
local nodecodes = nodes.nodecodes
local hlist_code = nodecodes.hlist
local vlist_code = nodecodes.vlist
local glue_code = nodecodes.glue
local kern_code = nodecodes.kern
local penalty_code = nodecodes.penalty
local unsetvalue = attributes.unsetvalue
local a_keeptogether = attributes.private("keeptogether")
local nuts = nodes.nuts
local tonut = nuts.tonut
local getfield = nuts.getfield
local setfield = nuts.setfield
local getnext = nuts.getnext
local getprev = nuts.getprev
local getid = nuts.getid
local getattr = nuts.getattr
local setattr = nuts.setattr
local insert_node_after = nuts.insert_after
local new_penalty = nuts.pool.penalty
local trace_keeptogether = false
local report_keeptogether = logs.reporter("parbuilders","keeptogether")
local cache = { }
local last = 0
local enabled = false
trackers.register("parbuilders.keeptogether", function(v) trace_keeptogether = v end)
-- todo: also support lines = 3 etc (e.g. dropped caps) but how to set that
-- when no hlists are there ? ... maybe the local_par
function parbuilders.registertogether(line,specification) -- might change
if not enabled then
nodes.tasks.enableaction("finalizers","builders.paragraphs.keeptogether")
end
local a = getattr(line,a_keeptogether)
local c = a and cache[a]
if c then
local height = specification.height
local depth = specification.depth
local slack = specification.slack
if height and height > c.height then
c.height = height
end
if depth and depth > c.depth then
c.depth = depth
end
if slack and slack > c.slack then
c.slack = slack
end
else
last = last + 1
cache[last] = specification
if not specification.height then
specification.height = 0
end
if not specification.depth then
specification.depth = 0
end
if not specification.slack then
specification.slack = 0
end
setattr(line,a_keeptogether,last)
end
if trace_keeptogether then
local a = a or last
local c = cache[a]
if trace_keeptogether then
local noflines = specification.lineheight
local height = c.height
local depth = c.depth
local slack = c.slack
if not noflines or noflines == 0 then
noflines = "unknown"
else
noflines = math.round((height + depth - slack) / noflines)
end
report_keeptogether("registered, index %s, height %p, depth %p, slack %p, noflines %a",a,height,depth,slack,noflines)
end
end
end
local function keeptogether(start,a)
if start then
local specification = cache[a]
if a then
local current = getnext(start)
local previous = start
local total = getfield(previous,"depth")
local slack = specification.slack
local threshold = specification.depth - slack
if trace_keeptogether then
report_keeptogether("%s, index %s, total %p, threshold %p, slack %p","list",a,total,threshold,slack)
end
while current do
local id = getid(current)
if id == vlist_code or id == hlist_code then
total = total + getfield(current,"height") + getfield(current,"depth")
if trace_keeptogether then
report_keeptogether("%s, index %s, total %p, threshold %p","list",a,total,threshold)
end
if total <= threshold then
if getid(previous) == penalty_code then
setfield(previous,"penalty",10000)
else
insert_node_after(head,previous,new_penalty(10000))
end
else
break
end
elseif id == glue_code then
-- hm, breakpoint, maybe turn this into kern
total = total + getfield(getfield(current,"spec"),"width")
if trace_keeptogether then
report_keeptogether("%s, index %s, total %p, threshold %p","glue",a,total,threshold)
end
if total <= threshold then
if getid(previous) == penalty_code then
setfield(previous,"penalty",10000)
else
insert_node_after(head,previous,new_penalty(10000))
end
else
break
end
elseif id == kern_code then
total = total + getfield(current,"kern")
if trace_keeptogether then
report_keeptogether("%s, index %s, total %s, threshold %s","kern",a,total,threshold)
end
if total <= threshold then
if getid(previous) == penalty_code then
setfield(previous,"penalty",10000)
else
insert_node_after(head,previous,new_penalty(10000))
end
else
break
end
elseif id == penalty_code then
if total <= threshold then
if getid(previous) == penalty_code then
setfield(previous,"penalty",10000)
end
setfield(current,"penalty",10000)
else
break
end
end
previous = current
current = getnext(current)
end
end
end
end
-- also look at first non glue/kern node e.g for a dropped caps
function parbuilders.keeptogether(head)
local done = false
local current = tonut(head)
while current do
if getid(current) == hlist_code then
local a = getattr(current,a_keeptogether)
if a and a > 0 then
keeptogether(current,a)
setattr(current,a_keeptogether,unsetvalue)
cache[a] = nil
done = true
end
end
current = getnext(current)
end
return head, done
end
|