From 6b9eaeba4130acb818a63782640194c7e5bcc2fa Mon Sep 17 00:00:00 2001 From: peavey Date: Sun, 7 Jan 2007 21:14:17 +0000 Subject: Move all /WHOWAS related out of core and into cmd_whowas. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6249 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/commands/cmd_whowas.h | 92 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 90 insertions(+), 2 deletions(-) (limited to 'include/commands/cmd_whowas.h') diff --git a/include/commands/cmd_whowas.h b/include/commands/cmd_whowas.h index 3dc69bfdc..1181b7ae8 100644 --- a/include/commands/cmd_whowas.h +++ b/include/commands/cmd_whowas.h @@ -17,18 +17,106 @@ #ifndef __CMD_WHOWAS_H__ #define __CMD_WHOWAS_H__ + // include the common header files #include "users.h" #include "channels.h" +class MaintainTimer; + +/** InspTimer that is used to maintain the whowas list, called once an hour + */ +MaintainTimer* timer; + /** Handle /WHOWAS */ class cmd_whowas : public command_t +{ + public: + cmd_whowas(InspIRCd* Instance); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); + CmdResult HandleInternal(const unsigned int id, const std::deque ¶meters); + void AddToWhoWas(userrec* user); + void GetStats(Extensible* ext); + void PruneWhoWas(time_t t); + virtual ~cmd_whowas(); +}; + +enum Internals +{ + WHOWAS_ADD = 1, + WHOWAS_STATS = 2, + WHOWAS_PRUNE = 3 +}; + + +/** Used to hold WHOWAS information + */ +class WhoWasGroup : public classbase { public: - cmd_whowas (InspIRCd* Instance) : command_t(Instance,"WHOWAS",0,1) { syntax = "{,}"; } - CmdResult Handle(const char** parameters, int pcnt, userrec *user); + /** Real host + */ + char* host; + /** Displayed host + */ + char* dhost; + /** Ident + */ + char* ident; + /** Server name + */ + const char* server; + /** Fullname (GECOS) + */ + char* gecos; + /** Signon time + */ + time_t signon; + + /** Initialize this WhoQasFroup with a user + */ + WhoWasGroup(userrec* user); + /** Destructor + */ + ~WhoWasGroup(); +}; + +class MaintainTimer : public InspTimer +{ + private: + InspIRCd* ServerInstance; + public: + MaintainTimer(InspIRCd* Instance, long interval) + : InspTimer(interval, Instance->Time()), ServerInstance(Instance) + { + } + virtual void Tick(time_t TIME); }; +/** A group of users related by nickname + */ +typedef std::deque whowas_set; + +/** Sets of users in the whowas system + */ +typedef std::map whowas_users; + +/** Sets of time and users in whowas list + */ +typedef std::deque > whowas_users_fifo; + +/** Called every hour by the core to remove expired entries + */ +void MaintainWhoWas(InspIRCd* ServerInstance, time_t TIME); + +/** Whowas container, contains a map of vectors of users tracked by WHOWAS + */ +whowas_users whowas; + +/** Whowas container, contains a map of time_t to users tracked by WHOWAS + */ +whowas_users_fifo whowas_fifo; + #endif -- cgit v1.2.3