2021-01-29 11:43:07 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020, 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/>.
|
|
|
|
*
|
|
|
|
* Authors: zhangzihao <zhangzihao@kylinos.cn>
|
|
|
|
* Modified by: zhangpengfei <zhangpengfei@kylinos.cn>
|
|
|
|
*
|
|
|
|
*/
|
2020-12-30 14:42:04 +08:00
|
|
|
#ifndef CHINESESEGMENTATION_H
|
|
|
|
#define CHINESESEGMENTATION_H
|
|
|
|
|
|
|
|
#include "libchinese-segmentation_global.h"
|
2020-12-31 21:14:13 +08:00
|
|
|
#include "cppjieba/Jieba.hpp"
|
|
|
|
//#include "Logging.hpp"
|
|
|
|
//#include "LocalVector.hpp"
|
|
|
|
//#include "cppjieba/QuerySegment.hpp"
|
|
|
|
#include "cppjieba/KeywordExtractor.hpp"
|
|
|
|
#include <QVector>
|
|
|
|
#include <QString>
|
|
|
|
#include <QDebug>
|
2021-01-19 10:44:28 +08:00
|
|
|
#include <QMutex>
|
2020-12-31 21:14:13 +08:00
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
struct SKeyWord {
|
2020-12-31 21:14:13 +08:00
|
|
|
std::string word;
|
|
|
|
QVector<size_t> offsets;
|
|
|
|
double weight;
|
2021-04-26 15:06:47 +08:00
|
|
|
~SKeyWord() {
|
2021-01-19 20:59:46 +08:00
|
|
|
word = std::move("");
|
|
|
|
offsets.clear();
|
|
|
|
offsets.shrink_to_fit();
|
|
|
|
}
|
2020-12-31 21:14:13 +08:00
|
|
|
};
|
2020-12-30 14:42:04 +08:00
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
class CHINESESEGMENTATION_EXPORT ChineseSegmentation {
|
2020-12-30 14:42:04 +08:00
|
|
|
public:
|
2021-01-04 14:35:04 +08:00
|
|
|
static ChineseSegmentation *getInstance();
|
2021-05-17 14:47:39 +08:00
|
|
|
QVector<SKeyWord> callSegement(std::string s);
|
2021-06-07 15:37:06 +08:00
|
|
|
std::vector<cppjieba::KeyWord> callSegementStd(const std::string& str);
|
2022-03-02 09:27:40 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
explicit ChineseSegmentation();
|
|
|
|
~ChineseSegmentation();
|
2021-06-07 15:37:06 +08:00
|
|
|
void convert(std::vector<cppjieba::KeyWord>& keywordres, QVector<SKeyWord>& kw);
|
2022-03-02 09:27:40 +08:00
|
|
|
|
2020-12-31 21:14:13 +08:00
|
|
|
private:
|
2021-01-19 10:44:28 +08:00
|
|
|
static QMutex m_mutex;
|
2021-01-04 14:35:04 +08:00
|
|
|
cppjieba::Jieba *m_jieba;
|
2021-01-19 10:44:28 +08:00
|
|
|
|
2020-12-30 14:42:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CHINESESEGMENTATION_H
|