Automated merge with http://waqas.ath.cx:8000/
[prosody.git] / util / datamanager.lua
1 -- Prosody IM v0.2
2 -- Copyright (C) 2008 Matthew Wild
3 -- Copyright (C) 2008 Waqas Hussain
4 -- 
5 -- This program is free software; you can redistribute it and/or
6 -- modify it under the terms of the GNU General Public License
7 -- as published by the Free Software Foundation; either version 2
8 -- of the License, or (at your option) any later version.
9 -- 
10 -- This program is distributed in the hope that it will be useful,
11 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
12 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 -- GNU General Public License for more details.
14 -- 
15 -- You should have received a copy of the GNU General Public License
16 -- along with this program; if not, write to the Free Software
17 -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 --
19
20
21 local format = string.format;
22 local setmetatable, type = setmetatable, type;
23 local pairs, ipairs = pairs, ipairs;
24 local char = string.char;
25 local loadfile, setfenv, pcall = loadfile, setfenv, pcall;
26 local log = require "util.logger".init("datamanager");
27 local io_open = io.open;
28 local os_remove = os.remove;
29 local io_popen = io.popen;
30 local tostring, tonumber = tostring, tonumber;
31 local error = error;
32 local next = next;
33 local t_insert = table.insert;
34 local append = require "util.serialization".append;
35 local path_separator = "/"; if os.getenv("WINDIR") then path_separator = "\\" end
36
37 module "datamanager"
38
39 ---- utils -----
40 local encode, decode;
41 do 
42         local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber("0x"..k)); return t[k]; end });
43
44         decode = function (s)
45                 return s and (s:gsub("+", " "):gsub("%%([a-fA-F0-9][a-fA-F0-9])", urlcodes));
46         end
47
48         encode = function (s)
49                 return s and (s:gsub("%W", function (c) return format("%%%02x", c:byte()); end));
50         end
51 end
52
53 local _mkdir = {};
54 local function mkdir(path)
55         path = path:gsub("/", path_separator); -- TODO as an optimization, do this during path creation rather than here
56         if not _mkdir[path] then
57                 local x = io_popen("mkdir \""..path.."\" 2>&1"):read("*a");
58                 _mkdir[path] = true;
59         end
60         return path;
61 end
62
63 local data_path = "data";
64
65 ------- API -------------
66
67 function set_data_path(path)
68         log("info", "Setting data path to %s", path);
69         data_path = path;
70 end
71
72 function getpath(username, host, datastore, ext, create)
73         ext = ext or "dat";
74         host = host and encode(host);
75         username = username and encode(username);
76         if username then
77                 if create then mkdir(mkdir(mkdir(data_path).."/"..host).."/"..datastore); end
78                 return format("%s/%s/%s/%s.%s", data_path, host, datastore, username, ext);
79         elseif host then
80                 if create then mkdir(mkdir(data_path).."/"..host); end
81                 return format("%s/%s/%s.%s", data_path, host, datastore, ext);
82         else
83                 if create then mkdir(data_path); end
84                 return format("%s/%s.%s", data_path, datastore, ext);
85         end
86 end
87
88 function load(username, host, datastore)
89         local data, ret = loadfile(getpath(username, host, datastore));
90         if not data then
91                 log("warn", "Failed to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
92                 return nil;
93         end
94         setfenv(data, {});
95         local success, ret = pcall(data);
96         if not success then
97                 log("error", "Unable to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
98                 return nil;
99         end
100         return ret;
101 end
102
103 function store(username, host, datastore, data)
104         if not data then
105                 data = {};
106         end
107         -- save the datastore
108         local f, msg = io_open(getpath(username, host, datastore, nil, true), "w+");
109         if not f then
110                 log("error", "Unable to write to "..datastore.." storage ('"..msg.."') for user: "..(username or "nil").."@"..(host or "nil"));
111                 return;
112         end
113         f:write("return ");
114         append(f, data);
115         f:close();
116         if not next(data) then -- try to delete empty datastore
117                 os_remove(getpath(username, host, datastore));
118         end
119         -- we write data even when we are deleting because lua doesn't have a
120         -- platform independent way of checking for non-exisitng files
121         return true;
122 end
123
124 function list_append(username, host, datastore, data)
125         if not data then return; end
126         -- save the datastore
127         local f, msg = io_open(getpath(username, host, datastore, "list", true), "a+");
128         if not f then
129                 log("error", "Unable to write to "..datastore.." storage ('"..msg.."') for user: "..(username or "nil").."@"..(host or "nil"));
130                 return;
131         end
132         f:write("item(");
133         append(f, data);
134         f:write(");\n");
135         f:close();
136         return true;
137 end
138
139 function list_store(username, host, datastore, data)
140         if not data then
141                 data = {};
142         end
143         -- save the datastore
144         local f, msg = io_open(getpath(username, host, datastore, "list", true), "w+");
145         if not f then
146                 log("error", "Unable to write to "..datastore.." storage ('"..msg.."') for user: "..(username or "nil").."@"..(host or "nil"));
147                 return;
148         end
149         for _, d in ipairs(data) do
150                 f:write("item(");
151                 append(f, d);
152                 f:write(");\n");
153         end
154         f:close();
155         if not next(data) then -- try to delete empty datastore
156                 os_remove(getpath(username, host, datastore, "list"));
157         end
158         -- we write data even when we are deleting because lua doesn't have a
159         -- platform independent way of checking for non-exisitng files
160         return true;
161 end
162
163 function list_load(username, host, datastore)
164         local data, ret = loadfile(getpath(username, host, datastore, "list"));
165         if not data then
166                 log("warn", "Failed to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
167                 return nil;
168         end
169         local items = {};
170         setfenv(data, {item = function(i) t_insert(items, i); end});
171         local success, ret = pcall(data);
172         if not success then
173                 log("error", "Unable to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
174                 return nil;
175         end
176         return items;
177 end
178
179 return _M;