-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlpdf-ini-digitalkhatt.lua
1607 lines (1370 loc) · 49.6 KB
/
lpdf-ini-digitalkhatt.lua
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
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- digitalkhatt : change name to avoid conflict with the installed lpdf-ini, if any
if not modules then modules = { } end modules ['lpdf-ini-digitalkhatt'] = {
version = 1.001,
comment = "companion to lpdf-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- beware of "too many locals" here
local setmetatable, getmetatable, type, next, tostring, tonumber, rawset = setmetatable, getmetatable, type, next, tostring, tonumber, rawset
local char, byte, format, gsub, concat, match, sub, gmatch = string.char, string.byte, string.format, string.gsub, table.concat, string.match, string.sub, string.gmatch
local utfchar, utfbyte, utfvalues = utf.char, utf.byte, utf.values
local sind, cosd, max, min = math.sind, math.cosd, math.max, math.min
local sort = table.sort
local P, C, R, S, Cc, Cs, V = lpeg.P, lpeg.C, lpeg.R, lpeg.S, lpeg.Cc, lpeg.Cs, lpeg.V
local lpegmatch, lpegpatterns = lpeg.match, lpeg.patterns
local formatters = string.formatters
local isboolean = string.is_boolean
local rshift = bit32.rshift
local osdate, ostime = os.date, os.time
local report_objects = logs.reporter("backend","objects")
local report_finalizing = logs.reporter("backend","finalizing")
local report_blocked = logs.reporter("backend","blocked")
local context = context
-- In ConTeXt MkIV we use utf8 exclusively so all strings get mapped onto a hex
-- encoded utf16 string type between <>. We could probably save some bytes by using
-- strings between () but then we end up with escaped ()\ too.
pdf = type(pdf) == "table" and pdf or { }
local factor = number.dimenfactors.bp
local codeinjections = { }
local nodeinjections = { }
--local backends = backends
local pdfbackend = {
comment = "backend for directly generating pdf output",
nodeinjections = nodeinjections,
codeinjections = codeinjections,
registrations = { },
tables = { },
}
--backends.pdf = pdfbackend
lpdf = lpdf or { }
local lpdf = lpdf
lpdf.flags = lpdf.flags or { } -- will be filled later
local trace_finalizers = false trackers.register("backend.finalizers", function(v) trace_finalizers = v end)
local trace_resources = false trackers.register("backend.resources", function(v) trace_resources = v end)
local trace_objects = false trackers.register("backend.objects", function(v) trace_objects = v end)
local trace_detail = false trackers.register("backend.detail", function(v) trace_detail = v end)
do
local pdfsetmajorversion, pdfsetminorversion, pdfgetmajorversion, pdfgetminorversion
local pdfsetcompresslevel, pdfsetobjectcompresslevel, pdfgetcompresslevel, pdfgetobjectcompresslevel
local pdfsetsuppressoptionalinfo, pdfsetomitcidset, pdfsetomitcharset
function lpdf.setversion(major,minor)
pdfsetmajorversion(major or 1)
pdfsetminorversion(minor or 7)
end
function lpdf.getversion(major,minor)
return pdfgetmajorversion(), pdfgetminorversion()
end
function lpdf.majorversion() return pdfgetmajorversion() end
function lpdf.minorversion() return pdfgetminorversion() end
local frozen = false
local clevel = 3
local olevel = 1
function lpdf.setcompression(level,objectlevel,freeze)
if not frozen then
if pdfsetcompresslevel then
pdfsetcompresslevel(level or 3)
pdfsetobjectcompresslevel(objectlevel or level or 3)
else
clevel = level
olevel = objectlevel
end
frozen = freeze
end
end
function lpdf.getcompression()
if pdfgetcompresslevel then
return pdfgetcompresslevel(), pdfgetobjectcompresslevel()
else
return clevel, olevel
end
end
function lpdf.compresslevel()
if pdfgetcompresslevel then
return pdfgetcompresslevel()
else
return clevel
end
end
function lpdf.objectcompresslevel()
if pdfgetobjectcompresslevel then
return pdfgetobjectcompresslevel()
else
return olevel
end
end
function lpdf.setsuppressoptionalinfo(n)
if pdfsetsuppressoptionalinfo then
pdfsetsuppressoptionalinfo(n) -- todo
end
end
function lpdf.setomitcidset(v)
return pdfsetomitcidset(v)
end
function lpdf.setomitcharset(v)
return pdfsetomitcharset(v)
end
end
do
local pdfgetxformname, pdfincludeimage
function lpdf.getxformname(id) return pdfgetxformname(id) end
function lpdf.includeimage(id) return pdfincludeimage(id) end
end
local pdfsetpageresources, pdfsetpageattributes, pdfsetpagesattributes
local pdfreserveobject, pdfimmediateobject, pdfdeferredobject, pdfreferenceobject
local pdfgetpagereference
pdfreserveobject = pdf.reserveobj
pdfimmediateobject = pdf.immediateobj
pdfdeferredobject = pdf.obj
pdfreferenceobject = pdf.refobj
pdfgetpagereference = pdf.getpageref
pdfsetpageresources = pdf.setpageresources
pdfsetpageattributes = pdf.setpageattributes
pdfsetpagesattributes = pdf.setpagesattributes
do
local pdfgetmatrix, pdfhasmatrix, pdfprint
function lpdf.print(...)
return pdfprint(...)
end
pdfbackend.codeinjections.print = lpdf.print -- will go
-- local function transform(llx,lly,urx,ury,rx,sx,sy,ry)
-- local x1 = llx * rx + lly * sy
-- local y1 = llx * sx + lly * ry
-- local x2 = llx * rx + ury * sy
-- local y2 = llx * sx + ury * ry
-- local x3 = urx * rx + lly * sy
-- local y3 = urx * sx + lly * ry
-- local x4 = urx * rx + ury * sy
-- local y4 = urx * sx + ury * ry
-- llx = min(x1,x2,x3,x4);
-- lly = min(y1,y2,y3,y4);
-- urx = max(x1,x2,x3,x4);
-- ury = max(y1,y2,y3,y4);
-- return llx, lly, urx, ury
-- end
--
-- function lpdf.transform(llx,lly,urx,ury) -- not yet used so unchecked
-- if pdfhasmatrix() then
-- local sx, rx, ry, sy = pdfgetmatrix()
-- local w, h = urx - llx, ury - lly
-- return llx, lly, llx + sy*w - ry*h, lly + sx*h - rx*w
-- -- return transform(llx,lly,urx,ury,sx,rx,ry,sy)
-- else
-- return llx, lly, urx, ury
-- end
-- end
-- funny values for tx and ty
function lpdf.rectangle(width,height,depth,offset)
local tx, ty = getpos()
if offset then
tx = tx - offset
ty = ty + offset
width = width + 2*offset
height = height + offset
depth = depth + offset
end
if pdfhasmatrix() then
local rx, sx, sy, ry = pdfgetmatrix()
return
factor * tx,
factor * (ty - ry*depth + sx*width),
factor * (tx + rx*width - sy*height),
factor * (ty + ry*height - sx*width)
else
return
factor * tx,
factor * (ty - depth),
factor * (tx + width),
factor * (ty + height)
end
end
end
-- we could use a hash of predefined unicodes
-- local function tosixteen(str) -- an lpeg might be faster (no table)
-- if not str or str == "" then
-- return "<feff>" -- not () as we want an indication that it's unicode
-- else
-- local r, n = { "<feff" }, 1
-- for b in utfvalues(str) do
-- n = n + 1
-- if b < 0x10000 then
-- r[n] = format("%04x",b)
-- else
-- r[n] = format("%04x%04x",rshift(b,10),b%1024+0xDC00)
-- end
-- end
-- n = n + 1
-- r[n] = ">"
-- return concat(r)
-- end
-- end
local tosixteen, fromsixteen, topdfdoc, frompdfdoc, toeight, fromeight
do
local escaped = Cs(Cc("(") * (S("\\()\n\r\t\b\f")/"\\%0" + P(1))^0 * Cc(")"))
local cache = table.setmetatableindex(function(t,k) -- can be made weak
local v = utfbyte(k)
if v < 0x10000 then
v = format("%04x",v)
else
v = format("%04x%04x",rshift(v,10),v%1024+0xDC00)
end
t[k] = v
return v
end)
local unified = Cs(Cc("<feff") * (lpeg.patterns.utf8character/cache)^1 * Cc(">"))
tosixteen = function(str) -- an lpeg might be faster (no table)
if not str or str == "" then
return "<feff>" -- not () as we want an indication that it's unicode
else
return lpegmatch(unified,str)
end
end
local more = 0
local pattern = C(4) / function(s) -- needs checking !
local now = tonumber(s,16)
if more > 0 then
now = (more-0xD800)*0x400 + (now-0xDC00) + 0x10000 -- the 0x10000 smells wrong
more = 0
return utfchar(now)
elseif now >= 0xD800 and now <= 0xDBFF then
more = now
return "" -- else the c's end up in the stream
else
return utfchar(now)
end
end
local pattern = P(true) / function() more = 0 end * Cs(pattern^0)
fromsixteen = function(str)
if not str or str == "" then
return ""
else
return lpegmatch(pattern,str)
end
end
topdfdoc = function(str,default)
if not str or str == "" then
return ""
else
return lpegmatch(escaped,toregime("pdfdoc",str,default)) -- could be combined if needed
end
end
frompdfdoc = function(str)
if not str or str == "" then
return ""
else
return fromregime("pdfdoc",str)
end
end
if not toregime then topdfdoc = function(s) return s end end
if not fromregime then frompdfdoc = function(s) return s end end
toeight = function(str)
if not str or str == "" then
return "()"
else
return lpegmatch(escaped,str)
end
end
local b_pattern = Cs((P("\\")/"" * (
S("()")
+ S("nrtbf") / { n = "\n", r = "\r", t = "\t", b = "\b", f = "\f" }
+ lpegpatterns.octdigit^-3 / function(s) return char(tonumber(s,8)) end)
+ P(1))^0)
fromeight = function(str)
if not str or str == "" then
return ""
else
return lpegmatch(unescape,str)
end
end
local u_pattern = lpegpatterns.utfbom_16_be * lpegpatterns.utf16_to_utf8_be -- official
+ lpegpatterns.utfbom_16_le * lpegpatterns.utf16_to_utf8_le -- we've seen these
local h_pattern = lpegpatterns.hextobytes
local zero = S(" \n\r\t") + P("\\ ")
local one = C(4)
local two = P("d") * R("89","af") * C(2) * C(4)
local x_pattern = P { "start",
start = V("wrapped") + V("unwrapped") + V("original"),
original = Cs(P(1)^0),
wrapped = P("<") * V("unwrapped") * P(">") * P(-1),
unwrapped = P("feff")
* Cs( (
zero / ""
+ two / function(a,b)
a = (tonumber(a,16) - 0xD800) * 1024
b = (tonumber(b,16) - 0xDC00)
return utfchar(a+b)
end
+ one / function(a)
return utfchar(tonumber(a,16))
end
)^1 ) * P(-1)
}
function lpdf.frombytes(s,hex)
if not s or s == "" then
return ""
end
if hex then
local x = lpegmatch(x_pattern,s)
if x then
return x
end
local h = lpegmatch(h_pattern,s)
if h then
return h
end
else
local u = lpegmatch(u_pattern,s)
if u then
return u
end
end
return lpegmatch(b_pattern,s)
end
lpdf.tosixteen = tosixteen
lpdf.toeight = toeight
lpdf.topdfdoc = topdfdoc
lpdf.fromsixteen = fromsixteen
lpdf.fromeight = fromeight
lpdf.frompdfdoc = frompdfdoc
end
local tostring_a, tostring_d
do
local f_key_null = formatters["/%s null"]
local f_key_value = formatters["/%s %s"]
local f_key_dictionary = formatters["/%s << % t >>"]
local f_dictionary = formatters["<< % t >>"]
local f_key_array = formatters["/%s [ % t ]"]
local f_array = formatters["[ % t ]"]
local f_key_number = formatters["/%s %N"] -- always with max 9 digits and integer is possible
local f_tonumber = formatters["%N"] -- always with max 9 digits and integer is possible
tostring_d = function(t,contentonly,key)
if next(t) then
local r = { }
local n = 0
local e
for k, v in next, t do
if k == "__extra__" then
e = v
elseif k == "__stream__" then
-- do nothing (yet)
else
n = n + 1
r[n] = k
end
end
if n > 1 then
sort(r)
end
for i=1,n do
local k = r[i]
local v = t[k]
local tv = type(v)
-- mostly tables
if tv == "table" then
-- local mv = getmetatable(v)
-- if mv and mv.__lpdftype then
if v.__lpdftype__ then
-- if v == t then
-- report_objects("ignoring circular reference in dirctionary")
-- r[i] = f_key_null(k)
-- else
r[i] = f_key_value(k,tostring(v))
-- end
elseif v[1] then
r[i] = f_key_value(k,tostring_a(v))
else
r[i] = f_key_value(k,tostring_d(v))
end
elseif tv == "string" then
r[i] = f_key_value(k,toeight(v))
elseif tv == "number" then
r[i] = f_key_number(k,v)
else
r[i] = f_key_value(k,tostring(v))
end
end
if e then
r[n+1] = e
end
if contentonly then
return concat(r," ")
elseif key then
return f_key_dictionary(key,r)
else
return f_dictionary(r)
end
elseif contentonly then
return ""
else
return "<< >>"
end
end
tostring_a = function(t,contentonly,key)
local tn = #t
if tn ~= 0 then
local r = { }
for k=1,tn do
local v = t[k]
local tv = type(v)
-- mostly numbers and tables
if tv == "number" then
r[k] = f_tonumber(v)
elseif tv == "table" then
-- local mv = getmetatable(v)
-- if mv and mv.__lpdftype then
if v.__lpdftype__ then
-- if v == t then
-- report_objects("ignoring circular reference in array")
-- r[k] = "null"
-- else
r[k] = tostring(v)
-- end
elseif v[1] then
r[k] = tostring_a(v)
else
r[k] = tostring_d(v)
end
elseif tv == "string" then
r[k] = toeight(v)
else
r[k] = tostring(v)
end
end
local e = t.__extra__
if e then
r[tn+1] = e
end
if contentonly then
return concat(r, " ")
elseif key then
return f_key_array(key,r)
else
return f_array(r)
end
elseif contentonly then
return ""
else
return "[ ]"
end
end
end
local f_tonumber = formatters["%N"]
local tostring_x = function(t) return concat(t," ") end
local tostring_s = function(t) return toeight(t[1]) end
local tostring_p = function(t) return topdfdoc(t[1],t[2]) end
local tostring_u = function(t) return tosixteen(t[1]) end
----- tostring_n = function(t) return tostring(t[1]) end -- tostring not needed
local tostring_n = function(t) return f_tonumber(t[1]) end -- tostring not needed
local tostring_c = function(t) return t[1] end -- already prefixed (hashed)
local tostring_z = function() return "null" end
local tostring_t = function() return "true" end
local tostring_f = function() return "false" end
local tostring_r = function(t) local n = t[1] return n and n > 0 and (n .. " 0 R") or "null" end
local tostring_v = function(t)
local s = t[1]
if type(s) == "table" then
return concat(s)
else
return s
end
end
local tostring_l = function(t)
local s = t[1]
if not s or s == "" then
return "()"
elseif t[2] then
return "<" .. s .. ">"
else
return "(" .. s .. ")"
end
end
local function value_x(t) return t end
local function value_s(t) return t[1] end
local function value_p(t) return t[1] end
local function value_u(t) return t[1] end
local function value_n(t) return t[1] end
local function value_c(t) return sub(t[1],2) end
local function value_d(t) return tostring_d(t,true) end
local function value_a(t) return tostring_a(t,true) end
local function value_z() return nil end
local function value_t(t) return t.value or true end
local function value_f(t) return t.value or false end
local function value_r(t) return t[1] or 0 end -- null
local function value_v(t) return t[1] end
local function value_l(t) return t[1] end
local function add_to_d(t,v)
local k = type(v)
if k == "string" then
if t.__extra__ then
t.__extra__ = t.__extra__ .. " " .. v
else
t.__extra__ = v
end
elseif k == "table" then
for k, v in next, v do
t[k] = v
end
end
return t
end
local function add_to_a(t,v)
local k = type(v)
if k == "string" then
if t.__extra__ then
t.__extra__ = t.__extra__ .. " " .. v
else
t.__extra__ = v
end
elseif k == "table" then
local n = #t
for i=1,#v do
n = n + 1
t[n] = v[i]
end
end
return t
end
local function add_x(t,k,v) rawset(t,k,tostring(v)) end
-- local mt_x = { __index = { __lpdftype__ = "stream" }, __lpdftype = "stream", __tostring = tostring_x, __call = value_x, __newindex = add_x }
-- local mt_d = { __index = { __lpdftype__ = "dictionary" }, __lpdftype = "dictionary", __tostring = tostring_d, __call = value_d, __add = add_to_d }
-- local mt_a = { __index = { __lpdftype__ = "array" }, __lpdftype = "array", __tostring = tostring_a, __call = value_a, __add = add_to_a }
-- local mt_u = { __index = { __lpdftype__ = "unicode" }, __lpdftype = "unicode", __tostring = tostring_u, __call = value_u }
-- local mt_s = { __index = { __lpdftype__ = "string" }, __lpdftype = "string", __tostring = tostring_s, __call = value_s }
-- local mt_p = { __index = { __lpdftype__ = "docstring" }, __lpdftype = "docstring", __tostring = tostring_p, __call = value_p }
-- local mt_n = { __index = { __lpdftype__ = "number" }, __lpdftype = "number", __tostring = tostring_n, __call = value_n }
-- local mt_c = { __index = { __lpdftype__ = "constant" }, __lpdftype = "constant", __tostring = tostring_c, __call = value_c }
-- local mt_z = { __index = { __lpdftype__ = "null" }, __lpdftype = "null", __tostring = tostring_z, __call = value_z }
-- local mt_t = { __index = { __lpdftype__ = "true" }, __lpdftype = "true", __tostring = tostring_t, __call = value_t }
-- local mt_f = { __index = { __lpdftype__ = "false" }, __lpdftype = "false", __tostring = tostring_f, __call = value_f }
-- local mt_r = { __index = { __lpdftype__ = "reference" }, __lpdftype = "reference", __tostring = tostring_r, __call = value_r }
-- local mt_v = { __index = { __lpdftype__ = "verbose" }, __lpdftype = "verbose", __tostring = tostring_v, __call = value_v }
-- local mt_l = { __index = { __lpdftype__ = "literal" }, __lpdftype = "literal", __tostring = tostring_l, __call = value_l }
local mt_x = { __index = { __lpdftype__ = "stream" }, __tostring = tostring_x, __call = value_x, __newindex = add_x }
local mt_d = { __index = { __lpdftype__ = "dictionary" }, __tostring = tostring_d, __call = value_d, __add = add_to_d }
local mt_a = { __index = { __lpdftype__ = "array" }, __tostring = tostring_a, __call = value_a, __add = add_to_a }
local mt_u = { __index = { __lpdftype__ = "unicode" }, __tostring = tostring_u, __call = value_u }
local mt_s = { __index = { __lpdftype__ = "string" }, __tostring = tostring_s, __call = value_s }
local mt_p = { __index = { __lpdftype__ = "docstring" }, __tostring = tostring_p, __call = value_p }
local mt_n = { __index = { __lpdftype__ = "number" }, __tostring = tostring_n, __call = value_n }
local mt_c = { __index = { __lpdftype__ = "constant" }, __tostring = tostring_c, __call = value_c }
local mt_z = { __index = { __lpdftype__ = "null" }, __tostring = tostring_z, __call = value_z }
local mt_t = { __index = { __lpdftype__ = "true" }, __tostring = tostring_t, __call = value_t }
local mt_f = { __index = { __lpdftype__ = "false" }, __tostring = tostring_f, __call = value_f }
local mt_r = { __index = { __lpdftype__ = "reference" }, __tostring = tostring_r, __call = value_r }
local mt_v = { __index = { __lpdftype__ = "verbose" }, __tostring = tostring_v, __call = value_v }
local mt_l = { __index = { __lpdftype__ = "literal" }, __tostring = tostring_l, __call = value_l }
local function pdfstream(t) -- we need to add attributes
if t then
local tt = type(t)
if tt == "table" then
for i=1,#t do
t[i] = tostring(t[i])
end
elseif tt == "string" then
t = { t }
else
t = { tostring(t) }
end
end
return setmetatable(t or { },mt_x)
end
local function pdfdictionary(t)
return setmetatable(t or { },mt_d)
end
local function pdfarray(t)
if type(t) == "string" then
return setmetatable({ t },mt_a)
else
return setmetatable(t or { },mt_a)
end
end
local function pdfstring(str,default)
return setmetatable({ str or default or "" },mt_s)
end
local function pdfdocstring(str,default,defaultchar)
return setmetatable({ str or default or "", defaultchar or " " },mt_p)
end
local function pdfunicode(str,default)
return setmetatable({ str or default or "" },mt_u) -- could be a string
end
local function pdfliteral(str,hex) -- can also produce a hex <> instead of () literal
return setmetatable({ str, hex },mt_l)
end
local pdfnumber, pdfconstant
do
local cache = { } -- can be weak
pdfnumber = function(n,default) -- 0-10
if not n then
n = default
end
local c = cache[n]
if not c then
c = setmetatable({ n },mt_n)
-- cache[n] = c -- too many numbers
end
return c
end
for i=-1,9 do cache[i] = pdfnumber(i) end
local replacer = S("\0\t\n\r\f ()[]{}/%%#\\") / {
["\00"]="#00",
["\09"]="#09",
["\10"]="#0a",
["\12"]="#0c",
["\13"]="#0d",
[ " " ]="#20",
[ "#" ]="#23",
[ "%" ]="#25",
[ "(" ]="#28",
[ ")" ]="#29",
[ "/" ]="#2f",
[ "[" ]="#5b",
[ "\\"]="#5c",
[ "]" ]="#5d",
[ "{" ]="#7b",
[ "}" ]="#7d",
} + P(1)
local escaped = Cs(Cc("/") * replacer^0)
local cache = table.setmetatableindex(function(t,k)
local v = setmetatable({ lpegmatch(escaped,k) }, mt_c)
t[k] = v
return v
end)
pdfconstant = function(str,default)
if not str then
str = default or "none"
end
return cache[str]
end
local escaped = Cs(replacer^0)
function lpdf.escaped(str)
return lpegmatch(escaped,str) or str
end
end
local pdfnull, pdfboolean, pdfreference, pdfverbose
do
local p_null = { } setmetatable(p_null, mt_z)
local p_true = { } setmetatable(p_true, mt_t)
local p_false = { } setmetatable(p_false,mt_f)
pdfnull = function()
return p_null
end
pdfboolean = function(b,default)
if type(b) == "boolean" then
return b and p_true or p_false
else
return default and p_true or p_false
end
end
-- print(pdfboolean(false),pdfboolean(false,false),pdfboolean(false,true))
-- print(pdfboolean(true),pdfboolean(true,false),pdfboolean(true,true))
-- print(pdfboolean(nil,true),pdfboolean(nil,false))
local r_zero = setmetatable({ 0 },mt_r)
pdfreference = function(r) -- maybe make a weak table
if r and r ~= 0 then
return setmetatable({ r },mt_r)
else
return r_zero
end
end
local v_zero = setmetatable({ 0 },mt_v)
local v_empty = setmetatable({ "" },mt_v)
pdfverbose = function(t) -- maybe check for type
if t == 0 then
return v_zero
elseif t == "" then
return v_empty
else
return setmetatable({ t },mt_v)
end
end
end
lpdf.stream = pdfstream -- THIS WILL PROBABLY CHANGE
lpdf.dictionary = pdfdictionary
lpdf.array = pdfarray
lpdf.docstring = pdfdocstring
lpdf.string = pdfstring
lpdf.unicode = pdfunicode
lpdf.number = pdfnumber
lpdf.constant = pdfconstant
lpdf.null = pdfnull
lpdf.boolean = pdfboolean
lpdf.reference = pdfreference
lpdf.verbose = pdfverbose
lpdf.literal = pdfliteral
local names, cache = { }, { }
function lpdf.reserveobject(name)
local r = pdfreserveobject() -- we don't support "annot"
if name then
names[name] = r
if trace_objects then
report_objects("reserving number %a under name %a",r,name)
end
elseif trace_objects then
report_objects("reserving number %a",r)
end
return r
end
local nofpages = 0
function lpdf.pagereference(n)
if nofpages == 0 then
nofpages = structures.pages.nofpages
if nofpages == 0 then
nofpages = 1
end
end
if n > nofpages then
return pdfgetpagereference(nofpages) -- or 1, could be configureable
else
return pdfgetpagereference(n)
end
end
function lpdf.nofpages()
return structures.pages.nofpages
end
function lpdf.obj(...)
pdfdeferredobject(...)
end
function lpdf.immediateobj(...)
pdfimmediateobject(...)
end
function lpdf.delayedobject(data,n)
if n then
pdfdeferredobject(n,data)
else
n = pdfdeferredobject(data)
end
pdfreferenceobject(n)
return n
end
function lpdf.flushobject(name,data)
if data then
local named = names[name]
if named then
if not trace_objects then
elseif trace_detail then
report_objects("flushing data to reserved object with name %a, data: %S",name,data)
else
report_objects("flushing data to reserved object with name %a",name)
end
return pdfimmediateobject(named,tostring(data))
else
if not trace_objects then
elseif trace_detail then
report_objects("flushing data to reserved object with number %s, data: %S",name,data)
else
report_objects("flushing data to reserved object with number %s",name)
end
return pdfimmediateobject(name,tostring(data))
end
else
if trace_objects and trace_detail then
report_objects("flushing data: %S",name)
end
return pdfimmediateobject(tostring(name))
end
end
function lpdf.flushstreamobject(data,dict,compressed,objnum) -- default compressed
if trace_objects then
report_objects("flushing stream object of %s bytes",#data)
end
local dtype = type(dict)
local kind = compressed == "raw" and "raw" or "stream"
local nolength = nil
if compressed == "raw" then
compressed = nil
nolength = true
-- data = string.formatters["<< %s >>stream\n%s\nendstream"](attr,data)
end
return pdfdeferredobject {
objnum = objnum,
immediate = true,
nolength = nolength,
compresslevel = compressed == false and 0 or nil,
type = "stream",
string = data,
attr = (dtype == "string" and dict) or (dtype == "table" and dict()) or nil,
}
end
function lpdf.flushstreamfileobject(filename,dict,compressed,objnum) -- default compressed
if trace_objects then
report_objects("flushing stream file object %a",filename)
end
local dtype = type(dict)
return pdfdeferredobject {
objnum = objnum,
immediate = true,
compresslevel = compressed == false and 0 or nil,
type = "stream",
file = filename,
attr = (dtype == "string" and dict) or (dtype == "table" and dict()) or nil,
}
end
local shareobjectcache, shareobjectreferencecache = { }, { }
function lpdf.shareobject(content)
if content == nil then
-- invalid object not created
else
content = tostring(content)
local o = shareobjectcache[content]
if not o then
o = pdfimmediateobject(content)
shareobjectcache[content] = o
end
return o
end
end
function lpdf.shareobjectreference(content)
if content == nil then
-- invalid object not created
else
content = tostring(content)
local r = shareobjectreferencecache[content]
if not r then
local o = shareobjectcache[content]
if not o then
o = pdfimmediateobject(content)
shareobjectcache[content] = o
end
r = pdfreference(o)
shareobjectreferencecache[content] = r
end
return r
end
end
-- three priority levels, default=2
local pagefinalizers = { { }, { }, { } }
local documentfinalizers = { { }, { }, { } }
local pageresources, pageattributes, pagesattributes
local function resetpageproperties()
pageresources = pdfdictionary()
pageattributes = pdfdictionary()
pagesattributes = pdfdictionary()
end
function lpdf.getpageproperties()
return {
pageresources = pageresources,
pageattributes = pageattributes,
pagesattributes = pagesattributes,
}
end
resetpageproperties()
local function setpageproperties()
pdfsetpageresources (pageresources ())
pdfsetpageattributes (pageattributes ())
pdfsetpagesattributes(pagesattributes())
end
local function addtopageresources (k,v) pageresources [k] = v end
local function addtopageattributes (k,v) pageattributes [k] = v end