summaryrefslogtreecommitdiff
path: root/tex/context/modules/mkiv/s-fonts-statistics.mkiv
blob: 3b5cddd3cc9e038f2e16e4fb52eb3398b2e2bd3c (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
%D \module
%D   [      file=s-fonts-statistics,
%D        version=2018.03.21, % guess
%D          title=\CONTEXT\ Style File,
%D       subtitle=Listing font statistics,
%D         author=Hans Hagen,
%D           date=\currentdate,
%D      copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.

\startmodule[fonts-statistics]

\startluacode

moduledata.fonts            = moduledata.fonts            or { }
moduledata.fonts.statistics = moduledata.fonts.statistics or { }

local context = context
local ctx_NC, ctx_BC, ctx_NR = context.NC, context.BC, context.NR

function moduledata.fonts.statistics.showusage()
    local t = table.load(tex.jobname.."-fonts-usage.lua")
    if t then
        local totalinstances = 0
        local totalfilesize  = 0
        local totalfilenames = #t
        if totalfilenames > 0 then
            context.starttabulate { "|r|r|c||" }
                context.FL()
                ctx_BC() context("used")
                ctx_BC() context("filesize")
                ctx_BC() context("version")
                ctx_BC() context("filename")
                ctx_NR()
                context.ML()
                for i=1,#t do
                    local ti = t[i]
                    local version   = tonumber(string.match(ti.version or "","^.-([%d%.]+)"))
                    local instances = ti.instances or 1
                    local filename  = file.basename(ti.filename) or "unknown"
                    local filesize  = ti.size or 0
                    totalinstances  = totalinstances + instances
                    totalfilesize   = totalfilesize + filesize
                    ctx_NC() context(instances)
                    ctx_NC() context("%0m",filesize)
                    ctx_NC() if version then context("%0.3f",version) end
                    ctx_NC() context.type(filename)
                    ctx_NR()
                end
                context.LL()
                ctx_BC() context(totalinstances)
                ctx_BC() context("%0m",totalfilesize)
                ctx_BC() context()
                ctx_BC() context("%i files loaded",totalfilenames)
                ctx_NR()
            context.stoptabulate()
        end
    end
end

\stopluacode

\installmodulecommandluasingle \showfontusage {moduledata.fonts.statistics.showusage}

\stopmodule

\continueifinputfile{s-fonts-statistics.mkiv}

\enabletrackers[fonts.usage]

\starttext

    \input klein

    \showfontusage

\stoptext