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

96 lines
2.7 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>
#include <QElapsedTimer>
2021-03-05 08:43:02 +08:00
#include <QThread>
namespace Zeeker {
2021-04-26 15:06:47 +08:00
class NameString {
public:
explicit NameString(const QString &str_) : app_name(str_) {}
NameString() = default;
QString app_name;
bool operator<(const NameString& name) const {
return this->app_name.length() <= name.app_name.length();
}
};
//struct NameString
//{
// QString app_name;
// //重载操作符
// inline bool operator < (const NameString& name) const
// {
//// return name.app_name.length() >= app_name.length();
// return true;
// }
//};
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();
2021-04-26 15:06:47 +08:00
void startMatchApp(QString input, QMap<NameString, QStringList> &installed, QMap<NameString, QStringList> &softwarereturn);
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 getDesktopFilePath();
2021-04-26 15:06:47 +08:00
void getAppName(QMap<NameString, QStringList> &installed);
2021-02-26 11:21:41 +08:00
// void appNameMatch(QString appname,QString desktoppath,QString appicon);
2021-04-26 15:06:47 +08:00
void appNameMatch(QString appname, QMap<NameString, QStringList> &installed);
2021-06-28 19:38:27 +08:00
void appNameMatch(QMap<NameString, QStringList> &installed);
2021-03-05 08:43:02 +08:00
2021-04-26 15:06:47 +08:00
void softWareCenterSearch(QMap<NameString, QStringList> &softwarereturn);
2021-03-05 08:43:02 +08:00
2021-04-26 15:06:47 +08:00
void parseSoftWareCenterReturn(QList<QMap<QString, QString>> list, QMap<NameString, QStringList> &softwarereturn);
2021-03-05 08:43:02 +08:00
2021-02-26 11:21:41 +08:00
void getInstalledAppsVersion(QString appname);
2020-12-30 15:31:36 +08:00
private:
2020-12-30 21:41:00 +08:00
QString m_sourceText;
2020-12-30 15:31:36 +08:00
QStringList m_filePathList;
2021-02-26 11:21:41 +08:00
2021-04-26 15:06:47 +08:00
QDBusInterface *m_interFace = nullptr;
QFileSystemWatcher *m_watchAppDir = nullptr;
QMap<NameString, QStringList> m_installAppMap;
2021-02-26 11:21:41 +08:00
private Q_SLOTS:
2021-04-26 15:06:47 +08:00
void slotDBusCallFinished(QMap<NameString, QStringList> &softwarereturn);
2021-03-05 08:43:02 +08:00
//Q_SIGNALS:
protected:
void run() override;
2020-12-30 15:31:36 +08:00
};
}
2020-12-30 15:31:36 +08:00
#endif // APPMATCH_H