Qt 4.8
Public Functions | Public Variables | List of all members
QHttpNetworkHeaderPrivate Class Reference

#include <qhttpnetworkheader_p.h>

Inheritance diagram for QHttpNetworkHeaderPrivate:
QSharedData QHttpNetworkReplyPrivate QHttpNetworkRequestPrivate

Public Functions

qint64 contentLength () const
 
QByteArray headerField (const QByteArray &name, const QByteArray &defaultValue=QByteArray()) const
 
QList< QByteArrayheaderFieldValues (const QByteArray &name) const
 
bool operator== (const QHttpNetworkHeaderPrivate &other) const
 
 QHttpNetworkHeaderPrivate (const QUrl &newUrl=QUrl())
 
 QHttpNetworkHeaderPrivate (const QHttpNetworkHeaderPrivate &other)
 
void setContentLength (qint64 length)
 
void setHeaderField (const QByteArray &name, const QByteArray &data)
 
- Public Functions inherited from QSharedData
 QSharedData ()
 Constructs a QSharedData object with a reference count of 0. More...
 
 QSharedData (const QSharedData &)
 Constructs a QSharedData object with reference count 0. More...
 

Public Variables

QList< QPair< QByteArray, QByteArray > > fields
 
QUrl url
 
- Public Variables inherited from QSharedData
QAtomicInt ref
 

Detailed Description

Definition at line 80 of file qhttpnetworkheader_p.h.

Constructors and Destructors

◆ QHttpNetworkHeaderPrivate() [1/2]

QHttpNetworkHeaderPrivate::QHttpNetworkHeaderPrivate ( const QUrl newUrl = QUrl())

Definition at line 48 of file qhttpnetworkheader.cpp.

49  :url(newUrl)
50 {
51 }

◆ QHttpNetworkHeaderPrivate() [2/2]

QHttpNetworkHeaderPrivate::QHttpNetworkHeaderPrivate ( const QHttpNetworkHeaderPrivate other)

Definition at line 53 of file qhttpnetworkheader.cpp.

54  :QSharedData(other)
55 {
56  url = other.url;
57  fields = other.fields;
58 }
QSharedData()
Constructs a QSharedData object with a reference count of 0.
Definition: qshareddata.h:61
QList< QPair< QByteArray, QByteArray > > fields

Functions

◆ contentLength()

qint64 QHttpNetworkHeaderPrivate::contentLength ( ) const

Definition at line 60 of file qhttpnetworkheader.cpp.

Referenced by QHttpNetworkRequest::contentLength(), QHttpNetworkReplyPrivate::expectContent(), and QHttpNetworkReplyPrivate::readHeader().

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;
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 }
#define it(className, varName)
The QByteArray class provides an array of bytes.
Definition: qbytearray.h:135
const_iterator constBegin() const
Returns a const STL-style iterator pointing to the first item in the list.
Definition: qlist.h:269
QList< QPair< QByteArray, QByteArray > > fields
qulonglong toULongLong(bool *ok=0, int base=10) const
Returns the byte array converted to an {unsigned long long} using base base, which is 10 by default a...
__int64 qint64
Definition: qglobal.h:942
T & first()
Returns a reference to the first item in the list.
Definition: qlist.h:282
Q_CORE_EXPORT int qstricmp(const char *, const char *)
static const KeyPair *const end
The QList class is a template class that provides lists.
Definition: qdatastream.h:62
const_iterator constEnd() const
Returns a const STL-style iterator pointing to the imaginary item after the last item in the list...
Definition: qlist.h:272

◆ headerField()

QByteArray QHttpNetworkHeaderPrivate::headerField ( const QByteArray name,
const QByteArray defaultValue = QByteArray() 
) const

Definition at line 85 of file qhttpnetworkheader.cpp.

Referenced by QHttpNetworkRequest::headerField(), QHttpNetworkReplyPrivate::isGzipped(), and QHttpNetworkReplyPrivate::readHeader().

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 }
The QByteArray class provides an array of bytes.
Definition: qbytearray.h:135
QList< QByteArray > headerFieldValues(const QByteArray &name) const
bool isEmpty() const
Returns true if the list contains no items; otherwise returns false.
Definition: qlist.h:152

◆ headerFieldValues()

QList< QByteArray > QHttpNetworkHeaderPrivate::headerFieldValues ( const QByteArray name) const

Definition at line 102 of file qhttpnetworkheader.cpp.

Referenced by QHttpNetworkReplyPrivate::authenticationMethod(), QHttpNetworkReplyPrivate::findChallenge(), and headerField().

103 {
104  QList<QByteArray> result;
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 }
#define it(className, varName)
const_iterator constBegin() const
Returns a const STL-style iterator pointing to the first item in the list.
Definition: qlist.h:269
QList< QPair< QByteArray, QByteArray > > fields
T & first()
Returns a reference to the first item in the list.
Definition: qlist.h:282
const char * constData() const
Returns a pointer to the data stored in the byte array.
Definition: qbytearray.h:433
Q_CORE_EXPORT int qstricmp(const char *, const char *)
static const KeyPair *const end
const_iterator constEnd() const
Returns a const STL-style iterator pointing to the imaginary item after the last item in the list...
Definition: qlist.h:272

◆ operator==()

bool QHttpNetworkHeaderPrivate::operator== ( const QHttpNetworkHeaderPrivate other) const

Definition at line 126 of file qhttpnetworkheader.cpp.

Referenced by QHttpNetworkRequestPrivate::operator==().

127 {
128  return (url == other.url);
129 }

◆ setContentLength()

void QHttpNetworkHeaderPrivate::setContentLength ( qint64  length)

Definition at line 80 of file qhttpnetworkheader.cpp.

Referenced by QHttpNetworkRequest::setContentLength().

81 {
82  setHeaderField("Content-Length", QByteArray::number(length));
83 }
static QByteArray number(int, int base=10)
Returns a byte array containing the string equivalent of the number n to base base (10 by default)...
void setHeaderField(const QByteArray &name, const QByteArray &data)

◆ setHeaderField()

void QHttpNetworkHeaderPrivate::setHeaderField ( const QByteArray name,
const QByteArray data 
)

Definition at line 114 of file qhttpnetworkheader.cpp.

Referenced by setContentLength(), and QHttpNetworkRequest::setHeaderField().

115 {
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 }
#define it(className, varName)
iterator begin()
Returns an STL-style iterator pointing to the first item in the list.
Definition: qlist.h:267
void append(const T &t)
Inserts value at the end of the list.
Definition: qlist.h:507
iterator end()
Returns an STL-style iterator pointing to the imaginary item after the last item in the list...
Definition: qlist.h:270
QList< QPair< QByteArray, QByteArray > > fields
T & first()
Returns a reference to the first item in the list.
Definition: qlist.h:282
const char * constData() const
Returns a pointer to the data stored in the byte array.
Definition: qbytearray.h:433
iterator erase(iterator pos)
Removes the item associated with the iterator pos from the list, and returns an iterator to the next ...
Definition: qlist.h:464
Q_OUTOFLINE_TEMPLATE QPair< T1, T2 > qMakePair(const T1 &x, const T2 &y)
Definition: qpair.h:102
Q_CORE_EXPORT int qstricmp(const char *, const char *)
The QList class is a template class that provides lists.
Definition: qdatastream.h:62

Properties

◆ fields

QList<QPair<QByteArray, QByteArray> > QHttpNetworkHeaderPrivate::fields

◆ url

QUrl QHttpNetworkHeaderPrivate::url

The documentation for this class was generated from the following files: