82 lines
2.3 KiB
C++
82 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2022, 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: iaom <zhangpengfei@kylinos.cn>
|
|
*
|
|
*/
|
|
|
|
#include "file-extraction-result.h"
|
|
namespace UkuiSearch {
|
|
class FileExtractionResultPrivate
|
|
{
|
|
public:
|
|
UkuiFileMetadata::PropertyMultiMap m_properties;
|
|
QString m_text;
|
|
QVector<UkuiFileMetadata::Type::Type> m_types;
|
|
};
|
|
|
|
UkuiSearch::FileExtractionResult::FileExtractionResult(const QString &url, const QString &mimetype,
|
|
const UkuiFileMetadata::ExtractionResult::Flags &flags)
|
|
: ExtractionResult(url, mimetype, flags)
|
|
, d(new FileExtractionResultPrivate)
|
|
{
|
|
}
|
|
|
|
FileExtractionResult::~FileExtractionResult() = default;
|
|
|
|
|
|
FileExtractionResult::FileExtractionResult(const FileExtractionResult &rhs): ExtractionResult(*this)
|
|
, d(new FileExtractionResultPrivate(*rhs.d))
|
|
{
|
|
}
|
|
|
|
FileExtractionResult &FileExtractionResult::operator=(const FileExtractionResult &rhs)
|
|
{
|
|
*d = *rhs.d;
|
|
return *this;
|
|
}
|
|
|
|
void FileExtractionResult::add(UkuiFileMetadata::Property::Property property, const QVariant &value)
|
|
{
|
|
d->m_properties.insert(property, value);
|
|
}
|
|
|
|
void FileExtractionResult::addType(UkuiFileMetadata::Type::Type type)
|
|
{
|
|
d->m_types << type;
|
|
}
|
|
|
|
void FileExtractionResult::append(const QString &text)
|
|
{
|
|
QString tmp = text;
|
|
d->m_text.append(tmp.replace("\n", "").replace("\r", " "));
|
|
}
|
|
|
|
UkuiFileMetadata::PropertyMultiMap FileExtractionResult::properties() const
|
|
{
|
|
return d->m_properties;
|
|
}
|
|
|
|
QString FileExtractionResult::text() const
|
|
{
|
|
return d->m_text;
|
|
}
|
|
|
|
QVector<UkuiFileMetadata::Type::Type> FileExtractionResult::types() const
|
|
{
|
|
return d->m_types;
|
|
}
|
|
} |