You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kvirc/src/kvilib/irc/kvi_ircserverdb.h

117 lines
4.2 KiB

#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<KviIrcServer> * m_pServerList;
KviIrcServer * m_pCurrentServer;
public:
KviIrcNetwork * network(){ return m_pNetwork; };
KviPointerList<KviIrcServer> * 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<TQString,KviIrcServerDataBaseRecord> * 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<KviIrcServer> * m_pAutoConnectOnStartupServers;
KviPointerList<KviIrcServerDataBaseRecord> * m_pAutoConnectOnStartupNetworks;
public:
void clear();
KviPointerHashTable<TQString,KviIrcServerDataBaseRecord> * recordDict(){ return m_pRecords; };
KviPointerList<KviIrcServer> * autoConnectOnStartupServers(){ return m_pAutoConnectOnStartupServers; };
KviPointerList<KviIrcServerDataBaseRecord> * 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_