2010-07-07 23:46:44 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2010 spx
|
|
|
|
|
|
|
|
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
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-07-07 23:46:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "Group.h"
|
|
|
|
#include "ConfigParser.h"
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
void Group::InitializeGroup(const std::wstring& groups)
|
2010-07-07 23:46:44 +00:00
|
|
|
{
|
2011-11-08 17:21:29 +00:00
|
|
|
if (wcscmp(groups.c_str(), m_OldGroups.c_str()) != 0)
|
2010-07-07 23:46:44 +00:00
|
|
|
{
|
2011-01-24 10:15:05 +00:00
|
|
|
m_OldGroups = groups;
|
|
|
|
m_Groups.clear();
|
2010-07-07 23:46:44 +00:00
|
|
|
|
2011-11-08 17:21:29 +00:00
|
|
|
if (!groups.empty())
|
2010-07-07 23:46:44 +00:00
|
|
|
{
|
2013-05-31 14:18:52 +00:00
|
|
|
std::vector<std::wstring> vGroups = ConfigParser::Tokenize(groups, L"|");
|
2013-02-06 10:09:17 +00:00
|
|
|
for (auto iter = vGroups.begin(); iter != vGroups.end(); ++iter)
|
2010-07-07 23:46:44 +00:00
|
|
|
{
|
2013-02-06 10:09:17 +00:00
|
|
|
m_Groups.insert(CreateGroup(*iter));
|
2010-07-07 23:46:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
bool Group::BelongsToGroup(const std::wstring& group) const
|
2010-07-07 23:46:44 +00:00
|
|
|
{
|
2013-02-06 10:09:17 +00:00
|
|
|
return (m_Groups.find(VerifyGroup(group)) != m_Groups.end());
|
|
|
|
}
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
std::wstring& Group::CreateGroup(std::wstring& str) const
|
2013-02-06 10:09:17 +00:00
|
|
|
{
|
|
|
|
_wcsupr(&str[0]);
|
|
|
|
return str;
|
2010-07-07 23:46:44 +00:00
|
|
|
}
|
|
|
|
|
2013-05-31 14:18:52 +00:00
|
|
|
std::wstring Group::VerifyGroup(const std::wstring& str) const
|
2010-07-07 23:46:44 +00:00
|
|
|
{
|
2010-11-04 00:17:42 +00:00
|
|
|
std::wstring strTmp;
|
2010-07-07 23:46:44 +00:00
|
|
|
|
2010-11-04 00:17:42 +00:00
|
|
|
std::wstring::size_type pos = str.find_first_not_of(L" \t\r\n");
|
2010-07-07 23:46:44 +00:00
|
|
|
if (pos != std::wstring::npos)
|
|
|
|
{
|
2011-07-14 00:26:53 +00:00
|
|
|
// Trim white-space
|
2011-07-18 00:32:09 +00:00
|
|
|
strTmp.assign(str, pos, str.find_last_not_of(L" \t\r\n") - pos + 1);
|
2010-07-07 23:46:44 +00:00
|
|
|
|
2013-02-06 10:09:17 +00:00
|
|
|
CreateGroup(strTmp);
|
2010-07-07 23:46:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return strTmp;
|
|
|
|
}
|