summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2010-07-11 15:38:34 +0300
committerKhaled Hosny <khaledhosny@eglug.org>2010-07-11 15:38:34 +0300
commit81a4e5a67b995da1121423011cd5410126199333 (patch)
tree0988ef16cdd89674a03448d2bc9f965911cd72e8
parent9c6e847253cf250b5ef8cce79509f51b8b4fa084 (diff)
downloadluaotfload-81a4e5a67b995da1121423011cd5410126199333.tar.gz
Remove the progress bar and simplify the code
The database building/updating that the, unusual, progress bar is not needed.
-rwxr-xr-xmkluatexfontdb.lua1
-rw-r--r--otfl-font-nms.lua63
2 files changed, 8 insertions, 56 deletions
diff --git a/mkluatexfontdb.lua b/mkluatexfontdb.lua
index 455edec..98db095 100755
--- a/mkluatexfontdb.lua
+++ b/mkluatexfontdb.lua
@@ -125,7 +125,6 @@ end
process_cmdline()
local function generate(force)
- log("generating font names database.")
local savepath = output_directory
if not lfs.isdir(savepath) then
log("creating directory %s", savepath)
diff --git a/otfl-font-nms.lua b/otfl-font-nms.lua
index ac3f0ba..cebd20b 100644
--- a/otfl-font-nms.lua
+++ b/otfl-font-nms.lua
@@ -42,7 +42,6 @@ local gmatch, sub, find = string.gmatch, string.sub, string.find
local utfgsub = unicode.utf8.gsub
local trace_short = false --tracing adapted to rebuilding of the database inside a document
-local trace_progress = true --trackers.register("names.progress", function(v) trace_progress = v end)
local trace_search = false --trackers.register("names.search", function(v) trace_search = v end)
local trace_loading = false --trackers.register("names.loading", function(v) trace_loading = v end)
@@ -63,8 +62,6 @@ local function fontnames_init()
end
function names.load()
- -- this sets the output of the database building accordingly.
- names.set_log_level(-1)
local localpath = file.join(names.path.localdir, names.path.basename)
local systempath = file.join(names.path.systemdir, names.path.basename)
local kpsefound = kpse.find_file(names.path.basename)
@@ -245,14 +242,9 @@ end
names.resolvespec = names.resolve
function names.set_log_level(level)
- if level == -1 then
- trace_progress = false
- trace_short = true
- elseif level == 2 then
- trace_progress = false
+ if level == 2 then
trace_loading = true
elseif level >= 3 then
- trace_progress = false
trace_loading = true
trace_search = true
end
@@ -272,26 +264,6 @@ logs.info = logs.info or log
local log = names.log
--- The progress bar
-local function progress(current, total)
- if trace_progress then
--- local width = os.getenv("COLUMNS") -2 --doesn't work
- local width = 78
- local percent = current/total
- local gauge = format("[%s]", rpadd(" ", width, " "))
- if percent > 0 then
- local done = rpadd("=", (width * percent) - 1, "=") .. ">"
- gauge = format("[%s]", rpadd(done, width, " ") )
- end
- if lastislog == 1 then
- texio.write_nl("")
- lastislog = 0
- end
- io.stderr:write("\r"..gauge)
- io.stderr:flush()
- end
-end
-
local function font_fullinfo(filename, subfont, texmf)
local t = { }
local f = fontloader.open(filename, subfont)
@@ -520,27 +492,16 @@ local function scan_texmf_fonts(fontnames, newfontnames)
The function that scans all fonts in the texmf tree, through kpathsea
variables OPENTYPEFONTS and TTFONTS of texmf.cnf
--]]
- if trace_progress then
- if expandpath("$OSFONTDIR"):is_empty() then
- logs.report("Scanning TEXMF fonts:")
- else
- logs.report("Scanning TEXMF and OS fonts:")
- end
- elseif trace_short then
- if expandpath("$OSFONTDIR"):is_empty() then
- logs.info("Scanning TEXMF fonts...")
- else
- logs.info("Scanning TEXMF and OS fonts...")
- end
+ if expandpath("$OSFONTDIR"):is_empty() then
+ logs.info("Scanning TEXMF fonts...")
+ else
+ logs.info("Scanning TEXMF and OS fonts...")
end
local fontdirs = expandpath("$OPENTYPEFONTS"):gsub("^\.", "")
fontdirs = fontdirs .. expandpath("$TTFONTS"):gsub("^\.", "")
if not fontdirs:is_empty() then
fontdirs = splitpath(fontdirs)
- count = 0
for _,d in ipairs(fontdirs) do
- count = count + 1
- progress(count, #fontdirs)
scan_dir(d, fontnames, newfontnames, true)
end
end
@@ -660,19 +621,12 @@ local function scan_os_fonts(fontnames, newfontnames)
- fontcache for Unix (reads the fonts.conf file and scans the directories)
- a static set of directories for Windows and MacOSX
--]]
- if trace_progress then
- logs.report("Scanning OS fonts:")
- elseif trace_short then
- logs.info("Scanning OS fonts...")
- end
+ logs.info("Scanning OS fonts...")
if trace_search then
logs.info("Searching in static system directories...")
end
- count = 0
local os_dirs = get_os_dirs()
for _,d in ipairs(os_dirs) do
- count = count + 1
- progress(count, #os_dirs)
scan_dir(d, fontnames, newfontnames, false)
end
end
@@ -683,9 +637,8 @@ local function update_names(fontnames, force)
- fontnames is the final table to return
- force is whether we rebuild it from scratch or not
--]]
- if trace_short then
- logs.info("Updating the font names database:")
- end
+ logs.info("Updating the font names database:")
+
if force then
fontnames = fontnames_init()
else