2019-01-07 20:33:15 +08:00
|
|
|
/*
|
|
|
|
* 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);
|
2022-03-31 10:33:46 +08:00
|
|
|
static QString libUsedDtkCoreFileName(const QString &fileName);
|
|
|
|
/**
|
|
|
|
* @brief realFileName 获取软连接的真实文件的路径
|
|
|
|
* @param fileName 文件地址
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
static QString realFileName(QString fileName);
|
2019-01-07 20:33:15 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void finished() const;
|
2021-03-09 13:29:02 +08:00
|
|
|
void pluginFounded(const QString &pluginFile) const;
|
2019-01-07 20:33:15 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void run();
|
|
|
|
|
2021-08-02 17:00:24 +08:00
|
|
|
QString dtkCoreFileName();
|
|
|
|
|
2019-01-07 20:33:15 +08:00
|
|
|
private:
|
|
|
|
QString m_pluginDirPath;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PLUGINLOADER_H
|