icinga2/lib/icinga/usergroup.cpp

158 lines
4.3 KiB
C++
Raw Normal View History

2013-02-27 21:49:03 +01:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2013-03-17 20:19:29 +01:00
#include "icinga/usergroup.h"
2013-03-16 21:18:53 +01:00
#include "base/dynamictype.h"
#include "base/objectlock.h"
#include "base/logger_fwd.h"
#include <boost/smart_ptr/make_shared.hpp>
#include <boost/foreach.hpp>
2013-02-27 21:49:03 +01:00
using namespace icinga;
boost::mutex UserGroup::m_Mutex;
2013-03-16 21:18:53 +01:00
std::map<String, std::vector<User::WeakPtr> > UserGroup::m_MembersCache;
bool UserGroup::m_MembersCacheNeedsUpdate = false;
Timer::Ptr UserGroup::m_MembersCacheTimer;
2013-02-27 21:49:03 +01:00
2013-03-01 12:07:52 +01:00
REGISTER_TYPE(UserGroup);
2013-02-27 21:49:03 +01:00
2013-03-14 23:52:52 +01:00
UserGroup::UserGroup(const Dictionary::Ptr& serializedUpdate)
: DynamicObject(serializedUpdate)
2013-02-27 21:49:03 +01:00
{
RegisterAttribute("display_name", Attribute_Config, &m_DisplayName);
}
UserGroup::~UserGroup(void)
{
InvalidateMembersCache();
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-02-27 21:49:03 +01:00
void UserGroup::OnRegistrationCompleted(void)
{
ASSERT(!OwnsLock());
2013-03-02 09:07:47 +01:00
2013-02-27 21:49:03 +01:00
InvalidateMembersCache();
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-02-27 21:49:03 +01:00
String UserGroup::GetDisplayName(void) const
{
if (!m_DisplayName.IsEmpty())
return m_DisplayName;
else
return GetName();
}
/**
* @threadsafety Always.
*/
UserGroup::Ptr UserGroup::GetByName(const String& name)
{
DynamicObject::Ptr configObject = DynamicObject::GetObject("UserGroup", name);
if (!configObject)
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::invalid_argument("UserGroup '" + name + "' does not exist."));
2013-02-27 21:49:03 +01:00
return dynamic_pointer_cast<UserGroup>(configObject);
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-03-16 21:18:53 +01:00
std::set<User::Ptr> UserGroup::GetMembers(void) const
2013-02-27 21:49:03 +01:00
{
2013-03-16 21:18:53 +01:00
std::set<User::Ptr> users;
2013-02-27 21:49:03 +01:00
{
boost::mutex::scoped_lock lock(m_Mutex);
2013-03-02 09:07:47 +01:00
BOOST_FOREACH(const User::WeakPtr& wuser, m_MembersCache[GetName()]) {
2013-02-27 21:49:03 +01:00
User::Ptr user = wuser.lock();
if (!user)
continue;
users.insert(user);
}
}
return users;
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-02-27 21:49:03 +01:00
void UserGroup::InvalidateMembersCache(void)
{
2013-03-02 09:07:47 +01:00
boost::mutex::scoped_lock lock(m_Mutex);
2013-02-27 21:49:03 +01:00
if (m_MembersCacheNeedsUpdate)
return; /* Someone else has already requested a refresh. */
2013-02-27 21:49:03 +01:00
if (!m_MembersCacheTimer) {
m_MembersCacheTimer = boost::make_shared<Timer>();
m_MembersCacheTimer->SetInterval(0.5);
m_MembersCacheTimer->OnTimerExpired.connect(boost::bind(&UserGroup::RefreshMembersCache));
m_MembersCacheTimer->Start();
}
m_MembersCacheNeedsUpdate = true;
2013-02-27 21:49:03 +01:00
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-02-27 21:49:03 +01:00
void UserGroup::RefreshMembersCache(void)
{
{
boost::mutex::scoped_lock lock(m_Mutex);
if (!m_MembersCacheNeedsUpdate)
2013-02-27 21:49:03 +01:00
return;
m_MembersCacheNeedsUpdate = false;
2013-02-27 21:49:03 +01:00
}
2013-03-16 21:18:53 +01:00
Log(LogDebug, "icinga", "Updating UserGroup members cache.");
2013-03-16 21:18:53 +01:00
std::map<String, std::vector<User::WeakPtr> > newMembersCache;
2013-02-27 21:49:03 +01:00
BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("User")) {
const User::Ptr& user = static_pointer_cast<User>(object);
2013-03-14 12:17:46 +01:00
Array::Ptr groups = user->GetGroups();
if (groups) {
ObjectLock mlock(groups);
BOOST_FOREACH(const Value& group, groups) {
newMembersCache[group].push_back(user);
2013-02-27 21:49:03 +01:00
}
}
}
boost::mutex::scoped_lock lock(m_Mutex);
m_MembersCache.swap(newMembersCache);
}