diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-31 21:43:56 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-31 21:43:56 +0000 |
commit | 0ade30b8bce3bc945fa120ad6cacf96fbd2f39ec (patch) | |
tree | 55bdcff91ee51b57db1eb4440a72efdcb950ca83 | |
parent | a60b8e0d560404815a1587eb1d0f2b37f23db935 (diff) |
This *should* fix expiry. Can someone else (w00t? :p) test for me, and check im not committing something thats a pointless exercise in futility? :P
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8447 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/xline.h | 2 | ||||
-rw-r--r-- | src/xline.cpp | 46 |
2 files changed, 25 insertions, 23 deletions
diff --git a/include/xline.h b/include/xline.h index 27e10eefe..fd7de6d2a 100644 --- a/include/xline.h +++ b/include/xline.h @@ -404,6 +404,8 @@ class CoreExport XLineManager QLineFactory* QFact; ZLineFactory* ZFact; + unsigned int PermLines; + public: std::map<char, std::map<std::string, XLine *> > lookup_lines; diff --git a/src/xline.cpp b/src/xline.cpp index bfa6fe446..37dc2c0e9 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -141,6 +141,9 @@ bool XLineManager::AddLine(XLine* line, User* user) lookup_lines[line->type][line->Displayable()] = line; line->OnAdd(); + if (!line->duration) + PermLines++; + FOREACH_MOD(I_OnAddLine,OnAddLine(user, line)); return true; @@ -169,7 +172,7 @@ bool XLineManager::DelLine(const char* hostmask, char type, User* user, bool sim if (!simulate) { (*i)->Unset(); - active_lines.erase(i); + if (lookup_lines.find(type) != lookup_lines.end()) lookup_lines[type].erase(hostmask); @@ -179,7 +182,11 @@ bool XLineManager::DelLine(const char* hostmask, char type, User* user, bool sim if (pptr != pending_lines.end()) pending_lines.erase(pptr); + if (!(*i)->duration) + PermLines--; + delete *i; + active_lines.erase(i); } return true; } @@ -348,10 +355,6 @@ KLine* XLineManager::matches_kline(User* user) bool XLineManager::XSortComparison(const XLine *one, const XLine *two) { - // account for permanent lines, move to bottom - if (one->expiry == 0) - return false; - return (one->expiry) < (two->expiry); } @@ -360,34 +363,31 @@ void XLineManager::expire_lines() { time_t current = ServerInstance->Time(); - ServerInstance->Log(DEBUG,"expire_lines() running. Time %ld active_lines.size() %u", current, active_lines.size()); - /* Because we now store all our XLines in sorted order using ((*i)->duration + (*i)->set_time) as a key, this * means that to expire the XLines we just need to do a while, picking off the top few until there are - * none left at the head of the queue that are after the current time. + * none left at the head of the queue that are after the current time. We use PermLines as an offset into the + * vector past the first item with a duration 0. */ - while ((active_lines.size()) && (current > (*active_lines.begin())->expiry) && ((*active_lines.begin())->duration != 0)) + std::vector<XLine*>::iterator start = active_lines.begin() + PermLines; + + while ((start < active_lines.end()) && (current > (*start)->expiry)) { - ServerInstance->Log(DEBUG,"Remove one"); - std::vector<XLine*>::iterator i = active_lines.begin(); - (*i)->DisplayExpiry(); - (*i)->Unset(); + (*start)->DisplayExpiry(); + (*start)->Unset(); - active_lines.erase(i); - if (lookup_lines.find((*i)->type) != lookup_lines.end()) - lookup_lines[(*i)->type].erase((*i)->Displayable()); + if (lookup_lines.find((*start)->type) != lookup_lines.end()) + lookup_lines[(*start)->type].erase((*start)->Displayable()); - std::vector<XLine*>::iterator pptr = std::find(pending_lines.begin(), pending_lines.end(), *i); + std::vector<XLine*>::iterator pptr = std::find(pending_lines.begin(), pending_lines.end(), *start); if (pptr != pending_lines.end()) pending_lines.erase(pptr); - delete *i; - } + if (!(*start)->duration) + PermLines--; - for (std::vector<XLine*>::iterator n = active_lines.begin(); n != active_lines.end(); n++) - { - ServerInstance->Log(DEBUG,"n->expiry=%ld n->duration=%ld", (*n)->expiry, (*n)->duration); + delete *start; + active_lines.erase(start); } } @@ -444,7 +444,7 @@ void XLineManager::stats_e(User* user, string_list &results) results.push_back(sn+" 223 "+user->nick+" :"+(*i)->identmask+"@"+(*i)->hostmask+" "+ConvToStr((*i)->set_time)+" "+ConvToStr((*i)->duration)+" "+(*i)->source+" :"+(*i)->reason);*/ } -XLineManager::XLineManager(InspIRCd* Instance) : ServerInstance(Instance) +XLineManager::XLineManager(InspIRCd* Instance) : ServerInstance(Instance), PermLines(0) { GFact = new GLineFactory(Instance); EFact = new ELineFactory(Instance); |