File: cmapdec.lua

package info (click to toggle)
texlive-lang 2016.20170123-5
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,093,148 kB
  • ctags: 15,901
  • sloc: perl: 46,074; xml: 29,603; makefile: 5,248; sh: 3,179; python: 2,949; ansic: 2,846; ruby: 945; lisp: 726; awk: 636; java: 159; sed: 142; cpp: 12
file content (54 lines) | stat: -rw-r--r-- 1,455 bytes parent folder | download | duplicates (7)
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
local line, fh -- line, file handler
local tt       -- 作業用 table

local function load_cid_char()
   local cid, ucs, ucsa
   line = fh:read("*l")
   while line do
      if string.find(line, "end...?char") then 
	 line = fh:read("*l"); return
      else -- WMA l is in the form "<%x+>%s%d+"
	 ucs, cid = string.match(line, "<(%x+)>%s+<?(%x+)>?")
	 cid = tonumber(cid); ucs = tonumber(ucs, 16); 
	 tt[ucs] = cid
      end
      line = fh:read("*l")
   end
end

local function load_cid_range()
   local bucs, eucs, cid
   line = fh:read("*l")
   while line do
        if string.find(line, "end...?range") then 
	   line = fh:read("*l"); return
	else -- WMA l is in the form "<%x+>%s+<%x+>"
	   bucs, eucs, cid = string.match(line, "<(%x+)>%s+<(%x+)>%s+<?(%x+)>?")
	   cid = tonumber(cid); 
	   bucs = tonumber(bucs, 16); eucs = tonumber(eucs, 16)
	   for ucs = bucs, eucs do
	      tt[ucs], cid = cid, cid + 1
	   end
	end
	line = fh:read("*l")
     end
  end

local function open_cmap_file(cmap_name, out_table)
   fh = io.open(kpse.find_file(cmap_name, 'cmap files'), "r")
   if not out_table then tt = {} else tt = out_table end
   line = fh:read("*l")
   while line do
      if string.find(line, "%x+%s+begin...?char") then
	 load_cid_char()
      elseif string.find(line, "%x+%s+begin...?range") then
	 load_cid_range()
      else
	 line = fh:read("*l")
      end
   end
   fh:close(); 
   return tt
end

return { open_cmap_file = open_cmap_file };