]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/bancache.h
Fix warnings from Doxygen.
[user/henk/code/inspircd.git] / include / bancache.h
index e975bb68ad59c1785891636783c8fdc06433c762..6e19e1ebe753d4afb0a3e309bb20e323782edfb7 100644 (file)
@@ -18,8 +18,7 @@
  */
 
 
-#ifndef BANCACHE_H
-#define BANCACHE_H
+#pragma once
 
 /** Stores a cached ban entry.
  * Each ban has one of these hashed in a hash_map to make for faster removal
@@ -41,23 +40,22 @@ class CoreExport BanCacheHit
         */
        time_t Expiry;
 
-       BanCacheHit(const std::string &type, const std::string &reason, time_t seconds)
-               : Type(type), Reason(reason), Expiry(ServerInstance->Time() + seconds)
-       {
-       }
-};
+       BanCacheHit(const std::string& type, const std::string& reason, time_t seconds);
 
-/* A container of ban cache items.
- * must be defined after class BanCacheHit.
- */
-typedef std::tr1::unordered_map<std::string, BanCacheHit*, std::tr1::hash<std::string> > BanCacheHash;
+       bool IsPositive() const { return (!Reason.empty()); }
+};
 
 /** A manager for ban cache, which allocates and deallocates and checks cached bans.
  */
 class CoreExport BanCacheManager
 {
- private:
-       BanCacheHash* BanHash;
+       /** A container of ban cache items.
+        */
+       typedef TR1NS::unordered_map<std::string, BanCacheHit*, TR1NS::hash<std::string> > BanCacheHash;
+
+       BanCacheHash BanHash;
+       bool RemoveIfExpired(BanCacheHash::iterator& it);
+
  public:
 
        /** Creates and adds a Ban Cache item.
@@ -73,14 +71,7 @@ class CoreExport BanCacheManager
         * @param type The type of bancache entries to remove (e.g. 'G')
         * @param positive Remove either positive (true) or negative (false) hits.
         */
-       unsigned int RemoveEntries(const std::string &type, bool positive);
+       void RemoveEntries(const std::string& type, bool positive);
 
-       BanCacheManager()
-       {
-               this->BanHash = new BanCacheHash();
-       }
        ~BanCacheManager();
-       void RehashCache();
 };
-
-#endif