Add a new helper functions which allow sorting of strings which

contains numbers in natural order

svn path=/trunk/KDE/kdegraphics/okular/; revision=706529
This commit is contained in:
Tobias Koenig 2007-08-30 16:59:49 +00:00
parent cde58f48ba
commit 7e16285d28
4 changed files with 196 additions and 2 deletions

View file

@ -8,7 +8,7 @@ include_directories(
set( okularGenerator_comicbook_PART_SRCS
document.cpp
generator_comicbook.cpp
unrar.cpp
unrar.cpp qnatsort.cpp
)

View file

@ -14,6 +14,7 @@
#include <kzip.h>
#include "unrar.h"
#include "qnatsort.h"
using namespace ComicBook;
@ -91,7 +92,7 @@ void Document::extractImageFiles( const QStringList &list )
{
QStringList files( list );
qSort( files );
qSort( files.begin(), files.end(), caseSensitiveNaturalOrderLessThen );
for ( int i = 0; i < files.count(); ++i ) {
const QString lowerFile = files[ i ].toLower();

View file

@ -0,0 +1,141 @@
/**
Natural order sorting of strings which contains numbers.
Copyright 2007 Tobias Koenig <tokoe@kde.org>
based on the natural order code by Martin Pool <mbp sourcefrog net>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "qnatsort.h"
static int compare_right( const QString &leftStr, int left, const QString &rightStr, int right )
{
int bias = 0;
/**
* The longest run of digits wins. That aside, the greatest
* value wins, but we can't know that it will until we've scanned
* both numbers to know that they have the same magnitude, so we
* remember it in BIAS.
*/
for ( ;; left++, right++ ) {
if ( !leftStr[ left ].isDigit() && !rightStr[ right ].isDigit() )
return bias;
else if ( !leftStr[ left ].isDigit() )
return -1;
else if ( !rightStr[ right ].isDigit() )
return +1;
else if ( leftStr[ left ] < rightStr[ right ] ) {
if ( !bias )
bias = -1;
} else if ( leftStr[ left ] > rightStr[ right ] ) {
if ( !bias )
bias = +1;
} else if ( leftStr[ left ].isNull() && rightStr[ right ].isNull() )
return bias;
}
return 0;
}
static int compare_left( const QString &leftStr, int left, const QString &rightStr, int right )
{
/**
* Compare two left-aligned numbers: the first to have a
* different value wins.
*/
for ( ;; left++, right++ ) {
if ( !leftStr[ left ].isDigit() && !rightStr[ right ].isDigit() )
return 0;
else if ( !leftStr[ left ].isDigit() )
return -1;
else if ( !rightStr[ right ].isDigit() )
return +1;
else if ( leftStr[ left ] < rightStr[ right ] )
return -1;
else if ( leftStr[ left ] > rightStr[ right ] )
return +1;
}
return 0;
}
static int natural_order_compare( const QString &leftStr, const QString &rightStr, bool fold_case )
{
if ( leftStr.isEmpty() && rightStr.isEmpty() )
return 0;
int ai, bi;
QChar ca, cb;
int fractional, result;
ai = bi = 0;
while ( true ) {
ca = leftStr[ ai ]; cb = leftStr[ bi ];
/* skip over leading spaces or zeros */
while ( ca.isSpace() )
ca = leftStr[ ++ai ];
while ( cb.isSpace() )
cb = rightStr[ ++bi ];
/* process run of digits */
if ( ca.isDigit() && cb.isDigit() ) {
fractional = (ca == '0' || cb == '0');
if ( fractional ) {
if ( (result = compare_left( leftStr, ai, rightStr, bi )) != 0 )
return result;
} else {
if ( (result = compare_right( leftStr, ai, rightStr, bi )) != 0 )
return result;
}
}
if ( ca.isNull() && cb.isNull() ) {
/* The strings compare the same. Perhaps the caller
will want to call strcmp to break the tie. */
return 0;
}
if ( fold_case ) {
ca = ca.toUpper();
cb = cb.toUpper();
}
if ( ca < cb )
return -1;
else if ( ca > cb )
return +1;
++ai; ++bi;
}
}
bool caseSensitiveNaturalOrderLessThen( const QString &left, const QString &right )
{
return (natural_order_compare( left, right, false ) < 0);
}
bool caseInsensitiveNaturalOrderLessThen( const QString &left, const QString &right )
{
return (natural_order_compare( left, right, true ) < 0);
}

View file

@ -0,0 +1,52 @@
/**
Natural order sorting of strings which contains numbers.
Copyright 2007 Tobias Koenig <tokoe@kde.org>
based on the natural order code by Martin Pool <mbp sourcefrog net>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include <QtCore/QString>
/**
* The two methods can be used in qSort to sort strings which contain
* numbers in natural order.
*
* Normally strings are ordered like this: fam10g fam1g fam2g fam3g
* natural ordered it would look like this: fam1g fam2g fam3g fam10g
*
* Code:
*
* QStringList list;
* list << "fam10g" << "fam1g" << "fam2g" << "fam5g";
*
* qSort( list.begin(), list.end(), caseSensitiveNaturalOderLessThen );
*/
/**
* Returns whether the @p left string is lesser then the @p right string
* in natural order.
*/
bool caseSensitiveNaturalOrderLessThen( const QString &left, const QString &right );
/**
* Returns whether the @p left string is lesser then the @p right string
* in natural order and case insensitive.
*/
bool caseInsensitiveNaturalOrderLessThen( const QString &left, const QString &right );