/*************************************************************************** * Copyright (C) 2008 by Max-Wilhelm Bruker * * brukie@laptop * * * * 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 SERVERSOCKETINTERFACE_H #define SERVERSOCKETINTERFACE_H #include #include #include #include "server_protocolhandler.h" class QTcpSocket; class Servatrice; class QXmlStreamReader; class QXmlStreamWriter; class DeckList; class TopLevelProtocolItem; class QByteArray; class ServerSocketInterface : public Server_ProtocolHandler { Q_OBJECT private slots: void readClient(); void catchSocketError(QAbstractSocket::SocketError socketError); void processProtocolItem(ProtocolItem *item); void flushXmlBuffer(); signals: void xmlBufferChanged(); private: QMutex xmlBufferMutex; Servatrice *servatrice; QTcpSocket *socket; QXmlStreamWriter *xmlWriter; QXmlStreamReader *xmlReader; QString xmlBuffer; TopLevelProtocolItem *topLevelItem; bool compressionSupport; int getUserIdInDB(const QString &name) const; ResponseCode cmdAddToList(Command_AddToList *cmd, CommandContainer *cont); ResponseCode cmdRemoveFromList(Command_RemoveFromList *cmd, CommandContainer *cont); int getDeckPathId(int basePathId, QStringList path); int getDeckPathId(const QString &path); bool deckListHelper(DeckList_Directory *folder); ResponseCode cmdDeckList(Command_DeckList *cmd, CommandContainer *cont); ResponseCode cmdDeckNewDir(Command_DeckNewDir *cmd, CommandContainer *cont); void deckDelDirHelper(int basePathId); ResponseCode cmdDeckDelDir(Command_DeckDelDir *cmd, CommandContainer *cont); ResponseCode cmdDeckDel(Command_DeckDel *cmd, CommandContainer *cont); ResponseCode cmdDeckUpload(Command_DeckUpload *cmd, CommandContainer *cont); DeckList *getDeckFromDatabase(int deckId); ResponseCode cmdDeckDownload(Command_DeckDownload *cmd, CommandContainer *cont); ResponseCode cmdBanFromServer(Command_BanFromServer *cmd, CommandContainer *cont); ResponseCode cmdShutdownServer(Command_ShutdownServer *cmd, CommandContainer *cont); ResponseCode cmdUpdateServerMessage(Command_UpdateServerMessage *cmd, CommandContainer *cont); protected: bool getCompressionSupport() const { return compressionSupport; } public: ServerSocketInterface(Servatrice *_server, QTcpSocket *_socket, QObject *parent = 0); ~ServerSocketInterface(); QHostAddress getPeerAddress() const { return socket->peerAddress(); } QString getAddress() const { return socket->peerAddress().toString(); } void sendProtocolItem(ProtocolItem *item, bool deleteItem = true); }; #endif