diff --git a/src/file/basicindexingjob.cpp b/src/file/basicindexingjob.cpp index 4366495a..8cabd67e 100644 --- a/src/file/basicindexingjob.cpp +++ b/src/file/basicindexingjob.cpp @@ -1,225 +1,226 @@ /* * This file is part of the KDE Baloo Project * Copyright (C) 2013-2015 Vishesh Handa * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) version 3, or any * later version accepted by the membership of KDE e.V. (or its * successor approved by the membership of KDE e.V.), which shall * act as a proxy defined in Section 6 of version 3 of the license. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . * */ #include "basicindexingjob.h" #include "termgenerator.h" #include "idutils.h" #include "baloodebug.h" #include #include #include #include #include using namespace Baloo; BasicIndexingJob::BasicIndexingJob(const QString& filePath, const QString& mimetype, IndexingLevel level) : m_filePath(filePath) , m_mimetype(mimetype) , m_indexingLevel(level) { } BasicIndexingJob::~BasicIndexingJob() { } bool BasicIndexingJob::index() { const QByteArray url = QFile::encodeName(m_filePath); QT_STATBUF statBuf; if (QT_LSTAT(url.data(), &statBuf) != 0) { return false; } Document doc; doc.setId(statBufToId(statBuf)); doc.setUrl(url); QString fileName = url.mid(url.lastIndexOf('/') + 1); TermGenerator tg(&doc); tg.indexFileNameText(fileName, 1000); tg.indexFileNameText(fileName, QByteArray("F")); tg.indexText(m_mimetype, QByteArray("M")); // Time doc.setMTime(statBuf.st_mtime); doc.setCTime(statBuf.st_ctime); // Types QVector tList = typesForMimeType(m_mimetype); for (KFileMetaData::Type::Type type : tList) { QByteArray num = QByteArray::number(static_cast(type)); doc.addBoolTerm(QByteArray("T") + num); } if (S_ISDIR(statBuf.st_mode)) { static const QByteArray type = QByteArray("T") + QByteArray::number(static_cast(KFileMetaData::Type::Folder)); doc.addBoolTerm(type); // For folders we do not need to go through file indexing, so we do not set contentIndexing } else if (m_indexingLevel == MarkForContentIndexing) { doc.setContentIndexing(true); } indexXAttr(m_filePath, doc); m_doc = doc; return true; } bool BasicIndexingJob::indexXAttr(const QString& url, Document& doc) { bool modified = false; KFileMetaData::UserMetaData userMetaData(url); TermGenerator tg(&doc); QStringList tags = userMetaData.tags(); if (!tags.isEmpty()) { for (const QString& tag : tags) { tg.indexXattrText(tag, QByteArray("TA")); doc.addXattrBoolTerm(QByteArray("TAG-") + tag.toUtf8()); modified = true; } } int rating = userMetaData.rating(); if (rating) { doc.addXattrBoolTerm(QByteArray("R") + QByteArray::number(rating)); modified = true; } QString comment = userMetaData.userComment(); if (!comment.isEmpty()) { tg.indexXattrText(comment, QByteArray("C")); modified = true; } return modified; } QVector BasicIndexingJob::typesForMimeType(const QString& mimeType) { using namespace KFileMetaData; QVector types; // Basic types if (mimeType.contains(QLatin1String("audio"))) types << Type::Audio; if (mimeType.contains(QLatin1String("video"))) types << Type::Video; if (mimeType.contains(QLatin1String("image"))) types << Type::Image; if (mimeType.contains(QLatin1String("document"))) types << Type::Document; if (mimeType.contains(QLatin1String("text"))) types << Type::Text; if (mimeType.contains(QLatin1String("powerpoint"))) { types << Type::Presentation; types << Type::Document; } if (mimeType.contains(QLatin1String("excel"))) { types << Type::Spreadsheet; types << Type::Document; } static QMultiHash typeMapper = { {"text/plain", Type::Document}, // MS Office {"application/msword", Type::Document}, {"application/x-scribus", Type::Document}, {"application/vnd.ms-powerpoint", Type::Document}, {"application/vnd.ms-powerpoint", Type::Presentation}, {"application/vnd.ms-excel", Type::Document}, {"application/vnd.ms-excel", Type::Spreadsheet}, // Office 2007 {"application/vnd.openxmlformats-officedocument.wordprocessingml.document", Type::Document}, {"application/vnd.openxmlformats-officedocument.presentationml.presentation", Type::Document}, {"application/vnd.openxmlformats-officedocument.presentationml.presentation", Type::Presentation}, {"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", Type::Document}, {"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", Type::Spreadsheet}, // Open Document Formats - http://en.wikipedia.org/wiki/OpenDocument_technical_specification {"application/vnd.oasis.opendocument.text", Type::Document}, {"application/vnd.oasis.opendocument.presentation", Type::Document}, {"application/vnd.oasis.opendocument.presentation", Type::Presentation}, {"application/vnd.oasis.opendocument.spreadsheet", Type::Document}, {"application/vnd.oasis.opendocument.spreadsheet", Type::Spreadsheet}, {"application/pdf", Type::Document}, {"application/postscript", Type::Document}, {"application/x-dvi", Type::Document}, {"application/rtf", Type::Document}, // EBooks {"application/epub+zip", Type::Document}, {"application/x-mobipocket-ebook", Type::Document}, // Archives - http://en.wikipedia.org/wiki/List_of_archive_formats {"application/x-tar", Type::Archive}, {"application/x-bzip2", Type::Archive}, {"application/x-gzip", Type::Archive}, {"application/x-lzip", Type::Archive}, {"application/x-lzma", Type::Archive}, {"application/x-lzop", Type::Archive}, {"application/x-compress", Type::Archive}, {"application/x-7z-compressed", Type::Archive}, {"application/x-ace-compressed", Type::Archive}, {"application/x-astrotite-afa", Type::Archive}, {"application/x-alz-compressed", Type::Archive}, {"application/vnd.android.package-archive", Type::Archive}, {"application/x-arj", Type::Archive}, {"application/vnd.ms-cab-compressed", Type::Archive}, {"application/x-cfs-compressed", Type::Archive}, {"application/x-dar", Type::Archive}, {"application/x-lzh", Type::Archive}, {"application/x-lzx", Type::Archive}, {"application/x-rar-compressed", Type::Archive}, {"application/x-stuffit", Type::Archive}, {"application/x-stuffitx", Type::Archive}, {"application/x-gtar", Type::Archive}, {"application/zip", Type::Archive}, {"image/svg+xml", Type::Image}, // WPS office {"application/wps-office.doc", Type::Document}, {"application/wps-office.xls", Type::Document}, {"application/wps-office.xls", Type::Spreadsheet}, {"application/wps-office.pot", Type::Document}, {"application/wps-office.pot", Type::Presentation}, {"application/wps-office.wps", Type::Document}, {"application/wps-office.docx", Type::Document}, {"application/wps-office.xlsx", Type::Document}, {"application/wps-office.xlsx", Type::Spreadsheet}, {"application/wps-office.pptx", Type::Document}, {"appliaction/wps-office.pptx", Type::Presentation}, // Other + {"text/markdown", Type::Document}, {"application/x-lyx", Type::Document} }; types << typeMapper.values(mimeType).toVector(); return types; }