summaryrefslogtreecommitdiff
path: root/tex/context/base/page-ins.lua
blob: 1b8b8583b403d2b5a95709c4d76bfdc8a907d0f6 (plain)
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
if not modules then modules = { } end modules ['page-mix'] = {
    version   = 1.001,
    comment   = "companion to page-mix.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files",
 -- public    = {
 --     functions = {
 --         "inserts.define",
 --         "inserts.getdata",
 --     },
 --     commands = {
 --         "defineinsertion",
 --         "inserttionnumber",
 --     }
 -- }
}

-- Maybe we should only register in lua and forget about the tex end.

structures         = structures or { }
structures.inserts = structures.inserts or { }
local inserts      = structures.inserts

local report_inserts = logs.reporter("inserts")

inserts.stored = inserts.stored or { } -- combining them in one is inefficient in the
inserts.data   = inserts.data   or { } -- bytecode storage pool

storage.register("structures/inserts/stored", inserts.stored, "structures.inserts.stored")

local data   = inserts.data
local stored = inserts.stored

for name, specification in next, stored do
    data[specification.number] = specification
    data[name]                 = specification
end

function inserts.define(specification)
    local name = specification.name or "unknown"
    local number = specification.number or 0
    data[name] = specification
    data[number] = specification
    -- only needed at runtime as this get stored in a bytecode register
    stored[name] = specification
end

function inserts.getdata(name) -- or number
    return data[name]
end

function inserts.getname(number)
    return data[name].name
end

function inserts.getnumber(name)
    return data[name].number
end

-- interface

commands.defineinsertion = inserts.define
commands.insertionnumber = function(name) context(data[name].number or 0) end