Skip to content

Commit

Permalink
Fix performance regression
Browse files Browse the repository at this point in the history
Follow up #19417.
PR #19652.
  • Loading branch information
Chocobo1 authored Sep 27, 2023
1 parent 46c1c9d commit 529e49a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
7 changes: 4 additions & 3 deletions src/base/http/requestparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ bool RequestParser::parseRequestLine(const QString &line)
const int sepPos = url.indexOf('?');
const QByteArrayView pathComponent = ((sepPos == -1) ? url : QByteArrayView(url).mid(0, sepPos));

m_request.path = QString::fromUtf8(QByteArray::fromPercentEncoding(pathComponent.toByteArray()));
m_request.path = QString::fromUtf8(QByteArray::fromPercentEncoding(asQByteArray(pathComponent)));

if (sepPos >= 0)
{
Expand All @@ -223,10 +223,11 @@ bool RequestParser::parseRequestLine(const QString &line)

const QByteArrayView nameComponent = param.mid(0, eqCharPos);
const QByteArrayView valueComponent = param.mid(eqCharPos + 1);
const QString paramName = QString::fromUtf8(QByteArray::fromPercentEncoding(nameComponent.toByteArray()).replace('+', ' '));
const QString paramName = QString::fromUtf8(
QByteArray::fromPercentEncoding(asQByteArray(nameComponent)).replace('+', ' '));
const QByteArray paramValue = valueComponent.isNull()
? QByteArray("")
: QByteArray::fromPercentEncoding(valueComponent.toByteArray()).replace('+', ' ');
: QByteArray::fromPercentEncoding(asQByteArray(valueComponent)).replace('+', ' ');

m_request.query[paramName] = paramValue;
}
Expand Down
7 changes: 7 additions & 0 deletions src/base/utils/bytearray.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ QList<QByteArrayView> Utils::ByteArray::splitToViews(const QByteArrayView in, co
return ret;
}

QByteArray Utils::ByteArray::asQByteArray(const QByteArrayView view)
{
// `QByteArrayView::toByteArray()` will deep copy the data
// So we provide our own fast path for appropriate situations/code
return QByteArray::fromRawData(view.constData(), view.size());
}

QByteArray Utils::ByteArray::toBase32(const QByteArray &in)
{
const char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
Expand Down
1 change: 1 addition & 0 deletions src/base/utils/bytearray.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ namespace Utils::ByteArray
{
// Mimic QStringView(in).split(sep, behavior)
QList<QByteArrayView> splitToViews(QByteArrayView in, QByteArrayView sep, Qt::SplitBehavior behavior = Qt::KeepEmptyParts);
QByteArray asQByteArray(QByteArrayView view);

QByteArray toBase32(const QByteArray &in);
}
4 changes: 2 additions & 2 deletions src/base/utils/password.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ bool Utils::Password::PBKDF2::verify(const QByteArray &secret, const QByteArray
if (list.size() != 2)
return false;

const QByteArray salt = QByteArray::fromBase64(list[0].toByteArray());
const QByteArray key = QByteArray::fromBase64(list[1].toByteArray());
const QByteArray salt = QByteArray::fromBase64(Utils::ByteArray::asQByteArray(list[0]));
const QByteArray key = QByteArray::fromBase64(Utils::ByteArray::asQByteArray(list[1]));

std::array<unsigned char, 64> outBuf {};
const int hmacResult = PKCS5_PBKDF2_HMAC(password.constData(), password.size()
Expand Down

0 comments on commit 529e49a

Please sign in to comment.