summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@qt.io>2022-12-05 07:29:44 +0100
committerMarc Mutz <marc.mutz@qt.io>2022-12-09 02:40:12 +0000
commitdfe03926b60de143e00565106de035705032a79a (patch)
treec59388312bb5c3d2ac0d6af203b4ed737b6a8ecb
parentbe05bb749ee5a0b124ef7b4fcf8e92b29de2eeb7 (diff)
QHttp1Configuration: make fit for release
- inline move special member functions and swap() - add qHash() overload (EqualityComparable types should be QtHashable) - unexport this non-polymoprphic class, export only individual members - don't use a heap-allocated Private just to hold a single number - use inline storage until we actually need to use external state - limit the max. connections to 255 to fit into an 8-bit value - document min/max of the numberOfConnectionsPerHost() property - use qsizetype instead of un-Qt-ish unsigned int Task-number: QTBUG-108215 Task-number: QTBUG-25280 Change-Id: Ia9841f2dbabd13219ffd813aff3947aa0c8bdc0c Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
-rw-r--r--src/network/access/qhttp1configuration.cpp95
-rw-r--r--src/network/access/qhttp1configuration.h44
2 files changed, 90 insertions, 49 deletions
diff --git a/src/network/access/qhttp1configuration.cpp b/src/network/access/qhttp1configuration.cpp
index 1116467dba..2e804d66e4 100644
--- a/src/network/access/qhttp1configuration.cpp
+++ b/src/network/access/qhttp1configuration.cpp
@@ -3,10 +3,16 @@
#include "qhttp1configuration.h"
-#include "qdebug.h"
+#include <QtCore/private/qnumeric_p.h>
+#include <QtCore/qhashfunctions.h>
QT_BEGIN_NAMESPACE
+// QHttp1ConfigurationPrivate is unused until we need it:
+static_assert(sizeof(QHttp1Configuration) == sizeof(void*),
+ "You have added too many members to QHttp1Configuration::ShortData. "
+ "Decrease their size or switch to using a d-pointer.");
+
/*!
\class QHttp1Configuration
\brief The QHttp1Configuration class controls HTTP/1 parameters and settings.
@@ -26,42 +32,45 @@ QT_BEGIN_NAMESPACE
\sa QNetworkRequest::setHttp1Configuration(), QNetworkRequest::http1Configuration(), QNetworkAccessManager
*/
-class QHttp1ConfigurationPrivate : public QSharedData
-{
-public:
- unsigned numberOfConnectionsPerHost = 6; // QHttpNetworkConnectionPrivate::defaultHttpChannelCount
-};
-
/*!
Default constructs a QHttp1Configuration object.
*/
QHttp1Configuration::QHttp1Configuration()
- : d(new QHttp1ConfigurationPrivate)
+ : data{6, {}} // QHttpNetworkConnectionPrivate::defaultHttpChannelCount
{
}
/*!
Copy-constructs this QHttp1Configuration.
*/
-QHttp1Configuration::QHttp1Configuration(const QHttp1Configuration &) = default;
+QHttp1Configuration::QHttp1Configuration(const QHttp1Configuration &)
+ = default;
/*!
- Move-constructs this QHttp1Configuration from \a other
+ \fn QHttp1Configuration::QHttp1Configuration(QHttp1Configuration &&other)
+
+ Move-constructs this QHttp1Configuration from \a other.
+
+ \note The moved-from object \a other is placed in a
+ partially-formed state, in which the only valid operations are
+ destruction and assignment of a new value.
*/
-QHttp1Configuration::QHttp1Configuration(QHttp1Configuration &&other) noexcept
-{
- swap(other);
-}
/*!
Copy-assigns \a other to this QHttp1Configuration.
*/
-QHttp1Configuration &QHttp1Configuration::operator=(const QHttp1Configuration &) = default;
+QHttp1Configuration &QHttp1Configuration::operator=(const QHttp1Configuration &)
+ = default;
/*!
+ \fn QHttp1Configuration &QHttp1Configuration::operator=(QHttp1Configuration &&)
+
Move-assigns \a other to this QHttp1Configuration.
+
+ \note The moved-from object \a other is placed in a
+ partially-formed state, in which the only valid operations are
+ destruction and assignment of a new value.
*/
-QHttp1Configuration &QHttp1Configuration::operator=(QHttp1Configuration &&) noexcept = default;
/*!
Destructor.
@@ -70,35 +79,42 @@ QHttp1Configuration::~QHttp1Configuration()
= default;
/*!
- Sets number of connections (default 6) to a http(s)://host:port
+ Sets the number of connections (minimum: 1; maximum: 255)
+ used per http(s) \e{host}:\e{port} combination to \a number.
+
+ If \a number is ≤ 0, does nothing. If \a number is > 255, 255 is used.
+
\sa numberOfConnectionsPerHost
*/
-void QHttp1Configuration::setNumberOfConnectionsPerHost(unsigned number)
+void QHttp1Configuration::setNumberOfConnectionsPerHost(qsizetype number)
{
- if (number == 0) {
+ auto n = qt_saturate<std::uint8_t>(number);
+ if (n == 0)
return;
- }
- d->numberOfConnectionsPerHost = number;
+ data.numConnectionsPerHost = n;
}
+
/*!
- Returns the number of connections (default 6) to a http(s)://host:port
+ Returns the number of connections used per http(s) \c{host}:\e{port}
+ combination. The default is six (6).
+
\sa setNumberOfConnectionsPerHost
*/
-unsigned QHttp1Configuration::numberOfConnectionsPerHost() const
+qsizetype QHttp1Configuration::numberOfConnectionsPerHost() const
{
- return d->numberOfConnectionsPerHost;
+ return data.numConnectionsPerHost;
}
/*!
- Swaps this configuration with the \a other configuration.
+ \fn void QHttp1Configuration::swap(QHttp1Configuration &other)
+
+ Swaps this HTTP/1 configuration with \a other. This operation is very fast
+ and never fails.
*/
-void QHttp1Configuration::swap(QHttp1Configuration &other) noexcept
-{
- d.swap(other.d);
-}
/*!
\fn bool QHttp1Configuration::operator==(const QHttp1Configuration &lhs, const QHttp1Configuration &rhs) noexcept
+ \since 6.5
Returns \c true if \a lhs and \a rhs represent the same set of HTTP/1
parameters.
@@ -106,20 +122,33 @@ void QHttp1Configuration::swap(QHttp1Configuration &other) noexcept
/*!
\fn bool QHttp1Configuration::operator!=(const QHttp1Configuration &lhs, const QHttp1Configuration &rhs) noexcept
+ \since 6.5
Returns \c true if \a lhs and \a rhs do not represent the same set of
HTTP/1 parameters.
*/
/*!
+ \fn size_t QHttp1Configuration::qHash(const QHttp1Configuration &key, size_t seed)
+ \since 6.5
+
+ Returns the hash value for the \a key, using \a seed to seed the calculation.
+*/
+
+/*!
\internal
*/
-bool QHttp1Configuration::isEqual(const QHttp1Configuration &other) const noexcept
+bool QHttp1Configuration::equals(const QHttp1Configuration &other) const noexcept
{
- if (d == other.d)
- return true;
+ return data.numConnectionsPerHost == other.data.numConnectionsPerHost;
+}
- return d->numberOfConnectionsPerHost == other.d->numberOfConnectionsPerHost;
+/*!
+ \internal
+*/
+size_t QHttp1Configuration::hash(size_t seed) const noexcept
+{
+ return qHash(data.numConnectionsPerHost, seed);
}
QT_END_NAMESPACE
diff --git a/src/network/access/qhttp1configuration.h b/src/network/access/qhttp1configuration.h
index bc67fc7232..91e4554256 100644
--- a/src/network/access/qhttp1configuration.h
+++ b/src/network/access/qhttp1configuration.h
@@ -6,7 +6,8 @@
#include <QtNetwork/qtnetworkglobal.h>
-#include <QtCore/qshareddata.h>
+#include <utility>
+#include <cstdint>
#ifndef Q_CLANG_QDOC
QT_REQUIRE_CONFIG(http);
@@ -15,33 +16,44 @@ QT_REQUIRE_CONFIG(http);
QT_BEGIN_NAMESPACE
class QHttp1ConfigurationPrivate;
-class Q_NETWORK_EXPORT QHttp1Configuration
+class QHttp1Configuration
{
public:
- QHttp1Configuration();
- QHttp1Configuration(const QHttp1Configuration &other);
- QHttp1Configuration(QHttp1Configuration &&other) noexcept;
+ Q_NETWORK_EXPORT QHttp1Configuration();
+ Q_NETWORK_EXPORT QHttp1Configuration(const QHttp1Configuration &other);
+ QHttp1Configuration(QHttp1Configuration &&other) noexcept
+ : d{std::exchange(other.d, nullptr)} {}
- QHttp1Configuration &operator=(const QHttp1Configuration &other);
- QHttp1Configuration &operator=(QHttp1Configuration &&other) noexcept;
+ Q_NETWORK_EXPORT QHttp1Configuration &operator=(const QHttp1Configuration &other);
+ QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_PURE_SWAP(QHttp1Configuration)
- ~QHttp1Configuration();
+ Q_NETWORK_EXPORT ~QHttp1Configuration();
- void setNumberOfConnectionsPerHost(unsigned amount);
- unsigned numberOfConnectionsPerHost() const;
+ Q_NETWORK_EXPORT void setNumberOfConnectionsPerHost(qsizetype amount);
+ Q_NETWORK_EXPORT qsizetype numberOfConnectionsPerHost() const;
- void swap(QHttp1Configuration &other) noexcept;
+ void swap(QHttp1Configuration &other) noexcept
+ { qt_ptr_swap(d, other.d); }
private:
- QSharedDataPointer<QHttp1ConfigurationPrivate> d;
-
- bool isEqual(const QHttp1Configuration &other) const noexcept;
+ struct ShortData {
+ std::uint8_t numConnectionsPerHost;
+ char reserved[sizeof(void*) - sizeof(numConnectionsPerHost)];
+ };
+ union {
+ QHttp1ConfigurationPrivate *d;
+ ShortData data;
+ };
+
+ Q_NETWORK_EXPORT bool equals(const QHttp1Configuration &other) const noexcept;
+ Q_NETWORK_EXPORT size_t hash(size_t seed) const noexcept;
friend bool operator==(const QHttp1Configuration &lhs, const QHttp1Configuration &rhs) noexcept
- { return lhs.isEqual(rhs); }
+ { return lhs.equals(rhs); }
friend bool operator!=(const QHttp1Configuration &lhs, const QHttp1Configuration &rhs) noexcept
- { return !lhs.isEqual(rhs); }
+ { return !lhs.equals(rhs); }
+ friend size_t qHash(const QHttp1Configuration &key, size_t seed = 0) noexcept { return key.hash(seed); }
};
Q_DECLARE_SHARED(QHttp1Configuration)