]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/main.h
Replace most usages of "GECOS" with "real" or "real name".
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.h
index 77b4d52ed77e49115468bc975f3e137d8cde2ea5..b6374e32e0d4089c8ddba3e7de1220776768b6e9 100644 (file)
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
+ *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __ST_MAIN__
-#define __ST_MAIN__
+
+#pragma once
 
 #include "inspircd.h"
-#include <stdarg.h>
+#include "event.h"
+#include "modules/dns.h"
+#include "modules/stats.h"
+#include "servercommand.h"
+#include "commands.h"
+#include "protocolinterface.h"
 
 /** If you make a change which breaks the protocol, increment this.
  * If you  completely change the protocol, completely change the number.
  *
  * IMPORTANT: If you make changes, document your changes here, without fail:
- * http://www.inspircd.org/wiki/List_of_protocol_changes_between_versions
+ * https://wiki.inspircd.org/List_of_protocol_changes_between_versions
  *
  * Failure to document your protocol changes will result in a painfully
  * painful death by pain. You have been warned.
  */
-const long ProtocolVersion = 1200;
+const long ProtocolVersion = 1205;
+const long MinCompatProtocol = 1202;
 
 /** Forward declarations
  */
-class cmd_rconnect;
-class cmd_rsquit;
 class SpanningTreeUtilities;
-class TimeSyncTimer;
 class CacheRefreshTimer;
 class TreeServer;
 class Link;
+class Autoconnect;
 
 /** This is the main class for the spanningtree module
  */
-class ModuleSpanningTree : public Module
+class ModuleSpanningTree : public Module, public Stats::EventListener
 {
-       int line;
-       int NumServers;
-       unsigned int max_local;
-       unsigned int max_global;
-       cmd_rconnect* command_rconnect;
-       cmd_rsquit* command_rsquit;
-       SpanningTreeUtilities* Utils;
-
- public:
-       /** Timer for clock syncs
+       /** Client to server commands, registered in the core
         */
-       TimeSyncTimer *SyncTimer;
-
-       CacheRefreshTimer *RefreshTimer;
+       CommandRConnect rconnect;
+       CommandRSQuit rsquit;
+       CommandMap map;
 
-       /** Constructor
+       /** Server to server only commands, not registered in the core
         */
-       ModuleSpanningTree(InspIRCd* Me);
+       SpanningTreeCommands commands;
 
-       /** Shows /LINKS
+       /** Next membership id assigned when a local user joins a channel
         */
-       void ShowLinks(TreeServer* Current, User* user, int hops);
+       Membership::Id currmembid;
 
-       /** Counts local servers
+       /** The specialized ProtocolInterface that is assigned to ServerInstance->PI on load
         */
-       int CountLocalServs();
+       SpanningTreeProtocolInterface protocolinterface;
 
-       /** Counts local and remote servers
+       /** Event provider for our events
         */
-       int CountServs();
+       Events::ModuleEventProvider eventprov;
 
-       /** Handle LINKS command
-        */
-       void HandleLinks(const char** parameters, int pcnt, User* user);
-
-       /** Handle LUSERS command
-        */
-       void HandleLusers(const char** parameters, int pcnt, User* user);
+ public:
+       dynamic_reference<DNS::Manager> DNS;
 
-       /** Show MAP output to a user (recursive)
-        */
-       void ShowMap(TreeServer* Current, User* user, int depth, char matrix[128][128], float &totusers, float &totservers);
+       ServerCommandManager CmdManager;
 
-       /** Handle remote MOTD
+       /** Set to true if inside a spanningtree call, to prevent sending
+        * xlines and other things back to their source
         */
-       int HandleMotd(const char** parameters, int pcnt, User* user);
+       bool loopCall;
 
-       /** Handle remote ADMIN
+       /** Constructor
         */
-       int HandleAdmin(const char** parameters, int pcnt, User* user);
+       ModuleSpanningTree();
+       void init() CXX11_OVERRIDE;
 
-       /** Handle remote STATS
+       /** Shows /LINKS
         */
-       int HandleStats(const char** parameters, int pcnt, User* user);
+       void ShowLinks(TreeServer* Current, User* user, int hops);
 
-       /** Handle MAP command
+       /** Handle LINKS command
         */
-       void HandleMap(const char** parameters, int pcnt, User* user);
+       void HandleLinks(const CommandBase::Params& parameters, User* user);
 
        /** Handle SQUIT
         */
-       int HandleSquit(const char** parameters, int pcnt, User* user);
-
-       /** Handle TIME
-        */
-       int HandleTime(const char** parameters, int pcnt, User* user);
+       ModResult HandleSquit(const CommandBase::Params& parameters, User* user);
 
        /** Handle remote WHOIS
         */
-       int HandleRemoteWhois(const char** parameters, int pcnt, User* user);
-
-       /** Handle remote MODULES
-        */
-       int HandleModules(const char** parameters, int pcnt, User* user);
+       ModResult HandleRemoteWhois(const CommandBase::Params& parameters, User* user);
 
-       /** Ping all local servers
+       /** Connect a server locally
         */
-       void DoPingChecks(time_t curtime);
+       void ConnectServer(Link* x, Autoconnect* y = NULL);
 
-       /** Connect a server locally
+       /** Connect the next autoconnect server
         */
-       void ConnectServer(Link* x);
+       void ConnectServer(Autoconnect* y, bool on_timer);
 
        /** Check if any servers are due to be autoconnected
         */
        void AutoConnectServers(time_t curtime);
 
-       /** Handle remote VERSON
+       /** Check if any connecting servers should timeout
         */
-       int HandleVersion(const char** parameters, int pcnt, User* user);
+       void DoConnectTimeout(time_t curtime);
 
-       /** Handle CONNECT
-        */
-       int HandleConnect(const char** parameters, int pcnt, User* user);
-
-       /** Send out time sync to all servers
-        */
-       void BroadcastTimeSync();
-
-       /** Attempt to send a message to a user
+       /** Handle remote VERSON
         */
-       void RemoteMessage(User* user, const char* format, ...);
+       ModResult HandleVersion(const CommandBase::Params& parameters, User* user);
 
-       /** Returns oper-specific MAP information
+       /** Handle CONNECT
         */
-       const std::string MapOperInfo(TreeServer* Current);
+       ModResult HandleConnect(const CommandBase::Params& parameters, User* user);
 
        /** Display a time as a human readable string
         */
-       std::string TimeToStr(time_t secs);
+       static std::string TimeToStr(time_t secs);
+
+       const Events::ModuleEventProvider& GetEventProvider() const { return eventprov; }
 
        /**
         ** *** MODULE EVENTS ***
         **/
 
-       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, User *user, bool validated, const std::string &original_line);
-       virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, User *user, CmdResult result, const std::string &original_line);
-       virtual void OnGetServerDescription(const std::string &servername,std::string &description);
-       virtual void OnUserInvite(User* source,User* dest,Channel* channel);
-       virtual void OnPostLocalTopicChange(User* user, Channel* chan, const std::string &topic);
-       virtual void OnWallops(User* user, const std::string &text);
-       virtual void OnUserNotice(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list);
-       virtual void OnUserMessage(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list);
-       virtual void OnBackgroundTimer(time_t curtime);
-       virtual void OnUserJoin(User* user, Channel* channel, bool &silent);
-       virtual void OnChangeHost(User* user, const std::string &newhost);
-       virtual void OnChangeName(User* user, const std::string &gecos);
-       virtual void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent);
-       virtual void OnUserConnect(User* user);
-       virtual void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message);
-       virtual void OnUserPostNick(User* user, const std::string &oldnick);
-       virtual void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent);
-       virtual void OnRemoteKill(User* source, User* dest, const std::string &reason, const std::string &operreason);
-       virtual void OnRehash(User* user, const std::string &parameter);
-       virtual void OnOper(User* user, const std::string &opertype);
-       void OnLine(User* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason);
-       virtual void OnAddLine(XLine* line, User* user);
-       virtual void OnDelLine(XLine* line, User* user);
-       virtual void OnMode(User* user, void* dest, int target_type, const std::string &text);
-       virtual int OnStats(char statschar, User* user, string_list &results);
-       virtual void OnSetAway(User* user);
-       virtual void OnCancelAway(User* user);
-       virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline);
-       virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata);
-       virtual void OnEvent(Event* event);
-       virtual ~ModuleSpanningTree();
-       virtual Version GetVersion();
-       void Implements(char* List);
-       Priority Prioritize();
+       ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated, const std::string& original_line) CXX11_OVERRIDE;
+       void OnPostCommand(Command*, const CommandBase::Params& parameters, LocalUser* user, CmdResult result, const std::string& original_line) CXX11_OVERRIDE;
+       void OnUserConnect(LocalUser* source) CXX11_OVERRIDE;
+       void OnUserInvite(User* source, User* dest, Channel* channel, time_t timeout, unsigned int notifyrank, CUList& notifyexcepts) CXX11_OVERRIDE;
+       ModResult OnPreTopicChange(User* user, Channel* chan, const std::string& topic) CXX11_OVERRIDE;
+       void OnPostTopicChange(User* user, Channel* chan, const std::string &topic) CXX11_OVERRIDE;
+       void OnUserPostMessage(User* user, const MessageTarget& target, const MessageDetails& details) CXX11_OVERRIDE;
+       void OnBackgroundTimer(time_t curtime) CXX11_OVERRIDE;
+       void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) CXX11_OVERRIDE;
+       void OnChangeHost(User* user, const std::string &newhost) CXX11_OVERRIDE;
+       void OnChangeName(User* user, const std::string& real) CXX11_OVERRIDE;
+       void OnChangeIdent(User* user, const std::string &ident) CXX11_OVERRIDE;
+       void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) CXX11_OVERRIDE;
+       void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message) CXX11_OVERRIDE;
+       void OnUserPostNick(User* user, const std::string &oldnick) CXX11_OVERRIDE;
+       void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts) CXX11_OVERRIDE;
+       void OnPreRehash(User* user, const std::string &parameter) CXX11_OVERRIDE;
+       void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE;
+       void OnOper(User* user, const std::string &opertype) CXX11_OVERRIDE;
+       void OnAddLine(User *u, XLine *x) CXX11_OVERRIDE;
+       void OnDelLine(User *u, XLine *x) CXX11_OVERRIDE;
+       ModResult OnStats(Stats::Context& stats) CXX11_OVERRIDE;
+       ModResult OnSetAway(User* user, const std::string &awaymsg) CXX11_OVERRIDE;
+       void OnLoadModule(Module* mod) CXX11_OVERRIDE;
+       void OnUnloadModule(Module* mod) CXX11_OVERRIDE;
+       ModResult OnAcceptConnection(int newsock, ListenSocket* from, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server) CXX11_OVERRIDE;
+       void OnMode(User* source, User* u, Channel* c, const Modes::ChangeList& modes, ModeParser::ModeProcessFlag processflags, const std::string& output_mode) CXX11_OVERRIDE;
+       CullResult cull() CXX11_OVERRIDE;
+       ~ModuleSpanningTree();
+       Version GetVersion() CXX11_OVERRIDE;
+       void Prioritize() CXX11_OVERRIDE;
 };
-
-#endif