-
Notifications
You must be signed in to change notification settings - Fork 23
/
profiles.lua
504 lines (434 loc) · 15.5 KB
/
profiles.lua
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
--
-- Store and serve user preferences.
-- For every user, stores a list of preferences or attributes,
-- as a list of pairs -- attribute_name, attribute_value
--
-- It is assumed that each user may have a fairly large number
-- of preferences (e.g. 500), but keep most of them set to
-- default. Therefore, we only store non-default preferences.
--
-- The following storage schema is used:
--
-- space:
-- user_id pref_id pref_value pref_id pref_value ...
--
-- profile_get(user_id)
-- - returns a tuple with all user preferences
--
-- profile_set(user_id, pref_id, pref_value)
-- - sets a given preference.
--
-- profile_multiset(profile_id, ...)
-- - sets a given variable number of preferences.
--
-- namespace which stores all notifications
local space_no = 0
-- ========================================================================= --
-- Profile local functions
-- ========================================================================= --
local function print_profile(header, profile)
if not profiles._debug then
return
end
print(header)
print("id = ", profile.id)
for pref_id, pref_value in pairs(profile.prefs) do
print("prefs[", pref_id, "] = ", pref_value)
end
end
local function load_profile_from_tuple(tuple)
local profile = {}
profile.id = tuple[0]
local k, _ = tuple:next() -- skip user id
-- fill preference list
profile.prefs = {}
while k ~= nil do
local pref_key, pref_value
-- get preference key
k, pref_key = tuple:next(k)
if k == nil then break end
-- get preference value
k, pref_value = tuple:next(k)
if k == nil then break end
-- put preference
profile.prefs[pref_key] = pref_value
end
return profile
end
local function load_profile(profile_id)
local profile = nil
-- try to find tuple
local tuple = box.select(space_no, 0, profile_id)
if tuple ~= nil then
profile = load_profile_from_tuple(tuple)
else
-- init empty profile
profile = {}
profile.id = profile_id
profile.prefs = {}
end
print_profile("load", profile)
return profile
end
local function store_profile(profile)
print_profile("store", profile)
-- init profile tuple
local tuple = { profile.id }
-- put preference to tuple
for pref_id, pref_value in pairs(profile.prefs) do
-- insert preference id
table.insert(tuple, pref_id)
-- insert preference value
table.insert(tuple, pref_value)
end
return box.replace(space_no, unpack(tuple))
end
-- ========================================================================= --
-- Profile interface
-- ========================================================================= --
profiles = {
-- enable/disable debug functions
_debug = false,
}
function profile_get(profile_id)
return box.select(space_no, 0, profile_id)
end
function profile_multiset(profile_id, ...)
local pref_list = {...}
local pref_list_len = table.getn(pref_list)
--
-- check input params
--
-- profile id
if profile_id == nil then
error("profile's id undefied")
end
-- preference list's length
if pref_list_len == 0 then
--- nothing to set, return the old tuple (if it exists)
return box.select(space_no, 0, profile_id)
end
-- preference list's parity
if pref_list_len % 2 ~= 0 then
error("illegal parameters: var arguments list should contain pairs pref_key pref_value")
end
--
-- process
--
-- load profile
local profile = load_profile(profile_id)
-- initialize iterator by pref argument list, all arguments go by pair
-- id and value.
local i, pref_key = next(pref_list)
local i, pref_value = next(pref_list, i)
while pref_key ~= nil and pref_value ~= nil do
-- erase preference if its new value is empty string
if pref_value == '' then
pref_value = nil
end
-- set new preference value
profile.prefs[pref_key] = pref_value
-- go to the next pair
i, pref_key = next(pref_list, i)
i, pref_value = next(pref_list, i)
end
-- store result
return store_profile(profile)
end
function profile_set(profile_id, pref_key, pref_value)
return profile_multiset(profile_id, pref_key, pref_value)
end
-- ========================================================================== --
-- helper functions which help to delete empty preferences
-- ========================================================================== --
local function profile_cleanup_empty_preferences()
local cnt = 0
local n = 0
for tpl in box.space[space_no].index[0]:iterator(box.index.ALL) do
local profile = load_profile_from_tuple(tpl)
local has_empty = false
for k, v in pairs(profile.prefs) do
if v == '' then
profile.prefs[k] = nil
has_empty = true
end
end
if has_empty == true then
store_profile(profile)
cnt = cnt + 1
end
n = n + 1
if n == 100 then
box.fiber.sleep(0.001)
n = 0
end
end
print(cnt, ' tuples cleaned from empty keys')
return cnt
end
-- ========================================================================== --
-- cleans up keys with empty string values in every profile
-- needs to be called once for old version of profiles.lua
-- new version no longer produces keys with empty string values
-- ========================================================================== --
function profile_cleanup_empty_preferences_all()
while profile_cleanup_empty_preferences() ~= 0 do end
end
-- ========================================================================== --
-- helper functions which removes particular key in every profile
-- ========================================================================== --
local function profile_hexify(str)
return (
string.gsub(str, "(.)",
function (c) return string.format("%02X", string.byte(c)) end
)
)
end
local function profile_cleanup_key(key)
local cnt = 0
local n = 0
for tpl in box.space[space_no].index[0]:iterator(box.index.ALL) do
local profile = load_profile_from_tuple(tpl)
if profile.prefs[key] ~= nil then
print('cleanup_key: ', profile.id, '[', profile_hexify(key), ']', ' = ', profile.prefs[key], ', orig tuple: ', tpl)
profile.prefs[key] = nil
store_profile(profile)
cnt = cnt + 1
end
n = n + 1
if n == 100 then
box.fiber.sleep(0.001)
n = 0
end
end
print(cnt, ' tuples cleaned from key [', profile_hexify(key), ']')
return cnt
end
-- ========================================================================== --
-- cleans up particular key in every profile
-- ========================================================================== --
function profile_cleanup_key_all(key)
if type(key) ~= "string" then
error("bad parameters")
end
while profile_cleanup_key(key) ~= 0 do end
end
-- ========================================================================== --
-- profile replica admin functions
-- ========================================================================== --
local function tnt_bug_i64(d)
return tostring(d):sub(1, -4)
end
local function profile_id_to_int(id)
if #id == 4 then
return box.unpack("i", id)
elseif #id == 8 then
return tnt_bug_i64(box.unpack("l", id))
else
error("bad profile id")
end
end
local function profile_apply_func(func, ...)
local cnt = 0
for tpl in box.space[space_no].index[0]:iterator(box.index.ALL) do
local profile = load_profile_from_tuple(tpl)
func(profile, ...)
cnt = cnt + 1
if cnt == 1000 then
box.fiber.sleep(0)
cnt = 0
end
end
end
function profile_print_str_key(key_id)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
profile_apply_func(
function(p, key_id)
local str_key_id = box.pack("w", key_id)
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", string.format("%s", p.prefs[str_key_id]))
end,
key_id
)
end
function profile_print_int_key(key_id)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
profile_apply_func(
function(p, key_id)
local str_key_id = box.pack("w", key_id)
local val = "nil"
if p.prefs[str_key_id] ~= nil then
if #p.prefs[str_key_id] ~= 4 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: BAD")
return
end
val = box.unpack("i", p.prefs[str_key_id])
end
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", val)
end,
key_id
)
end
function profile_print_int64_key(key_id)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
profile_apply_func(
function(p, key_id)
local str_key_id = box.pack("w", key_id)
local val = "nil"
if p.prefs[str_key_id] ~= nil then
if #p.prefs[str_key_id] ~= 8 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: BAD")
return
end
val = tnt_bug_i64(box.unpack("l", p.prefs[str_key_id]))
end
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", val)
end,
key_id
)
end
function profile_print_specific_key(key_id, key_val)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
if type(key_val) == "string" then key_val = tonumber(key_val) end
profile_apply_func(
function(p)
local str_key_id = box.pack("w", key_id)
if p.prefs[str_key_id] == key_val then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", key_val)
end
end
)
end
function profile_print_specific_int_key(key_id, key_val)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
if type(key_val) == "string" then key_val = tonumber(key_val) end
profile_apply_func(
function(p, key_id, key_val)
local str_key_id = box.pack("w", key_id)
local str_key_val = box.pack("i", key_val)
if p.prefs[str_key_id] == str_key_val then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", key_val)
end
end,
key_id,
key_val
)
end
function profile_print_specific_int64_key(key_id, key_val)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
if type(key_val) == "string" then key_val = tonumber(key_val) end
profile_apply_func(
function(p, key_id, key_val)
local str_key_id = box.pack("w", key_id)
local str_key_val = box.pack("l", key_val)
if p.prefs[str_key_id] == str_key_val then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", key_val)
end
end,
key_id,
key_val
)
end
function profile_print_specific_int_key_bit(key_id, bit_n)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
if type(bit_n) == "string" then bit_n = tonumber(bit_n) end
if bit_n < 0 or bit_n > 31 then error("bad parameters") end
profile_apply_func(
function(p, key_id, bit_n)
local str_key_id = box.pack("w", key_id)
if p.prefs[str_key_id] == nil then
return
end
if #p.prefs[str_key_id] ~= 4 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: BAD")
return
end
if bit.band(box.unpack("i", p.prefs[str_key_id]), bit.lshift(1, bit_n)) ~= 0 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", box.unpack("i", p.prefs[str_key_id]))
end
end,
key_id,
bit_n
)
end
function profile_print_specific_int64_key_bit(key_id, bit_n)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
if type(bit_n) == "string" then bit_n = tonumber(bit_n) end
if bit_n < 0 or bit_n > 63 then error("bad parameters") end
profile_apply_func(
function(p, key_id, bit_n)
local str_key_id = box.pack("w", key_id)
if p.prefs[str_key_id] == nil then
return
end
if #p.prefs[str_key_id] ~= 8 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: BAD")
return
end
local n = 0
if bit_n >= 32 then
bit_n = bit_n - 32
n = box.unpack("i", p.prefs[str_key_id]:sub(-4))
else
n = box.unpack("i", p.prefs[str_key_id]:sub(1, 4))
end
if bit.band(n, bit.lshift(1, bit_n)) ~= 0 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", box.unpack("l", p.prefs[str_key_id]))
end
end,
key_id,
bit_n
)
end
function profile_print_specific_str_int_key_bit(key_id, bit_n)
if box.cfg.replication_source == nil then error("replica api only") end
if type(key_id) == "string" then key_id = tonumber(key_id) end
if type(bit_n) == "string" then bit_n = tonumber(bit_n) end
if bit_n < 0 or bit_n > 63 then error("bad parameters") end
profile_apply_func(
function(p, key_id, bit_n)
local str_key_id = box.pack("w", key_id)
if p.prefs[str_key_id] == nil then
return
end
local n64 = tonumber64(p.prefs[str_key_id])
if n64 == nil or n64 < 0 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: BAD")
return
end
local n64str = box.pack("l", n64)
local n = 0
if bit_n >= 32 then
bit_n = bit_n - 32
n = box.unpack("i", n64str:sub(-4))
else
n = box.unpack("i", n64str:sub(1, 4))
end
if bit.band(n, bit.lshift(1, bit_n)) ~= 0 then
print("user_id: ", profile_id_to_int(p.id), " id: ", key_id, " val: ", p.prefs[str_key_id])
end
end,
key_id,
bit_n
)
end
function profile_print_bigger_than(size_in_bytes)
local cnt = 0
for tpl in box.space[space_no].index[0]:iterator(box.index.ALL) do
if tpl:bsize() > size_in_bytes then
print("user_id: ", profile_id_to_int(tpl[0]), " size: ", tpl:bsize())
end
cnt = cnt + 1
if cnt == 1000 then
box.fiber.sleep(0)
cnt = 0
end
end
end