]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/base.h
Fix for permissions :p
[user/henk/code/inspircd.git] / include / base.h
index 13c361c0b20da080ce405e709b76a1ed48bdfbd4..d3cc77e058d6c81d24b1de12251a9ae1184fb179 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
 #ifndef __BASE_H__ 
 #define __BASE_H__ 
 
-#include "inspircd_config.h" 
+#include "inspircd_config.h"
 #include <time.h>
 #include <map>
+#include <deque>
 #include <string>
 
 typedef void* VoidPointer;
+typedef std::map<std::string,char*> ExtensibleStore;
  
 /** The base class for all inspircd classes
 */ 
@@ -51,7 +53,7 @@ class Extensible : public classbase
 {
        /** Private data store
         */
-       std::map<std::string,char*> Extension_Items;
+       ExtensibleStore Extension_Items;
        
 public:
 
@@ -66,7 +68,14 @@ public:
         *
         * @return Returns true on success, false if otherwise
         */
-       bool Extend(std::string key, char* p);
+       template<typename T> bool Extend(const std::string &key, T* p)
+       {
+               /* This will only add an item if it doesnt already exist,
+                * the return value is a std::pair of an iterator to the
+                * element, and a bool saying if it was actually inserted.
+                */
+               return this->Extension_Items.insert(std::make_pair(key, (char*)p)).second;
+       }
 
        /** Shrink an Extensible class.
         *
@@ -77,7 +86,7 @@ public:
         *
         * @return Returns true on success.
         */
-       bool Shrink(std::string key);
+       bool Shrink(const std::string &key);
        
        /** Get an extension item.
         *
@@ -85,11 +94,16 @@ public:
         *
         * @return If you provide a non-existent key name, the function returns NULL, otherwise a pointer to the item referenced by the key is returned.
         */
-       char* GetExt(std::string key);
-};
+       char* GetExt(const std::string &key);
 
-const int bitfields[]          =       {1,2,4,8,16,32,64,128};
-const int inverted_bitfields[] =       {~1,~2,~4,~8,~16,~32,~64,~128};
+       /** Get a list of all extension items names.
+        *
+        * @param list A deque of strings to receive the list
+        *
+        * @return This function writes a list of all extension items stored in this object by name into the given deque and returns void.
+        */
+       void GetExtList(std::deque<std::string> &list);
+};
 
 /** BoolSet is a utility class designed to hold eight bools in a bitmask.
  * Use BoolSet::Set and BoolSet::Get to set and get bools in the bitmask,
@@ -154,4 +168,3 @@ class BoolSet
 
 
 #endif
-