summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/util-sql-sessions.lua
blob: 76bb91962faa3dac21e643906ea622b9be9372f7 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
if not modules then modules = { } end modules ['util-sql-sessions'] = {
    version   = 1.001,
    comment   = "companion to lmx-*",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

-- This is experimental code and currently part of the base installation simply
-- because it's easier to dirtribute this way. Eventually it will be documented
-- and the related scripts will show up as well.

-- maybe store threshold in session (in seconds)

local tonumber = tonumber
local format = string.format
local ostime, uuid, osfulltime = os.time, os.uuid, os.fulltime
local random = math.random

-- In older frameworks we kept a session table in memory. This time we
-- follow a route where we store session data in a sql table. Each session
-- has a token (similar to what we do on q2p and pod services), a data
-- blob which is just a serialized lua table (we could consider a dump instead)
-- and two times: the creation and last accessed time. The first one is handy
-- for statistics and the second one for cleanup. Both are just numbers so that
-- we don't have to waste code on conversions. Anyhow, we provide variants so that
-- we can always choose what is best.

local sql         = utilities.sql
local sessions    = { }
sql.sessions      = sessions

local trace_sql   = false  trackers.register("sql.sessions.trace", function(v) trace_sql = v end)
local report      = logs.reporter("sql","sessions")

sessions.newtoken = sql.tokens.new

local function checkeddb(presets,datatable)
    return sql.usedatabase(presets,datatable or presets.datatable or "sessions")
end

sessions.usedb = checkeddb

local template =[[
    CREATE TABLE IF NOT EXISTS %basename% (
        `token`    varchar(50)       NOT NULL,
        `data`     longtext          NOT NULL,
        `created`  int(11)           NOT NULL,
        `accessed` int(11)           NOT NULL,
        UNIQUE KEY `token_unique_key` (`token`)
    )
    DEFAULT CHARSET = utf8 ;
]]

function sessions.createdb(presets,datatable)

    local db = checkeddb(presets,datatable)

    db.execute {
        template  = template,
        variables = {
            basename = db.basename,
        },
    }

    report("datatable %a created in %a",db.name,db.base)

    return db

end

local template =[[
    DROP TABLE IF EXISTS %basename% ;
]]

function sessions.deletedb(presets,datatable)

    local db = checkeddb(presets,datatable)

    db.execute {
        template  = template,
        variables = {
            basename = db.basename,
        },
    }

    report("datatable %a removed in %a",db.name,db.base)

end

local template =[[
    INSERT INTO %basename% (
        `token`,
        `created`,
        `accessed`,
        `data`
    ) VALUES (
        '%token%',
        %time%,
        %time%,
        '%[data]%'
    ) ;
]]

function sessions.create(db,data)

    local token  = sessions.newtoken()
    local time   = ostime()

    db.execute {
        template  = template,
        variables = {
            basename = db.basename,
            token    = token,
            time     = time,
            data     = db.serialize(data or { },"return")
        },
    }

    if trace_sql then
        report("created: %s at %s",token,osfulltime(time))
    end

    return {
        token    = token,
        created  = time,
        accessed = time,
        data     = data,
    }
end

local template =[[
    UPDATE
        %basename%
    SET
        `data` = '%[data]%',
        `accessed` = %time%
    WHERE
        `token` = '%token%' ;
]]

function sessions.save(db,session)

    local time  = ostime()
    local data  = db.serialize(session.data or { },"return")
    local token = session.token

    session.accessed = time

    db.execute {
        template  = template,
        variables = {
            basename = db.basename,
            token    = token,
            time     = ostime(),
            data     = data,
        },
    }

    if trace_sql then
        report("saved: %s at %s",token,osfulltime(time))
    end

    return session
end

local template = [[
    UPDATE
        %basename%
    SET
        `accessed` = %time%
    WHERE
        `token` = '%token%' ;
]]

function sessions.touch(db,token)

    db.execute {
        template  = template,
        variables = {
            basename = db.basename,
            token    = token,
            time     = ostime(),
        },
    }

end

local template = [[
    UPDATE
        %basename%
    SET
        `accessed` = %time%
    WHERE
        `token` = '%token%' ;
    SELECT
        *
    FROM
        %basename%
    WHERE
        `token` = '%token%' ;
]]

function sessions.restore(db,token)

    local records, keys = db.execute {
        template  = template,
        variables = {
            basename = db.basename,
            token    = token,
            time     = ostime(),
        },
    }

    local record = records and records[1]

    if record then
        if trace_sql then
            report("restored: %s",token)
        end
        record.data = db.deserialize(record.data or "")
        return record, keys
    elseif trace_sql then
        report("unknown: %s",token)
    end

end

local template =[[
    DELETE FROM
        %basename%
    WHERE
        `token` = '%token%' ;
]]

function sessions.remove(db,token)

    db.execute {
        template  = template,
        variables = {
            basename = db.basename,
            token    = token,
        },
    }

    if trace_sql then
        report("removed: %s",token)
    end

end

local template_collect_yes =[[
    SELECT
        *
    FROM
        %basename%
    ORDER BY
        `created` ;
]]

local template_collect_nop =[[
    SELECT
        `accessed`,
        `created`,
        `accessed`,
        `token`
    FROM
        %basename%
    ORDER BY
        `created` ;
]]

function sessions.collect(db,nodata)

    local records, keys = db.execute {
        template  = nodata and template_collect_nop or template_collect_yes,
        variables = {
            basename = db.basename,
        },
    }

    if not nodata then
        db.unpackdata(records)
    end

    if trace_sql then
        report("collected: %s sessions",#records)
    end

    return records, keys

end

local template_cleanup_yes =[[
    SELECT
        *
    FROM
        %basename%
    WHERE
        `accessed` < %time%
    ORDER BY
        `created` ;
    DELETE FROM
        %basename%
    WHERE
        `accessed` < %time% ;
]]

local template_cleanup_nop =[[
    SELECT
        `accessed`,
        `created`,
        `accessed`,
        `token`
    FROM
        %basename%
    WHERE
        `accessed` < %time%
    ORDER BY
        `created` ;
    DELETE FROM
        %basename%
    WHERE
        `accessed` < %time% ;
]]

function sessions.cleanupdb(db,delta,nodata)

    local time = ostime()

    local records, keys = db.execute {
        template  = nodata and template_cleanup_nop or template_cleanup_yes,
        variables = {
            basename = db.basename,
            time     = time - delta
        },
    }

    if not nodata then
        db.unpackdata(records)
    end

    if trace_sql then
        report("cleaned: %s seconds before %s",delta,osfulltime(time))
    end

    return records, keys

end