/* * Copyright (C) 2001-2008 Jacek Sieka, arnetheduck on gmail point com * * 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 option) 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef DCPLUSPLUS_DCPP_ADC_HUB_H #define DCPLUSPLUS_DCPP_ADC_HUB_H #include "Client.h" #include "AdcCommand.h" #include "Socket.h" namespace dcpp { class ClientManager; class AdcHub : public Client, public CommandHandler { public: using Client::send; using Client::connect; virtual void connect(const OnlineUser& user, const string& token); void connect(const OnlineUser& user, string const& token, bool secure); virtual void hubMessage(const string& aMessage, bool thirdPerson = false); virtual void privateMessage(const OnlineUser& user, const string& aMessage, bool thirdPerson = false); virtual void sendUserCmd(const string& aUserCmd) { send(aUserCmd); } virtual void search(int aSizeMode, int64_t aSize, int aFileType, const string& aString, const string& aToken); virtual void password(const string& pwd); virtual void info(bool alwaysSend); virtual size_t getUserCount() const { Lock l(cs); return users.size(); } virtual int64_t getAvailable() const; virtual string escape(string const& str) const { return AdcCommand::escape(str, false); } virtual void send(const AdcCommand& cmd); string getMySID() { return AdcCommand::fromSID(sid); } private: friend class ClientManager; friend class CommandHandler; AdcHub(const string& aHubURL, bool secure); AdcHub(const AdcHub&); AdcHub& operator=(const AdcHub&); virtual ~AdcHub() throw(); /** Map session id to OnlineUser */ typedef unordered_map SIDMap; typedef SIDMap::iterator SIDIter; bool oldPassword; Socket udp; SIDMap users; StringMap lastInfoMap; mutable CriticalSection cs; string salt; uint32_t sid; static const string CLIENT_PROTOCOL; static const string CLIENT_PROTOCOL_TEST; static const string SECURE_CLIENT_PROTOCOL_TEST; static const string ADCS_FEATURE; static const string TCP4_FEATURE; static const string UDP4_FEATURE; static const string BASE_SUPPORT; static const string BAS0_SUPPORT; static const string TIGR_SUPPORT; static const string UCM0_SUPPORT; static const string BLO0_SUPPORT; virtual string checkNick(const string& nick); OnlineUser& getUser(const uint32_t aSID, const CID& aCID); OnlineUser* findUser(const uint32_t sid) const; OnlineUser* findUser(const CID& cid) const; void putUser(const uint32_t sid, bool disconnect); void clearUsers(); void handle(AdcCommand::SUP, AdcCommand& c) throw(); void handle(AdcCommand::SID, AdcCommand& c) throw(); void handle(AdcCommand::MSG, AdcCommand& c) throw(); void handle(AdcCommand::INF, AdcCommand& c) throw(); void handle(AdcCommand::GPA, AdcCommand& c) throw(); void handle(AdcCommand::QUI, AdcCommand& c) throw(); void handle(AdcCommand::CTM, AdcCommand& c) throw(); void handle(AdcCommand::RCM, AdcCommand& c) throw(); void handle(AdcCommand::STA, AdcCommand& c) throw(); void handle(AdcCommand::SCH, AdcCommand& c) throw(); void handle(AdcCommand::CMD, AdcCommand& c) throw(); void handle(AdcCommand::RES, AdcCommand& c) throw(); void handle(AdcCommand::GET, AdcCommand& c) throw(); template void handle(T, AdcCommand&) { } void sendUDP(const AdcCommand& cmd) throw(); virtual void on(Connecting) throw() { fire(ClientListener::Connecting(), this); } virtual void on(Connected) throw(); virtual void on(Line, const string& aLine) throw(); virtual void on(Failed, const string& aLine) throw(); virtual void on(Second, uint32_t aTick) throw(); }; } // namespace dcpp #endif // !defined(ADC_HUB_H)