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 | """Hands a long table over whole, and lets it decide how many pages it needs.
The Python twin of the `write_table_paginated` example in Rust, and the shape a
document server wants: build the table, say what box it gets on the first page and
what box it gets on the ones after, and call `paginate` once. It answers with one
placement per page. The caller makes each page — here, by stamping it onto an
imported stationery template — and draws the placement onto it. No loop to write,
and no way to write it wrong: a table that could not advance raises, rather than
asking for another blank page.
Three things the table does on its own:
- the heading row is drawn again at the top of every page;
- the footnote row is drawn again under the last line of every page;
- a section title is kept with the rows under it, so it is never stranded at the
foot of a page away from what it introduces.
Under each page the caller adds a note of its own, saying which of the table's rows
the page carried and hanging its page number on the grid line between the two
columns. The placement is asked for all of it: where its rows ended, where that grid
line fell, and which rows it took.
Every word the statement draws is held in `Words`, once per language, and
`HQF_PDF_LANG` picks which one is drawn. The amounts are the same in both.
Usage: python examples/write_table_paginated.py [out.pdf] [stationery.pdf]
HQF_PDF_LANG=fr python examples/write_table_paginated.py
"""
from __future__ import annotations
import sys
from dataclasses import dataclass
from pathlib import Path
import _language
import _licence
import _out
import hqf_pdf
PAGE_WIDTH = 595.276
MARGIN = 56.0
TABLE_WIDTH = PAGE_WIDTH - 2 * MARGIN
# The table starts below the letterhead on the first page, and higher up on every page
# after it: that is the whole reason `paginate` takes two boxes.
FIRST_TOP = 700.0
NEXT_TOP = 800.0
BOTTOM = 64.0
@dataclass(frozen=True)
class Words:
"""Every word the statement draws, in one language.
What is not language stays out of it: the amounts, the company's name and its
address read the same in every language.
"""
# The line the letterhead of the stationery carries.
letterhead: str
# The two column headings.
description: str
amount: str
# What each section is called, in the order ``SECTIONS`` gives them.
sections: tuple[str, ...]
# What each billed line is called, section after section.
lines: tuple[str, ...]
# The label of the boxed total.
total: str
# The footnote repeated under the last line of every page.
footnote: str
# The caller's own note, cut where the row numbers go into it.
rows_before: str
rows_between: str
rows_of: str
# The same for the page number.
page_before: str
page_of: str
# The statement in English.
ENGLISH = Words(
letterhead="ACME Ltd — statement of services",
description="Description",
amount="Amount",
sections=(
"Development",
"Reworking what was there",
"Support",
"Audit",
),
lines=(
"Rendering engine",
"Font engine",
"Glyph subsetting",
"Charstring interpreter",
"Tables and layout",
"Invoice template",
"Data migration",
"Acceptance testing and fixes",
"Team training",
"Standby cover for the release night",
"First year of support",
"Technical documentation",
"Performance audit",
"Security audit",
"Architecture review",
),
total="Total due",
footnote=(
"Amounts in euros, exclusive of value added tax. ACME Ltd, "
"Bureau 4, 12 rue des Fabriques, 59000 Lille."
),
rows_before="Rows ",
rows_between=" to ",
rows_of=" of ",
page_before="Page ",
page_of=" of ",
)
# The statement in French.
FRENCH = Words(
letterhead="ACME Ltd — relevé de prestations",
description="Désignation",
amount="Montant",
sections=(
"Développement",
"Reprise de l'existant",
"Assistance",
"Audit",
),
lines=(
"Moteur de rendu",
"Moteur de polices",
"Réduction des polices aux glyphes utilisés",
"Interpréteur de contours de glyphes",
"Tableaux et mise en page",
"Modèle de facture",
"Migration des données",
"Recette et corrections",
"Formation de l'équipe",
"Astreinte la nuit de la mise en production",
"Première année d'assistance",
"Documentation technique",
"Audit de performance",
"Audit de sécurité",
"Revue d'architecture",
),
total="Total dû",
footnote=(
"Montants en euros, hors taxe sur la valeur ajoutée. ACME Ltd, "
"Bureau 4, 12 rue des Fabriques, 59000 Lille."
),
rows_before="Lignes ",
rows_between=" à ",
rows_of=" sur ",
page_before="Page ",
page_of=" sur ",
)
# Every language the example is written in. A language is added by writing its own set
# of words and naming it here.
WORDS = {_language.ENGLISH: ENGLISH, _language.FRENCH: FRENCH}
def a_stationery(font_path, words: Words) -> bytes:
"""The stationery every page is stamped onto, for when the caller has none."""
document = hqf_pdf.Document()
document.set_license(_licence.licensed())
font = document.add_font(hqf_pdf.Font.from_path(font_path))
content = hqf_pdf.Content()
content.save_state()
content.set_fill(hqf_pdf.Rgb(0.91, 0.94, 0.98))
content.rect(0.0, 812.0, PAGE_WIDTH, 30.0)
content.fill()
content.set_fill(hqf_pdf.Rgb(0.2, 0.35, 0.6))
content.rect(0.0, 809.0, PAGE_WIDTH, 3.0)
content.fill()
content.restore_state()
content.draw_text(font, 13.0, MARGIN, 820.0, words.letterhead)
page = hqf_pdf.Page.a4()
page.set_content(content)
document.add_page(page)
return document.to_bytes()
@dataclass(frozen=True)
class Section:
"""One section of the statement: what each of its lines is billed, in the order
``Words.lines`` names them."""
lines: tuple[float, ...]
SECTIONS = (
Section((7440.0, 4960.0, 2480.0, 3720.0, 5580.0)),
Section((1440.0, 2700.0, 2880.0)),
Section((1500.0, 1200.0, 4200.0, 1260.0)),
Section((2760.0, 3100.0, 1850.0)),
)
def amount(value: float) -> str:
"""An amount, as a statement writes it: "4 250.00 EUR"."""
units, hundredths = f"{value:.2f}".split(".")
grouped = ""
for index, digit in enumerate(units):
if index > 0 and (len(units) - index) % 3 == 0:
grouped += " "
grouped += digit
return f"{grouped}.{hundredths} EUR"
def statement(font: hqf_pdf.FontHandle, words: Words) -> hqf_pdf.Table:
"""The statement, as one table: a heading, then every section, four times over
so that it runs well past a single page."""
columns = hqf_pdf.Columns(
[hqf_pdf.ColumnWidth.fraction(1.0), hqf_pdf.ColumnWidth.points(110.0)],
TABLE_WIDTH,
)
table = hqf_pdf.Table(columns)
# The heading row is drawn again at the top of every page, and the footnote row
# under the last line of every page.
table.header(1)
table.footer(1)
table.rule(hqf_pdf.Rule.frame(), hqf_pdf.Stroke(0.8))
table.rule(
hqf_pdf.Rule.horizontal_other(), hqf_pdf.Stroke(0.25, hqf_pdf.Rgb.gray(0.75))
)
table.rule(hqf_pdf.Rule.horizontal(1), hqf_pdf.Stroke(0.8))
# The shading is said once, for the table, rather than cell by cell: every other row
# faintly, and the heading over the top of that.
table.fill(hqf_pdf.Area.even_rows(), hqf_pdf.Rgb.gray(0.97))
table.fill(hqf_pdf.Area.header(), hqf_pdf.Rgb.gray(0.88))
pad = hqf_pdf.Padding.symmetric(5.0, 4.0)
def heading(label: str, align: hqf_pdf.Align) -> hqf_pdf.Cell:
return hqf_pdf.Cell(
font,
9.0,
label,
padding=pad,
align=align,
valign=hqf_pdf.VAlign.Middle,
)
table.push(
hqf_pdf.Row(
[
heading(words.description, hqf_pdf.Align.Left),
heading(words.amount, hqf_pdf.Align.Right),
],
min_height=20.0,
)
)
for round_ in range(4):
line = 0
for section, title in zip(SECTIONS, words.sections):
# The section title is kept with the first line under it: a title alone at
# the foot of a page introduces nothing.
table.push(
hqf_pdf.Row(
[
hqf_pdf.Cell(
font,
9.5,
f"{title} ({round_ + 1})",
padding=pad,
span=2,
fill=hqf_pdf.Rgb.gray(0.93),
border=hqf_pdf.Border(bottom=hqf_pdf.Stroke(0.5)),
)
],
min_height=18.0,
keep_with_next=True,
)
)
for value in section.lines:
label = words.lines[line]
line += 1
table.push(
hqf_pdf.Row(
[
hqf_pdf.Cell(font, 9.0, label, padding=pad),
hqf_pdf.Cell(
font,
9.0,
amount(value),
padding=pad,
align=hqf_pdf.Align.Right,
),
],
min_height=16.0,
)
)
# The total, boxed, and kept with nothing: it ends the table.
total = sum(value for s in SECTIONS for value in s.lines) * 4
rule = hqf_pdf.Stroke(0.8)
box_margin = hqf_pdf.Margin.symmetric(0.0, 2.0)
table.push(
hqf_pdf.Row(
[
hqf_pdf.Cell(
font,
10.0,
words.total,
padding=pad,
align=hqf_pdf.Align.Right,
margin=box_margin,
border=hqf_pdf.Border(top=rule, bottom=rule, left=rule),
),
hqf_pdf.Cell(
font,
10.0,
amount(total),
padding=pad,
align=hqf_pdf.Align.Right,
margin=box_margin,
border=hqf_pdf.Border(top=rule, bottom=rule, right=rule),
),
],
min_height=20.0,
)
)
# The footnote, repeated under the last line of every page.
table.push(
hqf_pdf.Row(
[
hqf_pdf.Cell(
font,
7.5,
words.footnote,
padding=pad,
span=2,
color=hqf_pdf.Rgb.gray(0.45),
),
],
space_before=6.0,
)
)
return table
def continuation_note(
content: hqf_pdf.Content,
font: hqf_pdf.FontHandle,
words: Words,
placed: hqf_pdf.Placement,
page: int,
pages: int,
rows: int,
) -> None:
"""Draws the caller's own note under a page's table.
Everything it needs comes from the placement: where the rows ended, where the
table's left edge and the grid line between its two columns fell, and which of
the table's rows this page carried. Nothing here counts rows or adds heights on
the side, so the note cannot drift away from the table it describes.
"""
body = placed.body_rows
if body is None:
return
baseline = placed.bottom - 12.0
content.save_state()
content.set_fill(hqf_pdf.Rgb(0.45, 0.45, 0.45))
content.draw_text(
font,
7.5,
placed.x,
baseline,
f"{words.rows_before}{body.start}{words.rows_between}"
f"{body.stop - 1}{words.rows_of}{rows}",
)
line = placed.column_x(1)
if line is not None:
content.draw_text(
font,
7.5,
line,
baseline,
f"{words.page_before}{page + 1}{words.page_of}{pages}",
)
content.restore_state()
def main() -> None:
language = _language.from_environment()
words = _language.words_of(WORDS, language)
# A named file is written as named; the default one carries the language, so the two
# languages do not overwrite each other in `tmp/`.
out = _out.output_path(Path(_language.file_name("paginated.pdf", language)).stem)
font_path = _out.DEFAULT_FONT
# The stationery every page is stamped onto: the caller's, or one made here.
if len(sys.argv) > 2:
stationery = open(sys.argv[2], "rb").read()
else:
stationery = a_stationery(font_path, words)
reader = hqf_pdf.Reader(stationery)
document = hqf_pdf.Document()
document.set_license(_licence.licensed())
template = document.import_page(reader, 0)
font = document.add_font(hqf_pdf.Font.from_path(font_path))
table = statement(font, words)
# The whole of pagination: one call, one placement per page.
pages = table.paginate(
hqf_pdf.Frame(MARGIN, FIRST_TOP, FIRST_TOP - BOTTOM),
hqf_pdf.Frame(MARGIN, NEXT_TOP, NEXT_TOP - BOTTOM),
)
for index, placed in enumerate(pages):
content = hqf_pdf.Content()
# The stationery goes down first, and the table on top of it.
content.draw_form(template, 0.0, 0.0, 1.0)
placed.draw(content)
continuation_note(
content, font, words, placed, index, len(pages), table.row_count
)
page = hqf_pdf.Page.a4()
page.set_content(content)
# The stationery is a form, and a page may only draw what its resources name.
template.add_to(page)
document.add_page(page)
written = document.write(out)
print(f"wrote {out}: {written} bytes, {len(pages)} pages, {table.row_count} rows")
if __name__ == "__main__":
main()
|