e5d12179fe8380013acd2baee6bce9d33fd3437e
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativenetworkaccessmanagerfactory.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qdeclarativenetworkaccessmanagerfactory.h"
43
44 QT_BEGIN_NAMESPACE
45
46 /*!
47     \class QDeclarativeNetworkAccessManagerFactory
48     \since 4.7
49     \brief The QDeclarativeNetworkAccessManagerFactory class creates QNetworkAccessManager instances for a QML engine.
50
51     A QML engine uses QNetworkAccessManager for all network access.
52     By implementing a factory, it is possible to provide the QML engine
53     with custom QNetworkAccessManager instances with specialized caching,
54     proxy and cookies support.
55
56     To implement a factory, subclass QDeclarativeNetworkAccessManagerFactory and
57     implement the virtual create() method, then assign it to the relevant QML
58     engine using QDeclarativeEngine::setNetworkAccessManagerFactory().
59
60     Note the QML engine may create QNetworkAccessManager instances
61     from multiple threads. Because of this, the implementation of the create()
62     method must be \l{Reentrancy and Thread-Safety}{reentrant}. In addition,
63     the developer should be careful if the signals of the object to be
64     returned from create() are connected to the slots of an object that may
65     be created in a different thread:
66
67     \list
68     \o The QML engine internally handles all requests, and cleans up any
69        QNetworkReply objects it creates. Receiving the
70        QNetworkAccessManager::finished() signal in another thread may not
71        provide the receiver with a valid reply object if it has already
72        been deleted.
73     \o Authentication details provided to QNetworkAccessManager::authenticationRequired()
74        must be provided immediately, so this signal cannot be connected as a
75        Qt::QueuedConnection (or as the default Qt::AutoConnection from another
76        thread).
77     \endlist
78
79     For more information about signals and threads, see
80     \l {Threads and QObjects} and \l {Signals and Slots Across Threads}.
81
82     \sa {declarative/cppextensions/networkaccessmanagerfactory}{NetworkAccessManagerFactory example}
83 */
84
85 /*!
86     Destroys the factory. The default implementation does nothing.
87  */
88 QDeclarativeNetworkAccessManagerFactory::~QDeclarativeNetworkAccessManagerFactory()
89 {
90 }
91
92 /*!
93     \fn QNetworkAccessManager *QDeclarativeNetworkAccessManagerFactory::create(QObject *parent)
94
95     Creates and returns a network access manager with the specified \a parent.
96     This method must return a new QNetworkAccessManager instance each time
97     it is called.
98
99     Note: this method may be called by multiple threads, so ensure the
100     implementation of this method is reentrant.
101 */
102
103 QT_END_NAMESPACE