2023-04-11 10:19:35 +08:00
|
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2023, 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/>.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
2022-06-13 13:38:47 +08:00
|
|
|
|
#ifndef APPDBMANAGER_H
|
|
|
|
|
#define APPDBMANAGER_H
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QSqlDatabase>
|
|
|
|
|
#include <QSqlQuery>
|
|
|
|
|
#include <QSqlError>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QDateTime>
|
|
|
|
|
#include <QMutex>
|
2022-06-23 10:21:22 +08:00
|
|
|
|
#include <QSettings>
|
2022-06-28 14:00:57 +08:00
|
|
|
|
#include <QThread>
|
2023-11-14 14:55:31 +08:00
|
|
|
|
#include <QDBusInterface>
|
2023-08-15 17:34:41 +08:00
|
|
|
|
#include <QDBusVariant>
|
2023-03-07 17:33:08 +08:00
|
|
|
|
#include "pending-app-info-queue.h"
|
|
|
|
|
#include "file-system-watcher.h"
|
2023-03-10 17:47:04 +08:00
|
|
|
|
#include "application-property.h"
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
2023-03-10 17:47:04 +08:00
|
|
|
|
#define APP_DATABASE_PATH QDir::homePath()+"/.config/org.ukui/ukui-search/appdata/"
|
|
|
|
|
#define APP_DATABASE_NAME "app-info.db"
|
2022-06-13 13:38:47 +08:00
|
|
|
|
#define CONNECTION_NAME QLatin1String("ukss-appdb-connection")
|
2023-08-08 17:00:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* changelog(1.2 to 1.3): Add the START_UP_WMCLASS field in order to find desktop file path by the windowClassClass.
|
2023-11-28 17:15:31 +08:00
|
|
|
|
* changelog(1.3 to 1.4): Add the KEYWORDS & LOCAL_KEYWORDS field in order to find application conveniently.
|
2023-08-08 17:00:31 +08:00
|
|
|
|
*/
|
2023-11-28 17:15:31 +08:00
|
|
|
|
|
|
|
|
|
static const QString APP_DATABASE_VERSION = QStringLiteral("1.4");
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
|
|
|
|
namespace UkuiSearch {
|
|
|
|
|
/**
|
|
|
|
|
* @brief The AppDBManager class
|
|
|
|
|
* 功能:1.遍历并且监听desktop文件目录,建立并且维护应用信息数据库。
|
|
|
|
|
* 2.监听应用安装,打开事件,收藏等事件,更新数据库
|
|
|
|
|
*/
|
|
|
|
|
|
2022-06-28 14:00:57 +08:00
|
|
|
|
class AppDBManager : public QThread
|
2022-06-13 13:38:47 +08:00
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
Q_CLASSINFO("D-Bus Interface","org.ukui.search.appDBManager")
|
|
|
|
|
|
2022-06-13 13:38:47 +08:00
|
|
|
|
enum APP_LOCK_STATE{
|
|
|
|
|
APP_UNLOCK = 0,
|
|
|
|
|
APP_LOCK
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
static AppDBManager *getInstance();
|
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//刷新数据库数据
|
2023-03-22 15:47:27 +08:00
|
|
|
|
void refreshAllData2DB(const QStringList &appPaths, bool dbVersionNeedUpdate = false);
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//获取desktop文件的md5值
|
|
|
|
|
QString getAppDesktopMd5(const QString &desktopfd);
|
|
|
|
|
|
|
|
|
|
bool startTransaction();
|
|
|
|
|
bool startCommit();
|
|
|
|
|
|
2023-03-10 17:47:04 +08:00
|
|
|
|
bool handleDBItemInsert(const QString &desktopFilePath);
|
|
|
|
|
bool handleDBItemUpdate(const QString &desktopFilePath);
|
|
|
|
|
bool handleDBItemDelete(const QString &desktopFilePath);
|
2022-07-12 11:26:03 +08:00
|
|
|
|
|
2023-03-10 17:47:04 +08:00
|
|
|
|
bool handleLocaleDataUpdate(const QString &desktopFilePath);
|
2023-03-31 17:24:06 +08:00
|
|
|
|
bool handleLaunchTimesUpdate(const QString &desktopFilePath, int num = 1);
|
|
|
|
|
bool handleFavoritesStateUpdate(const QString &desktopFilePath, const uint num);
|
|
|
|
|
bool handleTopStateUpdate(const QString &desktopFilePath, const uint num);
|
2023-03-10 17:47:04 +08:00
|
|
|
|
bool handleLockStateUpdate(const QString &desktopFilePath, int num);
|
2023-03-22 15:47:27 +08:00
|
|
|
|
void handleDataBaseRefresh(const QStringList &appPaths, bool dbVersionNeedUpdate);
|
2022-07-12 11:26:03 +08:00
|
|
|
|
|
2023-04-14 13:45:05 +08:00
|
|
|
|
bool handleValueSet(const ApplicationInfoMap appInfoMap);
|
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
public Q_SLOTS:
|
2023-02-17 15:55:10 +08:00
|
|
|
|
//通过pid查找对应的desktop文件
|
2023-04-17 16:14:44 +08:00
|
|
|
|
QString tranPidToDesktopFp(uint pid);
|
|
|
|
|
QString desktopFilePathFromName(const QString &desktopFileName);
|
2023-08-08 17:00:31 +08:00
|
|
|
|
QString tranWinIdToDesktopFilePath(const QDBusVariant &id);
|
2023-02-17 15:55:10 +08:00
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//对数据库单条所有信息进行增删改
|
|
|
|
|
void insertDBItem(const QString &desktopfd);
|
|
|
|
|
void updateDBItem(const QString &desktopfd);
|
|
|
|
|
void deleteDBItem(const QString &desktopfd);
|
|
|
|
|
|
|
|
|
|
//对数据库某字段进行update
|
2023-03-10 17:47:04 +08:00
|
|
|
|
void updateLocaleData(const QString &desktopFilePath);
|
|
|
|
|
void updateLaunchTimes(const QString &desktopFilePath);
|
2023-03-31 17:24:06 +08:00
|
|
|
|
void updateFavoritesState(const QString &desktopFilePath, uint num = 1);
|
|
|
|
|
void updateTopState(const QString &desktopFilePath, uint num = 1);
|
2023-04-14 13:45:05 +08:00
|
|
|
|
|
|
|
|
|
void setValue(const ApplicationInfoMap &infos2BSet);
|
2022-07-12 11:26:03 +08:00
|
|
|
|
|
2023-11-14 14:55:31 +08:00
|
|
|
|
private Q_SLOTS:
|
|
|
|
|
void handleAppLaunched(QString desktopFilePath);
|
|
|
|
|
|
2022-06-28 14:00:57 +08:00
|
|
|
|
protected:
|
|
|
|
|
void run() override;
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
explicit AppDBManager(QObject *parent = nullptr);
|
|
|
|
|
~AppDBManager();
|
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//加载指定路径path中的所有desktop文件路径到infolist中
|
2022-06-23 10:21:22 +08:00
|
|
|
|
void loadDesktopFilePaths(QString path, QFileInfoList &infolist);
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
2022-12-21 11:04:37 +08:00
|
|
|
|
//数据库查找指定字段不存在则添加到最后并设置初始值
|
|
|
|
|
bool addItem2BackIfNotExist(QString itemName, QString itemDataType, QVariant defult = QVariant());
|
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//链接数据库
|
2022-06-23 10:21:22 +08:00
|
|
|
|
bool openDataBase();
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//刷新数据库
|
|
|
|
|
void refreshDataBase();
|
|
|
|
|
//关闭数据库,断开链接
|
2022-06-13 13:38:47 +08:00
|
|
|
|
void closeDataBase();
|
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//创建数据库字段
|
2022-06-13 13:38:47 +08:00
|
|
|
|
void buildAppInfoDB();
|
2022-07-12 11:26:03 +08:00
|
|
|
|
|
2023-03-15 11:32:42 +08:00
|
|
|
|
//初始化fileSystemWatcher
|
|
|
|
|
void initFileSystemWatcher();
|
|
|
|
|
|
2023-03-31 17:24:06 +08:00
|
|
|
|
//处理置顶收藏移动位置
|
2023-04-23 16:27:45 +08:00
|
|
|
|
bool handleChangeFavoritesPos(const QString &desktopFilePath, const uint pos, const uint previousPos, ApplicationInfoMap &updatedInfo);
|
|
|
|
|
bool handleChangeTopPos(const QString &desktopFilePath, uint pos, const uint previousPos, ApplicationInfoMap &updatedInfo);
|
2023-03-31 17:24:06 +08:00
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
private:
|
|
|
|
|
static QMutex s_mutex;
|
2022-06-23 10:21:22 +08:00
|
|
|
|
bool m_localeChanged;
|
2022-12-21 11:04:37 +08:00
|
|
|
|
bool m_dbVersionNeedUpdate = false;
|
2022-06-28 14:00:57 +08:00
|
|
|
|
|
2022-12-21 11:04:37 +08:00
|
|
|
|
QSettings *m_lastLocaleNameQsettings = nullptr;
|
|
|
|
|
QSettings *m_dbVersionQsettings = nullptr;
|
2022-07-12 11:26:03 +08:00
|
|
|
|
|
2023-11-14 14:55:31 +08:00
|
|
|
|
QDBusInterface *m_processManagerInterface = nullptr;
|
|
|
|
|
|
2022-08-08 13:55:51 +08:00
|
|
|
|
// QTimer *m_timer = nullptr;
|
|
|
|
|
// QTimer *m_maxProcessTimer = nullptr;
|
|
|
|
|
// QFileSystemWatcher *m_watchAppDir = nullptr;
|
2022-06-23 10:21:22 +08:00
|
|
|
|
|
|
|
|
|
QSqlDatabase m_database;
|
2022-08-08 13:55:51 +08:00
|
|
|
|
FileSystemWatcher *m_watcher = nullptr;
|
|
|
|
|
|
|
|
|
|
QDir *m_snapdDir = nullptr;
|
|
|
|
|
QString m_snapdPath;
|
|
|
|
|
FileSystemWatcher *m_snapdWatcher = nullptr;
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
2023-03-10 17:47:04 +08:00
|
|
|
|
//数据库当前所有字段
|
|
|
|
|
QMap<QString, QString> m_namesOfAppinfoTable = {
|
|
|
|
|
{"DESKTOP_FILE_PATH", "TEXT"},
|
|
|
|
|
{"MODIFYED_TIME", "TEXT"},
|
|
|
|
|
{"INSERT_TIME","TEXT"},
|
|
|
|
|
{"LOCAL_NAME", "TEXT"},
|
|
|
|
|
{"NAME_EN", "TEXT"},
|
|
|
|
|
{"NAME_ZH", "TEXT"},
|
|
|
|
|
{"PINYIN_NAME", "TEXT"},
|
|
|
|
|
{"FIRST_LETTER_OF_PINYIN", "TEXT"},
|
|
|
|
|
{"FIRST_LETTER_ALL", "TEXT"},
|
|
|
|
|
{"ICON", "TEXT"},
|
|
|
|
|
{"TYPE", "TEXT"},
|
|
|
|
|
{"CATEGORY", "TEXT"},
|
|
|
|
|
{"EXEC", "TEXT"},
|
|
|
|
|
{"COMMENT", "TEXT"},
|
|
|
|
|
{"MD5", "TEXT"},
|
|
|
|
|
{"LAUNCH_TIMES", "INT"},
|
|
|
|
|
{"FAVORITES", "INT"},
|
|
|
|
|
{"LAUNCHED", "INT"},
|
|
|
|
|
{"TOP", "INT"},
|
|
|
|
|
{"LOCK", "INT"},
|
2023-04-17 16:14:44 +08:00
|
|
|
|
{"DONT_DISPLAY", "INT"},
|
2023-08-08 17:00:31 +08:00
|
|
|
|
{"AUTO_START", "INT"},
|
2023-11-28 17:15:31 +08:00
|
|
|
|
{"START_UP_WMCLASS", "TEXT"},
|
|
|
|
|
{"KEYWORDS", "TEXT"},
|
|
|
|
|
{"LOCAL_KEYWORDS", "TEXT"}
|
2023-03-10 17:47:04 +08:00
|
|
|
|
};
|
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//应用黑名单
|
2022-06-13 13:38:47 +08:00
|
|
|
|
QStringList m_excludedDesktopfiles = {
|
|
|
|
|
"/usr/share/applications/software-properties-livepatch.desktop",
|
|
|
|
|
"/usr/share/applications/mate-color-select.desktop",
|
|
|
|
|
"/usr/share/applications/blueman-adapters.desktop",
|
|
|
|
|
"/usr/share/applications/blueman-manager.desktop",
|
|
|
|
|
"/usr/share/applications/mate-user-guide.desktop",
|
|
|
|
|
"/usr/share/applications/nm-connection-editor.desktop",
|
|
|
|
|
"/usr/share/applications/debian-uxterm.desktop",
|
|
|
|
|
"/usr/share/applications/debian-xterm.desktop",
|
|
|
|
|
"/usr/share/applications/im-config.desktop",
|
|
|
|
|
"/usr/share/applications/fcitx.desktop",
|
|
|
|
|
"/usr/share/applications/fcitx-configtool.desktop",
|
|
|
|
|
"/usr/share/applications/onboard-settings.desktop",
|
|
|
|
|
"/usr/share/applications/info.desktop",
|
|
|
|
|
"/usr/share/applications/ukui-power-preferences.desktop",
|
|
|
|
|
"/usr/share/applications/ukui-power-statistics.desktop",
|
|
|
|
|
"/usr/share/applications/software-properties-drivers.desktop",
|
|
|
|
|
"/usr/share/applications/software-properties-gtk.desktop",
|
|
|
|
|
"/usr/share/applications/gnome-session-properties.desktop",
|
|
|
|
|
"/usr/share/applications/org.gnome.font-viewer.desktop",
|
|
|
|
|
"/usr/share/applications/xdiagnose.desktop",
|
|
|
|
|
"/usr/share/applications/gnome-language-selector.desktop",
|
|
|
|
|
"/usr/share/applications/mate-notification-properties.desktop",
|
|
|
|
|
"/usr/share/applications/transmission-gtk.desktop",
|
|
|
|
|
"/usr/share/applications/mpv.desktop",
|
|
|
|
|
"/usr/share/applications/system-config-printer.desktop",
|
|
|
|
|
"/usr/share/applications/org.gnome.DejaDup.desktop",
|
|
|
|
|
"/usr/share/applications/yelp.desktop",
|
|
|
|
|
"/usr/share/applications/peony-computer.desktop",
|
|
|
|
|
"/usr/share/applications/peony-home.desktop",
|
|
|
|
|
"/usr/share/applications/peony-trash.desktop",
|
|
|
|
|
|
|
|
|
|
//v10
|
|
|
|
|
"/usr/share/applications/mate-about.desktop",
|
|
|
|
|
"/usr/share/applications/time.desktop",
|
|
|
|
|
"/usr/share/applications/network.desktop",
|
|
|
|
|
"/usr/share/applications/shares.desktop",
|
|
|
|
|
"/usr/share/applications/mate-power-statistics.desktop",
|
|
|
|
|
"/usr/share/applications/display-im6.desktop",
|
|
|
|
|
"/usr/share/applications/display-im6.q16.desktop",
|
|
|
|
|
"/usr/share/applications/openjdk-8-policytool.desktop",
|
|
|
|
|
"/usr/share/applications/kylin-io-monitor.desktop",
|
|
|
|
|
"/usr/share/applications/wps-office-uninstall.desktop",
|
2022-06-23 10:21:22 +08:00
|
|
|
|
|
|
|
|
|
//原本额外排除的目录,不知道额外的原因,有可能之后有问题--bjj20220621
|
|
|
|
|
"/usr/share/applications/screensavers"
|
2022-06-13 13:38:47 +08:00
|
|
|
|
};
|
2022-06-28 14:00:57 +08:00
|
|
|
|
|
2022-06-28 11:20:36 +08:00
|
|
|
|
Q_SIGNALS:
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//操作数据库
|
2023-03-10 17:47:04 +08:00
|
|
|
|
void appDBItemUpdate(const ApplicationInfoMap&);
|
|
|
|
|
void appDBItemUpdateAll(const QString&);
|
|
|
|
|
void appDBItemAdd(const QString&);
|
2022-06-28 11:20:36 +08:00
|
|
|
|
void appDBItemDelete(const QString&);
|
|
|
|
|
void finishHandleAppDB();
|
2022-06-28 14:00:57 +08:00
|
|
|
|
|
2022-07-12 11:26:03 +08:00
|
|
|
|
//定时器操作
|
2022-06-28 14:00:57 +08:00
|
|
|
|
void startTimer();
|
|
|
|
|
void maxProcessTimerStart();
|
|
|
|
|
void stopTimer();
|
2022-06-13 13:38:47 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // APPDBMANAGER_H
|