]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
Change SERVICE_{CMODE,UMODE} to SERVICE_MODE, which makes more sense
[user/henk/code/inspircd.git] / include / ctables.h
index 0cf4c50d2c65d27a93e96f1ce2708ae5c1308e91..9c2a6181c18576d8cbd29808dd9d81a36faff178 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
@@ -20,9 +20,13 @@ enum CmdResult
 {
        CMD_FAILURE = 0,        /* Command exists, but failed */
        CMD_SUCCESS = 1,        /* Command exists, and succeeded */
-       CMD_INVALID = 2         /* Command doesnt exist at all! */
+       CMD_INVALID = 2,        /* Command doesnt exist at all! */
+       CMD_EPERM = 3       /* Command failed because of a permission check */
 };
 
+/** Flag for commands that are only allowed from servers */
+const char FLAG_SERVERONLY = 7; // technically anything nonzero below 'A' works
+
 /** Translation types for translation of parameters to UIDs.
  * This allows the core commands to not have to be aware of how UIDs
  * work (making it still possible to write other linking modules which
@@ -85,16 +89,9 @@ struct RouteDescriptor
 /** A structure that defines a command. Every command available
  * in InspIRCd must be defined as derived from Command.
  */
-class CoreExport Command : public Extensible
+class CoreExport Command : public ServiceProvider
 {
  public:
-       /** Command name
-       */
-       const std::string command;
-
-       /** Creator module - never NULL */
-       Module* const creator;
-
        /** User flags needed to execute the command or 0
         */
        char flags_needed;
@@ -151,7 +148,7 @@ class CoreExport Command : public Extensible
         * NICK, optionally PASS, and been resolved).
         */
        Command(Module* me, const std::string &cmd, int minpara = 0, int maxpara = 0) :
-               command(cmd), creator(me), flags_needed(0), min_params(minpara), max_params(maxpara),
+               ServiceProvider(me, cmd, SERVICE_COMMAND), flags_needed(0), min_params(minpara), max_params(maxpara),
                use_count(0), total_bytes(0), disabled(false), works_before_reg(false), Penalty(1)
        {
        }
@@ -214,9 +211,16 @@ class CoreExport Command : public Extensible
        virtual ~Command();
 };
 
-/** A hash of commands used by the core
- */
-typedef nspace::hash_map<std::string,Command*> Commandtable;
+class CoreExport SplitCommand : public Command
+{
+ public:
+       SplitCommand(Module* me, const std::string &cmd, int minpara = 0, int maxpara = 0)
+               : Command(me, cmd, minpara, maxpara) {}
+       virtual CmdResult Handle(const std::vector<std::string>& parameters, User* user);
+       virtual CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user);
+       virtual CmdResult HandleRemote(const std::vector<std::string>& parameters, RemoteUser* user);
+       virtual CmdResult HandleServer(const std::vector<std::string>& parameters, FakeUser* user);
+};
 
 /** Shortcut macros for defining translation lists
  */