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
|
/*
* UserCache.h
*
* Copyright (C) 2009 Matthias Schiffer <matthias@gamezock.de>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MAD_COMMON_USERCACHE_H_
#define MAD_COMMON_USERCACHE_H_
#include "UserDBBackend.h"
#include <limits>
#include <boost/thread/recursive_mutex.hpp>
namespace Mad {
namespace Common {
class Application;
class UserManager;
class UserCache : public UserDBBackend, private boost::noncopyable {
private:
friend class UserManager;
Application *application;
boost::shared_ptr<UserDBBackend> backend;
boost::recursive_mutex mutex;
boost::shared_ptr<const std::map<unsigned long, UserInfo> > users;
boost::shared_ptr<std::map<std::string, unsigned long> > userNames;
Core::Exception userException;
boost::posix_time::ptime userTime;
boost::shared_ptr<const std::map<unsigned long, GroupInfo> > groups;
boost::shared_ptr<std::map<std::string, unsigned long> > groupNames;
Core::Exception groupException;
boost::posix_time::ptime groupTime;
boost::shared_ptr<const std::multimap<unsigned long, unsigned long> > userGroups;
boost::shared_ptr<std::multimap<unsigned long, unsigned long> > groupUsers;
Core::Exception userGroupException;
boost::posix_time::ptime userGroupTime;
protected:
virtual boost::shared_ptr<const std::map<unsigned long, UserInfo> > getUserList(boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const UserInfo> getUserInfo(unsigned long uid, boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const UserInfo> getUserInfoByName(const std::string &name, boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const std::set<unsigned long> > getUserGroupList(unsigned long uid, boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const std::map<unsigned long, GroupInfo> > getGroupList(boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const GroupInfo> getGroupInfo(unsigned long gid, boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const GroupInfo> getGroupInfoByName(const std::string &name, boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const std::set<unsigned long> > getGroupUserList(unsigned long gid, boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual boost::shared_ptr<const std::multimap<unsigned long, unsigned long> > getFullUserGroupList(boost::posix_time::ptime *timestamp) throw(Core::Exception);
virtual void setPassword(unsigned long uid, const std::string &password) throw(Core::Exception) {
backend->setPassword(uid, password);
}
virtual void addUser(const UserInfo &userInfo) throw(Core::Exception) {
backend->addUser(userInfo);
}
virtual void updateUser(unsigned long uid, const UserInfo &userInfo) throw(Core::Exception) {
backend->updateUser(uid, userInfo);
}
virtual void deleteUser(unsigned long uid) throw(Core::Exception) {
backend->deleteUser(uid);
}
virtual void addGroup(const GroupInfo &groupInfo) throw(Core::Exception) {
backend->addGroup(groupInfo);
}
virtual void updateGroup(unsigned long gid, const GroupInfo &groupInfo) throw(Core::Exception) {
backend->updateGroup(gid, groupInfo);
}
virtual void deleteGroup(unsigned long gid) throw(Core::Exception) {
backend->deleteGroup(gid);
}
virtual void addUserToGroup(unsigned long uid, unsigned long gid) throw(Core::Exception) {
backend->addUserToGroup(uid, gid);
}
virtual void deleteUserFromGroup(unsigned long uid, unsigned long gid) throw(Core::Exception) {
backend->deleteUserFromGroup(uid, gid);
}
UserCache(Application *application0, boost::shared_ptr<UserDBBackend> backend0) : application(application0), backend(backend0),
userTime(boost::posix_time::not_a_date_time), groupTime(boost::posix_time::not_a_date_time),
userGroupTime(boost::posix_time::not_a_date_time) {}
public:
virtual const std::string& getName() {
return backend->getName();
}
};
}
}
#endif /* MAD_COMMON_USERCACHE_H_ */
|