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>
|
2021-02-26 11:21:41 +08:00
|
|
|
|
2021-03-05 08:43:02 +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();
|
2020-12-30 15:31:36 +08:00
|
|
|
explicit AppMatch(QObject *parent = nullptr);
|
2021-02-26 11:38:22 +08:00
|
|
|
~AppMatch();
|
2021-03-05 08:43:02 +08:00
|
|
|
void startMatchApp(QString input,QMap<QString,QStringList> &installed,QMap<QString,QStringList> &softwarereturn);
|
2021-03-01 13:28:18 +08:00
|
|
|
QMap<QString,QList<QString>> startMatchApp(QString input);
|
2020-12-30 15:31:36 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
void getAllDesktopFilePath(QString path);
|
|
|
|
void getDesktopFilePath();
|
|
|
|
void getAppName();
|
2021-03-05 08:43:02 +08:00
|
|
|
void getAppName(QMap<QString,QStringList> &installed);
|
2021-02-26 11:21:41 +08:00
|
|
|
// void appNameMatch(QString appname,QString desktoppath,QString appicon);
|
|
|
|
void appNameMatch(QString appname);
|
2021-03-05 08:43:02 +08:00
|
|
|
void appNameMatch(QString appname,QMap<QString,QStringList> &installed);
|
|
|
|
|
2021-02-26 11:21:41 +08:00
|
|
|
void softWareCenterSearch();
|
2021-03-05 08:43:02 +08:00
|
|
|
void softWareCenterSearch(QMap<QString,QStringList> &softwarereturn);
|
|
|
|
|
2021-02-26 11:21:41 +08:00
|
|
|
void parseSoftWareCenterReturn(QList<QMap<QString,QString>> list);
|
2021-03-05 08:43:02 +08:00
|
|
|
void parseSoftWareCenterReturn(QList<QMap<QString,QString>> list,QMap<QString,QStringList> &softwarereturn);
|
|
|
|
|
2021-02-26 11:21:41 +08:00
|
|
|
void getInstalledAppsVersion(QString appname);
|
|
|
|
void returnAppMap();
|
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;
|
|
|
|
QStringList m_returnResult;
|
2021-02-26 11:21:41 +08:00
|
|
|
|
2021-02-26 11:38:22 +08:00
|
|
|
QDBusInterface *m_interFace=nullptr;
|
2021-02-27 00:57:47 +08:00
|
|
|
QFileSystemWatcher *m_watchAppDir=nullptr;
|
2021-02-26 11:21:41 +08:00
|
|
|
QMap<QString,QList<QString>> m_softWareCenterMap;
|
|
|
|
QMap<QString,QList<QString>> m_installAppMap;
|
|
|
|
QMap<QString,QList<QString>> m_matchInstallAppMap;
|
|
|
|
QMap<QString,QList<QString>> m_returnResult1;
|
|
|
|
QMap<QString,QList<QString>> m_midResult;
|
|
|
|
// QProcess *m_versionCommand;
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void slotDBusCallFinished();
|
2021-03-05 08:43:02 +08:00
|
|
|
void slotDBusCallFinished(QMap<QString,QStringList> &softwarereturn);
|
|
|
|
|
|
|
|
//Q_SIGNALS:
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void run() override;
|
2020-12-30 15:31:36 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // APPMATCH_H
|