git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fight Optional
[stg.git]
/
projects
/
stargazer
/
users_impl.cpp
diff --git
a/projects/stargazer/users_impl.cpp
b/projects/stargazer/users_impl.cpp
index 9985615f85d06c58c9d3ba766cb668a224964379..ee25fb2cf90516159b348c7efd7f4fd92d3fd98b 100644
(file)
--- a/
projects/stargazer/users_impl.cpp
+++ b/
projects/stargazer/users_impl.cpp
@@
-22,16
+22,6
@@
* Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
*/
* Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
*/
-/*
- $Revision: 1.61 $
- $Date: 2010/09/13 05:56:42 $
- $Author: faust $
- */
-
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE
-#endif
-
#include <pthread.h>
#include <csignal>
#include <pthread.h>
#include <csignal>
@@
-43,39
+33,34
@@
#include "stg/settings.h"
#include "stg/common.h"
#include "stg/settings.h"
#include "stg/common.h"
+
#include "users_impl.h"
#include "stg_timer.h"
extern volatile time_t stgTime;
#include "users_impl.h"
#include "stg_timer.h"
extern volatile time_t stgTime;
-//#define USERS_DEBUG 1
+using STG::UsersImpl;
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
-U
SERS_IMPL::USERS_IMPL(SETTINGS_IMPL * s, STORE
* st,
-
TARIFFS * t, SERVICES
& svcs,
-
const ADMIN *
sa)
+U
sersImpl::UsersImpl(SettingsImpl * s, Store
* st,
+
Tariffs * t, Services
& svcs,
+
const Admin&
sa)
: settings(s),
tariffs(t),
m_services(svcs),
store(st),
sysAdmin(sa),
: settings(s),
tariffs(t),
m_services(svcs),
store(st),
sysAdmin(sa),
- WriteServLog(GetStgLogger()),
- nonstop(false),
+ WriteServLog(Logger::get()),
isRunning(false),
handle(0)
{
isRunning(false),
handle(0)
{
-pthread_mutexattr_t attr;
-pthread_mutexattr_init(&attr);
-pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
-pthread_mutex_init(&mutex, &attr);
}
//-----------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------
-U
SERS_IMPL::~USERS_IMPL
()
+U
sersImpl::~UsersImpl
()
{
{
-pthread_mutex_destroy(&mutex);
}
//-----------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL
::FindByNameNonLock(const std::string & login, user_iter * user)
+int U
sersImpl
::FindByNameNonLock(const std::string & login, user_iter * user)
{
const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
if (iter == loginIndex.end())
{
const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
if (iter == loginIndex.end())
@@
-85,7
+70,7
@@
if (user)
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL
::FindByNameNonLock(const std::string & login, const_user_iter * user) const
+int U
sersImpl
::FindByNameNonLock(const std::string & login, const_user_iter * user) const
{
const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
if (iter == loginIndex.end())
{
const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
if (iter == loginIndex.end())
@@
-95,9
+80,9
@@
if (user)
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL::FindByName(const std::string & login, USER_PTR
* user)
+int U
sersImpl::FindByName(const std::string & login, UserPtr
* user)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
user_iter u;
if (FindByNameNonLock(login, &u))
return -1;
user_iter u;
if (FindByNameNonLock(login, &u))
return -1;
@@
-105,9
+90,9
@@
if (FindByNameNonLock(login, &u))
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL::FindByName(const std::string & login, CONST_USER_PTR
* user) const
+int U
sersImpl::FindByName(const std::string & login, ConstUserPtr
* user) const
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
const_user_iter u;
if (FindByNameNonLock(login, &u))
return -1;
const_user_iter u;
if (FindByNameNonLock(login, &u))
return -1;
@@
-115,66
+100,43
@@
if (FindByNameNonLock(login, &u))
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL
::Exists(const std::string & login) const
+bool U
sersImpl
::Exists(const std::string & login) const
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
return iter != loginIndex.end();
}
//-----------------------------------------------------------------------------
const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
return iter != loginIndex.end();
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL
::TariffInUse(const std::string & tariffName) const
+bool U
sersImpl
::TariffInUse(const std::string & tariffName) const
{
{
-
STG_LOCKER lock(&
mutex);
-std::list<U
SER_IMPL
>::const_iterator iter;
+
std::lock_guard<std::mutex> lock(m_
mutex);
+std::list<U
serImpl
>::const_iterator iter;
iter = users.begin();
while (iter != users.end())
{
iter = users.begin();
while (iter != users.end())
{
- if (iter->GetPropert
y
().tariffName.Get() == tariffName)
+ if (iter->GetPropert
ies
().tariffName.Get() == tariffName)
return true;
++iter;
}
return false;
}
//-----------------------------------------------------------------------------
return true;
++iter;
}
return false;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL::Add(const std::string & login, const ADMIN
* admin)
+int U
sersImpl::Add(const std::string & login, const Admin
* admin)
{
{
-
STG_LOCKER lock(&
mutex);
-const
PRIV * priv = admin->GetP
riv();
+
std::lock_guard<std::mutex> lock(m_
mutex);
+const
auto& priv = admin->p
riv();
-if (!priv
->
userAddDel)
+if (!priv
.
userAddDel)
{
WriteServLog("%s tried to add user \'%s\'. Access denied.",
{
WriteServLog("%s tried to add user \'%s\'. Access denied.",
- admin->GetLogStr().c_str(), login.c_str());
- /*errorStr = "Admin \'" + admin->GetLogin() +
- "\': tried to add user \'" + ud->login + "\'. Access denied.";*/
+ admin->logStr().c_str(), login.c_str());
return -1;
}
return -1;
}
-//////
if (store->AddUser(login))
if (store->AddUser(login))
- {
- //TODO
- //WriteServLog("Admin \'%s\': tried to add user \'%s\'. Access denied.",
- // admin->GetLogin().c_str(), ud->login.c_str());
return -1;
return -1;
- }
-//////
-USER_IMPL u(settings, store, tariffs, sysAdmin, this, m_services);
-
-/*struct tm * tms;
-time_t t = stgTime;
-
-tms = localtime(&t);
-
-tms->tm_hour = 0;
-tms->tm_min = 0;
-tms->tm_sec = 0;
-
-if (settings->GetDayResetTraff() > tms->tm_mday)
- tms->tm_mon -= 1;
-
-tms->tm_mday = settings->GetDayResetTraff();*/
+UserImpl u(settings, store, tariffs, &sysAdmin, this, m_services);
u.SetLogin(login);
u.SetLogin(login);
@@
-184,7
+146,7
@@
u.WriteConf();
u.WriteStat();
WriteServLog("%s User \'%s\' added.",
u.WriteStat();
WriteServLog("%s User \'%s\' added.",
-
admin->GetL
ogStr().c_str(), login.c_str());
+
admin->l
ogStr().c_str(), login.c_str());
u.OnAdd();
u.OnAdd();
@@
-194,7
+156,7
@@
AddUserIntoIndexes(users.begin());
{
// Fire all "on add" notifiers
{
// Fire all "on add" notifiers
- std::set<N
OTIFIER_BASE<USER_PTR
> *>::iterator ni = onAddNotifiers.begin();
+ std::set<N
otifierBase<UserPtr
> *>::iterator ni = onAddNotifiers.begin();
while (ni != onAddNotifiers.end())
{
(*ni)->Notify(&users.front());
while (ni != onAddNotifiers.end())
{
(*ni)->Notify(&users.front());
@@
-204,7
+166,7
@@
AddUserIntoIndexes(users.begin());
{
// Fire all "on add" implementation notifiers
{
// Fire all "on add" implementation notifiers
- std::set<N
OTIFIER_BASE<USER_IMPL_PTR
> *>::iterator ni = onAddNotifiersImpl.begin();
+ std::set<N
otifierBase<UserImplPtr
> *>::iterator ni = onAddNotifiersImpl.begin();
while (ni != onAddNotifiersImpl.end())
{
(*ni)->Notify(&users.front());
while (ni != onAddNotifiersImpl.end())
{
(*ni)->Notify(&users.front());
@@
-215,26
+177,26
@@
AddUserIntoIndexes(users.begin());
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::Del(const std::string & login, const ADMIN
* admin)
+void U
sersImpl::Del(const std::string & login, const Admin
* admin)
{
{
-const
PRIV * priv = admin->GetP
riv();
+const
auto& priv = admin->p
riv();
user_iter u;
user_iter u;
-if (!priv
->
userAddDel)
+if (!priv
.
userAddDel)
{
WriteServLog("%s tried to remove user \'%s\'. Access denied.",
{
WriteServLog("%s tried to remove user \'%s\'. Access denied.",
-
admin->GetL
ogStr().c_str(), login.c_str());
+
admin->l
ogStr().c_str(), login.c_str());
return;
}
{
return;
}
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
if (FindByNameNonLock(login, &u))
{
WriteServLog("%s tried to delete user \'%s\': not found.",
if (FindByNameNonLock(login, &u))
{
WriteServLog("%s tried to delete user \'%s\': not found.",
- admin->
GetL
ogStr().c_str(),
+ admin->
l
ogStr().c_str(),
login.c_str());
return;
}
login.c_str());
return;
}
@@
-243,7
+205,7
@@
if (!priv->userAddDel)
}
{
}
{
- std::set<N
OTIFIER_BASE<USER_PTR
> *>::iterator ni = onDelNotifiers.begin();
+ std::set<N
otifierBase<UserPtr
> *>::iterator ni = onDelNotifiers.begin();
while (ni != onDelNotifiers.end())
{
(*ni)->Notify(&(*u));
while (ni != onDelNotifiers.end())
{
(*ni)->Notify(&(*u));
@@
-252,7
+214,7
@@
if (!priv->userAddDel)
}
{
}
{
- std::set<N
OTIFIER_BASE<USER_IMPL_PTR
> *>::iterator ni = onDelNotifiersImpl.begin();
+ std::set<N
otifierBase<UserImplPtr
> *>::iterator ni = onDelNotifiersImpl.begin();
while (ni != onDelNotifiersImpl.end())
{
(*ni)->Notify(&(*u));
while (ni != onDelNotifiersImpl.end())
{
(*ni)->Notify(&(*u));
@@
-261,7
+223,7
@@
if (!priv->userAddDel)
}
{
}
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
u->OnDelete();
u->OnDelete();
@@
-273,16
+235,16
@@
if (!priv->userAddDel)
DelUserFromIndexes(u);
WriteServLog("%s User \'%s\' deleted.",
DelUserFromIndexes(u);
WriteServLog("%s User \'%s\' deleted.",
-
admin->GetL
ogStr().c_str(), login.c_str());
+
admin->l
ogStr().c_str(), login.c_str());
}
}
//-----------------------------------------------------------------------------
}
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL
::Authorize(const std::string & login, uint32_t ip,
- uint32_t enabledDirs, const A
UTH
* auth)
+bool U
sersImpl
::Authorize(const std::string & login, uint32_t ip,
+ uint32_t enabledDirs, const A
uth
* auth)
{
user_iter iter;
{
user_iter iter;
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
if (FindByNameNonLock(login, &iter))
{
WriteServLog("Attempt to authorize non-existant user '%s'", login.c_str());
if (FindByNameNonLock(login, &iter))
{
WriteServLog("Attempt to authorize non-existant user '%s'", login.c_str());
@@
-310,12
+272,12
@@
AddToIPIdx(iter);
return true;
}
//-----------------------------------------------------------------------------
return true;
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL
::Unauthorize(const std::string & login,
- const A
UTH
* auth,
+bool U
sersImpl
::Unauthorize(const std::string & login,
+ const A
uth
* auth,
const std::string & reason)
{
user_iter iter;
const std::string & reason)
{
user_iter iter;
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
if (FindByNameNonLock(login, &iter))
{
WriteServLog("Attempt to unauthorize non-existant user '%s'", login.c_str());
if (FindByNameNonLock(login, &iter))
{
WriteServLog("Attempt to unauthorize non-existant user '%s'", login.c_str());
@@
-333,7
+295,7
@@
if (!iter->GetAuthorized())
return true;
}
//-----------------------------------------------------------------------------
return true;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL
::ReadUsers()
+int U
sersImpl
::ReadUsers()
{
std::vector<std::string> usersList;
usersList.clear();
{
std::vector<std::string> usersList;
usersList.clear();
@@
-348,7
+310,7
@@
user_iter ui;
unsigned errors = 0;
for (unsigned int i = 0; i < usersList.size(); i++)
{
unsigned errors = 0;
for (unsigned int i = 0; i < usersList.size(); i++)
{
- U
SER_IMPL u(settings, store, tariffs,
sysAdmin, this, m_services);
+ U
serImpl u(settings, store, tariffs, &
sysAdmin, this, m_services);
u.SetLogin(usersList[i]);
users.push_front(u);
u.SetLogin(usersList[i]);
users.push_front(u);
@@
-379,14
+341,13
@@
if (errors > 0)
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-void
* USERS_IMPL::Run(void * d
)
+void
UsersImpl::Run(std::stop_token token
)
{
sigset_t signalSet;
sigfillset(&signalSet);
pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
printfd(__FILE__, "=====================| pid: %d |===================== \n", getpid());
{
sigset_t signalSet;
sigfillset(&signalSet);
pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
printfd(__FILE__, "=====================| pid: %d |===================== \n", getpid());
-USERS_IMPL * us = static_cast<USERS_IMPL *>(d);
struct tm t;
time_t tt = stgTime;
struct tm t;
time_t tt = stgTime;
@@
-398,16
+359,16
@@
int day = t.tm_mday;
printfd(__FILE__,"Day = %d Min = %d\n", day, min);
time_t touchTime = stgTime - MONITOR_TIME_DELAY_SEC;
printfd(__FILE__,"Day = %d Min = %d\n", day, min);
time_t touchTime = stgTime - MONITOR_TIME_DELAY_SEC;
-std::string monFile =
us->
settings->GetMonitorDir() + "/users_r";
-printfd(__FILE__, "Monitor=%d file USERS %s\n",
us->
settings->GetMonitoring(), monFile.c_str());
+std::string monFile = settings->GetMonitorDir() + "/users_r";
+printfd(__FILE__, "Monitor=%d file USERS %s\n", settings->GetMonitoring(), monFile.c_str());
-
us->
isRunning = true;
-while (
us->nonstop
)
+isRunning = true;
+while (
!token.stop_requested()
)
{
//printfd(__FILE__,"New Minute. old = %02d current = %02d\n", min, t->tm_min);
//printfd(__FILE__,"New Day. old = %2d current = %2d\n", day, t->tm_mday);
{
//printfd(__FILE__,"New Minute. old = %02d current = %02d\n", min, t->tm_min);
//printfd(__FILE__,"New Day. old = %2d current = %2d\n", day, t->tm_mday);
- for_each(us
->users.begin(), us->users.end(), std::mem_fun_ref(&USER_IMPL::Run)
);
+ for_each(us
ers.begin(), users.end(), [](auto& user){ user.Run(); }
);
tt = stgTime;
localtime_r(&tt, &t);
tt = stgTime;
localtime_r(&tt, &t);
@@
-418,7
+379,7
@@
while (us->nonstop)
printfd(__FILE__,"New Minute. old = %d current = %d\n", min, t.tm_min);
min = t.tm_min;
printfd(__FILE__,"New Minute. old = %d current = %d\n", min, t.tm_min);
min = t.tm_min;
-
us->
NewMinute(t);
+ NewMinute(t);
}
if (day != t.tm_mday)
}
if (day != t.tm_mday)
@@
-426,39
+387,38
@@
while (us->nonstop)
printfd(__FILE__,"Sec = %d\n", stgTime);
printfd(__FILE__,"New Day. old = %d current = %d\n", day, t.tm_mday);
day = t.tm_mday;
printfd(__FILE__,"Sec = %d\n", stgTime);
printfd(__FILE__,"New Day. old = %d current = %d\n", day, t.tm_mday);
day = t.tm_mday;
-
us->
NewDay(t);
+ NewDay(t);
}
}
- if (
us->
settings->GetMonitoring() && (touchTime + MONITOR_TIME_DELAY_SEC <= stgTime))
+ if (settings->GetMonitoring() && (touchTime + MONITOR_TIME_DELAY_SEC <= stgTime))
{
//printfd(__FILE__, "Monitor=%d file TRAFFCOUNTER %s\n", tc->monitoring, monFile.c_str());
touchTime = stgTime;
{
//printfd(__FILE__, "Monitor=%d file TRAFFCOUNTER %s\n", tc->monitoring, monFile.c_str());
touchTime = stgTime;
- TouchFile(monFile
.c_str()
);
+ TouchFile(monFile);
}
stgUsleep(100000);
}
stgUsleep(100000);
- }
//while (us->nonstop)
+ }
-std::list<USER_TO_DEL>::iterator iter(us
->us
ersToDelete.begin());
-while (iter != us
->us
ersToDelete.end())
+std::list<USER_TO_DEL>::iterator iter(usersToDelete.begin());
+while (iter != usersToDelete.end())
{
iter->delTime -= 2 * userDeleteDelayTime;
++iter;
}
{
iter->delTime -= 2 * userDeleteDelayTime;
++iter;
}
-
us->
RealDelUser();
+RealDelUser();
-
us->
isRunning = false;
+isRunning = false;
-return NULL;
}
//-----------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::NewMinute(const struct tm & t)
+void U
sersImpl
::NewMinute(const struct tm & t)
{
//Write traff, reset session traff. Fake disconnect-connect
if (t.tm_hour == 23 && t.tm_min == 59)
{
printfd(__FILE__,"MidnightResetSessionStat\n");
{
//Write traff, reset session traff. Fake disconnect-connect
if (t.tm_hour == 23 && t.tm_min == 59)
{
printfd(__FILE__,"MidnightResetSessionStat\n");
- for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::MidnightResetSessionStat)
);
+ for_each(users.begin(), users.end(),
[](auto& user){ user.MidnightResetSessionStat(); }
);
}
if (TimeToWriteDetailStat(t))
}
if (TimeToWriteDetailStat(t))
@@
-467,21
+427,21
@@
if (TimeToWriteDetailStat(t))
int usersCnt = 0;
// ðÉÛÅÍ ÀÚÅÒÏ× ÞÁÓÔÑÍÉ. ÷ ÐÅÒÅÒÙ×ÁÈ ×ÙÚÙ×ÁÅÍ USER::Run
int usersCnt = 0;
// ðÉÛÅÍ ÀÚÅÒÏ× ÞÁÓÔÑÍÉ. ÷ ÐÅÒÅÒÙ×ÁÈ ×ÙÚÙ×ÁÅÍ USER::Run
- std::list<U
SER_IMPL
>::iterator usr = users.begin();
+ std::list<U
serImpl
>::iterator usr = users.begin();
while (usr != users.end())
{
usersCnt++;
usr->WriteDetailStat();
++usr;
if (usersCnt % 10 == 0)
while (usr != users.end())
{
usersCnt++;
usr->WriteDetailStat();
++usr;
if (usersCnt % 10 == 0)
- for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::Run)
);
+ for_each(users.begin(), users.end(),
[](auto& user){ user.Run(); }
);
}
}
RealDelUser();
}
//-----------------------------------------------------------------------------
}
}
RealDelUser();
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::NewDay(const struct tm & t)
+void U
sersImpl
::NewDay(const struct tm & t)
{
struct tm t1;
time_t tt = stgTime;
{
struct tm t1;
time_t tt = stgTime;
@@
-505,19
+465,19
@@
if (!settings->GetDayFeeIsLastDay())
if (settings->GetSpreadFee())
{
printfd(__FILE__, "Spread DayFee\n");
if (settings->GetSpreadFee())
{
printfd(__FILE__, "Spread DayFee\n");
- for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::ProcessDayFeeSpread)
);
+ for_each(users.begin(), users.end(),
[](auto& user){ user.ProcessDayFeeSpread(); }
);
}
else
{
if (t.tm_mday == dayFee)
{
printfd(__FILE__, "DayFee\n");
}
else
{
if (t.tm_mday == dayFee)
{
printfd(__FILE__, "DayFee\n");
- for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::ProcessDayFee)
);
+ for_each(users.begin(), users.end(),
[](auto& user){ user.ProcessDayFee(); }
);
}
}
}
}
-std::for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::ProcessDailyFee)
);
-std::for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::ProcessServices)
);
+std::for_each(users.begin(), users.end(),
[](auto& user){ user.ProcessDailyFee(); }
);
+std::for_each(users.begin(), users.end(),
[](auto& user){ user.ProcessServices(); }
);
if (settings->GetDayFeeIsLastDay())
{
if (settings->GetDayFeeIsLastDay())
{
@@
-526,7
+486,7
@@
if (settings->GetDayFeeIsLastDay())
}
}
//-----------------------------------------------------------------------------
}
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::DayResetTraff(const struct tm & t1)
+void U
sersImpl
::DayResetTraff(const struct tm & t1)
{
int dayResetTraff = settings->GetDayResetTraff();
if (dayResetTraff == 0)
{
int dayResetTraff = settings->GetDayResetTraff();
if (dayResetTraff == 0)
@@
-534,12
+494,12
@@
if (dayResetTraff == 0)
if (t1.tm_mday == dayResetTraff)
{
printfd(__FILE__, "ResetTraff\n");
if (t1.tm_mday == dayResetTraff)
{
printfd(__FILE__, "ResetTraff\n");
- for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::ProcessNewMonth)
);
- //for_each(users.begin(), users.end(), mem_fun_ref(&U
SER_IMPL
::SetPrepaidTraff));
+ for_each(users.begin(), users.end(),
[](auto& user){ user.ProcessNewMonth(); }
);
+ //for_each(users.begin(), users.end(), mem_fun_ref(&U
serImpl
::SetPrepaidTraff));
}
}
//-----------------------------------------------------------------------------
}
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL
::Start()
+int U
sersImpl
::Start()
{
if (ReadUsers())
{
{
if (ReadUsers())
{
@@
-547,26
+507,15
@@
if (ReadUsers())
return -1;
}
return -1;
}
-nonstop = true;
-if (pthread_create(&thread, NULL, Run, this))
- {
- WriteServLog("USERS: Error: Cannot start thread!");
- return -1;
- }
+m_thread = std::jthread([this](auto token){ Run(token); });
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL
::Stop()
+int U
sersImpl
::Stop()
{
printfd(__FILE__, "USERS::Stop()\n");
{
printfd(__FILE__, "USERS::Stop()\n");
-if (!isRunning)
- {
- //printfd(__FILE__, "Alredy stopped\n");
- return 0;
- }
-
-nonstop = false;
+m_thread.request_stop();
//5 seconds to thread stops itself
struct timespec ts = {0, 200000000};
//5 seconds to thread stops itself
struct timespec ts = {0, 200000000};
@@
-581,36
+530,32
@@
for (size_t i = 0; i < 25 * (users.size() / 50 + 1); i++)
//after 5 seconds waiting thread still running. now kill it
if (isRunning)
{
//after 5 seconds waiting thread still running. now kill it
if (isRunning)
{
- printfd(__FILE__, "
kill
USERS thread.\n");
+ printfd(__FILE__, "
Detach
USERS thread.\n");
//TODO pthread_cancel()
//TODO pthread_cancel()
- if (pthread_kill(thread, SIGINT))
- {
- //errorStr = "Cannot kill USERS thread.";
- //printfd(__FILE__, "Cannot kill USERS thread.\n");
- //return 0;
- }
- printfd(__FILE__, "USERS killed\n");
+ m_thread.detach();
}
}
+else
+ m_thread.join();
printfd(__FILE__, "Before USERS::Run()\n");
printfd(__FILE__, "Before USERS::Run()\n");
-for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::Run)
);
+for_each(users.begin(), users.end(),
[](auto& user){ user.Run(); }
);
// 'cause bind2st accepts only constant first param
// 'cause bind2st accepts only constant first param
-for (std::list<U
SER_IMPL
>::iterator it = users.begin();
+for (std::list<U
serImpl
>::iterator it = users.begin();
it != users.end();
++it)
it->WriteDetailStat(true);
it != users.end();
++it)
it->WriteDetailStat(true);
-for_each(users.begin(), users.end(),
std::mem_fun_ref(&USER_IMPL::WriteStat)
);
-//for_each(users.begin(), users.end(), mem_fun_ref(&U
SER_IMPL
::WriteConf));
+for_each(users.begin(), users.end(),
[](auto& user){ user.WriteStat(); }
);
+//for_each(users.begin(), users.end(), mem_fun_ref(&U
serImpl
::WriteConf));
printfd(__FILE__, "USERS::Stop()\n");
return 0;
}
//-----------------------------------------------------------------------------
printfd(__FILE__, "USERS::Stop()\n");
return 0;
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::RealDelUser()
+void U
sersImpl
::RealDelUser()
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
printfd(__FILE__, "RealDelUser() users to del: %d\n", usersToDelete.size());
printfd(__FILE__, "RealDelUser() users to del: %d\n", usersToDelete.size());
@@
-637,7
+582,7
@@
while (iter != usersToDelete.end())
return;
}
//-----------------------------------------------------------------------------
return;
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::AddToIPIdx(user_iter user)
+void U
sersImpl
::AddToIPIdx(user_iter user)
{
printfd(__FILE__, "USERS: Add IP Idx\n");
uint32_t ip = user->GetCurrIP();
{
printfd(__FILE__, "USERS: Add IP Idx\n");
uint32_t ip = user->GetCurrIP();
@@
-645,7
+590,7
@@
uint32_t ip = user->GetCurrIP();
if (!ip)
return; // User has disconnected
if (!ip)
return; // User has disconnected
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
const std::map<uint32_t, user_iter>::iterator it(
ipIndex.lower_bound(ip)
const std::map<uint32_t, user_iter>::iterator it(
ipIndex.lower_bound(ip)
@@
-656,12
+601,12
@@
assert((it == ipIndex.end() || it->first != ip) && "User is not in index");
ipIndex.insert(it, std::make_pair(ip, user));
}
//-----------------------------------------------------------------------------
ipIndex.insert(it, std::make_pair(ip, user));
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::DelFromIPIdx(uint32_t ip)
+void U
sersImpl
::DelFromIPIdx(uint32_t ip)
{
printfd(__FILE__, "USERS: Del IP Idx\n");
assert(ip && "User has non-null ip");
{
printfd(__FILE__, "USERS: Del IP Idx\n");
assert(ip && "User has non-null ip");
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
const std::map<uint32_t, user_iter>::iterator it(
ipIndex.find(ip)
const std::map<uint32_t, user_iter>::iterator it(
ipIndex.find(ip)
@@
-673,7
+618,7
@@
if (it == ipIndex.end())
ipIndex.erase(it);
}
//-----------------------------------------------------------------------------
ipIndex.erase(it);
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL
::FindByIPIdx(uint32_t ip, user_iter & iter) const
+bool U
sersImpl
::FindByIPIdx(uint32_t ip, user_iter & iter) const
{
std::map<uint32_t, user_iter>::const_iterator it(ipIndex.find(ip));
if (it == ipIndex.end())
{
std::map<uint32_t, user_iter>::const_iterator it(ipIndex.find(ip));
if (it == ipIndex.end())
@@
-682,9
+627,9
@@
iter = it->second;
return true;
}
//-----------------------------------------------------------------------------
return true;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL::FindByIPIdx(uint32_t ip, USER_PTR
* usr) const
+int U
sersImpl::FindByIPIdx(uint32_t ip, UserPtr
* usr) const
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
user_iter iter;
if (FindByIPIdx(ip, iter))
user_iter iter;
if (FindByIPIdx(ip, iter))
@@
-696,9
+641,9
@@
if (FindByIPIdx(ip, iter))
return -1;
}
//-----------------------------------------------------------------------------
return -1;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL::FindByIPIdx(uint32_t ip, USER_IMPL
** usr) const
+int U
sersImpl::FindByIPIdx(uint32_t ip, UserImpl
** usr) const
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
user_iter iter;
if (FindByIPIdx(ip, iter))
user_iter iter;
if (FindByIPIdx(ip, iter))
@@
-710,25
+655,25
@@
if (FindByIPIdx(ip, iter))
return -1;
}
//-----------------------------------------------------------------------------
return -1;
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL
::IsIPInIndex(uint32_t ip) const
+bool U
sersImpl
::IsIPInIndex(uint32_t ip) const
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
std::map<uint32_t, user_iter>::const_iterator it(ipIndex.find(ip));
return it != ipIndex.end();
}
//-----------------------------------------------------------------------------
std::map<uint32_t, user_iter>::const_iterator it(ipIndex.find(ip));
return it != ipIndex.end();
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL::IsIPInUse(uint32_t ip, const std::string & login, CONST_USER_PTR
* user) const
+bool U
sersImpl::IsIPInUse(uint32_t ip, const std::string & login, ConstUserPtr
* user) const
{
{
-
STG_LOCKER lock(&
mutex);
-std::list<U
SER_IMPL
>::const_iterator iter;
+
std::lock_guard<std::mutex> lock(m_
mutex);
+std::list<U
serImpl
>::const_iterator iter;
iter = users.begin();
while (iter != users.end())
{
if (iter->GetLogin() != login &&
iter = users.begin();
while (iter != users.end())
{
if (iter->GetLogin() != login &&
- !iter->GetPropert
y().ips.Get().I
sAnyIP() &&
- iter->GetPropert
y().ips.Get().IsIPInIPS
(ip))
+ !iter->GetPropert
ies().ips.Get().i
sAnyIP() &&
+ iter->GetPropert
ies().ips.Get().find
(ip))
{
if (user != NULL)
*user = &(*iter);
{
if (user != NULL)
*user = &(*iter);
@@
-739,74
+684,74
@@
while (iter != users.end())
return false;
}
//-----------------------------------------------------------------------------
return false;
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::AddNotifierUserAdd(NOTIFIER_BASE<USER_PTR
> * n)
+void U
sersImpl::AddNotifierUserAdd(NotifierBase<UserPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onAddNotifiers.insert(n);
}
//-----------------------------------------------------------------------------
onAddNotifiers.insert(n);
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::DelNotifierUserAdd(NOTIFIER_BASE<USER_PTR
> * n)
+void U
sersImpl::DelNotifierUserAdd(NotifierBase<UserPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onAddNotifiers.erase(n);
}
//-----------------------------------------------------------------------------
onAddNotifiers.erase(n);
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::AddNotifierUserDel(NOTIFIER_BASE<USER_PTR
> * n)
+void U
sersImpl::AddNotifierUserDel(NotifierBase<UserPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onDelNotifiers.insert(n);
}
//-----------------------------------------------------------------------------
onDelNotifiers.insert(n);
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::DelNotifierUserDel(NOTIFIER_BASE<USER_PTR
> * n)
+void U
sersImpl::DelNotifierUserDel(NotifierBase<UserPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onDelNotifiers.erase(n);
}
//-----------------------------------------------------------------------------
onDelNotifiers.erase(n);
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::AddNotifierUserAdd(NOTIFIER_BASE<USER_IMPL_PTR
> * n)
+void U
sersImpl::AddNotifierUserAdd(NotifierBase<UserImplPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onAddNotifiersImpl.insert(n);
}
//-----------------------------------------------------------------------------
onAddNotifiersImpl.insert(n);
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::DelNotifierUserAdd(NOTIFIER_BASE<USER_IMPL_PTR
> * n)
+void U
sersImpl::DelNotifierUserAdd(NotifierBase<UserImplPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onAddNotifiersImpl.erase(n);
}
//-----------------------------------------------------------------------------
onAddNotifiersImpl.erase(n);
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::AddNotifierUserDel(NOTIFIER_BASE<USER_IMPL_PTR
> * n)
+void U
sersImpl::AddNotifierUserDel(NotifierBase<UserImplPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onDelNotifiersImpl.insert(n);
}
//-----------------------------------------------------------------------------
onDelNotifiersImpl.insert(n);
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL::DelNotifierUserDel(NOTIFIER_BASE<USER_IMPL_PTR
> * n)
+void U
sersImpl::DelNotifierUserDel(NotifierBase<UserImplPtr
> * n)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
onDelNotifiersImpl.erase(n);
}
//-----------------------------------------------------------------------------
onDelNotifiersImpl.erase(n);
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL
::OpenSearch()
+int U
sersImpl
::OpenSearch()
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
handle++;
searchDescriptors[handle] = users.begin();
return handle;
}
//-----------------------------------------------------------------------------
handle++;
searchDescriptors[handle] = users.begin();
return handle;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL::SearchNext(int h, USER_PTR
* user)
+int U
sersImpl::SearchNext(int h, UserPtr
* user)
{
{
- U
SER_IMPL
* ptr = NULL;
+ U
serImpl
* ptr = NULL;
if (SearchNext(h, &ptr))
return -1;
*user = ptr;
return 0;
}
//-----------------------------------------------------------------------------
if (SearchNext(h, &ptr))
return -1;
*user = ptr;
return 0;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL::SearchNext(int h, USER_IMPL
** user)
+int U
sersImpl::SearchNext(int h, UserImpl
** user)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
if (searchDescriptors.find(h) == searchDescriptors.end())
{
if (searchDescriptors.find(h) == searchDescriptors.end())
{
@@
-833,9
+778,9
@@
while (searchDescriptors[h]->GetDeleted())
return 0;
}
//-----------------------------------------------------------------------------
return 0;
}
//-----------------------------------------------------------------------------
-int U
SERS_IMPL
::CloseSearch(int h)
+int U
sersImpl
::CloseSearch(int h)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
if (searchDescriptors.find(h) != searchDescriptors.end())
{
searchDescriptors.erase(searchDescriptors.find(h));
if (searchDescriptors.find(h) != searchDescriptors.end())
{
searchDescriptors.erase(searchDescriptors.find(h));
@@
-846,19
+791,19
@@
WriteServLog("USERS. Incorrect search handle.");
return -1;
}
//-----------------------------------------------------------------------------
return -1;
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::AddUserIntoIndexes(user_iter user)
+void U
sersImpl
::AddUserIntoIndexes(user_iter user)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
loginIndex.insert(make_pair(user->GetLogin(), user));
}
//-----------------------------------------------------------------------------
loginIndex.insert(make_pair(user->GetLogin(), user));
}
//-----------------------------------------------------------------------------
-void U
SERS_IMPL
::DelUserFromIndexes(user_iter user)
+void U
sersImpl
::DelUserFromIndexes(user_iter user)
{
{
-
STG_LOCKER lock(&
mutex);
+
std::lock_guard<std::mutex> lock(m_
mutex);
loginIndex.erase(user->GetLogin());
}
//-----------------------------------------------------------------------------
loginIndex.erase(user->GetLogin());
}
//-----------------------------------------------------------------------------
-bool U
SERS_IMPL
::TimeToWriteDetailStat(const struct tm & t)
+bool U
sersImpl
::TimeToWriteDetailStat(const struct tm & t)
{
int statTime = settings->GetDetailStatWritePeriod();
{
int statTime = settings->GetDetailStatWritePeriod();