File size: 5,953 Bytes
b6bd94d | 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | /* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "folding.hh"
#include "text.hh"
#include "globalregex.hh"
#include "inc_case_folding.hh"
namespace Folding {
/// Tests if the given char is one of the Unicode combining marks. Some are
/// caught by the diacritics folding table, but they are only handled there
/// when they come with their main characters, not by themselves. The rest
/// are caught here.
bool isCombiningMark( char32_t ch )
{
return QChar::isMark( ch );
}
std::u32string apply( const std::u32string & in, bool preserveWildcards )
{
// remove diacritics (normalization), white space, punt,
auto temp = QString::fromStdU32String( in )
.normalized( QString::NormalizationForm_KD )
.remove( RX::markSpace )
.removeIf( [ preserveWildcards ]( const QChar & ch ) -> bool {
return ch.isPunct()
&& !( preserveWildcards && ( ch == '\\' || ch == '?' || ch == '*' || ch == '[' || ch == ']' ) );
} )
.toStdU32String();
// case folding
std::u32string caseFolded;
caseFolded.reserve( temp.size() );
char32_t buf[ foldCaseMaxOut ];
for ( const char32_t ch : temp ) {
auto n = foldCase( ch, buf );
caseFolded.append( buf, n );
}
return caseFolded;
}
std::u32string applySimpleCaseOnly( const std::u32string & in )
{
const char32_t * nextChar = in.data();
std::u32string out;
out.reserve( in.size() );
for ( size_t left = in.size(); left--; ) {
out.push_back( foldCaseSimple( *nextChar++ ) );
}
return out;
}
std::u32string applySimpleCaseOnly( const QString & in )
{
//qt only support simple case folding.
return in.toCaseFolded().toStdU32String();
}
std::u32string applySimpleCaseOnly( const std::string & in )
{
return applySimpleCaseOnly( Text::toUtf32( in ) );
// return QString::fromStdString( in ).toCaseFolded().toStdU32String();
}
std::u32string applyFullCaseOnly( const std::u32string & in )
{
std::u32string caseFolded;
caseFolded.reserve( in.size() * foldCaseMaxOut );
const char32_t * nextChar = in.data();
char32_t buf[ foldCaseMaxOut ];
for ( size_t left = in.size(); left--; ) {
caseFolded.append( buf, foldCase( *nextChar++, buf ) );
}
return caseFolded;
}
std::u32string applyDiacriticsOnly( const std::u32string & in )
{
auto noAccent = QString::fromStdU32String( in ).normalized( QString::NormalizationForm_KD ).remove( RX::accentMark );
return noAccent.toStdU32String();
}
std::u32string applyPunctOnly( const std::u32string & in )
{
const char32_t * nextChar = in.data();
std::u32string out;
out.reserve( in.size() );
for ( size_t left = in.size(); left--; ++nextChar ) {
if ( !isPunct( *nextChar ) ) {
out.push_back( *nextChar );
}
}
return out;
}
QString applyPunctOnly( const QString & in )
{
QString out;
for ( auto c : in ) {
if ( !c.isPunct() ) {
out.push_back( c );
}
}
return out;
}
std::u32string applyWhitespaceOnly( const std::u32string & in )
{
const char32_t * nextChar = in.data();
std::u32string out;
out.reserve( in.size() );
for ( size_t left = in.size(); left--; ++nextChar ) {
if ( !isWhitespace( *nextChar ) ) {
out.push_back( *nextChar );
}
}
return out;
}
std::u32string applyWhitespaceAndPunctOnly( const std::u32string & in )
{
const char32_t * nextChar = in.data();
std::u32string out;
out.reserve( in.size() );
for ( size_t left = in.size(); left--; ++nextChar ) {
if ( !isWhitespaceOrPunct( *nextChar ) ) {
out.push_back( *nextChar );
}
}
return out;
}
bool isWhitespace( char32_t ch )
{
return QChar::isSpace( ch );
}
bool isWhitespaceOrPunct( char32_t ch )
{
return isWhitespace( ch ) || QChar::isPunct( ch );
}
bool isPunct( char32_t ch )
{
return QChar::isPunct( ch );
}
std::u32string trimWhitespaceOrPunct( const std::u32string & in )
{
const char32_t * wordBegin = in.c_str();
std::u32string::size_type wordSize = in.size();
// Skip any leading whitespace
while ( *wordBegin && Folding::isWhitespaceOrPunct( *wordBegin ) ) {
++wordBegin;
--wordSize;
}
// Skip any trailing whitespace
while ( wordSize && Folding::isWhitespaceOrPunct( wordBegin[ wordSize - 1 ] ) ) {
--wordSize;
}
return std::u32string( wordBegin, wordSize );
}
QString trimWhitespaceOrPunct( const QString & in )
{
auto wordSize = in.size();
int wordBegin = 0;
int wordEnd = wordSize;
// Skip any leading whitespace
while ( wordBegin < wordSize && ( in[ wordBegin ].isSpace() || in[ wordBegin ].isPunct() ) ) {
++wordBegin;
wordSize--;
}
// Skip any trailing whitespace
while ( wordEnd > 0 && ( in[ wordEnd - 1 ].isSpace() || in[ wordEnd - 1 ].isPunct() ) ) {
--wordEnd;
wordSize--;
}
return in.mid( wordBegin, wordSize );
}
std::u32string trimWhitespace( const std::u32string & in )
{
if ( in.empty() ) {
return in;
}
const char32_t * wordBegin = in.c_str();
std::u32string::size_type wordSize = in.size();
// Skip any leading whitespace
while ( *wordBegin && Folding::isWhitespace( *wordBegin ) ) {
++wordBegin;
--wordSize;
}
// Skip any trailing whitespace
while ( wordSize && Folding::isWhitespace( wordBegin[ wordSize - 1 ] ) ) {
--wordSize;
}
return std::u32string( wordBegin, wordSize );
}
QString trimWhitespace( const QString & in )
{
return in.trimmed();
}
QString escapeWildcardSymbols( const QString & str )
{
QString escaped( str );
escaped.replace( QRegularExpression( R"(([\[\]\?\*]))" ), R"(\\1)" );
return escaped;
}
QString unescapeWildcardSymbols( const QString & str )
{
QString unescaped( str );
unescaped.replace( QRegularExpression( R"(\\([\[\]\?\*]))" ), R"(\1)" );
return unescaped;
}
} // namespace Folding
|