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