choke uploadProgress signals
[profile/ivi/qtbase.git] / src / network / access / qhttpnetworkheader.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtNetwork module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qhttpnetworkheader_p.h"
43
44 #ifndef QT_NO_HTTP
45
46 QT_BEGIN_NAMESPACE
47
48 QHttpNetworkHeaderPrivate::QHttpNetworkHeaderPrivate(const QUrl &newUrl)
49     :url(newUrl)
50 {
51 }
52
53 QHttpNetworkHeaderPrivate::QHttpNetworkHeaderPrivate(const QHttpNetworkHeaderPrivate &other)
54     :QSharedData(other)
55 {
56     url = other.url;
57     fields = other.fields;
58 }
59
60 qint64 QHttpNetworkHeaderPrivate::contentLength() const
61 {
62     bool ok = false;
63     // We are not using the headerField() method here because servers might send us multiple content-length
64     // headers which is crap (see QTBUG-15311). Therefore just take the first content-length header field.
65     QByteArray value;
66     QList<QPair<QByteArray, QByteArray> >::ConstIterator it = fields.constBegin(),
67                                                         end = fields.constEnd();
68     for ( ; it != end; ++it)
69         if (qstricmp("content-length", it->first) == 0) {
70             value = it->second;
71             break;
72         }
73
74     qint64 length = value.toULongLong(&ok);
75     if (ok)
76         return length;
77     return -1; // the header field is not set
78 }
79
80 void QHttpNetworkHeaderPrivate::setContentLength(qint64 length)
81 {
82     setHeaderField("Content-Length", QByteArray::number(length));
83 }
84
85 QByteArray QHttpNetworkHeaderPrivate::headerField(const QByteArray &name, const QByteArray &defaultValue) const
86 {
87     QList<QByteArray> allValues = headerFieldValues(name);
88     if (allValues.isEmpty())
89         return defaultValue;
90
91     QByteArray result;
92     bool first = true;
93     foreach (const QByteArray &value, allValues) {
94         if (!first)
95             result += ", ";
96         first = false;
97         result += value;
98     }
99     return result;
100 }
101
102 QList<QByteArray> QHttpNetworkHeaderPrivate::headerFieldValues(const QByteArray &name) const
103 {
104     QList<QByteArray> result;
105     QList<QPair<QByteArray, QByteArray> >::ConstIterator it = fields.constBegin(),
106                                                         end = fields.constEnd();
107     for ( ; it != end; ++it)
108         if (qstricmp(name.constData(), it->first) == 0)
109             result += it->second;
110
111     return result;
112 }
113
114 void QHttpNetworkHeaderPrivate::setHeaderField(const QByteArray &name, const QByteArray &data)
115 {
116     QList<QPair<QByteArray, QByteArray> >::Iterator it = fields.begin();
117     while (it != fields.end()) {
118         if (qstricmp(name.constData(), it->first) == 0)
119             it = fields.erase(it);
120         else
121             ++it;
122     }
123     fields.append(qMakePair(name, data));
124 }
125
126 bool QHttpNetworkHeaderPrivate::operator==(const QHttpNetworkHeaderPrivate &other) const
127 {
128    return (url == other.url);
129 }
130
131
132 QT_END_NAMESPACE
133
134 #endif