163 lines
4.6 KiB
Lua
163 lines
4.6 KiB
Lua
local private, public = {}, {}
|
|
Aux.persistence = public
|
|
|
|
aux_datasets = {}
|
|
|
|
function public.on_load()
|
|
Aux.control.as_soon_as(function() private.faction = UnitFactionGroup('player') return private.faction end, Aux.util.pass)
|
|
private.realm = GetCVar('realmName')
|
|
end
|
|
|
|
function private.get_dataset_key()
|
|
return private.realm..'|'..private.faction
|
|
end
|
|
|
|
function public.load_dataset()
|
|
local dataset_key = private.get_dataset_key()
|
|
aux_datasets[dataset_key] = aux_datasets[dataset_key] or {}
|
|
return aux_datasets[dataset_key]
|
|
end
|
|
|
|
function public.read(schema, str)
|
|
if type(schema) == 'table' and schema[1] == 'record' then
|
|
return unpack(private.read(schema, str))
|
|
else
|
|
return private.read(schema, str)
|
|
end
|
|
end
|
|
|
|
function public.write(schema, ...)
|
|
if type(schema) == 'table' and schema[1] == 'record' then
|
|
return private.write(schema, arg)
|
|
else
|
|
return private.write(schema, arg[1])
|
|
end
|
|
end
|
|
|
|
function private.read(schema, str)
|
|
if schema == 'string' then
|
|
return str
|
|
elseif schema == 'boolean' then
|
|
return str == '1'
|
|
elseif schema == 'number' then
|
|
return tonumber(str)
|
|
elseif type(schema) == 'table' and schema[1] == 'list' then
|
|
return private.read_list(schema, str)
|
|
elseif type(schema) == 'table' and schema[1] == 'record' then
|
|
return private.read_record(schema, str)
|
|
else
|
|
error('Unknown schema.')
|
|
end
|
|
end
|
|
|
|
function private.write(schema, obj)
|
|
if schema == 'string' then
|
|
return obj or ''
|
|
elseif schema == 'boolean' then
|
|
return obj and '1' or '0'
|
|
elseif schema == 'number' then
|
|
return obj and tostring(obj) or ''
|
|
elseif type(schema) == 'table' and schema[1] == 'list' then
|
|
return private.write_list(schema, obj)
|
|
elseif type(schema) == 'table' and schema[1] == 'record' then
|
|
return private.write_record(schema, obj)
|
|
else
|
|
error('Unknown schema.')
|
|
end
|
|
end
|
|
|
|
function private.read_list(schema, str)
|
|
if str == '' then
|
|
return {}
|
|
end
|
|
|
|
local separator = schema[2]
|
|
local element_type = schema[3]
|
|
local parts = Aux.util.split(str, separator)
|
|
return Aux.util.map(parts, function(part)
|
|
return private.read(element_type, part)
|
|
end)
|
|
end
|
|
|
|
function private.write_list(schema, list)
|
|
local separator = schema[2]
|
|
local element_type = schema[3]
|
|
local parts = Aux.util.map(list, function(element)
|
|
return private.write(element_type, element)
|
|
end)
|
|
return Aux.util.join(parts, separator)
|
|
end
|
|
|
|
function private.read_record(schema, str)
|
|
local separator = schema[2]
|
|
local record = {}
|
|
local parts = Aux.util.split(str, separator)
|
|
for i, type in ipairs(schema[3]) do
|
|
local field = private.read(type, parts[i])
|
|
if field ~= nil then
|
|
tinsert(record, field)
|
|
else
|
|
tinsert(record, nil)
|
|
end
|
|
end
|
|
return record
|
|
end
|
|
|
|
function private.write_record(schema, record)
|
|
local separator = schema[2]
|
|
local parts = {}
|
|
for i, type in ipairs(schema[3]) do
|
|
tinsert(parts, private.write(type, record[i]))
|
|
end
|
|
return Aux.util.join(parts, separator)
|
|
end
|
|
|
|
function public.serialize(data, separator, compactor)
|
|
|
|
local data_string = ''
|
|
local i = 1
|
|
while i <= getn(data) do
|
|
local element, count = data[i], 1
|
|
while compactor and data[i + 1] == element do
|
|
count = count + 1
|
|
i = i + 1
|
|
end
|
|
local part = count > 1 and element..compactor..count or element
|
|
data_string = data_string..(i == 1 and '' or separator)..part
|
|
i = i + 1
|
|
end
|
|
|
|
return data_string
|
|
end
|
|
|
|
function public.deserialize(data_string, separator, compactor)
|
|
if not data_string or data_string == '' then
|
|
return {}
|
|
end
|
|
|
|
local data = {}
|
|
while true do
|
|
local start_index, _ = strfind(data_string, separator, 1, true)
|
|
|
|
local part
|
|
if start_index then
|
|
part = string.sub(data_string, 1, start_index - 1)
|
|
data_string = string.sub(data_string, start_index + 1, strlen(data_string))
|
|
else
|
|
part = string.sub(data_string, 1, strlen(data_string))
|
|
end
|
|
|
|
if compactor and strfind(part, compactor, 1, true) then
|
|
local compactor_index, _ = strfind(part, compactor, 1, true)
|
|
for i=1, tonumber(string.sub(part, compactor_index + 1, strlen(part))) do
|
|
tinsert(data, string.sub(part, 1, compactor_index - 1))
|
|
end
|
|
else
|
|
tinsert(data, part)
|
|
end
|
|
|
|
if not start_index then
|
|
return data
|
|
end
|
|
end
|
|
end |