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
|
|
|
#ifndef DOCUMENT_H
|
|
|
|
#define DOCUMENT_H
|
|
|
|
|
|
|
|
#include <xapian.h>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2021-01-02 17:21:38 +08:00
|
|
|
#include <QVector>
|
2021-04-30 16:28:50 +08:00
|
|
|
namespace Zeeker {
|
2021-04-26 15:06:47 +08:00
|
|
|
class Document {
|
2020-12-30 15:31:36 +08:00
|
|
|
public:
|
2021-01-19 19:26:39 +08:00
|
|
|
Document() = default;
|
2021-04-26 15:06:47 +08:00
|
|
|
~Document() {}
|
|
|
|
Document(const Document& other) {
|
2021-01-19 10:44:28 +08:00
|
|
|
m_document = other.m_document;
|
|
|
|
m_index_text = other.m_index_text;
|
|
|
|
m_unique_term = other.m_unique_term;
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
void operator=(const Document& other) {
|
|
|
|
m_document = other.m_document;
|
|
|
|
m_index_text = other.m_index_text;
|
|
|
|
m_unique_term = other.m_unique_term;
|
2021-01-19 10:44:28 +08:00
|
|
|
}
|
2021-05-17 14:47:39 +08:00
|
|
|
void setData(QString &data);
|
2021-04-26 15:06:47 +08:00
|
|
|
void addPosting(std::string term, QVector<size_t> offset, int weight = 1);
|
|
|
|
void addPosting(std::string term, unsigned int offset, int weight = 1);
|
2021-01-13 11:02:15 +08:00
|
|
|
void addTerm(QString term);
|
2020-12-30 15:31:36 +08:00
|
|
|
void addValue(QString value);
|
|
|
|
void setUniqueTerm(QString term);
|
|
|
|
std::string getUniqueTerm();
|
|
|
|
void setIndexText(QStringList indexText);
|
|
|
|
QStringList getIndexText();
|
|
|
|
Xapian::Document getXapianDocument();
|
|
|
|
private:
|
2021-01-19 10:44:28 +08:00
|
|
|
Xapian::Document m_document;
|
|
|
|
QStringList m_index_text;
|
|
|
|
QString m_unique_term;
|
2020-12-30 15:31:36 +08:00
|
|
|
|
|
|
|
};
|
2021-04-30 16:28:50 +08:00
|
|
|
}
|
2020-12-30 15:31:36 +08:00
|
|
|
|
|
|
|
#endif // DOCUMENT_H
|