source: trunk/src/network/socket/qabstractsocketengine.cpp@ 67

Last change on this file since 67 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 7.3 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the QtNetwork module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "qabstractsocketengine_p.h"
43#include "qnativesocketengine_p.h"
44#include "qmutex.h"
45#include "qnetworkproxy.h"
46
47QT_BEGIN_NAMESPACE
48
49class QSocketEngineHandlerList : public QList<QSocketEngineHandler*>
50{
51public:
52 QMutex mutex;
53};
54
55Q_GLOBAL_STATIC(QSocketEngineHandlerList, socketHandlers)
56
57QSocketEngineHandler::QSocketEngineHandler()
58{
59 if (!socketHandlers())
60 return;
61 QMutexLocker locker(&socketHandlers()->mutex);
62 socketHandlers()->prepend(this);
63}
64
65QSocketEngineHandler::~QSocketEngineHandler()
66{
67 if (!socketHandlers())
68 return;
69 QMutexLocker locker(&socketHandlers()->mutex);
70 socketHandlers()->removeAll(this);
71}
72
73QAbstractSocketEnginePrivate::QAbstractSocketEnginePrivate()
74 : socketError(QAbstractSocket::UnknownSocketError)
75 , hasSetSocketError(false)
76 , socketErrorString(QLatin1String(QT_TRANSLATE_NOOP(QSocketLayer, "Unknown error")))
77 , socketState(QAbstractSocket::UnconnectedState)
78 , socketType(QAbstractSocket::UnknownSocketType)
79 , socketProtocol(QAbstractSocket::UnknownNetworkLayerProtocol)
80 , localPort(0)
81 , peerPort(0)
82 , receiver(0)
83{
84}
85
86QAbstractSocketEngine::QAbstractSocketEngine(QObject *parent)
87 : QObject(*new QAbstractSocketEnginePrivate(), parent)
88{
89}
90
91QAbstractSocketEngine::QAbstractSocketEngine(QAbstractSocketEnginePrivate &dd, QObject* parent)
92 : QObject(dd, parent)
93{
94}
95
96QAbstractSocketEngine *QAbstractSocketEngine::createSocketEngine(QAbstractSocket::SocketType socketType, const QNetworkProxy &proxy, QObject *parent)
97{
98#ifndef QT_NO_NETWORKPROXY
99 // proxy type must have been resolved by now
100 if (proxy.type() == QNetworkProxy::DefaultProxy)
101 return 0;
102#endif
103
104 QMutexLocker locker(&socketHandlers()->mutex);
105 for (int i = 0; i < socketHandlers()->size(); i++) {
106 if (QAbstractSocketEngine *ret = socketHandlers()->at(i)->createSocketEngine(socketType, proxy, parent))
107 return ret;
108 }
109
110#ifndef QT_NO_NETWORKPROXY
111 // only NoProxy can have reached here
112 if (proxy.type() != QNetworkProxy::NoProxy)
113 return 0;
114#endif
115
116 return new QNativeSocketEngine(parent);
117}
118
119QAbstractSocketEngine *QAbstractSocketEngine::createSocketEngine(int socketDescripter, QObject *parent)
120{
121 QMutexLocker locker(&socketHandlers()->mutex);
122 for (int i = 0; i < socketHandlers()->size(); i++) {
123 if (QAbstractSocketEngine *ret = socketHandlers()->at(i)->createSocketEngine(socketDescripter, parent))
124 return ret;
125 }
126 return new QNativeSocketEngine(parent);
127}
128
129QAbstractSocket::SocketError QAbstractSocketEngine::error() const
130{
131 return d_func()->socketError;
132}
133
134QString QAbstractSocketEngine::errorString() const
135{
136 return d_func()->socketErrorString;
137}
138
139void QAbstractSocketEngine::setError(QAbstractSocket::SocketError error, const QString &errorString) const
140{
141 Q_D(const QAbstractSocketEngine);
142 d->socketError = error;
143 d->socketErrorString = errorString;
144}
145
146void QAbstractSocketEngine::setReceiver(QAbstractSocketEngineReceiver *receiver)
147{
148 d_func()->receiver = receiver;
149}
150
151void QAbstractSocketEngine::readNotification()
152{
153 if (QAbstractSocketEngineReceiver *receiver = d_func()->receiver)
154 receiver->readNotification();
155}
156
157void QAbstractSocketEngine::writeNotification()
158{
159 if (QAbstractSocketEngineReceiver *receiver = d_func()->receiver)
160 receiver->writeNotification();
161}
162
163void QAbstractSocketEngine::exceptionNotification()
164{
165 if (QAbstractSocketEngineReceiver *receiver = d_func()->receiver)
166 receiver->exceptionNotification();
167}
168
169void QAbstractSocketEngine::connectionNotification()
170{
171 if (QAbstractSocketEngineReceiver *receiver = d_func()->receiver)
172 receiver->connectionNotification();
173}
174
175#ifndef QT_NO_NETWORKPROXY
176void QAbstractSocketEngine::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator)
177{
178 if (QAbstractSocketEngineReceiver *receiver = d_func()->receiver)
179 receiver->proxyAuthenticationRequired(proxy, authenticator);
180}
181#endif
182
183
184QAbstractSocket::SocketState QAbstractSocketEngine::state() const
185{
186 return d_func()->socketState;
187}
188
189void QAbstractSocketEngine::setState(QAbstractSocket::SocketState state)
190{
191 d_func()->socketState = state;
192}
193
194QAbstractSocket::SocketType QAbstractSocketEngine::socketType() const
195{
196 return d_func()->socketType;
197}
198
199void QAbstractSocketEngine::setSocketType(QAbstractSocket::SocketType socketType)
200{
201 d_func()->socketType = socketType;
202}
203
204QAbstractSocket::NetworkLayerProtocol QAbstractSocketEngine::protocol() const
205{
206 return d_func()->socketProtocol;
207}
208
209void QAbstractSocketEngine::setProtocol(QAbstractSocket::NetworkLayerProtocol protocol)
210{
211 d_func()->socketProtocol = protocol;
212}
213
214QHostAddress QAbstractSocketEngine::localAddress() const
215{
216 return d_func()->localAddress;
217}
218
219void QAbstractSocketEngine::setLocalAddress(const QHostAddress &address)
220{
221 d_func()->localAddress = address;
222}
223
224quint16 QAbstractSocketEngine::localPort() const
225{
226 return d_func()->localPort;
227}
228
229void QAbstractSocketEngine::setLocalPort(quint16 port)
230{
231 d_func()->localPort = port;
232}
233
234QHostAddress QAbstractSocketEngine::peerAddress() const
235{
236 return d_func()->peerAddress;
237}
238
239void QAbstractSocketEngine::setPeerAddress(const QHostAddress &address)
240{
241 d_func()->peerAddress = address;
242}
243
244quint16 QAbstractSocketEngine::peerPort() const
245{
246 return d_func()->peerPort;
247}
248
249void QAbstractSocketEngine::setPeerPort(quint16 port)
250{
251 d_func()->peerPort = port;
252}
253
254QT_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.