/* * 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 . * * Authors: zhangzihao * Modified by: zhangpengfei * */ #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 #include #include #include struct SKeyWord { std::string word; QVector offsets; double weight; ~SKeyWord() { word = std::move(""); offsets.clear(); offsets.shrink_to_fit(); } }; class CHINESESEGMENTATION_EXPORT ChineseSegmentation { public: static ChineseSegmentation *getInstance(); QVector callSegement(std::string s); std::vector callSegementStd(const std::string& str); private: explicit ChineseSegmentation(); ~ChineseSegmentation(); void convert(std::vector& keywordres, QVector& kw); private: static QMutex m_mutex; cppjieba::Jieba *m_jieba; }; #endif // CHINESESEGMENTATION_H