~gabriel1984sibiu/minitube/qt5.6

« back to all changes in this revision

Viewing changes to src/network/bearer/qnetworksession_p.h

  • Committer: Grevutiu Gabriel
  • Date: 2017-06-13 08:43:17 UTC
  • Revision ID: gabriel1984sibiu@gmail.com-20170613084317-ek0zqe0u9g3ocvi8
OriginalĀ upstreamĀ code

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2016 The Qt Company Ltd.
 
4
** Contact: https://www.qt.io/licensing/
 
5
**
 
6
** This file is part of the QtNetwork module of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
9
** Commercial License Usage
 
10
** Licensees holding valid commercial Qt licenses may use this file in
 
11
** accordance with the commercial license agreement provided with the
 
12
** Software or, alternatively, in accordance with the terms contained in
 
13
** a written agreement between you and The Qt Company. For licensing terms
 
14
** and conditions see https://www.qt.io/terms-conditions. For further
 
15
** information use the contact form at https://www.qt.io/contact-us.
 
16
**
 
17
** GNU Lesser General Public License Usage
 
18
** Alternatively, this file may be used under the terms of the GNU Lesser
 
19
** General Public License version 3 as published by the Free Software
 
20
** Foundation and appearing in the file LICENSE.LGPL3 included in the
 
21
** packaging of this file. Please review the following information to
 
22
** ensure the GNU Lesser General Public License version 3 requirements
 
23
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
 
24
**
 
25
** GNU General Public License Usage
 
26
** Alternatively, this file may be used under the terms of the GNU
 
27
** General Public License version 2.0 or (at your option) the GNU General
 
28
** Public license version 3 or any later version approved by the KDE Free
 
29
** Qt Foundation. The licenses are as published by the Free Software
 
30
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
 
31
** included in the packaging of this file. Please review the following
 
32
** information to ensure the GNU General Public License requirements will
 
33
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
 
34
** https://www.gnu.org/licenses/gpl-3.0.html.
 
35
**
 
36
** $QT_END_LICENSE$
 
37
**
 
38
****************************************************************************/
 
39
 
 
40
#ifndef QNETWORKSESSIONPRIVATE_H
 
41
#define QNETWORKSESSIONPRIVATE_H
 
42
 
 
43
//
 
44
//  W A R N I N G
 
45
//  -------------
 
46
//
 
47
// This file is not part of the Qt API.  It exists purely as an
 
48
// implementation detail.  This header file may change from version to
 
49
// version without notice, or even be removed.
 
50
//
 
51
// We mean it.
 
52
//
 
53
 
 
54
#include "qnetworksession.h"
 
55
#include "qnetworkconfiguration_p.h"
 
56
#include "QtCore/qsharedpointer.h"
 
57
 
 
58
#ifndef QT_NO_BEARERMANAGEMENT
 
59
 
 
60
QT_BEGIN_NAMESPACE
 
61
 
 
62
class Q_NETWORK_EXPORT QNetworkSessionPrivate : public QObject
 
63
{
 
64
    Q_OBJECT
 
65
 
 
66
    friend class QNetworkSession;
 
67
 
 
68
public:
 
69
    QNetworkSessionPrivate() : QObject(),
 
70
        state(QNetworkSession::Invalid), isOpen(false), mutex(QMutex::Recursive)
 
71
    {}
 
72
    virtual ~QNetworkSessionPrivate()
 
73
    {}
 
74
 
 
75
    //called by QNetworkSession constructor and ensures
 
76
    //that the state is immediately updated (w/o actually opening
 
77
    //a session). Also this function should take care of
 
78
    //notification hooks to discover future state changes.
 
79
    virtual void syncStateWithInterface() = 0;
 
80
 
 
81
#ifndef QT_NO_NETWORKINTERFACE
 
82
    virtual QNetworkInterface currentInterface() const = 0;
 
83
#endif
 
84
    virtual QVariant sessionProperty(const QString &key) const = 0;
 
85
    virtual void setSessionProperty(const QString &key, const QVariant &value) = 0;
 
86
 
 
87
    virtual void open() = 0;
 
88
    virtual void close() = 0;
 
89
    virtual void stop() = 0;
 
90
 
 
91
    virtual void setALREnabled(bool /*enabled*/) {}
 
92
    virtual void migrate() = 0;
 
93
    virtual void accept() = 0;
 
94
    virtual void ignore() = 0;
 
95
    virtual void reject() = 0;
 
96
 
 
97
    virtual QString errorString() const = 0; //must return translated string
 
98
    virtual QNetworkSession::SessionError error() const = 0;
 
99
 
 
100
    virtual quint64 bytesWritten() const = 0;
 
101
    virtual quint64 bytesReceived() const = 0;
 
102
    virtual quint64 activeTime() const = 0;
 
103
 
 
104
    virtual QNetworkSession::UsagePolicies usagePolicies() const = 0;
 
105
    virtual void setUsagePolicies(QNetworkSession::UsagePolicies) = 0;
 
106
 
 
107
    static void setUsagePolicies(QNetworkSession&, QNetworkSession::UsagePolicies); //for unit testing
 
108
protected:
 
109
    inline QNetworkConfigurationPrivatePointer privateConfiguration(const QNetworkConfiguration &config) const
 
110
    {
 
111
        return config.d;
 
112
    }
 
113
 
 
114
    inline void setPrivateConfiguration(QNetworkConfiguration &config,
 
115
                                        const QNetworkConfigurationPrivatePointer &ptr) const
 
116
    {
 
117
        config.d = ptr;
 
118
    }
 
119
 
 
120
Q_SIGNALS:
 
121
    //releases any pending waitForOpened() calls
 
122
    void quitPendingWaitsForOpened();
 
123
 
 
124
    void error(QNetworkSession::SessionError error);
 
125
    void stateChanged(QNetworkSession::State state);
 
126
    void closed();
 
127
    void newConfigurationActivated();
 
128
    void preferredConfigurationChanged(const QNetworkConfiguration &config, bool isSeamless);
 
129
    void usagePoliciesChanged(QNetworkSession::UsagePolicies);
 
130
 
 
131
protected:
 
132
    QNetworkSession *q;
 
133
 
 
134
    // The config set on QNetworkSession.
 
135
    QNetworkConfiguration publicConfig;
 
136
 
 
137
    // If publicConfig is a ServiceNetwork this is a copy of publicConfig.
 
138
    // If publicConfig is an UserChoice that is resolved to a ServiceNetwork this is the actual
 
139
    // ServiceNetwork configuration.
 
140
    QNetworkConfiguration serviceConfig;
 
141
 
 
142
    // This is the actual active configuration currently in use by the session.
 
143
    // Either a copy of publicConfig or one of serviceConfig.children().
 
144
    QNetworkConfiguration activeConfig;
 
145
 
 
146
    QNetworkSession::State state;
 
147
    bool isOpen;
 
148
 
 
149
    QMutex mutex;
 
150
};
 
151
 
 
152
QT_END_NAMESPACE
 
153
 
 
154
#endif // QT_NO_BEARERMANAGEMENT
 
155
 
 
156
#endif // QNETWORKSESSIONPRIVATE_H