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

72 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>
#include <QElapsedTimer>
2020-12-30 15:31:36 +08:00
class AppMatch : public QObject
{
Q_OBJECT
public:
explicit AppMatch(QObject *parent = nullptr);
2021-02-26 11:38:22 +08:00
~AppMatch();
2020-12-30 15:31:36 +08:00
QStringList startMatchApp(QString input);
2021-02-26 11:21:41 +08:00
QMap<QString,QList<QString>> startMatchApp(QString input,int i);
2020-12-30 15:31:36 +08:00
private:
void getAllDesktopFilePath(QString path);
void getDesktopFilePath();
void getAppName();
2021-02-26 11:21:41 +08:00
// void appNameMatch(QString appname,QString desktoppath,QString appicon);
void appNameMatch(QString appname);
void softWareCenterSearch();
void parseSoftWareCenterReturn(QList<QMap<QString,QString>> list);
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-26 11:21:41 +08:00
QMap<QString,QList<QString>> m_softWareCenterMap;
QMap<QString,QList<QString>> m_installAppMap;
QMap<QString,QList<QString>> m_filterInstallAppMap;
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();
2020-12-30 15:31:36 +08:00
};
#endif // APPMATCH_H