summaryrefslogtreecommitdiffstats
path: root/src/net/pvsOutgoingMulticastTransfer.h
blob: 5fd6a3dbb03174bf90b18dddb4c7265150d645f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
# Copyright (c) 2009 - OpenSLX Project, Computer Center University of Freiburg
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# src/net/pvsOutgoingMulticastTransfer.h
#    - wrap McastSender functionality in PVS daemon
# -----------------------------------------------------------------------------
*/

#ifndef PVSOUTGOINGMULTICASTTRANSFER_H_
#define PVSOUTGOINGMULTICASTTRANSFER_H_

#include <QtGlobal>
#include <QObject>
#include <QString>

#include <src/net/pvsMsg.h>

class QFile;
class QTimer;
class McastConfiguration;
class McastPGMSocket;
class McastSender;

class PVSOutgoingMulticastTransfer : public QObject
{
    Q_OBJECT
public:
    PVSOutgoingMulticastTransfer(QString senderName, quint64 id, QString filename, QObject* parent = 0);
    virtual ~PVSOutgoingMulticastTransfer();

    quint64 id() const
    {
        return _id;
    }

    bool isError() const
    {
        return _error;
    }

    QString reason() const
    {
        return _reason;
    }

signals:
    void started(qulonglong id);
    void progress(qulonglong id, qulonglong bytes, qulonglong of);
    void allSent(qulonglong id);
    void finished(qulonglong id);
    void failed(qulonglong id, QString const reason);
    void announce(PVSMsg announcement);

private slots:
    void senderProgress(quint64 bytes);
    void senderFinished();
    void reportTimeout();
    void doStart();
    void prepare();

public slots:
    void start();
    void abort();
    void retry();

private:
    QFile* _file;
    quint64 _length;
    quint64 _progress;
    McastConfiguration* _config;
    McastPGMSocket* _socket;
    McastSender* _sender;
    QTimer* _progressTimer;
    QTimer* _prepareTimer;
    QString _senderName;
    quint64 _id;
    bool _error;
    QString _reason;
    bool _socketInacceptable;

    void error(QString const& reason);
};

#endif /* PVSOUTGOINGMULTICASTTRANSFER_H_ */