summaryrefslogtreecommitdiff
path: root/luaotfload-database.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-06-22 03:06:35 -0700
committerPhilipp Gesang <phg42.2a@gmail.com>2013-06-22 03:06:35 -0700
commit5aa54f3169985d0457b3517f49da961a51b2f1cc (patch)
tree9ac97b91d8cf29d2c2f2a079f65f71f972732a6d /luaotfload-database.lua
parent6580e7a8e1d19dd5ff0aca233dde486dae03761f (diff)
parent51360bd326da1e0fcb10b1b311b49284ec480ed5 (diff)
downloadluaotfload-5aa54f3169985d0457b3517f49da961a51b2f1cc.tar.gz
Merge pull request #98 from phi-gamma/master
fix cached resolver
Diffstat (limited to 'luaotfload-database.lua')
-rw-r--r--luaotfload-database.lua22
1 files changed, 20 insertions, 2 deletions
diff --git a/luaotfload-database.lua b/luaotfload-database.lua
index b9695ad..8106898 100644
--- a/luaotfload-database.lua
+++ b/luaotfload-database.lua
@@ -465,11 +465,29 @@ Also, the fields “resolved”, “sub”, “force” etc. influence the outco
--doc]]--
+local concat_char = "#"
+local hash_fields = {
+ --- order is important
+ "specification", "style", "sub", "optsize", "size",
+}
+local n_hash_fields = #hash_fields
+
+--- spec -> string
+local hash_request = function (specification)
+ local key = { } --- segments of the hash
+ for i=1, n_hash_fields do
+ local field = specification[hash_fields[i]]
+ if field then
+ key[#key+1] = field
+ end
+ end
+ return tableconcat(key, concat_char)
+end
+
--- 'a -> 'a -> table -> (string * int|boolean * boolean)
resolve_cached = function (_, _, specification)
- --if not names.data then names.data = load_names() end
if not names.lookups then names.lookups = load_lookups() end
- local request = specification.specification
+ local request = hash_request(specification)
report("both", 4, "cache", "looking for “%s” in cache ...",
request)