1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
16 /* $ModDesc: Provides support for the /WATCH command */
18 /* This module has been refactored to provide a very efficient (in terms of cpu time)
19 * implementation of /WATCH.
21 * To improve the efficiency of watch, many lists are kept. The first primary list is
22 * a hash_map of who's being watched by who. For example:
24 * KEY: Brain ---> Watched by: Boo, w00t, Om
25 * KEY: Boo ---> Watched by: Brain, w00t
27 * This is used when we want to tell all the users that are watching someone that
28 * they are now available or no longer available. For example, if the hash was
29 * populated as shown above, then when Brain signs on, messages are sent to Boo, w00t
30 * and Om by reading their 'watched by' list. When this occurs, their online status
31 * in each of these users lists (see below) is also updated.
33 * Each user also has a seperate (smaller) map attached to their userrec whilst they
34 * have any watch entries, which is managed by class Extensible. When they add or remove
35 * a watch entry from their list, it is inserted here, as well as the main list being
36 * maintained. This map also contains the user's online status. For users that are
37 * offline, the key points at an empty string, and for users that are online, the key
38 * points at a string containing "users-ident users-host users-signon-time". This is
39 * stored in this manner so that we don't have to FindUser() to fetch this info, the
40 * users signon can populate the field for us.
42 * For example, going again on the example above, this would be w00t's watchlist:
44 * KEY: Boo ---> Status: "Boo brains.sexy.babe 535342348"
45 * KEY: Brain ---> Status: ""
47 * In this list we can see that Boo is online, and Brain is offline. We can then
48 * use this list for 'WATCH L', and 'WATCH S' can be implemented as a combination
49 * of the above two data structures, with minimum CPU penalty for doing so.
51 * In short, the least efficient this ever gets is O(n), and thats only because
52 * there are parts that *must* loop (e.g. telling all users that are watching a
53 * nick that the user online), however this is a *major* improvement over the
54 * 1.0 implementation, which in places had O(n^n) and worse in it, because this
55 * implementation scales based upon the sizes of the watch entries, whereas the
56 * old system would scale (or not as the case may be) according to the total number
57 * of users using WATCH.
61 * Before you start screaming, this definition is only used here, so moving it to a header is pointless.
62 * Yes, it's horrid. Blame cl for being different. -- w00t
65 typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash_compare<irc::string, less<irc::string> > > watchentries;
67 typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash<irc::string> > watchentries;
69 typedef std::map<irc::string, std::string> watchlist;
71 /* Who's watching each nickname.
72 * NOTE: We do NOT iterate this to display a user's WATCH list!
73 * See the comments above!
75 watchentries* whos_watching_me;
79 class cmd_watch : public command_t
81 unsigned int& MAX_WATCH;
83 CmdResult remove_watch(userrec* user, const char* nick)
85 // removing an item from the list
86 if (!ServerInstance->IsNick(nick))
88 user->WriteServ("942 %s %s :Invalid nickname", user->nick, nick);
93 if (user->GetExt("watchlist", wl))
95 /* Yup, is on my list */
96 watchlist::iterator n = wl->find(nick);
99 if (!n->second.empty())
100 user->WriteServ("602 %s %s %s :stopped watching", user->nick, n->first.c_str(), n->second.c_str());
102 user->WriteServ("602 %s %s * * 0 :stopped watching", user->nick, nick);
109 user->Shrink("watchlist");
113 watchentries::iterator x = whos_watching_me->find(nick);
114 if (x != whos_watching_me->end())
116 /* People are watching this user, am i one of them? */
117 std::deque<userrec*>::iterator n = std::find(x->second.begin(), x->second.end(), user);
118 if (n != x->second.end())
119 /* I'm no longer watching you... */
122 if (!x->second.size())
123 whos_watching_me->erase(nick);
127 /* This might seem confusing, but we return CMD_FAILURE
128 * to indicate that this message shouldnt be routed across
129 * the network to other linked servers.
134 CmdResult add_watch(userrec* user, const char* nick)
136 if (!ServerInstance->IsNick(nick))
138 user->WriteServ("942 %s %s :Invalid nickname",user->nick,nick);
143 if (!user->GetExt("watchlist", wl))
145 wl = new watchlist();
146 user->Extend("watchlist", wl);
149 if (wl->size() == MAX_WATCH)
151 user->WriteServ("512 %s %s :Too many WATCH entries", user->nick, nick);
155 watchlist::iterator n = wl->find(nick);
158 /* Don't already have the user on my watch list, proceed */
159 watchentries::iterator x = whos_watching_me->find(nick);
160 if (x != whos_watching_me->end())
162 /* People are watching this user, add myself */
163 x->second.push_back(user);
167 std::deque<userrec*> newlist;
168 newlist.push_back(user);
169 (*(whos_watching_me))[nick] = newlist;
172 userrec* target = ServerInstance->FindNick(nick);
175 if (target->Visibility && !target->Visibility->VisibleTo(user))
178 user->WriteServ("605 %s %s * * 0 :is offline",user->nick, nick);
182 (*wl)[nick] = std::string(target->ident).append(" ").append(target->dhost).append(" ").append(ConvToStr(target->age));
183 user->WriteServ("604 %s %s %s :is online",user->nick, nick, (*wl)[nick].c_str());
188 user->WriteServ("605 %s %s * * 0 :is offline",user->nick, nick);
195 cmd_watch (InspIRCd* Instance, unsigned int &maxwatch) : command_t(Instance,"WATCH",0,0), MAX_WATCH(maxwatch)
197 this->source = "m_watch.so";
198 syntax = "[C|L|S]|[+|-<nick>]";
199 TRANSLATE2(TR_TEXT, TR_END); /* we watch for a nick. not a UID. */
202 CmdResult Handle (const char** parameters, int pcnt, userrec *user)
207 if (user->GetExt("watchlist", wl))
209 for (watchlist::iterator q = wl->begin(); q != wl->end(); q++)
211 if (!q->second.empty())
212 user->WriteServ("604 %s %s %s :is online", user->nick, q->first.c_str(), q->second.c_str());
215 user->WriteServ("607 %s :End of WATCH list",user->nick);
219 for (int x = 0; x < pcnt; x++)
221 const char *nick = parameters[x];
222 if (!strcasecmp(nick,"C"))
226 if (user->GetExt("watchlist", wl))
228 for (watchlist::iterator i = wl->begin(); i != wl->end(); i++)
230 watchentries::iterator x = whos_watching_me->find(i->first);
231 if (x != whos_watching_me->end())
233 /* People are watching this user, am i one of them? */
234 std::deque<userrec*>::iterator n = std::find(x->second.begin(), x->second.end(), user);
235 if (n != x->second.end())
236 /* I'm no longer watching you... */
239 if (!x->second.size())
240 whos_watching_me->erase(user->nick);
245 user->Shrink("watchlist");
248 else if (!strcasecmp(nick,"L"))
251 if (user->GetExt("watchlist", wl))
253 for (watchlist::iterator q = wl->begin(); q != wl->end(); q++)
255 if (!q->second.empty())
256 user->WriteServ("604 %s %s %s :is online", user->nick, q->first.c_str(), q->second.c_str());
258 user->WriteServ("605 %s %s * * 0 :is offline", user->nick, q->first.c_str());
261 user->WriteServ("607 %s :End of WATCH list",user->nick);
263 else if (!strcasecmp(nick,"S"))
270 if (user->GetExt("watchlist", wl))
272 for (watchlist::iterator q = wl->begin(); q != wl->end(); q++)
273 list.append(q->first.c_str()).append(" ");
274 you_have = wl->size();
277 watchentries::iterator x = whos_watching_me->find(user->nick);
278 if (x != whos_watching_me->end())
279 youre_on = x->second.size();
281 user->WriteServ("603 %s :You have %d and are on %d WATCH entries", user->nick, you_have, youre_on);
282 user->WriteServ("606 %s :%s",user->nick, list.c_str());
283 user->WriteServ("607 %s :End of WATCH S",user->nick);
285 else if (nick[0] == '-')
288 remove_watch(user, nick);
290 else if (nick[0] == '+')
293 add_watch(user, nick);
297 /* So that spanningtree doesnt pass the WATCH commands to the network! */
302 class Modulewatch : public Module
304 cmd_watch* mycommand;
305 unsigned int maxwatch;
308 Modulewatch(InspIRCd* Me)
309 : Module(Me), maxwatch(32)
312 whos_watching_me = new watchentries();
313 mycommand = new cmd_watch(ServerInstance, maxwatch);
314 ServerInstance->AddCommand(mycommand);
317 virtual void OnRehash(userrec* user, const std::string ¶meter)
319 ConfigReader Conf(ServerInstance);
320 maxwatch = Conf.ReadInteger("watch", "maxentries", 0, true);
325 void Implements(char* List)
327 List[I_OnRehash] = List[I_OnGarbageCollect] = List[I_OnCleanup] = List[I_OnUserQuit] = List[I_OnPostConnect] = List[I_OnUserPostNick] = List[I_On005Numeric] = 1;
330 virtual void OnUserQuit(userrec* user, const std::string &reason, const std::string &oper_message)
332 watchentries::iterator x = whos_watching_me->find(user->nick);
333 if (x != whos_watching_me->end())
335 for (std::deque<userrec*>::iterator n = x->second.begin(); n != x->second.end(); n++)
337 if (!user->Visibility || user->Visibility->VisibleTo(user))
338 (*n)->WriteServ("601 %s %s %s %s %lu :went offline", (*n)->nick ,user->nick, user->ident, user->dhost, ServerInstance->Time());
341 if ((*n)->GetExt("watchlist", wl))
342 /* We were on somebody's notify list, set ourselves offline */
343 (*wl)[user->nick] = "";
347 /* Now im quitting, if i have a notify list, im no longer watching anyone */
349 if (user->GetExt("watchlist", wl))
351 /* Iterate every user on my watch list, and take me out of the whos_watching_me map for each one we're watching */
352 for (watchlist::iterator i = wl->begin(); i != wl->end(); i++)
354 watchentries::iterator x = whos_watching_me->find(i->first);
355 if (x != whos_watching_me->end())
357 /* People are watching this user, am i one of them? */
358 std::deque<userrec*>::iterator n = std::find(x->second.begin(), x->second.end(), user);
359 if (n != x->second.end())
360 /* I'm no longer watching you... */
363 if (!x->second.size())
364 whos_watching_me->erase(user->nick);
368 /* User's quitting, we're done with this. */
373 virtual void OnGarbageCollect()
375 watchentries* old_watch = whos_watching_me;
376 whos_watching_me = new watchentries();
378 for (watchentries::const_iterator n = old_watch->begin(); n != old_watch->end(); n++)
379 whos_watching_me->insert(*n);
384 virtual void OnCleanup(int target_type, void* item)
386 if (target_type == TYPE_USER)
389 userrec* user = (userrec*)item;
391 if (user->GetExt("watchlist", wl))
393 user->Shrink("watchlist");
399 virtual void OnPostConnect(userrec* user)
401 watchentries::iterator x = whos_watching_me->find(user->nick);
402 if (x != whos_watching_me->end())
404 for (std::deque<userrec*>::iterator n = x->second.begin(); n != x->second.end(); n++)
406 if (!user->Visibility || user->Visibility->VisibleTo(user))
407 (*n)->WriteServ("600 %s %s %s %s %lu :arrived online", (*n)->nick, user->nick, user->ident, user->dhost, user->age);
410 if ((*n)->GetExt("watchlist", wl))
411 /* We were on somebody's notify list, set ourselves online */
412 (*wl)[user->nick] = std::string(user->ident).append(" ").append(user->dhost).append(" ").append(ConvToStr(user->age));
417 virtual void OnUserPostNick(userrec* user, const std::string &oldnick)
419 watchentries::iterator new_offline = whos_watching_me->find(assign(oldnick));
420 watchentries::iterator new_online = whos_watching_me->find(user->nick);
422 if (new_offline != whos_watching_me->end())
424 for (std::deque<userrec*>::iterator n = new_offline->second.begin(); n != new_offline->second.end(); n++)
427 if ((*n)->GetExt("watchlist", wl))
429 if (!user->Visibility || user->Visibility->VisibleTo(user))
430 (*n)->WriteServ("601 %s %s %s %s %lu :went offline", (*n)->nick, oldnick.c_str(), user->ident, user->dhost, user->age);
431 (*wl)[oldnick.c_str()] = "";
436 if (new_online != whos_watching_me->end())
438 for (std::deque<userrec*>::iterator n = new_online->second.begin(); n != new_online->second.end(); n++)
441 if ((*n)->GetExt("watchlist", wl))
443 (*wl)[user->nick] = std::string(user->ident).append(" ").append(user->dhost).append(" ").append(ConvToStr(user->age));
444 if (!user->Visibility || user->Visibility->VisibleTo(user))
445 (*n)->WriteServ("600 %s %s %s :arrived online", (*n)->nick, user->nick, (*wl)[user->nick].c_str());
451 virtual void On005Numeric(std::string &output)
453 // we don't really have a limit...
454 output = output + " WATCH=" + ConvToStr(maxwatch);
457 virtual ~Modulewatch()
459 delete whos_watching_me;
462 virtual Version GetVersion()
464 return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
468 MODULE_INIT(Modulewatch)