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
|
-----------------------------------------------------------------------
-- FILE: xindex-lib.lua
-- DESCRIPTION: library for xindex.lua
-- REQUIREMENTS:
-- AUTHOR: Herbert Voß
-- LICENSE: LPPL1.3
--
-- $Id: xindex-lib.lua 22 2022-02-07 12:18:15Z hvoss $
-----------------------------------------------------------------------
if not modules then modules = { } end modules ['xindex-lib'] = {
version = 0.45,
comment = "main library to xindex.lua",
author = "Herbert Voss",
copyright = "Herbert Voss",
license = "LPPL 1.3"
}
local escapechar1 = "\""
local escapechar2 = "\"\""
local Letters = "ÄÖÜäöüabcdefghijklmnopqrstuvwxyzßABCDEFGHIJKLMNOPQRSTUVWXYZ"
local Digits = "0123456789"
function CreateCharListMap(CharList)
local map = {}
for i, alphabet_entry in ipairs(CharList) do
local first_char
for j, alphabet_char in ipairs(alphabet_entry) do
if j == 1 then
first_char = alphabet_char
else
map[alphabet_char] = first_char
end
end
end
return map
end
-- Looks up the character `character´ in the alphabet and returns its 'normalization' for sorting
local function get_normalized_char( CharListMap, character )
return CharListMap[character] or character
end
function Lower(strOrig) -- return UTF string.lower
local str = ""
for i=1, utf.len(strOrig) do
local c = utf.sub(strOrig,i,i)
if c == "Ä" then str = str.."ä"
elseif c == "Ö" then str = str.."ö"
elseif c == "Ü" then str = str.."ü"
else str = str..utf.lower(c)
end
end
return str
end
function NormalizedLower(strOrig) -- return normalized UTF string.lower (ä -> a)
local str = ""
for i=1, utf.len(strOrig) do
local c = get_normalized_char(alphabet_lower_map,utf.sub(strOrig,i,i))
str = str..string.lower(c)
end
return str
end
function NormalizedUpper(strOrig) -- return normalized UTF string.upper (ä -> A)
local str = {}
local c
for i=1, utf.len(strOrig) do
c = get_normalized_char(alphabet_lower_map,utf.sub(strOrig,i,i))
str[#str + 1] = c
end
strOrig = table.concat(str)
str = {}
for i=1, utf.len(strOrig) do
c = get_normalized_char(alphabet_upper_map,utf.sub(strOrig,i,i))
c = NormalizedUppercase(c)
str[#str + 1] = c
end
return table.concat(str)
end
function NormalizedUppercase(chr) -- return normalized UTF uppercase letter
return alphabet_uppercase_map[chr] or chr
end
function NormalizedChars(strOrig) -- return normalized UTF string (ä -> a) with first as upper case
local c = get_normalized_char(alphabet_lower_map,utf.sub(strOrig,1,1))
c = get_normalized_char(alphabet_upper_map, c)
c = string.upper(c)
local str = { c }
for ch in string.utfcharacters(utf.sub(strOrig, 2)) do
c = get_normalized_char(alphabet_lower_map, ch)
c = get_normalized_char(alphabet_upper_map, c)
str[#str + 1] = c
end
return table.concat(str)
end
-- local strOrigTrue = strOrig
-- strOrig = table.concat(str)
-- c = string.upper(get_normalized_char(alphabet_upper,utf.sub(strOrig,1,1)))
-- str = { c }
-- for i=2, utf.len(strOrig) do
-- c = get_normalized_char(alphabet_upper,utf.sub(strOrig,i,i))
-- str[#str + 1] = c
-- end
-- for ch in string.utfcharacters(strOrig, 2) do
-- str[#str + 1] = get_normalized_char(alphabet_upper, ch)
-- end
-- print(strOrigTrue.." -> "..str)
-- return table.concat(str)
--end
-- get all lines from a file, returns an empty
-- list/table if the file does not exist
function read_lines_from(infile)
if not file_exists(infile) then return {} end
local lines = {}
local str
local c
for line in io.lines(infile) do
if line ~= "" then
if string.find(line,'\\indexentry',1,true) then
str = line:gsub('^\\%a+%s*{','{') -- remove "\\indexentry "
writeLog(1,"read_lines: str="..str.." ("..utf.sub(str,2,2)..")\n",2)
if getCharType(utf.sub(str,2,2)) == 0 then -- we have a symbol
lines[#lines + 1] = str:gsub('^{*','{ ') -- add a space before the symbol
else
lines[#lines + 1] = str
end
else
lines[#lines + 1] = "\\MACRO<<< "..line -- allow macros between entries
end
end
end
return lines
end
function checkVert(str) -- get the | part
local vert = string.find(str,"|",1,true)
if (vert) then
vertStr = string.sub(str,vert+1)
str = string.sub(str,1,vert-1)
return (vertStr)
else
return ("")
end
end
function checkEntry(str) -- get the index entry name
local at=string.find(str,"@")
local excl=string.find(str,"!")
if (excl and at) then
if (at < excl) then
return string.sub(str,1,at-1)
else
return string.sub(str,1,excl-1)
end
elseif (excl) then
return string.sub(str,1,excl-1)
elseif (at) then
return string.sub(str,1,at-1)
else
return (str)
end
end
function replaceAt(str) -- return "bar" from "foo@bar"
-- return str:gsub('[^!|@%s]+@', '')
return str:gsub('[^!|@]+@', '')
end
function findSequences(a) -- look for 1,2,3,4, ...
local b = {}
local firstPage = a[1] -- first page in the sequence
for i=2,#a do -- next page until end of page list
if a[i]-a[i-1] > 1 then -- not next page
lastPage = a[i-1] -- new start for a sequence search
if lastPage - firstPage >= minCompress then -- sequence found
b[#b+1]= tostring(firstPage)..rangeSymbol..tostring(lastPage)
else
b[#b+1]= firstPage
if (firstPage ~= lastPage) then b[#b+1]= lastPage end
end
firstPage=a[i]
end
end
if a[#a] - firstPage > 2 then -- test file end
b[#b+1]= tostring(firstPage)..rangeSymbol..tostring(a[#a])
else
b[#b+1]= firstPage
if (firstPage ~= a[#a]) then b[#b+1]= a[#a] end
end
return (b)
end
function deleteOpenClose(v) -- remove |( and/or |)
res, _ = string.gsub(v:gsub('\\[()]%s*$', ''), '\\[()]%s*', ' \\')
return res
end
-- "\) " -> ""
-- "\)foo" -> \foo
function checkParenthesis(Entries) -- search for |( ... |) entries
local paraOpen
local paraClose
local firstPage = 0
local lastPage
local newEntries = {}
for k,v in pairs(Entries) do
if (k % 50) == 0 then writeLog(1,".",1) end
if v["Entry"] then
v["Entry"] = replaceAt(v["Entry"]) -- foo@bar!baz@foobar -> bar!foobar
CurrentEntry = v["Entry"]
paraOpen = v["pages"][1]["special"]:find("\\(",1,true)
paraClose = v["pages"][1]["special"]:find("\\)",1,true)
if paraOpen then
firstPage = v["pages"][1]["number"]
elseif paraClose then
lastPage = v["pages"][1]["number"]
newEntries[#newEntries+1] = { Entry = v["Entry"],
pages = {{ number = firstPage..rangeSymbol..lastPage,
special = deleteOpenClose(v["pages"][1]["special"])}},
sortChar= v["sortChar"],
Macro = v["Macro"]
}
firstPage = 0
elseif ((firstPage == 0) and not paraClose) then
newEntries[#newEntries+1] = v -- same Entry with greater page or new entry
end
end
end
return newEntries
end
function replaceVerticalChar(v)
if not v:match('|') then
return v,""
else
return v:gsub('|.*',''), v:match('|.*'):gsub('|','\\')--:gsub("%s+", "") -- part before, part after | without spaces
end
end
--local ignore = "'`'"
function ignoreLetters( c )
return (c:gsub("["..ignore.."]+", ""):match("^%s*(.-)%s*$"))
end
-- somestring:match("^%s*(.-)%s*$") --trim function
function getEntryAndPage(w, nextW, EntryList)
-- \indexentry{Aachen, Johann von}{VII/1-215}
-- \indexentry {Document@\idxtextClasses !IEEEtran@{\sfffffamily IEEEtran}}{185}
-- if indexEntry(w) then
local macro = nil
if string.find(nextW,"\\MACRO<<< ") then
macro = string.gsub(nextW,'\\MACRO<<<','')
end
local entry, pageNo = w:match('{(.*)}%s*{(.*)}')
-- if numericPage then
-- if tonumber(pageNo) then -- check for roman numbering
-- pageNo = tonumber(pageNo)
-- end
-- end
local IndexString, Special = replaceVerticalChar(entry)
EntryList[#EntryList+1] = {
Entry = IndexString, -- the index item foo@bar
pages = {{
number = pageNo,
special = Special }}, -- the page number(s) and the part after |
sortChar= NormalizedUpper(utf.sub(IndexString,1,1)), -- :byte(), -- Initial for later output
Macro = macro
}
if args_v then
if Special == "" then Special = "-" end
writeLog(1,"getEntryAndPage: "..tostring(IndexString,pageNo,Special,utf.sub(IndexString,1,1),macro).."\n",2)
end
return EntryList
end
function compressEntryList(EntryList)
-- require 'xindex-pretty'.dump(EntryList) -- only for internal dump
local newList = {}
newList[1] = EntryList[1] -- at least one entry
local nPages = 1
for k=2,#EntryList do
if EntryList[k] then -- exists?
local vEntry = EntryList[k]["Entry"]
local last = EntryList[k-1] -- complete data
if (getSortString(last["Entry"]) == getSortString(vEntry)) then -- Entry exists -> add page
-- require 'xindex-pretty'.dump(EntryList) -- only for internal dump
-- require 'xindex-pretty'.dump(newList) -- only for internal dump
if (newList[#newList]["pages"][nPages]["number"] ~= EntryList[k]["pages"][1]["number"]) -- different pages or special?
or (newList[#newList]["pages"][nPages]["special"] ~= EntryList[k]["pages"][1]["special"]) then
newList[#newList]["pages"][nPages+1] = EntryList[k]["pages"][1]
nPages = nPages + 1
-- require 'xindex-pretty'.dump(newList) -- only for internal dump
else
-- gleiche Entries, gleiche Seiten, gleiche specials -> nichts tun
end
else -- not the same entry
-- require 'xindex-pretty'.dump(newList) -- only for internal dump
newList[#newList]["pages"] = deletePageDups(newList[#newList]["pages"])
newList[#newList+1] = EntryList[k]
nPages = 1
end
end
end
-- last data line
-- require 'xindex-pretty'.dump(newList) -- only for internal dump
newList[#newList]["pages"] = deletePageDups(newList[#newList]["pages"])
return newList
end
--[[ example entry
EntryList[2] = {
Entry = "Johann", -- the index item foo@bar
pages = { -- the page number(s) and the part after |
{ number = 111,
special = '\\emph' },
{ number = 11,
special = "\\textit"}
},
sortChar= "", -- Initial for later output
Macro = ""
}
]]
function deletePageDups(pages)
if #pages == 1 then return pages end
local newPages = {pages[1]}
local notfound
for i=2,#pages do
notfound = true
for j=1,#newPages do
if (pages[i]["number"] == newPages[j]["number"]) and (pages[i]["special"] == newPages[j]["special"]) then
notfound = false
break
end
end
if notfound then
newPages[#newPages+1] = pages[i]
end
end
return newPages
end
function compressPageList(pages) -- called with (v["pages"])
writeLog(1,"compressPageList: we have "..#pages.." pages for this entry\n",2)
-- require 'xindex-pretty'.dump(pages) -- only for internal dump
pages = deletePageDups(pages) -- delete duplicate page numbers with same special
local str
if #pages == 1 then -- only one pageno
return pages
end -- only one pageno
if #pages == 2 then -- only two pages
if toNumber(pages[1]["number"]) and toNumber(pages[2]["number"]) then
if ((toNumber(pages[2]["number"]) - toNumber(pages[1]["number"])) == 1) and (pages[1]["special"] == pages[2]["special"]) then
if fCompress then
pages[1]["number"] = pages[1]["number"]..page_folium[1]
pages[2] = nil
elseif minCompress == 1 then
pages[1]["number"] = pages[1]["number"]..rangeSymbol..pages[2]["number"]
pages[2] = nil
end
-- elseif (pages[1]["number"] == pages[2]["number"]) and
-- (pages[1]["special"] == pages[2]["special"]) then
-- pages[2] = nil
end
end
return pages
end
-- we have at least three pages
pages[#pages+1] = {number = 9999999, special = ""} -- dummy to sort the last real page number correct
local startIndex
local newPages = {} -- { pages[1], pages[2], ... }
local series = {} -- { pages[1], pages[2], ... }
if tonumber(pages[1]["number"]) then -- if a number we start with second page
newPages = {}
series = {pages[1]}
startIndex = 2
else -- if not a number we start with third page
newPages = {pages[1]}
series = {pages[2]}
startIndex = 3
end
if args_v then print ("compressPageList: more than two pages for the entry\n") end
for i=startIndex,#pages do
if (toNumber(pages[i-1]["number"]) and toNumber(pages[i]["number"])) then -- do we have two arabic or two roman numbers?
if ((toNumber(pages[i]["number"])-toNumber(pages[i-1]["number"])) == 1) and
(pages[i]["special"] == pages[i-1]["special"]) then -- something like 12, 13 with identical |\special
series[#series+1] = pages[i]-- page difference is 1, add page to series
elseif (#series == 1) then -- no -f page -> only one page -> output
newPages[#newPages+1] = series[1]
series = {pages[i]}
elseif (#series > minCompress) then -- we found series or f pages like 11, 12, 13, 14
-- the sequenz gets the special from the first page
newPages[#newPages+1] = { number = series[1]["number"]..rangeSymbol..series[#series]["number"], special = series[1]["special"]} -- first..last
series = {pages[i]}
else -- series < minCompress
if fCompress then
if #series == 2 then -- two pages -> 3f
writeLog(1,"compressPageList: Two consecutive pages for this entry\n",2)
if series[1]["special"] == series[2]["special"] then
newPages[#newPages+1] = { number = series[1]["number"]..page_folium[1], special = series[1]["special"] }
else
newPages[#newPages+1] = series[1] -- different |\special -> no compress to -f
newPages[#newPages+1] = series[2]
end
else -- must be #series=3
if (series[1]["special"] == series[2]["special"]) and (series[2]["special"] == series[3]["special"]) then
newPages[#newPages+1] = { number = series[1]["number"]..page_folium[2], special = series[1]["special"] } -- three pages
elseif (series[1]["special"] == series[2]["special"]) then
newPages[#newPages+1] = { number = series[1]["number"]..page_folium[1], special = series[1]["special"] } -- three pages
newPages[#newPages+1] = series[3]
elseif (series[2]["special"] == series[3]["special"]) then
newPages[#newPages+1] = series[1]
newPages[#newPages+1] = { number = series[2]["number"]..page_folium[1], special = series[2]["special"] } -- three pages
else -- all different specials
newPages[#newPages+1] = series[1]
newPages[#newPages+1] = series[2]
newPages[#newPages+1] = series[3]
end
end
else
for i=1,#series do
newPages[#newPages+1] = series[i]
end
end
series = {pages[i]}
end
else -- current or forgoing page is not a number, we simply add it
if tonumber(pages[i]["number"]) then -- p[i-1] is non numeric p[i] is ok and not last no
series = {pages[i]}
else -- current page is non numeric
if (#series > minCompress) then -- we found a page series
newPages[#newPages+1] = { number = series[1]["number"]..rangeSymbol..series[#series]["number"], -- first..last
special =series[1]["special"] }
series = {pages[i]}
else -- series < minCompress
for i=1,#series do
newPages[#newPages+1] = series[i]
end
series = {pages[i]}
end
end
end
end
-- require 'xindex-pretty'.dump(newPages)
return newPages
end
-- 2 letter
-- 1 digit
-- 0 symbol
UTFdatafile = kpse.find_file("xindex-unicode.lua")
local category_data = dofile(UTFdatafile)
local floor = math.floor
local function binary_range_search(code_point, ranges)
local low, mid, high
low, high = 1, #ranges
while low <= high do
mid = floor((low + high) / 2)
local range = ranges[mid]
if code_point < range[1] then
high = mid - 1
elseif code_point <= range[2] then
return range, mid
else
low = mid + 1
end
end
return nil, mid
end
function get_category(code_point)
if category_data.singles[code_point] then
return category_data.singles[code_point]
else
local range = binary_range_search(code_point, category_data.ranges)
return range and range[3] or "Cn"
end
end
function getCharType(c)
if c=="" then return 0 end
-- print ("getCharType c="..tostring(c).." "..type(c)..": codepoint=") --..utf8.codepoint(c))
local category = get_category(utf8.codepoint(c))
-- print ("getCharType: "..category)
if category == "Nd" then return 1
elseif category:sub(1, 1) == "L" then return 2
else return 0
end
end
--print(get_category(utf8.codepoint('ö')))
--print(category_to_number(get_category(utf8.codepoint('ö'))))
function getCharTypeOld(c) -- in case of Lua < 5.3 (has no utf support)
if utf.find(Letters,c,1,true) then return 2
elseif utf.find(Digits,c,1,true) then return 1
else return 0
end
end
-- string.gsub('{Entry}{page}', '{[^{}]*}$', '') -> {Entry}
-- str = "\indexentry {foo}{bar}"
-- first, second = str:match('{([^}]*)}%s*{([^}]*)}') -> foo, bar
function GenerateSortKey(a)
local A, Apage
if numericPage then
if tonumber(a["pages"][1]["number"]) then
Apage = string.format("%09d",a["pages"][1]["number"])
else
Apage = string.format("%09d",romanToNumber(a["pages"][1]["number"]))
end
else
Apage = string.format("%09s",a["pages"][1]["number"])
end
if no_caseSensitive then
A = NormalizedUpper(getSortString(a["Entry"].." "..Apage..a["pages"][1]["special"]):gsub('!',' ')) -- replace! by empty
if ignoreSpace then
a["SortKey"] = A:gsub("%s+", "") -- remove spaces
else
a["SortKey"] = A
end
else
A = NormalizedChars(getSortString(a["Entry"].." "..Apage..a["pages"][1]["special"]):gsub('!',' ')) -- replace! by empty
if ignoreSpace then
a["SortKey"] = A:gsub("%s+", "")-- remove spaces
else
a["SortKey"] = A
end
end
-- print(a["SortKey"])
-- return A
end
function GenerateSortKeys(Index)
for _, entry in ipairs(Index) do
GenerateSortKey(entry)
end
end
function UTFCompare(a,b)
local A = a["SortKey"]
local B = b["SortKey"]
writeLog(1,"UTFCompare: A--B "..A.."--"..B.."\n",2)
if use_UCA then
return collator_obj:compare_strings(A,B)
else
return A<B
end
end
function pageCompare(a,b) -- a = {{number=...,special=..},{...,...}}
-- a["number"], b["number"] are something like "3" or "VI-17" or "9--31"
writeLog(1,"pageCompare: "..a["number"].." "..b["number"].."\n",2)
if (a["number"] == nil) or (b["number"] == nil) then return true end -- should be no nil here
local a0 = IntegerOrString(a["number"]) -- can be numeric or alpha or alphanumeric
local b0 = IntegerOrString(b["number"])
-- if pageNoPrefixDel ~= "" then ---- not active
-- A = (a0:gsub(pageNoPrefixPattern,''))
-- B = (b0:gsub(pageNoPrefixPattern,''))
-- a0 = tonumber(A) or romanToNumber(A)
-- b0 = tonumber(B) or romanToNumber(B)
-- else
if numericPage then
--[[
if (type(a0) == "number") and (type(b0) == "number") then return a0 < b0 end
if romanToNumber(tostring(a0)) and (type(b0) == "number") then return true end -- ii < 2
if (type(a0) == "number") and romanToNumber(tostring(b0)) then return false end -- ii > 2
if romanToNumber(a0) and romanToNumber(b0) then return a0 < b0 end -- ii < iii
]]
if (type(a0) == "number") and (type(b0) == "number") then return a0 < b0 end -- 12 < 14 ist true
if (type(a0) == "number") then
if romanToNumber(b0) then return false else return true end -- 2, ii -> ii, 2; 2, A -> ok
end
if (type(b0) == "number") then
if romanToNumber(a0) then return true else return false end -- ii, 2 -> ok; A, 2 -> 2, A
end
if romanToNumber(tostring(a0)) and romanToNumber(tostring(b0)) then return a0 < b0 end -- ii < iii or A < B
-- now we have some special page numbers
A = tostring(a0)
B = tostring(b0)
A1 = A:find(rangeSymbol,1,true) or A:find("f",1,true) -- sequence or folio pages
B1 = B:find(rangeSymbol,1,true) or B:find("f",1,true)
if A1 then a0 = tonumber(A:sub(1,A1-1)) end
if B1 then b0 = tonumber(B:sub(1,B1-1)) end
return tonumber(a0) < tonumber(b0) -- numeric
else
return a0 < b0 -- alphanumeric (strings)
end
end
function charCompare(a,b) -- compare only first char
local A,B
A = string.upper(utf.sub(a["sortChar"],1,1))
B = string.upper(utf.sub(b["sortChar"],1,1))
return A < B
end
function checkFF(p)
-- for hyperref: replace \hyperpage{1\,ff} -> \hyperpage{1\nohyperpage{\,ff}}
if not p then return p end
local P = tostring(p)
if P:find(page_folium[2]) then
local str = P:gsub(page_folium[2],'').."\\nohyperpage{"..page_folium[2].."}" -- eg ff
return str
elseif P:find(page_folium[1]) then
local str = P:gsub(page_folium[1],'').."\\nohyperpage{"..page_folium[1].."}" -- eg f
return str
else
return P
end
end
function getRawPages(v)
writeLog(1,"getRawPages, Entry: "..v["Entry"]..", page: "..tostring(v["pages"][1]["number"]),2)
if v then
local str = tostring(v["pages"][1]["number"]).."("..tostring(v["pages"][1]["special"])..")"
for i=2,#v["pages"] do
if v["pages"] then
str = str..", "..tostring(v["pages"][i]["number"]).."("..tostring(v["pages"][i]["special"])..")"
end
end
return str
else
return "v->nil"
end
end
function getRawPagesP(p) -- does the same but uses table pages
if p then
local str = tostring(p[1]["number"]).."("..tostring(p[1]["special"])..")"
for i=2,#p do
if p then
str = str..", "..tostring(p[i]["number"]).."("..tostring(p[i]["special"])..")"
end
end
return str
else
return "pages->nil"
end
end
function getPageList(v,hyperpage)
if specialGetPageList then
local pageNo = specialGetPageList(v,hyperpage)
return pageNo
end
local Pages = {}
if v["pages"] then
table.sort(v["pages"],pageCompare)-- nur nötig, da User manuell eine Zeile einfügen kann
if specialCompressPageList then
Pages = specialCompressPageList(v["pages"])
else
Pages = compressPageList(v["pages"])
end
-- require 'xindex-pretty'.dump(Pages) -- only for internal dump
local pageNo
--[[
\indexentry{Auto|hyperindexformat{\textbf}}{1}
-> \item Auto, \hyperindexformat{\textbf}{1}
add for example \hyperpage{5\nohyperpage{f}} , same for ff
\item foo, \hyperpage{1\nohyperpage{f}},
\hyperpage{4\nohyperpage{ff}}, \hyperpage{8}
]]
if hyperpage then
if string.find(v["pages"][1]["special"],"hyperindexformat") then
-- pageNo = v["pages"][1]["special"].."{"..checkFF(Pages[1]["number"].."}")
pageNo = v["pages"][1]["special"].."{"..Pages[1]["number"].."}"
else
pageNo = "\\hyperpage{"..checkFF(Pages[1]["number"]).."}"
end
for i=2,#Pages do
if string.find(v["pages"][i]["special"],"hyperindexformat") then
pageNo = pageNo..", "..v["pages"][i]["special"].."{"..Pages[i]["number"].."}"
-- pageNo = pageNo..", "..v["pages"][i]["special"].."{"..checkFF(Pages[i]["number"].."}")
else
pageNo = pageNo..", \\hyperpage{"..checkFF(Pages[i]["number"]).."}"
end
-- Pages[i] = nil
end
else
writeLog(1,"getPageList: "..tostring(Pages[1]["special"]).."{"..tostring(Pages[1]["number"]).."}\n",2)
if (Pages[1]["special"] == nil) or (Pages[1]["number"] == nil) then return "" end
pageNo = Pages[1]["special"].."{"..Pages[1]["number"].."}"
for i=2,#Pages do
if Pages[i]["number"] then
pageNo = pageNo..", "..Pages[i]["special"].."{"..Pages[i]["number"].."}"
Pages[i] = {}
end
end
end
return pageNo
else
return ""
end
end
function printList(Index,level)
for k,v in pairs(Index) do
if v["Entry"] then
local sortChar = v["sortChar"]
if v["Entry"] and v["Macro"] then
writeLog(1,"Entry: "..v["Entry"].."; Pages: "..getRawPages(v).."Special: "..v["pages"][1]["special"].."; Type: "..sortChar.."; Macro: "..v["Macro"].."\n",level)
else
writeLog(1,"Entry: "..v["Entry"].."; Pages: "..getRawPages(v).."Special: "..v["pages"][1]["special"].."; Type: "..sortChar.."; Macro: nil".."\n",level)
end
end
end
end
function getItem(str,n)
if (n >= 0) and str then
local item = (str:gsub("!.*", "%0!")
:gsub("[^!]*!", "", n)
:match("^([^!]*)!") )
-- writeLog(1,"getItem ("..str..", "..n..") = "..item.."\n",2)
return item
end
end
function commandEntry(line)
return string.find(line,"\\MACRO<<<",1,true)
end
function checkHyperpage(lines)
local hyperpage = false
for i=1,#lines do
if string.find(lines[i],'hyperpage}') then
hyperpage = true
break
end
end
if hyperpage then
for i=1,#lines do
lines[i] = string.gsub(lines[i],'|?hyperpage}{','}{')
end
return true, lines
else
return false, lines
end
return
end
function itemOutput(last, v, hyperpage)
local lastItems = last
--print (tostring("test: "),v["Entry"],lastItems[1],lastItems[2],lastItems[3],type(lastItems[1]),#lastItems)
local currentItems = {}
local Entry = v["Entry"]
local mainEntry = getItem(Entry,0) -- save current main letter
local lastmainEntry = last[1] -- save last main letter
--require 'xindex-pretty'.dump(v) -- only for internal dump
local str
local excl = select(2,string.gsub(Entry,"!","!")) -- Number of !
writeLog(1,"itemOutput(): We have entry "..Entry.."\n",2)
writeLog(1,"itemOutput(): The entry has "..excl.." Exclamation characters\n",2)
if excl == 0 then
str = " \\item "..Entry..itemPageDelimiter.." "..getPageList(v,hyperpage).."\n"
for i, str0 in ipairs(escape_chars) do -- undo the escape char setting
str = str:gsub(str0[2],str0[3])
end
outFile:write(str); indLines=indLines+1
lastItems = {}
lastItems[1] = Entry
else
for i = 1,excl+1 do
currentItems[i] = getItem(Entry,i-1) -- 0 ! 1 ! 2 ! ... mainEntry
local item = "item"
writeLog(1,"itemOutput: currentItems[i]: "..tostring(currentItems[i]).."~= lastItems[i]: "..tostring(lastItems[i]).."\n",2)
if (currentItems[i] ~= lastItems[i]) or (mainEntry ~= lastmainEntry) -- test if there is a new main entry
then
local space = " "
for j = 2,i do
item = "sub"..item -- get the sub...subitem
space = space.." "
end
if not sublabels[i] then sublabels[i] = "---" end -- only three levels are predefined
writeLog(1,"itemOutput: currentItems[i]: "..currentItems[i].."; item: "..item.."\n",2)
if (i == 1) and (item == "item") then
str = space.."\\"..item.." "..sublabels[i]..currentItems[i].."\n"
else
str = space.."\\"..item.." "..sublabels[i]..currentItems[i]..itemPageDelimiter.." "..getPageList(v,hyperpage).."\n"
end
for i, str0 in ipairs(escape_chars) do -- undo the escape char setting
str = string.gsub(str,str0[2],str0[3])
end
outFile:write(str); indLines=indLines+1
else
writeLog(1,"itemOutput: currentItems[i]: "..currentItems[i].."= lastItems[i]: "..lastItems[i].."\n",2)
end
lastItems[i] = currentItems[i]
end
end
return lastItems
end
-- \item Bugenhagen, {VII/1-16}, {166}, {17}, {215}, {222f}, {226}, {237f}, {248}, {258f}, {263}, {269}, {316f}, {321}, {361}, {365f}, {368}, {385}, {431}, {57}, {65}, {68}, {71}, {714}, {728}, {73f}, {748}, {75}, {79}, {81}, {85}, {90f}, {VII/2/1-1013}, {1015}, {1049}, {1085}, {1088}, {1097--1100}, {1110}, {1114}, {1120}, {1126}, {1148}, {1175}, {1234}, {1236ff}, {761}, {782}, {785}, {799}, {803--811}, {813f}, {818}, {822f}, {829}, {832--835}, {839f}, {848f}, {851}, {857--862}, {864f}, {867--871}, {873}, {875}, {877}, {880}, {882}, {884}, {961}, {973}, {IX-277}
-- \subitem -\,Johannes, {VII/1-16}, {166}, {17}, {215}, {222f}, {226}, {237f}, {248}, {258f}, {263}, {269}, {316f}, {321}, {361}, {365f}, {368}, {385}, {431}, {57}, {65}, {68}, {71}, {714}, {728}, {73f}, {748}, {75}, {79}, {81}, {85}, {90f}, {VII/2/1-1013}, {1015}, {1049}, {1085}, {1088}, {1097--1100}, {1110}, {1114}, {1120}, {1126}, {1148}, {1175}, {1234}, {1236ff}, {761}, {782}, {785}, {799}, {803--811}, {813f}, {818}, {822f}, {829}, {832--835}, {839f}, {848f}, {851}, {857--862}, {864f}, {867--871}, {873}, {875}, {877}, {880}, {882}, {884}, {961}, {973}, {IX-277}
local match = function(expr)
local C, Ct, S = lpeg.C, lpeg.Ct, lpeg.S
local sep = S("@!|")
local str = C((1 - sep)^0)
local prefix = function(prefix)
return function(match)
return prefix .. match
end
end
local idx = str * ( "@" * str / prefix("@")
+ "!" * str / prefix("!")
+ "|" * str / prefix("|"))^0
return Ct(idx):match(expr)
end
local SortStringCache = {}
function getSortString(Entry)
local sortString = SortStringCache[Entry]
if sortString ~= nil then
return sortString
end
local t = match(Entry)
-- require 'xindex-pretty'.dump(t) -- only for internal dump
local data = t[1]
local c = utf.sub(data,1,1)
if getCharType(c) == 0 then
data = " "..data
end
for i = 2,#t do
if not (t[i]:sub(1,1) == "@") then -- and not (t[i]:sub(1,1) == "|") then
data = data..t[i]
end
end
SortStringCache[Entry] = data
return data
end
--\indexentry{hello@foo!world@foo!bar|bar}{60}
--[[
\indexentry {Schrift!Höhe}{64}
\indexentry {Schrift!Breite}{64}
\indexentry {Schrift!Tiefe}{64}
]]
-- get Unicode category of the codepoint, if supported
function getCategory(codepoints)
local codepoint = codepoints[1]
local category = get_category(codepoint)
if category == "Nd" then
return "digits"
elseif category:match("^L") then
local block = binary_range_search(codepoint, unicode_blocks) or {}
return block[3] or "other"
end
return "other"
end
-- insert the index entry to the categories subtable
function categorize(codepoints, entry, categories)
local subcategories = categories.categories
-- return category name from the Unicode block of the first character
local category = getCategory(codepoints)
-- if the categories doesn't use this code block, categorize it as other
local used = subcategories[category] and category or "other"
table.insert(subcategories[used], entry)
end
-- convert categories back to index list
function uncategorize(ordering_categories)
local newlist = {}
-- make new index order based on defined categories
for _, category in ipairs(ordering_categories.order) do
for _,entry in ipairs(ordering_categories.categories[category]) do
newlist[#newlist+1] = entry
end
end
return newlist
end
function getSortChar(codepoints)
if #codepoints > 0 then
local codes, pos = collator_obj:get_lowest_char(codepoints, 1)
if not codes then
-- if the first character in the sort key doesn't return letter
-- continue until we find some
table.remove(codepoints, 1)
return getSortChar(codepoints)
end
local sort_char = utf8.char(table.unpack(codes))
-- print unicode category of the first char
return upper(sort_char) -- use unicode.utf8.upper to make the char uppercase
end
end
function writeLog(i, str, level) -- mode i 0->console; 1->logfile: 2->both
if not_quiet then
if level <= vlevel then
if (i ~= 1) or (i < 0) then io.write(tostring(str)) end
if i > 0 then logFile:write(tostring(str)) end
end
else
if level < 0 then
io.write(tostring(str))
elseif level == 0 then
logFile:write(tostring(str))
end
end
end
|