2024-01-30 14:42:09 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2023-12-28 10:27:40 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
#include <cassert>
|
|
|
|
#include "limonp/Logging.hpp"
|
|
|
|
#include "SegmentBase.hpp"
|
|
|
|
#include "FullSegment.hpp"
|
|
|
|
#include "MixSegment.hpp"
|
|
|
|
#include "Unicode.hpp"
|
|
|
|
|
|
|
|
namespace cppjieba {
|
|
|
|
class QuerySegment: public SegmentBase {
|
|
|
|
public:
|
|
|
|
QuerySegment(const DictTrie* dictTrie,
|
|
|
|
const HMMModel* model,
|
|
|
|
const string& stopWordPath)
|
|
|
|
: mixSeg_(dictTrie, model, stopWordPath), trie_(dictTrie) {
|
|
|
|
}
|
|
|
|
~QuerySegment() {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Cut(RuneStrArray::const_iterator begin, RuneStrArray::const_iterator end, vector<WordRange>& res, bool hmm,
|
|
|
|
size_t) const override {
|
|
|
|
//use mix Cut first
|
|
|
|
vector<WordRange> mixRes;
|
|
|
|
mixSeg_.CutRuneArray(begin, end, mixRes, hmm);
|
|
|
|
|
|
|
|
vector<WordRange> fullRes;
|
|
|
|
|
|
|
|
for (vector<WordRange>::const_iterator mixResItr = mixRes.begin(); mixResItr != mixRes.end(); mixResItr++) {
|
|
|
|
if (mixResItr->Length() > 2) {
|
|
|
|
for (size_t i = 0; i + 1 < mixResItr->Length(); i++) {
|
|
|
|
string text = EncodeRunesToString(mixResItr->left + i, mixResItr->left + i + 2);
|
|
|
|
|
|
|
|
if (trie_->Find(text) != nullptr) {
|
|
|
|
WordRange wr(mixResItr->left + i, mixResItr->left + i + 1);
|
|
|
|
res.push_back(wr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mixResItr->Length() > 3) {
|
|
|
|
for (size_t i = 0; i + 2 < mixResItr->Length(); i++) {
|
|
|
|
string text = EncodeRunesToString(mixResItr->left + i, mixResItr->left + i + 3);
|
|
|
|
|
|
|
|
if (trie_->Find(text) != nullptr) {
|
|
|
|
WordRange wr(mixResItr->left + i, mixResItr->left + i + 2);
|
|
|
|
res.push_back(wr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res.push_back(*mixResItr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void CutWithSentence(const string& s, RuneStrArray::const_iterator begin, RuneStrArray::const_iterator end, vector<string>& res, bool hmm,
|
|
|
|
size_t) const override {
|
|
|
|
std::ignore = s;
|
|
|
|
std::ignore = begin;
|
|
|
|
std::ignore = end;
|
|
|
|
std::ignore = res;
|
|
|
|
std::ignore = hmm;
|
|
|
|
}
|
|
|
|
virtual void CutWithSentence(const string& s, RuneStrArray::const_iterator begin, RuneStrArray::const_iterator end, unordered_map<string, KeyWord>& res, bool hmm,
|
|
|
|
size_t) const override {
|
|
|
|
std::ignore = s;
|
|
|
|
std::ignore = begin;
|
|
|
|
std::ignore = end;
|
|
|
|
std::ignore = res;
|
|
|
|
std::ignore = hmm;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
bool IsAllAscii(const RuneArray& s) const {
|
|
|
|
for (size_t i = 0; i < s.size(); i++) {
|
|
|
|
if (s[i] >= 0x80) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
MixSegment mixSeg_;
|
|
|
|
const DictTrie* trie_;
|
|
|
|
}; // QuerySegment
|
|
|
|
|
|
|
|
} // namespace cppjieba
|
|
|
|
|