]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
Fix compile error caused by unistd.h not existing on Windows.
[user/henk/code/inspircd.git] / include / ctables.h
index 0cf4c50d2c65d27a93e96f1ce2708ae5c1308e91..0bd8f360c921e358969c20ce19c39a582b825e97 100644 (file)
@@ -1,18 +1,28 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2003, 2007 Craig Edwards <craigedwards@brainbox.cc>
  *
- * 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 __CTABLES_H__
-#define __CTABLES_H__
+
+#ifndef CTABLES_H
+#define CTABLES_H
 
 /** Used to indicate command success codes
  */
@@ -20,9 +30,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 +99,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;
@@ -111,11 +118,11 @@ class CoreExport Command : public Extensible
 
        /** used by /stats m
         */
-       long double use_count;
+       long use_count;
 
        /** used by /stats m
         */
-       long double total_bytes;
+       long total_bytes;
 
        /** True if the command is disabled to non-opers
         */
@@ -151,7 +158,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 +221,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
  */