File size: 4,550 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 | #include "headwordsmodel.hh"
HeadwordListModel::HeadwordListModel( QObject * parent ):
QAbstractListModel( parent ),
filtering( false ),
totalSize( 0 ),
finished( false ),
index( 0 ),
ptr( nullptr )
{
}
int HeadwordListModel::rowCount( const QModelIndex & parent ) const
{
return parent.isValid() ? 0 : words.size();
}
int HeadwordListModel::totalCount() const
{
return totalSize;
}
bool HeadwordListModel::isFinish() const
{
return finished || ( words.size() >= totalSize );
}
// export headword
QString HeadwordListModel::getRow( int row )
{
if ( fileSortedList.empty() ) {
fileSortedList << words;
fileSortedList.sort();
}
return fileSortedList.at( row );
}
void HeadwordListModel::setFilter( const QRegularExpression & reg )
{
//if the headword is already finished loaded, do nothing。
if ( finished ) {
return;
}
//back to normal state ,restore the original model;
if ( reg.pattern().isEmpty() ) {
QMutexLocker _( &lock );
//race condition.
if ( !filtering ) {
return;
}
filtering = false;
//reset to previous models
beginResetModel();
words = QStringList( original_words );
endResetModel();
return;
}
else {
QMutexLocker _( &lock );
//the first time to enter filtering mode.
if ( !filtering ) {
filtering = true;
original_words = QStringList( words );
}
}
filterWords.clear();
auto sr = _dict->prefixMatch( Text::removeTrailingZero( reg.pattern() ), maxFilterResults );
connect( sr.get(), &Dictionary::Request::finished, this, [ this, sr ]() {
requestFinished( sr );
} );
}
void HeadwordListModel::appendWord( const QString & word )
{
hashedWords.insert( word );
words.append( word );
}
void HeadwordListModel::requestFinished( const sptr< Dictionary::WordSearchRequest > & request )
{
if ( request->isFinished() ) {
if ( !request->getErrorString().isEmpty() ) {
qDebug() << "error:" << request->getErrorString();
}
else if ( request->matchesCount() ) {
auto allmatches = request->getAllMatches();
for ( auto & match : allmatches ) {
filterWords.append( QString::fromStdU32String( match.word ) );
}
}
}
if ( filterWords.isEmpty() ) {
return;
}
beginResetModel();
words = QStringList( filterWords );
endResetModel();
emit numberPopulated( words.size() );
}
int HeadwordListModel::wordCount() const
{
return words.size();
}
QVariant HeadwordListModel::data( const QModelIndex & index, int role ) const
{
if ( !index.isValid() ) {
return {};
}
if ( index.row() >= totalSize || index.row() < 0 || index.row() >= words.size() ) {
return {};
}
if ( role == Qt::DisplayRole ) {
return words.at( index.row() );
}
return {};
}
bool HeadwordListModel::canFetchMore( const QModelIndex & parent ) const
{
if ( parent.isValid() || filtering || finished ) {
return false;
}
return ( words.size() < totalSize );
}
void HeadwordListModel::fetchMore( const QModelIndex & parent )
{
if ( parent.isValid() || filtering || finished ) {
return;
}
//arbitrary number
if ( totalSize < HEADWORDS_MAX_LIMIT ) {
finished = true;
beginInsertRows( QModelIndex(), 0, totalSize - 1 );
_dict->getHeadwords( words );
endInsertRows();
emit numberPopulated( words.size() );
return;
}
QSet< QString > headword;
QMutexLocker _( &lock );
_dict->findHeadWordsWithLenth( index, &headword, 1000 );
if ( headword.isEmpty() ) {
return;
}
beginInsertRows( QModelIndex(), words.size(), words.size() + headword.count() - 1 );
for ( const auto & word : std::as_const( headword ) ) {
words << word;
}
endInsertRows();
emit numberPopulated( words.size() );
}
int HeadwordListModel::getCurrentIndex() const
{
return index;
}
bool HeadwordListModel::containWord( const QString & word )
{
return hashedWords.contains( word );
}
void HeadwordListModel::setMaxFilterResults( int _maxFilterResults )
{
this->maxFilterResults = _maxFilterResults;
}
QSet< QString > HeadwordListModel::getRemainRows( int & nodeIndex )
{
QSet< QString > headword;
QMutexLocker _( &lock );
_dict->findHeadWordsWithLenth( nodeIndex, &headword, 10000 );
QSet< QString > filtered;
for ( const auto & word : std::as_const( headword ) ) {
if ( !containWord( word ) ) {
filtered.insert( word );
}
}
return filtered;
}
void HeadwordListModel::setDict( Dictionary::Class * dict )
{
_dict = dict;
totalSize = _dict->getWordCount();
}
|