source: trunk/src/network/access/qhttpnetworkheader.cpp@ 890

Last change on this file since 890 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

  • Property svn:eol-style set to native
File size: 4.5 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtNetwork module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this 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 have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "qhttpnetworkheader_p.h"
43
44#ifndef QT_NO_HTTP
45
46QT_BEGIN_NAMESPACE
47
48QHttpNetworkHeaderPrivate::QHttpNetworkHeaderPrivate(const QUrl &newUrl)
49 :url(newUrl)
50{
51}
52
53QHttpNetworkHeaderPrivate::QHttpNetworkHeaderPrivate(const QHttpNetworkHeaderPrivate &other)
54 :QSharedData(other)
55{
56 url = other.url;
57 fields = other.fields;
58}
59
60qint64 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
80void QHttpNetworkHeaderPrivate::setContentLength(qint64 length)
81{
82 setHeaderField("Content-Length", QByteArray::number(length));
83}
84
85QByteArray 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
102QList<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
114void 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
126bool QHttpNetworkHeaderPrivate::operator==(const QHttpNetworkHeaderPrivate &other) const
127{
128 return (url == other.url);
129}
130
131
132QT_END_NAMESPACE
133
134#endif
Note: See TracBrowser for help on using the repository browser.