📄 qstringmatcher.cpp
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qstringmatcher.h"#include "qunicodetables_p.h"static void bm_init_skiptable(const QChar *uc, int l, uint *skiptable, Qt::CaseSensitivity cs){ int i = 0; register uint *st = skiptable; while (i++ < 256 / 8) { *st++ = l; *st++ = l; *st++ = l; *st++ = l; *st++ = l; *st++ = l; *st++ = l; *st++ = l; } if (cs == Qt::CaseSensitive) { while (l--) { skiptable[uc->cell()] = l; uc++; } } else { while (l--) { skiptable[::lower(*uc).cell()] = l; uc++; } }}static inline int bm_find(const QChar *uc, uint l, int index, const QChar *puc, uint pl, const uint *skiptable, Qt::CaseSensitivity cs){ if (pl == 0) return index > (int)l ? -1 : index; const uint pl_minus_one = pl - 1; register const QChar *current = uc + index + pl_minus_one; const QChar *end = uc + l; if (cs == Qt::CaseSensitive) { while (current < end) { uint skip = skiptable[current->cell()]; if (!skip) { // possible match while (skip < pl) { if (*(current - skip) != puc[pl_minus_one-skip]) break; skip++; } if (skip > pl_minus_one) // we have a match return (current - uc) - skip + 1; // in case we don't have a match we are a bit inefficient as we only skip by one // when we have the non matching char in the string. if (skiptable[(current - skip)->cell()] == pl) skip = pl - skip; else skip = 1; } if (current > end - skip) break; current += skip; } } else { while (current < end) { uint skip = skiptable[::lower(*current).cell()]; if (!skip) { // possible match while (skip < pl) { if (::lower(*(current - skip)) != ::lower(puc[pl_minus_one-skip])) break; skip++; } if (skip > pl_minus_one) // we have a match return (current - uc) - skip + 1; // in case we don't have a match we are a bit inefficient as we only skip by one // when we have the non matching char in the string. if (skiptable[::lower(*(current - skip)).cell()] == pl) skip = pl - skip; else skip = 1; } if (current > end - skip) break; current += skip; } } return -1; // not found}/*! \class QStringMatcher \brief The QStringMatcher class holds a sequence of characters that can be quickly matched in a Unicode string. \ingroup tools \ingroup text This class is useful when you have a sequence of \l{QChar}s that you want to repeatedly match against some strings (perhaps in a loop), or when you want to search for the same sequence of characters multiple times in the same string. Using a matcher object and indexIn() is faster than matching a plain QString with QString::indexOf() if repeated matching takes place. This class offers no benefit if you are doing one-off string matches. Create the QStringMatcher with the QString you want to search for. Then call indexIn() on the QString that you want to search. \sa QString, QByteArrayMatcher, QRegExp*//*! Constructs an empty string matcher that won't match anything. Call setPattern() to give it a pattern to match.*/QStringMatcher::QStringMatcher() : d_ptr(0){ qMemSet(q_skiptable, 0, sizeof(q_skiptable));}/*! Constructs a string matcher that will search for \a pattern, with case sensitivity \a cs. Call indexIn() to perform a search.*/QStringMatcher::QStringMatcher(const QString &pattern, Qt::CaseSensitivity cs) : d_ptr(0), q_pattern(pattern), q_cs(cs){ bm_init_skiptable(pattern.unicode(), pattern.size(), q_skiptable, cs);}/*! Copies the \a other string matcher to this string matcher.*/QStringMatcher::QStringMatcher(const QStringMatcher &other) : d_ptr(0){ operator=(other);}/*! Destroys the string matcher.*/QStringMatcher::~QStringMatcher(){}/*! Assigns the \a other string matcher to this string matcher.*/QStringMatcher &QStringMatcher::operator=(const QStringMatcher &other){ q_pattern = other.q_pattern; q_cs = other.q_cs; qMemCopy(q_skiptable, other.q_skiptable, sizeof(q_skiptable)); return *this;}/*! Sets the string that this string matcher will search for to \a pattern. \sa pattern(), setCaseSensitivity(), indexIn()*/void QStringMatcher::setPattern(const QString &pattern){ bm_init_skiptable(pattern.unicode(), pattern.size(), q_skiptable, q_cs); q_pattern = pattern;}/*! Sets the case sensitivity setting of this string matcher to \a cs. \sa caseSensitivity(), setPattern(), indexIn()*/void QStringMatcher::setCaseSensitivity(Qt::CaseSensitivity cs){ if (cs == q_cs) return; bm_init_skiptable(q_pattern.unicode(), q_pattern.size(), q_skiptable, cs); q_cs = cs;}/*! Searches the string \a str from character position \a from (default 0, i.e. from the first character), for the string pattern() that was set in the constructor or in the most recent call to setPattern(). Returns the position where the pattern() matched in \a str, or -1 if no match was found. \sa setPattern(), setCaseSensitivity()*/int QStringMatcher::indexIn(const QString &str, int from) const{ if (from < 0) from = 0; return bm_find(str.unicode(), str.size(), from, q_pattern.unicode(), q_pattern.size(), q_skiptable, q_cs);}/*! \fn QString QStringMatcher::pattern() const Returns the string pattern that this string matcher will search for. \sa setPattern()*//*! \fn Qt::CaseSensitivity QStringMatcher::caseSensitivity() const Returns the case sensitivity setting for this string matcher. \sa setCaseSensitivity()*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -