2022-09-06 11:36:55 +08:00
|
|
|
// SPDX-FileCopyrightText: 2011 - 2022 UnionTech Software Technology Co., Ltd.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
2019-01-07 20:33:15 +08:00
|
|
|
|
|
|
|
#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
|