]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_map.cpp
m_spanningtree Remove duplicate code for sending channel messages from RouteCommand()
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / override_map.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 #include "main.h"
25 #include "utils.h"
26 #include "treeserver.h"
27 #include "commands.h"
28
29 CommandMap::CommandMap(Module* Creator)
30         : Command(Creator, "MAP", 0, 1)
31 {
32         Penalty = 2;
33 }
34
35 std::string CommandMap::MapOperInfo(TreeServer* Current)
36 {
37         time_t secs_up = ServerInstance->Time() - Current->age;
38         return " [Up: " + ModuleSpanningTree::TimeToStr(secs_up) + (Current->rtt == 0 ? "]" : " Lag: " + ConvToStr(Current->rtt) + "ms]");
39 }
40
41 void CommandMap::ShowMap(TreeServer* Current, User* user, int depth, int &line, char* names, int &maxnamew, char* stats)
42 {
43         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "ShowMap depth %d on line %d", depth, line);
44         float percent;
45
46         if (ServerInstance->Users->clientlist->size() == 0)
47         {
48                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
49                 percent = 0;
50         }
51         else
52         {
53                 percent = Current->UserCount * 100.0 / ServerInstance->Users->clientlist->size();
54         }
55
56         const std::string operdata = user->IsOper() ? MapOperInfo(Current) : "";
57
58         char* myname = names + 100 * line;
59         char* mystat = stats + 50 * line;
60         memset(myname, ' ', depth);
61         int w = depth;
62
63         if (user->IsOper())
64         {
65                 w += snprintf(myname + depth, 99 - depth, "%s (%s)", Current->GetName().c_str(), Current->GetID().c_str());
66         }
67         else
68         {
69                 w += snprintf(myname + depth, 99 - depth, "%s", Current->GetName().c_str());
70         }
71         memset(myname + w, ' ', 100 - w);
72         if (w > maxnamew)
73                 maxnamew = w;
74         snprintf(mystat, 49, "%5d [%5.2f%%]%s", Current->UserCount, percent, operdata.c_str());
75
76         line++;
77
78         if (user->IsOper() || !Utils->FlatLinks)
79                 depth = depth + 2;
80         for (unsigned int q = 0; q < Current->ChildCount(); q++)
81         {
82                 TreeServer* child = Current->GetChild(q);
83                 if (!user->IsOper()) {
84                         if (child->Hidden)
85                                 continue;
86                         if ((Utils->HideULines) && (ServerInstance->ULine(child->GetName())))
87                                 continue;
88                 }
89                 ShowMap(child, user, depth, line, names, maxnamew, stats);
90         }
91 }
92
93
94 // Ok, prepare to be confused.
95 // After much mulling over how to approach this, it struck me that
96 // the 'usual' way of doing a /MAP isnt the best way. Instead of
97 // keeping track of a ton of ascii characters, and line by line
98 // under recursion working out where to place them using multiplications
99 // and divisons, we instead render the map onto a backplane of characters
100 // (a character matrix), then draw the branches as a series of "L" shapes
101 // from the nodes. This is not only friendlier on CPU it uses less stack.
102 CmdResult CommandMap::Handle(const std::vector<std::string>& parameters, User* user)
103 {
104         if (parameters.size() > 0)
105         {
106                 /* Remote MAP, the server is within the 1st parameter */
107                 TreeServer* s = Utils->FindServerMask(parameters[0]);
108                 if (!s)
109                 {
110                         user->WriteNumeric(ERR_NOSUCHSERVER, "%s %s :No such server", user->nick.c_str(), parameters[0].c_str());
111                         return CMD_FAILURE;
112                 }
113
114                 if (!s->IsRoot())
115                         return CMD_SUCCESS;
116         }
117
118         // These arrays represent a virtual screen which we will
119         // "scratch" draw to, as the console device of an irc
120         // client does not provide for a proper terminal.
121         int totusers = ServerInstance->Users->clientlist->size();
122         int totservers = Utils->serverlist.size();
123         int maxnamew = 0;
124         int line = 0;
125         char* names = new char[totservers * 100];
126         char* stats = new char[totservers * 50];
127
128         // The only recursive bit is called here.
129         ShowMap(Utils->TreeRoot,user,0,line,names,maxnamew,stats);
130
131         // Process each line one by one.
132         for (int l = 1; l < line; l++)
133         {
134                 char* myname = names + 100 * l;
135                 // scan across the line looking for the start of the
136                 // servername (the recursive part of the algorithm has placed
137                 // the servers at indented positions depending on what they
138                 // are related to)
139                 int first_nonspace = 0;
140
141                 while (myname[first_nonspace] == ' ')
142                 {
143                         first_nonspace++;
144                 }
145
146                 first_nonspace--;
147
148                 // Draw the `- (corner) section: this may be overwritten by
149                 // another L shape passing along the same vertical pane, becoming
150                 // a |- (branch) section instead.
151
152                 myname[first_nonspace] = '-';
153                 myname[first_nonspace-1] = '`';
154                 int l2 = l - 1;
155
156                 // Draw upwards until we hit the parent server, causing possibly
157                 // other corners (`-) to become branches (|-)
158                 while ((names[l2 * 100 + first_nonspace-1] == ' ') || (names[l2 * 100 + first_nonspace-1] == '`'))
159                 {
160                         names[l2 * 100 + first_nonspace-1] = '|';
161                         l2--;
162                 }
163         }
164
165         float avg_users = totusers * 1.0 / line;
166
167         for (int t = 0; t < line; t++)
168         {
169                 // terminate the string at maxnamew characters
170                 names[100 * t + maxnamew] = '\0';
171                 user->SendText(":%s %03d %s :%s %s", ServerInstance->Config->ServerName.c_str(),
172                         RPL_MAP, user->nick.c_str(), names + 100 * t, stats + 50 * t);
173         }
174         user->SendText(":%s %03d %s :%d server%s and %d user%s, average %.2f users per server",
175                 ServerInstance->Config->ServerName.c_str(), RPL_MAPUSERS, user->nick.c_str(),
176                 line, (line > 1 ? "s" : ""), totusers, (totusers > 1 ? "s" : ""), avg_users);
177         user->SendText(":%s %03d %s :End of /MAP", ServerInstance->Config->ServerName.c_str(),
178                 RPL_ENDMAP, user->nick.c_str());
179
180         delete[] names;
181         delete[] stats;
182
183         return CMD_SUCCESS;
184 }
185
186 RouteDescriptor CommandMap::GetRouting(User* user, const std::vector<std::string>& parameters)
187 {
188         if (!parameters.empty())
189                 return ROUTE_UNICAST(parameters[0]);
190         return ROUTE_LOCALONLY;
191 }