summaryrefslogtreecommitdiff
path: root/tex/context/base/util-sql.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2012-09-11 22:00:16 +0300
committerMarius <mariausol@gmail.com>2012-09-11 22:00:16 +0300
commit0f82c3f6ef101a553b3f28d9f9d8cb905106eec2 (patch)
tree1a12df692bdbf94bc21028725493d867dfc68a39 /tex/context/base/util-sql.lua
parent40012d63f567ccc7ce33e0307069f35926fc5d6a (diff)
downloadcontext-0f82c3f6ef101a553b3f28d9f9d8cb905106eec2.tar.gz
beta 2012.09.11 20:36
Diffstat (limited to 'tex/context/base/util-sql.lua')
-rw-r--r--tex/context/base/util-sql.lua13
1 files changed, 9 insertions, 4 deletions
diff --git a/tex/context/base/util-sql.lua b/tex/context/base/util-sql.lua
index aeee7c09b..bcd82c210 100644
--- a/tex/context/base/util-sql.lua
+++ b/tex/context/base/util-sql.lua
@@ -19,7 +19,7 @@ if not modules then modules = { } end modules ['util-sql'] = {
-- context in a regular tds tree (the standard distribution) it makes sense to put shared
-- code in the context distribution. That way we don't need to reinvent wheels every time.
-local format = string.format
+local format, match = string.format, string.match
local random = math.random
local rawset, setmetatable, loadstring, type = rawset, setmetatable, loadstring, type
local P, S, V, C, Cs, Ct, Cc, Cg, Cf, patterns, lpegmatch = lpeg.P, lpeg.S, lpeg.V, lpeg.C, lpeg.Cs, lpeg.Ct, lpeg.Cc, lpeg.Cg, lpeg.Cf, lpeg.patterns, lpeg.match
@@ -27,6 +27,7 @@ local concat = table.concat
local osuuid = os.uuid
local osclock = os.clock or os.time
+local ostime = os.time
local trace_sql = false trackers.register("sql.trace", function(v) trace_sql = v end)
local trace_queries = false trackers.register("sql.queries",function(v) trace_queries = v end)
@@ -558,11 +559,15 @@ sql.setmethod("client")
-- presets = "...",
-- }
+-- for i=1,10 do
+-- local dummy = uuid() -- else same every time, don't ask
+-- end
+
sql.tokens = {
- length = 42,
+ length = 42, -- but in practice we will reserve some 50 characters
new = function()
- return format("%s+%05x",osuuid(),random(1,0xFFFFF)) -- 36 + 1 + 5 = 42
- end,
+ return format("%s-%s",osuuid(),match(format("%x05",random(ostime())),".-(.....)$")) -- 36 + 1 + 5 = 42
+ end, -- or random(0xFFFFF*osclock())
}
-- -- --