ukui-search/libsearch/appsearch/app-match.h

62 lines
2.1 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: sunfengsheng <sunfengsheng@kylinos.cn>
*
*/
2020-12-30 15:31:36 +08:00
#ifndef APPMATCH_H
#define APPMATCH_H
#include <QObject>
#include <QDir>
#include <QLocale>
#include <QDebug>
2021-02-26 11:21:41 +08:00
#include <QDBusInterface>
#include <QDBusReply>
#include <QtDBus>
2021-03-05 08:43:02 +08:00
#include <QThread>
#include "search-plugin-iface.h"
#include "../appdata/app-info-table.h"
namespace UkuiSearch {
2021-04-26 15:06:47 +08:00
class AppMatch : public QThread {
2020-12-30 15:31:36 +08:00
Q_OBJECT
public:
2021-03-05 08:43:02 +08:00
static AppMatch *getAppMatch();
void startMatchApp(QString input, size_t uniqueSymbol, DataQueue<SearchPluginIface::ResultInfo> *searchResult);
protected:
void run() override;
2020-12-30 15:31:36 +08:00
private:
explicit AppMatch(QObject *parent = nullptr);
~AppMatch();
2020-12-30 15:31:36 +08:00
void getAllDesktopFilePath(QString path);
void appNameMatch(QString keyWord, size_t uniqueSymbol, DataQueue<SearchPluginIface::ResultInfo> *searchResult);
void parseSoftWareCenterReturn(QList<QMap<QString, QString>> list, size_t uniqueSymbol, DataQueue<SearchPluginIface::ResultInfo> *searchResult);
//void creatResultInfo(SearchPluginIface::ResultInfo &ri, QMapIterator<UkuiSearch::NameString, QStringList> &iter, bool isInstalled = true);
2020-12-30 21:41:00 +08:00
QString m_sourceText;
size_t m_uniqueSymbol;
DataQueue<SearchPluginIface::ResultInfo> *m_search_result = nullptr;
2021-04-26 15:06:47 +08:00
QDBusInterface *m_interFace = nullptr;
2020-12-30 15:31:36 +08:00
2021-09-14 10:22:18 +08:00
private Q_SLOTS:
void slotDBusCallFinished(QString keyWord, size_t uniqueSymbol, DataQueue<SearchPluginIface::ResultInfo> *searchResult);
2020-12-30 15:31:36 +08:00
};
}
2020-12-30 15:31:36 +08:00
#endif // APPMATCH_H