]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/netburst.cpp
Move OnSync{Channel,Network,User} to ServerEventListener.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / netburst.cpp
index 9ca5b04d402579e9de52174537a6c9b3732c4330..5115c7aa8a670b1566acebf1e91ee2e8ebeeea1d 100644 (file)
@@ -27,6 +27,7 @@
 #include "treeserver.h"
 #include "main.h"
 #include "commands.h"
+#include "modules/server.h"
 
 /**
  * Creates FMODE messages, used only when syncing channels
@@ -89,6 +90,12 @@ class FModeBuilder : public CmdBuilder
        }
 };
 
+struct TreeSocket::BurstState
+{
+       SpanningTreeProtocolInterface::Server server;
+       BurstState(TreeSocket* sock) : server(sock) { }
+};
+
 /** This function is called when we want to send a netburst to a local
  * server. There is a set order we must do this, because for example
  * users require their servers to exist, and channels require their
@@ -98,24 +105,38 @@ void TreeSocket::DoBurst(TreeServer* s)
 {
        ServerInstance->SNO->WriteToSnoMask('l',"Bursting to \2%s\2 (Authentication: %s%s).",
                s->GetName().c_str(),
-               capab->auth_fingerprint ? "SSL Fingerprint and " : "",
+               capab->auth_fingerprint ? "SSL certificate fingerprint and " : "",
                capab->auth_challenge ? "challenge-response" : "plaintext password");
        this->CleanNegotiationInfo();
-       this->WriteLine(":" + ServerInstance->Config->GetSID() + " BURST " + ConvToStr(ServerInstance->Time()));
-       /* send our version string */
-       this->WriteLine(":" + ServerInstance->Config->GetSID() + " VERSION :"+ServerInstance->GetVersionString());
-       /* Send server tree */
+       this->WriteLine(CmdBuilder("BURST").push_int(ServerInstance->Time()));
+       // Introduce all servers behind us
        this->SendServers(Utils->TreeRoot, s);
-       /* Send users and their oper status */
-       this->SendUsers();
 
-       for (chan_hash::const_iterator i = ServerInstance->chanlist->begin(); i != ServerInstance->chanlist->end(); ++i)
-               SyncChannel(i->second);
+       BurstState bs(this);
+       // Introduce all users
+       this->SendUsers(bs);
 
+       // Sync all channels
+       const chan_hash& chans = ServerInstance->GetChans();
+       for (chan_hash::const_iterator i = chans.begin(); i != chans.end(); ++i)
+               SyncChannel(i->second, bs);
+
+       // Send all xlines
        this->SendXLines();
-       FOREACH_MOD(OnSyncNetwork, (Utils->Creator,(void*)this));
-       this->WriteLine(":" + ServerInstance->Config->GetSID() + " ENDBURST");
+       FOREACH_MOD_CUSTOM(Utils->Creator->GetEventProvider(), ServerEventListener, OnSyncNetwork, (bs.server));
+       this->WriteLine(CmdBuilder("ENDBURST"));
        ServerInstance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+ s->GetName()+"\2.");
+
+       this->burstsent = true;
+}
+
+void TreeSocket::SendServerInfo(TreeServer* from)
+{
+       // Send public version string
+       this->WriteLine(CommandSInfo::Builder(from, "version", from->GetVersion()));
+
+       // Send full version string that contains more information and is shown to opers
+       this->WriteLine(CommandSInfo::Builder(from, "fullversion", from->GetFullVersion()));
 }
 
 /** Recursively send the server tree.
@@ -123,10 +144,11 @@ void TreeSocket::DoBurst(TreeServer* s)
  * (and any of ITS servers too) of what servers we know about.
  * If at any point any of these servers already exist on the other
  * end, our connection may be terminated.
- * The hopcount parameter (3rd) is deprecated, and is always 0.
  */
 void TreeSocket::SendServers(TreeServer* Current, TreeServer* s)
 {
+       SendServerInfo(Current);
+
        const TreeServer::ChildServers& children = Current->GetChildren();
        for (TreeServer::ChildServers::const_iterator i = children.begin(); i != children.end(); ++i)
        {
@@ -134,7 +156,6 @@ void TreeSocket::SendServers(TreeServer* Current, TreeServer* s)
                if (recursive_server != s)
                {
                        this->WriteLine(CommandServer::Builder(recursive_server));
-                       this->WriteLine(":" + recursive_server->GetID() + " VERSION :" + recursive_server->GetVersion());
                        /* down to next level */
                        this->SendServers(recursive_server, s);
                }
@@ -142,32 +163,25 @@ void TreeSocket::SendServers(TreeServer* Current, TreeServer* s)
 }
 
 /** Send one or more FJOINs for a channel of users.
- * If the length of a single line is more than 480-NICKMAX
- * in length, it is split over multiple lines.
- * Send one or more FMODEs for a channel with the
- * channel bans, if there's any.
+ * If the length of a single line is too long, it is split over multiple lines.
  */
 void TreeSocket::SendFJoins(Channel* c)
 {
-       std::string line(":");
-       line.append(ServerInstance->Config->GetSID()).append(" FJOIN ").append(c->name).append(1, ' ').append(ConvToStr(c->age)).append(" +");
-       std::string::size_type erase_from = line.length();
-       line.append(c->ChanModes(true)).append(" :");
-
-       const UserMembList *ulist = c->GetUsers();
+       CommandFJoin::Builder fjoin(c);
 
-       for (UserMembCIter i = ulist->begin(); i != ulist->end(); ++i)
+       const Channel::MemberMap& ulist = c->GetUsers();
+       for (Channel::MemberMap::const_iterator i = ulist.begin(); i != ulist.end(); ++i)
        {
-               const std::string& modestr = i->second->modes;
-               if ((line.length() + modestr.length() + UIDGenerator::UUID_LENGTH + 2) > 480)
+               Membership* memb = i->second;
+               if (!fjoin.has_room(memb))
                {
-                       this->WriteLine(line);
-                       line.erase(erase_from);
-                       line.append(" :");
+                       // No room for this user, send the line and prepare a new one
+                       this->WriteLine(fjoin.finalize());
+                       fjoin.clear();
                }
-               line.append(modestr).append(1, ',').append(i->first->uuid).push_back(' ');
+               fjoin.add(memb);
        }
-       this->WriteLine(line);
+       this->WriteLine(fjoin.finalize());
 }
 
 /** Send all XLines we know about */
@@ -228,8 +242,8 @@ void TreeSocket::SendListModes(Channel* chan)
                this->WriteLine(fmode.finalize());
 }
 
-/** Send channel topic, modes and metadata */
-void TreeSocket::SyncChannel(Channel* chan)
+/** Send channel users, topic, modes and global metadata */
+void TreeSocket::SyncChannel(Channel* chan, BurstState& bs)
 {
        SendFJoins(chan);
 
@@ -245,16 +259,23 @@ void TreeSocket::SyncChannel(Channel* chan)
                ExtensionItem* item = i->first;
                std::string value = item->serialize(FORMAT_NETWORK, chan, i->second);
                if (!value.empty())
-                       Utils->Creator->ProtoSendMetaData(this, chan, item->name, value);
+                       this->WriteLine(CommandMetadata::Builder(chan, item->name, value));
        }
 
-       FOREACH_MOD(OnSyncChannel, (chan, Utils->Creator, this));
+       FOREACH_MOD_CUSTOM(Utils->Creator->GetEventProvider(), ServerEventListener, OnSyncChannel, (chan, bs.server));
+}
+
+void TreeSocket::SyncChannel(Channel* chan)
+{
+       BurstState bs(this);
+       SyncChannel(chan, bs);
 }
 
-/** send all users and their oper state/modes */
-void TreeSocket::SendUsers()
+/** Send all users and their state, including oper and away status and global metadata */
+void TreeSocket::SendUsers(BurstState& bs)
 {
-       for (user_hash::iterator u = ServerInstance->Users->clientlist->begin(); u != ServerInstance->Users->clientlist->end(); u++)
+       const user_hash& users = ServerInstance->Users->GetUsers();
+       for (user_hash::const_iterator u = users.begin(); u != users.end(); ++u)
        {
                User* user = u->second;
                if (user->registered != REG_ALL)
@@ -274,10 +295,9 @@ void TreeSocket::SendUsers()
                        ExtensionItem* item = i->first;
                        std::string value = item->serialize(FORMAT_NETWORK, u->second, i->second);
                        if (!value.empty())
-                               Utils->Creator->ProtoSendMetaData(this, u->second, item->name, value);
+                               this->WriteLine(CommandMetadata::Builder(user, item->name, value));
                }
 
-               FOREACH_MOD(OnSyncUser, (user, Utils->Creator, this));
+               FOREACH_MOD_CUSTOM(Utils->Creator->GetEventProvider(), ServerEventListener, OnSyncUser, (user, bs.server));
        }
 }
-