forked from openkylin/ukui-search
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
/*
|
|
* 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>
|
|
*
|
|
*/
|
|
#ifndef CHINESESEGMENTATION_H
|
|
#define CHINESESEGMENTATION_H
|
|
|
|
#include "libchinese-segmentation_global.h"
|
|
#include "cppjieba/Jieba.hpp"
|
|
//#include "Logging.hpp"
|
|
//#include "LocalVector.hpp"
|
|
//#include "cppjieba/QuerySegment.hpp"
|
|
#include "cppjieba/KeywordExtractor.hpp"
|
|
#include <QVector>
|
|
#include <QString>
|
|
#include <QDebug>
|
|
#include <QMutex>
|
|
|
|
struct SKeyWord{
|
|
std::string word;
|
|
QVector<size_t> offsets;
|
|
double weight;
|
|
~SKeyWord(){
|
|
word = std::move("");
|
|
offsets.clear();
|
|
offsets.shrink_to_fit();
|
|
}
|
|
};
|
|
|
|
class CHINESESEGMENTATION_EXPORT ChineseSegmentation
|
|
{
|
|
public:
|
|
static ChineseSegmentation *getInstance();
|
|
~ChineseSegmentation();
|
|
QVector<SKeyWord> callSegement(QString str);
|
|
void convert(std::vector<cppjieba::KeywordExtractor::Word>& keywordres,QVector<SKeyWord>& kw);
|
|
private:
|
|
static QMutex m_mutex;
|
|
cppjieba::Jieba *m_jieba;
|
|
explicit ChineseSegmentation();
|
|
|
|
};
|
|
|
|
#endif // CHINESESEGMENTATION_H
|