]> 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 d253c5dc3dfe45fa37bc0f07ed5d2f1a644f660a..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,8 +94,77 @@ 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);
+
+       /** 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);
 };
 
-#endif
+/** 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,
+ * and Unset and Invert for special operations upon them.
+ */
+class BoolSet
+{
+       char bits;
 
+ public:
+
+       /** The default constructor initializes the BoolSet to all values unset.
+        */
+       BoolSet();
+
+       /** This constructor copies the default bitmask from a char
+        */
+       BoolSet(char bitmask);
+
+       /** The Set method sets one bool in the set.
+        *
+        * @param number The number of the item to set. This must be between 0 and 7.
+        */
+       void Set(int number);
+
+       /** The Get method returns the value of one bool in the set
+        *
+        * @param number The number of the item to retrieve. This must be between 0 and 7.
+        *
+        * @return True if the item is set, false if it is unset.
+        */
+       bool Get(int number);
+
+       /** The Unset method unsets one value in the set
+        *
+        * @param number The number of the item to set. This must be between 0 and 7.
+        */
+       void Unset(int number);
+
+       /** The Unset method inverts (flips) one value in the set
+        *
+        * @param number The number of the item to invert. This must be between 0 and 7.
+        */
+       void Invert(int number);
+
+       /** Compare two BoolSets
+        */
+       bool operator==(BoolSet other);
+
+       /** OR two BoolSets together
+        */
+       BoolSet operator|(BoolSet other);
+       
+       /** AND two BoolSets together
+        */
+       BoolSet operator&(BoolSet other);
+
+       /** Assign one BoolSet to another
+        */
+       bool operator=(BoolSet other);
+};
+
+
+#endif