qmake: add ProStringList::join(QChar)

Same reasoning as for 68e04c3ac1 applies.

Adding the overload was easier than to teach a Perl script to distinguish
between QStringList and ProStringList instances...

Change-Id: I6de6ecf21fdad135ac213b5c794927a9bc120a92
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
Marc Mutz 2012-09-19 17:50:42 +02:00 committed by The Qt Project
parent 1f576cb6ab
commit cbf447069c
2 changed files with 20 additions and 8 deletions

View File

@ -345,30 +345,41 @@ QTextStream &operator<<(QTextStream &t, const ProString &str)
return t;
}
QString ProStringList::join(const QString &sep) const
static QString ProStringList_join(const ProStringList &this_, const QChar *sep, const size_t sepSize)
{
int totalLength = 0;
const int sz = size();
const int sz = this_.size();
for (int i = 0; i < sz; ++i)
totalLength += at(i).size();
totalLength += this_.at(i).size();
if (sz)
totalLength += sep.size() * (sz - 1);
totalLength += sepSize * (sz - 1);
QString res(totalLength, Qt::Uninitialized);
QChar *ptr = (QChar *)res.constData();
for (int i = 0; i < sz; ++i) {
if (i) {
memcpy(ptr, sep.constData(), sep.size() * 2);
ptr += sep.size();
memcpy(ptr, sep, sepSize * sizeof(QChar));
ptr += sepSize;
}
memcpy(ptr, at(i).constData(), at(i).size() * 2);
ptr += at(i).size();
const ProString &str = this_.at(i);
memcpy(ptr, str.constData(), str.size() * sizeof(QChar));
ptr += str.size();
}
return res;
}
QString ProStringList::join(const QString &sep) const
{
return ProStringList_join(*this, sep.constData(), sep.size());
}
QString ProStringList::join(QChar sep) const
{
return ProStringList_join(*this, &sep, 1);
}
void ProStringList::removeAll(const ProString &str)
{
for (int i = size(); --i >= 0; )

View File

@ -245,6 +245,7 @@ public:
int length() const { return size(); }
QString join(const QString &sep) const;
QString join(QChar sep) const;
void removeAll(const ProString &str);
void removeAll(const char *str);