X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoretransfer.h;h=02c21c8804827cfb2ebac139fe2193d85d0a84ec;hp=9d57db37921c52fb6daf8a8a807e3580564f407a;hb=c194ed5fb3d15e14b9364f9796d3521910dc72fe;hpb=0d7b511c8510d7fd05d3a704114e34ff37f7a995 diff --git a/src/core/coretransfer.h b/src/core/coretransfer.h index 9d57db37..02c21c88 100644 --- a/src/core/coretransfer.h +++ b/src/core/coretransfer.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,24 +18,45 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef CORETRANSFER_H -#define CORETRANSFER_H +#pragma once + +#include #include "transfer.h" +#include "peer.h" + +class QTcpSocket; class CoreTransfer : public Transfer { Q_OBJECT - SYNCABLE_OBJECT public: - CoreTransfer(Direction direction, const QString &nick, const QString &fileName, const QHostAddress &address, quint16 port, quint64 size = 0, QObject *parent = 0); + CoreTransfer(Direction direction, const QString &nick, const QString &fileName, const QHostAddress &address, quint16 port, quint64 size = 0, QObject *parent = nullptr); + + quint64 transferred() const override; public slots: + void start(); + // called through sync calls - void requestAccepted(PeerPtr peer); - void requestRejected(PeerPtr peer); + void requestAccepted(PeerPtr peer) override; + void requestRejected(PeerPtr peer) override; -}; +private slots: + void startReceiving(); + void onDataReceived(); + void onSocketDisconnected(); + void onSocketError(QAbstractSocket::SocketError error); + +private: + void setupConnectionForReceive(); + bool relayData(const QByteArray &data, bool requireChunkSize); + void cleanUp() override; -#endif + QPointer _peer; + QTcpSocket *_socket; + quint64 _pos; + QByteArray _buffer; + bool _reading; +};