#ifndef _KVI_IRCSERVERDB_H_ #define _KVI_IRCSERVERDB_H_ //============================================================================= // // File : kvi_ircserverdb.h // Creation date : Mon Jul 10 2000 14:15:42 by Szymon Stefanek // // This file is part of the KVirc irc client distribution // Copyright (C) 1999-2004 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your opinion) any later version. // // This program is distributed in the HOPE that it will be USEFUL, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // See the GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, write to the Free Software Foundation, // Inc. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // //============================================================================= #include "kvi_settings.h" #include "kvi_qstring.h" #include "kvi_ircserver.h" #include "kvi_pointerhashtable.h" typedef struct _KviIrcServerDefinition { TQString szServer; kvi_u32_t uPort; bool bPortIsValid; bool bIpV6; bool bSSL; TQString szLinkFilter; TQString szPass; TQString szNick; TQString szInitUMode; } KviIrcServerDefinition; class KVILIB_API KviIrcServerDataBaseRecord { friend class KviIrcServerDataBase; public: KviIrcServerDataBaseRecord(KviIrcNetwork * n); ~KviIrcServerDataBaseRecord(); protected: KviIrcNetwork * m_pNetwork; KviPointerList * m_pServerList; KviIrcServer * m_pCurrentServer; public: KviIrcNetwork * network(){ return m_pNetwork; }; KviPointerList * serverList(){ return m_pServerList; }; KviIrcServer * currentServer(); void insertServer(KviIrcServer *srv); KviIrcServer * findServer(const KviIrcServer * pServer); void setCurrentServer(KviIrcServer *srv); }; class KVILIB_API KviIrcServerDataBase { public: KviIrcServerDataBase(); ~KviIrcServerDataBase(); private: KviPointerHashTable * m_pRecords; TQString m_szCurrentNetwork; // This list is computed when the data are loaded from disk // during the startup and is used by KviApp to // start the connections. // The pointer is zero if there are no autoConnect servers // The list is valid only during the startup phase // because it contains shallow pointers to the servers // really contained in the server/network list // and it is never updated later KviPointerList * m_pAutoConnectOnStartupServers; KviPointerList * m_pAutoConnectOnStartupNetworks; public: void clear(); KviPointerHashTable * recordDict(){ return m_pRecords; }; KviPointerList * autoConnectOnStartupServers(){ return m_pAutoConnectOnStartupServers; }; KviPointerList * autoConnectOnStartupNetworks(){ return m_pAutoConnectOnStartupNetworks; }; void clearAutoConnectOnStartupServers(); void clearAutoConnectOnStartupNetworks(); void setCurrentNetwork(const TQString &szNetName){ m_szCurrentNetwork = szNetName; }; const TQString & currentNetworkName(){ return m_szCurrentNetwork; }; KviIrcServerDataBaseRecord * currentRecord(); KviIrcServerDataBaseRecord * findRecord(const TQString &szNetName); KviIrcNetwork * findNetwork(const TQString &name); void loadFromMircIni(const TQString & filename, const TQString & szMircIni, TQStringList& recentServers); void load(const TQString & filename); void save(const TQString & filename); KviIrcServerDataBaseRecord * insertNetwork(KviIrcNetwork * n); void updateServerIp(KviIrcServer * pServer,const TQString &ip); bool makeCurrentServer(KviIrcServerDefinition * d,TQString &szError); bool makeCurrentBestServerInNetwork(const TQString &szNetName,KviIrcServerDataBaseRecord * d,TQString &szError); }; #endif //_KVI_IRCSERVERDB_H_