1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// Copyright (C) 2004 Shintaro Matsuoka <shin@shoegazed.org>
// Copyright (C) 2006 Martin Aumueller <aumuell@reserv.at>
// See COPYING file for licensing information
#ifndef AMAROK_QSTRINGX_H
#define AMAROK_QSTRINGX_H
#include <qglobal.h>
#include <qregexp.h>
#include <qstring.h>
#include <qstringlist.h>
#include <qmap.h>
namespace Amarok
{
class QStringx : public QString
{
public:
QStringx() {};
QStringx( QChar ch ) : QString( ch ) {};
QStringx( const QString& s ) : QString( s ) {};
QStringx( const QByteArray& ba ) : QString( ba ) {};
QStringx( const QChar* unicode, uint length ) : QString( unicode, length ) {};
QStringx( const char* str ) : QString( str ) {};
virtual ~QStringx() {};
// the numbers following % obviously are not taken into account
QString args( const QStringList& args ) const
{
const QStringList text = QStringList::split( QRegExp( "%\\d+" ), *this, true );
QValueListConstIterator<QString> itrText = text.begin();
QValueListConstIterator<QString> itrArgs = args.begin();
QString merged = (*itrText);
++itrText;
while ( itrText != text.end() && itrArgs != args.end() )
{
merged += (*itrArgs) + (*itrText);
++itrText;
++itrArgs;
}
Q_ASSERT( itrText == text.end() && itrArgs == args.end() );
return merged;
}
// %something gets replaced by the value corresponding to key "something" in args
QString namedArgs( const QMap<QString, QString> args, bool opt=false ) const
{
QRegExp rxArg( "%[a-zA-Z0-9]+" );
QString result;
int start = 0;
for( int pos = rxArg.search( *this );
pos != -1;
pos = rxArg.search( *this, start ) )
{
int len = rxArg.matchedLength();
QString p = rxArg.capturedTexts()[0].mid(1, len-1);
result += mid( start, pos-start );
if( args[p] != QString::null )
result += args[p];
else if( opt )
return QString();
start = pos + len;
}
result += mid( start );
return result;
}
// %something gets replaced by the value corresponding to key "something" in args,
// however, if key "something" is not available,
// then replace everything within surrounding { } by an empty string
QString namedOptArgs( const QMap<QString, QString> args ) const
{
QRegExp rxOptArg( "\\{.*%[a-zA-Z0-9_]+.*\\}" );
rxOptArg.setMinimal( true );
QString result;
int start = 0;
for( int pos = rxOptArg.search( *this );
pos != -1;
pos = rxOptArg.search( *this, start ) )
{
int len = rxOptArg.matchedLength();
QStringx opt = rxOptArg.capturedTexts()[0].mid(1, len-2);
result += QStringx(mid( start, pos-start )).namedArgs( args );
result += opt.namedArgs( args, true );
start = pos + len;
}
result += QStringx( mid( start ) ).namedArgs( args );
return result;
}
};
} // namespace Amarok
#endif // AMAROK_QSTRINGX_H
|