Add "uuid" library and make sessionmanager use this.

...and yes, the uuid generation needs work :P
This commit is contained in:
Matthew Wild 2008-10-04 02:12:54 +01:00
parent 8d8cdb8574
commit f6924a64c0
2 changed files with 11 additions and 2 deletions

View file

@ -12,7 +12,7 @@ local hosts = hosts;
local modulemanager = require "core.modulemanager";
local log = require "util.logger".init("sessionmanager");
local error = error;
local uuid_generate = require "util.uuid".uuid_generate;
module "sessionmanager"
function new_session(conn)
@ -41,7 +41,7 @@ end
function bind_resource(session, resource)
if not session.username then return false, "auth"; end
if session.resource then return false, "constraint"; end -- We don't support binding multiple resources
resource = resource or math.random(100000, 99999999); -- FIXME: Clearly we have issues :)
resource = resource or uuid_generate();
--FIXME: Randomly-generated resources must be unique per-user, and never conflict with existing
if not hosts[session.host].sessions[session.username] then

9
util/uuid.lua Normal file
View file

@ -0,0 +1,9 @@
local m_random = math.random;
module "uuid"
function uuid_generate()
return m_random(0, 99999999);
end
return _M;