mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

原因:使用ldd判断插件使用dtk版本的函数耗时较长。 解决方案:多线程处理 Log: 优化任务栏加载缓慢的问题 Bug: https://pms.uniontech.com/bug-view-119393.html Influence: 任务栏插件加载时间。 Change-Id: I774610e5743d27dd9cd4045ea50d7cb3754ba20a
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: sbw <sbw@sbw.so>
|
|
*
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
*
|
|
* 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
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef PLUGINLOADER_H
|
|
#define PLUGINLOADER_H
|
|
|
|
#include <QThread>
|
|
|
|
class PluginLoader : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PluginLoader(const QString &pluginDirPath, QObject *parent);
|
|
static QString libUsedDtkCoreFileName(const QString &fileName);
|
|
/**
|
|
* @brief realFileName 获取软连接的真实文件的路径
|
|
* @param fileName 文件地址
|
|
* @return
|
|
*/
|
|
static QString realFileName(QString fileName);
|
|
|
|
signals:
|
|
void finished() const;
|
|
void pluginFounded(const QString &pluginFile) const;
|
|
|
|
protected:
|
|
void run();
|
|
|
|
QString dtkCoreFileName();
|
|
|
|
private:
|
|
QString m_pluginDirPath;
|
|
};
|
|
|
|
#endif // PLUGINLOADER_H
|