8 #include "stg/locker.h"
9 #include "stg/user_property.h"
10 #include "stg/plugin_creator.h"
13 PLUGIN_CREATOR<PING> pc;
14 //-----------------------------------------------------------------------------
15 //-----------------------------------------------------------------------------
16 //-----------------------------------------------------------------------------
19 return pc.GetPlugin();
21 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
24 // ëÌÁÓÓ ÄÌÑ ÐÏÉÓËÁ ÀÚÅÒÁ × ÓÐÉÓËÅ ÎÏÔÉÆÉËÁÔÏÒÏ×
25 template <typename varType>
26 class IS_CONTAINS_USER: public binary_function<varType, USER_PTR, bool>
29 IS_CONTAINS_USER(const USER_PTR & u) : user(u) {}
30 bool operator()(varType notifier) const
32 return notifier.GetUser() == user;
35 const USER_PTR & user;
37 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
40 int PING_SETTINGS::ParseSettings(const MODULE_SETTINGS & s)
43 vector<PARAM_VALUE>::const_iterator pvi;
45 pv.param = "PingDelay";
46 pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv);
47 if (pvi == s.moduleParams.end())
49 errorStr = "Parameter \'PingDelay\' not found.";
50 printfd(__FILE__, "Parameter 'PingDelay' not found\n");
53 if (ParseIntInRange(pvi->value[0], 5, 3600, &pingDelay))
55 errorStr = "Cannot parse parameter \'PingDelay\': " + errorStr;
56 printfd(__FILE__, "Canot parse parameter 'PingDelay'\n");
62 //-----------------------------------------------------------------------------
74 ChgCurrIPNotifierList(),
76 onAddUserNotifier(*this),
77 onDelUserNotifier(*this)
79 pthread_mutex_init(&mutex, NULL);
81 //-----------------------------------------------------------------------------
84 pthread_mutex_destroy(&mutex);
86 //-----------------------------------------------------------------------------
87 int PING::ParseSettings()
89 int ret = pingSettings.ParseSettings(settings);
91 errorStr = pingSettings.GetStrError();
94 //-----------------------------------------------------------------------------
99 users->AddNotifierUserAdd(&onAddUserNotifier);
100 users->AddNotifierUserDel(&onDelUserNotifier);
104 pinger.SetDelayTime(pingSettings.GetPingDelay());
107 if (pthread_create(&thread, NULL, Run, this))
109 errorStr = "Cannot start thread.";
110 printfd(__FILE__, "Cannot start thread\n");
116 //-----------------------------------------------------------------------------
119 STG_LOCKER lock(&mutex, __FILE__, __LINE__);
126 //5 seconds to thread stops itself
127 struct timespec ts = {0, 200000000};
128 for (int i = 0; i < 25; i++)
133 nanosleep(&ts, NULL);
136 users->DelNotifierUserAdd(&onAddUserNotifier);
137 users->DelNotifierUserDel(&onDelUserNotifier);
139 list<USER_PTR>::iterator users_iter;
140 users_iter = usersList.begin();
141 while (users_iter != usersList.end())
143 UnSetUserNotifiers(*users_iter);
152 //-----------------------------------------------------------------------------
153 bool PING::IsRunning()
157 //-----------------------------------------------------------------------------
158 void * PING::Run(void * d)
161 sigfillset(&signalSet);
162 pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
164 PING * ping = static_cast<PING *>(d);
165 ping->isRunning = true;
167 long delay = (10000000 * ping->pingSettings.GetPingDelay()) / 3 + 50000000;
169 while (ping->nonstop)
171 list<USER_PTR>::iterator iter = ping->usersList.begin();
173 STG_LOCKER lock(&ping->mutex, __FILE__, __LINE__);
174 while (iter != ping->usersList.end())
176 if ((*iter)->GetProperty().ips.ConstData().OnlyOneIP())
178 uint32_t ip = (*iter)->GetProperty().ips.ConstData()[0].ip;
180 if (ping->pinger.GetIPTime(ip, &t) == 0)
183 (*iter)->UpdatePingTime(t);
188 uint32_t ip = (*iter)->GetCurrIP();
192 if (ping->pinger.GetIPTime(ip, &t) == 0)
195 (*iter)->UpdatePingTime(t);
202 struct timespec ts = {delay / 1000000000, delay % 1000000000};
203 for (int i = 0; i < 100; i++)
207 nanosleep(&ts, NULL);
212 ping->isRunning = false;
215 //-----------------------------------------------------------------------------
216 void PING::SetUserNotifiers(USER_PTR u)
218 CHG_CURRIP_NOTIFIER_PING ChgCurrIPNotifier(*this, u);
219 CHG_IPS_NOTIFIER_PING ChgIPNotifier(*this, u);
221 ChgCurrIPNotifierList.push_front(ChgCurrIPNotifier);
222 ChgIPNotifierList.push_front(ChgIPNotifier);
224 u->AddCurrIPAfterNotifier(&(*ChgCurrIPNotifierList.begin()));
225 u->GetProperty().ips.AddAfterNotifier(&(*ChgIPNotifierList.begin()));
227 //-----------------------------------------------------------------------------
228 void PING::UnSetUserNotifiers(USER_PTR u)
231 IS_CONTAINS_USER<CHG_CURRIP_NOTIFIER_PING> IsContainsUserCurrIP(u);
232 IS_CONTAINS_USER<CHG_IPS_NOTIFIER_PING> IsContainsUserIP(u);
234 list<CHG_CURRIP_NOTIFIER_PING>::iterator currIPter;
235 list<CHG_IPS_NOTIFIER_PING>::iterator IPIter;
237 currIPter = find_if(ChgCurrIPNotifierList.begin(),
238 ChgCurrIPNotifierList.end(),
239 IsContainsUserCurrIP);
241 if (currIPter != ChgCurrIPNotifierList.end())
243 currIPter->GetUser()->DelCurrIPAfterNotifier(&(*currIPter));
244 ChgCurrIPNotifierList.erase(currIPter);
246 // --- CurrIP end ---
249 IPIter = find_if(ChgIPNotifierList.begin(),
250 ChgIPNotifierList.end(),
253 if (IPIter != ChgIPNotifierList.end())
255 IPIter->GetUser()->GetProperty().ips.DelAfterNotifier(&(*IPIter));
256 ChgIPNotifierList.erase(IPIter);
260 //-----------------------------------------------------------------------------
261 void PING::GetUsers()
263 STG_LOCKER lock(&mutex, __FILE__, __LINE__);
266 int h = users->OpenSearch();
267 assert(h && "USERS::OpenSearch is always correct");
269 while (users->SearchNext(h, &u) == 0)
271 usersList.push_back(u);
273 if (u->GetProperty().ips.ConstData().OnlyOneIP())
275 pinger.AddIP(u->GetProperty().ips.ConstData()[0].ip);
279 uint32_t ip = u->GetCurrIP();
287 users->CloseSearch(h);
289 //-----------------------------------------------------------------------------
290 void PING::AddUser(USER_PTR u)
292 STG_LOCKER lock(&mutex, __FILE__, __LINE__);
295 usersList.push_back(u);
297 //-----------------------------------------------------------------------------
298 void PING::DelUser(USER_PTR u)
300 STG_LOCKER lock(&mutex, __FILE__, __LINE__);
302 UnSetUserNotifiers(u);
304 list<USER_PTR>::iterator users_iter;
305 users_iter = usersList.begin();
307 while (users_iter != usersList.end())
309 if (u == *users_iter)
311 usersList.erase(users_iter);
317 //-----------------------------------------------------------------------------
318 void CHG_CURRIP_NOTIFIER_PING::Notify(const uint32_t & oldIP, const uint32_t & newIP)
320 ping.pinger.DelIP(oldIP);
323 ping.pinger.AddIP(newIP);
326 //-----------------------------------------------------------------------------
327 void CHG_IPS_NOTIFIER_PING::Notify(const USER_IPS & oldIPS, const USER_IPS & newIPS)
329 if (oldIPS.OnlyOneIP())
331 ping.pinger.DelIP(oldIPS[0].ip);
334 if (newIPS.OnlyOneIP())
336 ping.pinger.AddIP(newIPS[0].ip);
339 //-----------------------------------------------------------------------------
340 void ADD_USER_NONIFIER_PING::Notify(const USER_PTR & user)
344 //-----------------------------------------------------------------------------
345 void DEL_USER_NONIFIER_PING::Notify(const USER_PTR & user)
349 //-----------------------------------------------------------------------------