]> git.stg.codes - stg.git/blob - projects/stargazer/users_impl.cpp
More std::jthread
[stg.git] / projects / stargazer / users_impl.cpp
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Date: 27.10.2002
19  */
20
21 /*
22  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
23  */
24
25 #include <pthread.h>
26
27 #include <csignal>
28 #include <cassert>
29 #include <algorithm>
30 #include <utility>
31 #include <string>
32 #include <vector>
33
34 #include "stg/settings.h"
35 #include "stg/common.h"
36
37 #include "users_impl.h"
38 #include "stg_timer.h"
39
40 extern volatile time_t stgTime;
41
42 using STG::UsersImpl;
43
44 //-----------------------------------------------------------------------------
45 UsersImpl::UsersImpl(SettingsImpl * s, Store * st,
46                     Tariffs * t, Services & svcs,
47                     const Admin& sa)
48     : settings(s),
49       tariffs(t),
50       m_services(svcs),
51       store(st),
52       sysAdmin(sa),
53       WriteServLog(Logger::get()),
54       isRunning(false),
55       handle(0)
56 {
57 }
58 //-----------------------------------------------------------------------------
59 UsersImpl::~UsersImpl()
60 {
61 }
62 //-----------------------------------------------------------------------------
63 int UsersImpl::FindByNameNonLock(const std::string & login, user_iter * user)
64 {
65 const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
66 if (iter == loginIndex.end())
67     return -1;
68 if (user)
69     *user = iter->second;
70 return 0;
71 }
72 //-----------------------------------------------------------------------------
73 int UsersImpl::FindByNameNonLock(const std::string & login, const_user_iter * user) const
74 {
75 const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
76 if (iter == loginIndex.end())
77     return -1;
78 if (user)
79     *user = iter->second;
80 return 0;
81 }
82 //-----------------------------------------------------------------------------
83 int UsersImpl::FindByName(const std::string & login, UserPtr * user)
84 {
85 std::lock_guard<std::mutex> lock(m_mutex);
86 user_iter u;
87 if (FindByNameNonLock(login, &u))
88     return -1;
89 *user = &(*u);
90 return 0;
91 }
92 //-----------------------------------------------------------------------------
93 int UsersImpl::FindByName(const std::string & login, ConstUserPtr * user) const
94 {
95 std::lock_guard<std::mutex> lock(m_mutex);
96 const_user_iter u;
97 if (FindByNameNonLock(login, &u))
98     return -1;
99 *user = &(*u);
100 return 0;
101 }
102 //-----------------------------------------------------------------------------
103 bool UsersImpl::Exists(const std::string & login) const
104 {
105 std::lock_guard<std::mutex> lock(m_mutex);
106 const std::map<std::string, user_iter>::const_iterator iter(loginIndex.find(login));
107 return iter != loginIndex.end();
108 }
109 //-----------------------------------------------------------------------------
110 bool UsersImpl::TariffInUse(const std::string & tariffName) const
111 {
112 std::lock_guard<std::mutex> lock(m_mutex);
113 std::list<UserImpl>::const_iterator iter;
114 iter = users.begin();
115 while (iter != users.end())
116     {
117     if (iter->GetProperties().tariffName.Get() == tariffName)
118         return true;
119     ++iter;
120     }
121 return false;
122 }
123 //-----------------------------------------------------------------------------
124 int UsersImpl::Add(const std::string & login, const Admin * admin)
125 {
126 std::lock_guard<std::mutex> lock(m_mutex);
127 const auto& priv = admin->priv();
128
129 if (!priv.userAddDel)
130     {
131     WriteServLog("%s tried to add user \'%s\'. Access denied.",
132                  admin->logStr().c_str(), login.c_str());
133     return -1;
134     }
135
136 if (store->AddUser(login))
137     return -1;
138
139 UserImpl u(settings, store, tariffs, &sysAdmin, this, m_services);
140
141 u.SetLogin(login);
142
143 u.SetPassiveTimeAsNewUser();
144
145 u.WriteConf();
146 u.WriteStat();
147
148 WriteServLog("%s User \'%s\' added.",
149              admin->logStr().c_str(), login.c_str());
150
151 u.OnAdd();
152
153 users.push_front(u);
154
155 AddUserIntoIndexes(users.begin());
156
157     {
158     // Fire all "on add" notifiers
159     std::set<NotifierBase<UserPtr> *>::iterator ni = onAddNotifiers.begin();
160     while (ni != onAddNotifiers.end())
161         {
162         (*ni)->Notify(&users.front());
163         ++ni;
164         }
165     }
166
167     {
168     // Fire all "on add" implementation notifiers
169     std::set<NotifierBase<UserImplPtr> *>::iterator ni = onAddNotifiersImpl.begin();
170     while (ni != onAddNotifiersImpl.end())
171         {
172         (*ni)->Notify(&users.front());
173         ++ni;
174         }
175     }
176
177 return 0;
178 }
179 //-----------------------------------------------------------------------------
180 void UsersImpl::Del(const std::string & login, const Admin * admin)
181 {
182 const auto& priv = admin->priv();
183 user_iter u;
184
185 if (!priv.userAddDel)
186     {
187     WriteServLog("%s tried to remove user \'%s\'. Access denied.",
188                  admin->logStr().c_str(), login.c_str());
189     return;
190     }
191
192
193     {
194     std::lock_guard<std::mutex> lock(m_mutex);
195
196     if (FindByNameNonLock(login, &u))
197         {
198         WriteServLog("%s tried to delete user \'%s\': not found.",
199                      admin->logStr().c_str(),
200                      login.c_str());
201         return;
202         }
203
204     u->SetDeleted();
205     }
206
207     {
208     std::set<NotifierBase<UserPtr> *>::iterator ni = onDelNotifiers.begin();
209     while (ni != onDelNotifiers.end())
210         {
211         (*ni)->Notify(&(*u));
212         ++ni;
213         }
214     }
215
216     {
217     std::set<NotifierBase<UserImplPtr> *>::iterator ni = onDelNotifiersImpl.begin();
218     while (ni != onDelNotifiersImpl.end())
219         {
220         (*ni)->Notify(&(*u));
221         ++ni;
222         }
223     }
224
225     {
226     std::lock_guard<std::mutex> lock(m_mutex);
227
228     u->OnDelete();
229
230     USER_TO_DEL utd;
231     utd.iter = u;
232     utd.delTime = stgTime;
233     usersToDelete.push_back(utd);
234
235     DelUserFromIndexes(u);
236
237     WriteServLog("%s User \'%s\' deleted.",
238                  admin->logStr().c_str(), login.c_str());
239
240     }
241 }
242 //-----------------------------------------------------------------------------
243 bool UsersImpl::Authorize(const std::string & login, uint32_t ip,
244                            uint32_t enabledDirs, const Auth * auth)
245 {
246 user_iter iter;
247 std::lock_guard<std::mutex> lock(m_mutex);
248 if (FindByNameNonLock(login, &iter))
249     {
250     WriteServLog("Attempt to authorize non-existant user '%s'", login.c_str());
251     return false;
252     }
253
254 if (FindByIPIdx(ip, iter))
255     {
256     if (iter->GetLogin() != login)
257         {
258         WriteServLog("Attempt to authorize user '%s' from ip %s which already occupied by '%s'",
259                      login.c_str(), inet_ntostring(ip).c_str(),
260                      iter->GetLogin().c_str());
261         return false;
262         }
263     if (iter->Authorize(ip, enabledDirs, auth))
264         return false;
265     return true;
266     }
267
268 if (iter->Authorize(ip, enabledDirs, auth))
269     return false;
270
271 AddToIPIdx(iter);
272 return true;
273 }
274 //-----------------------------------------------------------------------------
275 bool UsersImpl::Unauthorize(const std::string & login,
276                              const Auth * auth,
277                              const std::string & reason)
278 {
279 user_iter iter;
280 std::lock_guard<std::mutex> lock(m_mutex);
281 if (FindByNameNonLock(login, &iter))
282     {
283     WriteServLog("Attempt to unauthorize non-existant user '%s'", login.c_str());
284     printfd(__FILE__, "Attempt to unauthorize non-existant user '%s'", login.c_str());
285     return false;
286     }
287
288 uint32_t ip = iter->GetCurrIP();
289
290 iter->Unauthorize(auth, reason);
291
292 if (!iter->GetAuthorized())
293     DelFromIPIdx(ip);
294
295 return true;
296 }
297 //-----------------------------------------------------------------------------
298 int UsersImpl::ReadUsers()
299 {
300 std::vector<std::string> usersList;
301 usersList.clear();
302 if (store->GetUsersList(&usersList) < 0)
303     {
304     WriteServLog(store->GetStrError().c_str());
305     return -1;
306     }
307
308 user_iter ui;
309
310 unsigned errors = 0;
311 for (unsigned int i = 0; i < usersList.size(); i++)
312     {
313     UserImpl u(settings, store, tariffs, &sysAdmin, this, m_services);
314
315     u.SetLogin(usersList[i]);
316     users.push_front(u);
317     ui = users.begin();
318
319     AddUserIntoIndexes(ui);
320
321     if (settings->GetStopOnError())
322         {
323         if (ui->ReadConf() < 0)
324             return -1;
325
326         if (ui->ReadStat() < 0)
327             return -1;
328         }
329     else
330         {
331         if (ui->ReadConf() < 0)
332             errors++;
333
334         if (ui->ReadStat() < 0)
335             errors++;
336         }
337     }
338
339 if (errors > 0)
340     return -1;
341 return 0;
342 }
343 //-----------------------------------------------------------------------------
344 void UsersImpl::Run(std::stop_token token)
345 {
346 sigset_t signalSet;
347 sigfillset(&signalSet);
348 pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
349
350 printfd(__FILE__, "=====================| pid: %d |===================== \n", getpid());
351
352 struct tm t;
353 time_t tt = stgTime;
354 localtime_r(&tt, &t);
355
356 int min = t.tm_min;
357 int day = t.tm_mday;
358
359 printfd(__FILE__,"Day = %d Min = %d\n", day, min);
360
361 time_t touchTime = stgTime - MONITOR_TIME_DELAY_SEC;
362 std::string monFile = settings->GetMonitorDir() + "/users_r";
363 printfd(__FILE__, "Monitor=%d file USERS %s\n", settings->GetMonitoring(), monFile.c_str());
364
365 isRunning = true;
366 while (!token.stop_requested())
367     {
368     //printfd(__FILE__,"New Minute. old = %02d current = %02d\n", min, t->tm_min);
369     //printfd(__FILE__,"New Day.    old = %2d current = %2d\n", day, t->tm_mday);
370
371     for_each(users.begin(), users.end(), [](auto& user){ user.Run(); });
372
373     tt = stgTime;
374     localtime_r(&tt, &t);
375
376     if (min != t.tm_min)
377         {
378         printfd(__FILE__,"Sec = %d\n", stgTime);
379         printfd(__FILE__,"New Minute. old = %d current = %d\n", min, t.tm_min);
380         min = t.tm_min;
381
382         NewMinute(t);
383         }
384
385     if (day != t.tm_mday)
386         {
387         printfd(__FILE__,"Sec = %d\n", stgTime);
388         printfd(__FILE__,"New Day. old = %d current = %d\n", day, t.tm_mday);
389         day = t.tm_mday;
390         NewDay(t);
391         }
392
393     if (settings->GetMonitoring() && (touchTime + MONITOR_TIME_DELAY_SEC <= stgTime))
394         {
395         //printfd(__FILE__, "Monitor=%d file TRAFFCOUNTER %s\n", tc->monitoring, monFile.c_str());
396         touchTime = stgTime;
397         TouchFile(monFile);
398         }
399
400     stgUsleep(100000);
401     }
402
403 std::list<USER_TO_DEL>::iterator iter(usersToDelete.begin());
404 while (iter != usersToDelete.end())
405     {
406     iter->delTime -= 2 * userDeleteDelayTime;
407     ++iter;
408     }
409 RealDelUser();
410
411 isRunning = false;
412
413 }
414 //-----------------------------------------------------------------------------
415 void UsersImpl::NewMinute(const struct tm & t)
416 {
417 //Write traff, reset session traff. Fake disconnect-connect
418 if (t.tm_hour == 23 && t.tm_min == 59)
419     {
420     printfd(__FILE__,"MidnightResetSessionStat\n");
421     for_each(users.begin(), users.end(), [](auto& user){ user.MidnightResetSessionStat(); });
422     }
423
424 if (TimeToWriteDetailStat(t))
425     {
426     //printfd(__FILE__, "USER::WriteInetStat\n");
427     int usersCnt = 0;
428
429     // ðÉÛÅÍ ÀÚÅÒÏ× ÞÁÓÔÑÍÉ. ÷ ÐÅÒÅÒÙ×ÁÈ ×ÙÚÙ×ÁÅÍ USER::Run
430     std::list<UserImpl>::iterator usr = users.begin();
431     while (usr != users.end())
432         {
433         usersCnt++;
434         usr->WriteDetailStat();
435         ++usr;
436         if (usersCnt % 10 == 0)
437             for_each(users.begin(), users.end(), [](auto& user){ user.Run(); });
438         }
439     }
440
441 RealDelUser();
442 }
443 //-----------------------------------------------------------------------------
444 void UsersImpl::NewDay(const struct tm & t)
445 {
446 struct tm t1;
447 time_t tt = stgTime;
448 localtime_r(&tt, &t1);
449 int dayFee = settings->GetDayFee();
450
451 if (dayFee == 0)
452     dayFee = DaysInCurrentMonth();
453
454 printfd(__FILE__, "DayFee = %d\n", dayFee);
455 printfd(__FILE__, "Today = %d DayResetTraff = %d\n", t1.tm_mday, settings->GetDayResetTraff());
456 printfd(__FILE__, "DayFeeIsLastDay = %d\n", settings->GetDayFeeIsLastDay());
457
458 if (!settings->GetDayFeeIsLastDay())
459     {
460     printfd(__FILE__, "DayResetTraff - 1 -\n");
461     DayResetTraff(t1);
462     //printfd(__FILE__, "DayResetTraff - 1 - 1 -\n");
463     }
464
465 if (settings->GetSpreadFee())
466     {
467     printfd(__FILE__, "Spread DayFee\n");
468     for_each(users.begin(), users.end(), [](auto& user){ user.ProcessDayFeeSpread(); });
469     }
470 else
471     {
472     if (t.tm_mday == dayFee)
473         {
474         printfd(__FILE__, "DayFee\n");
475         for_each(users.begin(), users.end(), [](auto& user){ user.ProcessDayFee(); });
476         }
477     }
478
479 std::for_each(users.begin(), users.end(), [](auto& user){ user.ProcessDailyFee(); });
480 std::for_each(users.begin(), users.end(), [](auto& user){ user.ProcessServices(); });
481
482 if (settings->GetDayFeeIsLastDay())
483     {
484     printfd(__FILE__, "DayResetTraff - 2 -\n");
485     DayResetTraff(t1);
486     }
487 }
488 //-----------------------------------------------------------------------------
489 void UsersImpl::DayResetTraff(const struct tm & t1)
490 {
491 int dayResetTraff = settings->GetDayResetTraff();
492 if (dayResetTraff == 0)
493     dayResetTraff = DaysInCurrentMonth();
494 if (t1.tm_mday == dayResetTraff)
495     {
496     printfd(__FILE__, "ResetTraff\n");
497     for_each(users.begin(), users.end(), [](auto& user){ user.ProcessNewMonth(); });
498     //for_each(users.begin(), users.end(), mem_fun_ref(&UserImpl::SetPrepaidTraff));
499     }
500 }
501 //-----------------------------------------------------------------------------
502 int UsersImpl::Start()
503 {
504 if (ReadUsers())
505     {
506     WriteServLog("USERS: Error: Cannot read users!");
507     return -1;
508     }
509
510 m_thread = std::jthread([this](auto token){ Run(token); });
511 return 0;
512 }
513 //-----------------------------------------------------------------------------
514 int UsersImpl::Stop()
515 {
516 printfd(__FILE__, "USERS::Stop()\n");
517
518 m_thread.request_stop();
519
520 //5 seconds to thread stops itself
521 struct timespec ts = {0, 200000000};
522 for (size_t i = 0; i < 25 * (users.size() / 50 + 1); i++)
523     {
524     if (!isRunning)
525         break;
526
527     nanosleep(&ts, NULL);
528     }
529
530 //after 5 seconds waiting thread still running. now kill it
531 if (isRunning)
532     {
533     printfd(__FILE__, "Detach USERS thread.\n");
534     //TODO pthread_cancel()
535     m_thread.detach();
536     }
537 else
538     m_thread.join();
539
540 printfd(__FILE__, "Before USERS::Run()\n");
541 for_each(users.begin(), users.end(), [](auto& user){ user.Run(); });
542
543 // 'cause bind2st accepts only constant first param
544 for (std::list<UserImpl>::iterator it = users.begin();
545      it != users.end();
546      ++it)
547     it->WriteDetailStat(true);
548
549 for_each(users.begin(), users.end(), [](auto& user){ user.WriteStat(); });
550 //for_each(users.begin(), users.end(), mem_fun_ref(&UserImpl::WriteConf));
551
552 printfd(__FILE__, "USERS::Stop()\n");
553 return 0;
554 }
555 //-----------------------------------------------------------------------------
556 void UsersImpl::RealDelUser()
557 {
558 std::lock_guard<std::mutex> lock(m_mutex);
559
560 printfd(__FILE__, "RealDelUser() users to del: %d\n", usersToDelete.size());
561
562 std::list<USER_TO_DEL>::iterator iter;
563 iter = usersToDelete.begin();
564 while (iter != usersToDelete.end())
565     {
566     printfd(__FILE__, "RealDelUser() user=%s\n", iter->iter->GetLogin().c_str());
567     if (iter->delTime + userDeleteDelayTime < stgTime)
568         {
569         printfd(__FILE__, "RealDelUser() user=%s removed from DB\n", iter->iter->GetLogin().c_str());
570         if (store->DelUser(iter->iter->GetLogin()))
571             {
572             WriteServLog("Error removing user \'%s\' from database.", iter->iter->GetLogin().c_str());
573             }
574         users.erase(iter->iter);
575         usersToDelete.erase(iter++);
576         }
577     else
578         {
579         ++iter;
580         }
581     }
582 return;
583 }
584 //-----------------------------------------------------------------------------
585 void UsersImpl::AddToIPIdx(user_iter user)
586 {
587 printfd(__FILE__, "USERS: Add IP Idx\n");
588 uint32_t ip = user->GetCurrIP();
589 //assert(ip && "User has non-null ip");
590 if (!ip)
591     return; // User has disconnected
592
593 std::lock_guard<std::mutex> lock(m_mutex);
594
595 const std::map<uint32_t, user_iter>::iterator it(
596         ipIndex.lower_bound(ip)
597 );
598
599 assert((it == ipIndex.end() || it->first != ip) && "User is not in index");
600
601 ipIndex.insert(it, std::make_pair(ip, user));
602 }
603 //-----------------------------------------------------------------------------
604 void UsersImpl::DelFromIPIdx(uint32_t ip)
605 {
606 printfd(__FILE__, "USERS: Del IP Idx\n");
607 assert(ip && "User has non-null ip");
608
609 std::lock_guard<std::mutex> lock(m_mutex);
610
611 const std::map<uint32_t, user_iter>::iterator it(
612         ipIndex.find(ip)
613 );
614
615 if (it == ipIndex.end())
616     return;
617
618 ipIndex.erase(it);
619 }
620 //-----------------------------------------------------------------------------
621 bool UsersImpl::FindByIPIdx(uint32_t ip, user_iter & iter) const
622 {
623 std::map<uint32_t, user_iter>::const_iterator it(ipIndex.find(ip));
624 if (it == ipIndex.end())
625     return false;
626 iter = it->second;
627 return true;
628 }
629 //-----------------------------------------------------------------------------
630 int UsersImpl::FindByIPIdx(uint32_t ip, UserPtr * usr) const
631 {
632 std::lock_guard<std::mutex> lock(m_mutex);
633
634 user_iter iter;
635 if (FindByIPIdx(ip, iter))
636     {
637     *usr = &(*iter);
638     return 0;
639     }
640
641 return -1;
642 }
643 //-----------------------------------------------------------------------------
644 int UsersImpl::FindByIPIdx(uint32_t ip, UserImpl ** usr) const
645 {
646 std::lock_guard<std::mutex> lock(m_mutex);
647
648 user_iter iter;
649 if (FindByIPIdx(ip, iter))
650     {
651     *usr = &(*iter);
652     return 0;
653     }
654
655 return -1;
656 }
657 //-----------------------------------------------------------------------------
658 bool UsersImpl::IsIPInIndex(uint32_t ip) const
659 {
660 std::lock_guard<std::mutex> lock(m_mutex);
661
662 std::map<uint32_t, user_iter>::const_iterator it(ipIndex.find(ip));
663
664 return it != ipIndex.end();
665 }
666 //-----------------------------------------------------------------------------
667 bool UsersImpl::IsIPInUse(uint32_t ip, const std::string & login, ConstUserPtr * user) const
668 {
669 std::lock_guard<std::mutex> lock(m_mutex);
670 std::list<UserImpl>::const_iterator iter;
671 iter = users.begin();
672 while (iter != users.end())
673     {
674     if (iter->GetLogin() != login &&
675         !iter->GetProperties().ips.Get().isAnyIP() &&
676         iter->GetProperties().ips.Get().find(ip))
677         {
678         if (user != NULL)
679             *user = &(*iter);
680         return true;
681         }
682     ++iter;
683     }
684 return false;
685 }
686 //-----------------------------------------------------------------------------
687 void UsersImpl::AddNotifierUserAdd(NotifierBase<UserPtr> * n)
688 {
689 std::lock_guard<std::mutex> lock(m_mutex);
690 onAddNotifiers.insert(n);
691 }
692 //-----------------------------------------------------------------------------
693 void UsersImpl::DelNotifierUserAdd(NotifierBase<UserPtr> * n)
694 {
695 std::lock_guard<std::mutex> lock(m_mutex);
696 onAddNotifiers.erase(n);
697 }
698 //-----------------------------------------------------------------------------
699 void UsersImpl::AddNotifierUserDel(NotifierBase<UserPtr> * n)
700 {
701 std::lock_guard<std::mutex> lock(m_mutex);
702 onDelNotifiers.insert(n);
703 }
704 //-----------------------------------------------------------------------------
705 void UsersImpl::DelNotifierUserDel(NotifierBase<UserPtr> * n)
706 {
707 std::lock_guard<std::mutex> lock(m_mutex);
708 onDelNotifiers.erase(n);
709 }
710 //-----------------------------------------------------------------------------
711 void UsersImpl::AddNotifierUserAdd(NotifierBase<UserImplPtr> * n)
712 {
713 std::lock_guard<std::mutex> lock(m_mutex);
714 onAddNotifiersImpl.insert(n);
715 }
716 //-----------------------------------------------------------------------------
717 void UsersImpl::DelNotifierUserAdd(NotifierBase<UserImplPtr> * n)
718 {
719 std::lock_guard<std::mutex> lock(m_mutex);
720 onAddNotifiersImpl.erase(n);
721 }
722 //-----------------------------------------------------------------------------
723 void UsersImpl::AddNotifierUserDel(NotifierBase<UserImplPtr> * n)
724 {
725 std::lock_guard<std::mutex> lock(m_mutex);
726 onDelNotifiersImpl.insert(n);
727 }
728 //-----------------------------------------------------------------------------
729 void UsersImpl::DelNotifierUserDel(NotifierBase<UserImplPtr> * n)
730 {
731 std::lock_guard<std::mutex> lock(m_mutex);
732 onDelNotifiersImpl.erase(n);
733 }
734 //-----------------------------------------------------------------------------
735 int UsersImpl::OpenSearch()
736 {
737 std::lock_guard<std::mutex> lock(m_mutex);
738 handle++;
739 searchDescriptors[handle] = users.begin();
740 return handle;
741 }
742 //-----------------------------------------------------------------------------
743 int UsersImpl::SearchNext(int h, UserPtr * user)
744 {
745     UserImpl * ptr = NULL;
746     if (SearchNext(h, &ptr))
747         return -1;
748     *user = ptr;
749     return 0;
750 }
751 //-----------------------------------------------------------------------------
752 int UsersImpl::SearchNext(int h, UserImpl ** user)
753 {
754 std::lock_guard<std::mutex> lock(m_mutex);
755
756 if (searchDescriptors.find(h) == searchDescriptors.end())
757     {
758     WriteServLog("USERS. Incorrect search handle.");
759     return -1;
760     }
761
762 if (searchDescriptors[h] == users.end())
763     return -1;
764
765 while (searchDescriptors[h]->GetDeleted())
766     {
767     ++searchDescriptors[h];
768     if (searchDescriptors[h] == users.end())
769         {
770         return -1;
771         }
772     }
773
774 *user = &(*searchDescriptors[h]);
775
776 ++searchDescriptors[h];
777
778 return 0;
779 }
780 //-----------------------------------------------------------------------------
781 int UsersImpl::CloseSearch(int h)
782 {
783 std::lock_guard<std::mutex> lock(m_mutex);
784 if (searchDescriptors.find(h) != searchDescriptors.end())
785     {
786     searchDescriptors.erase(searchDescriptors.find(h));
787     return 0;
788     }
789
790 WriteServLog("USERS. Incorrect search handle.");
791 return -1;
792 }
793 //-----------------------------------------------------------------------------
794 void UsersImpl::AddUserIntoIndexes(user_iter user)
795 {
796 std::lock_guard<std::mutex> lock(m_mutex);
797 loginIndex.insert(make_pair(user->GetLogin(), user));
798 }
799 //-----------------------------------------------------------------------------
800 void UsersImpl::DelUserFromIndexes(user_iter user)
801 {
802 std::lock_guard<std::mutex> lock(m_mutex);
803 loginIndex.erase(user->GetLogin());
804 }
805 //-----------------------------------------------------------------------------
806 bool UsersImpl::TimeToWriteDetailStat(const struct tm & t)
807 {
808 int statTime = settings->GetDetailStatWritePeriod();
809
810 switch (statTime)
811     {
812     case dsPeriod_1:
813         if (t.tm_min == 0)
814             return true;
815         break;
816     case dsPeriod_1_2:
817         if (t.tm_min % 30 == 0)
818             return true;
819         break;
820     case dsPeriod_1_4:
821         if (t.tm_min % 15 == 0)
822             return true;
823         break;
824     case dsPeriod_1_6:
825         if (t.tm_min % 10 == 0)
826             return true;
827         break;
828     }
829 return false;
830 }