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