ukui-search/libsearch/index/document.cpp

115 lines
2.9 KiB
C++
Raw Normal View History

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: zhangpengfei <zhangpengfei@kylinos.cn>
*
*/
2020-12-30 15:31:36 +08:00
#include "document.h"
#include <QDebug>
2021-12-14 14:43:35 +08:00
using namespace UkuiSearch;
void Document::setData(QString &data) {
2020-12-30 15:31:36 +08:00
if(data.isEmpty())
return;
m_document.set_data(data.toStdString());
2020-12-30 15:31:36 +08:00
}
2021-04-26 15:06:47 +08:00
void Document::addPosting(std::string term, QVector<size_t> offset, int weight) {
2021-01-03 16:01:35 +08:00
if(term == "")
2020-12-30 15:31:36 +08:00
return;
2021-01-03 16:01:35 +08:00
if(term.length() > 240)
term = QString::fromStdString(term).left(30).toStdString();
2021-04-26 15:06:47 +08:00
for(size_t i : offset) {
m_document.add_posting(term, i, weight);
}
2020-12-30 15:31:36 +08:00
}
void Document::addPosting(std::string &term, std::vector<size_t> &offset, int weight) {
if(term == "")
return;
if(term.length() > 240)
term = QString::fromStdString(term).left(30).toStdString();
for(size_t i : offset) {
m_document.add_posting(term, i, weight);
}
}
2021-04-26 15:06:47 +08:00
void Document::addPosting(std::string term, unsigned int offset, int weight) {
if(term == "")
return;
if(term.length() > 240)
term = QString::fromStdString(term).left(30).toStdString();
2021-04-26 15:06:47 +08:00
m_document.add_posting(term, offset, weight);
}
2021-04-26 15:06:47 +08:00
void Document::addTerm(QString term) {
2021-01-13 11:02:15 +08:00
if(term.isEmpty())
return;
m_document.add_term(term.toStdString());
2021-01-13 11:02:15 +08:00
}
void Document::addTerm(std::string term) {
if(term.empty())
return;
m_document.add_term(term);
}
void Document::addValue(unsigned slot, QString value)
{
m_document.add_value(slot, value.toStdString());
2020-12-30 15:31:36 +08:00
}
void Document::addSortableSerialiseValue(unsigned slot, QString value)
{
m_document.add_value(slot, Xapian::sortable_serialise(value.toDouble()));
}
2021-04-26 15:06:47 +08:00
void Document::setUniqueTerm(QString term) {
2020-12-30 15:31:36 +08:00
if(term.isEmpty())
return;
m_document.add_term(term.toStdString());
2022-10-26 18:01:40 +08:00
m_uniqueTerm = std::move(term.toStdString());
2020-12-30 15:31:36 +08:00
}
void Document::setUniqueTerm(std::string term) {
if(term.empty())
return;
m_document.add_term(term);
2022-10-26 18:01:40 +08:00
m_uniqueTerm = std::move(term);
}
2022-10-26 18:01:40 +08:00
std::string Document::getUniqueTerm() const
{
return m_uniqueTerm;
2020-12-30 15:31:36 +08:00
}
2022-10-26 18:01:40 +08:00
Xapian::Document Document::getXapianDocument() const{
return m_document;
2020-12-30 15:31:36 +08:00
}
2022-10-26 18:01:40 +08:00
void Document::setIndexTime(const QString &time)
{
2022-10-26 18:01:40 +08:00
m_time = time.toStdString();
}
2022-10-26 18:01:40 +08:00
const std::string Document::indexTime() const
{
2022-10-26 18:01:40 +08:00
return m_time;
}