ukui-search/libsearch/pluginmanage/search-task-plugin-manager.h

72 lines
2.7 KiB
C
Raw Permalink Normal View History

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/>.
*
* Authors: iaom <zhangpengfei@kylinos.cn>
*/
2021-12-31 17:38:02 +08:00
#ifndef SEARCHTASKPLUGINMANAGER_H
#define SEARCHTASKPLUGINMANAGER_H
#include <QObject>
#include <QUuid>
2022-07-07 16:03:12 +08:00
#include <QMap>
2021-12-31 17:38:02 +08:00
#include "search-task-plugin-iface.h"
2021-12-31 17:38:02 +08:00
namespace UkuiSearch {
class ManagedPlugin : public QObject
{
Q_OBJECT
public:
explicit ManagedPlugin(QObject *parent) : QObject(parent) {}
~ManagedPlugin() override;
inline SearchTaskPluginIface *internalPlugin(const SearchProperty::SearchType& searchType);
inline SearchTaskPluginIface *externalPlugin(const QString& customType);
bool insertInternalPlugin(const SearchProperty::SearchType& searchType, SearchTaskPluginIface* plugin);
bool insertExternalPlugin(const QString& customType, SearchTaskPluginIface* plugin);
private:
QMap<size_t, SearchTaskPluginIface*> m_internalPlugins;
QMap<QString, SearchTaskPluginIface*> m_externalPlugin;
};
2021-12-31 17:38:02 +08:00
class SearchTaskPluginManager : public QObject
{
Q_OBJECT
public:
static SearchTaskPluginManager *getInstance();
SearchTaskPluginIface *initPlugins(const QUuid&, SearchProperty::SearchType, const QString& customType = QString());
bool startSearch(const QUuid&, SearchProperty::SearchType, const QString& customType = QString());
void destroyPlugins(const QUuid& uuid);
void registerPluginPath(const QString& customType, const QString& pluginPath);
bool isSearching(const QUuid &uuid, SearchProperty::SearchType searchType, const QString& customType = QString());
2021-12-31 17:38:02 +08:00
private:
explicit SearchTaskPluginManager(QObject *parent = nullptr);
SearchTaskPluginIface *getPlugin(SearchProperty::SearchType searchType, const QString& customType = QString());
2021-12-31 17:38:02 +08:00
//这里初衷是把内外部插件分开管理,内部插件可以增加枚举值,外部插件似乎只能用编写者自定义的字符串区分?
QHash<size_t, SearchTaskPluginIface*> m_buildinPlugin;
2021-12-31 17:38:02 +08:00
QHash<QString, SearchTaskPluginIface*> m_loadedPlugin;
QMap<QString, QString> m_loadedPluginPath;
QMap<QUuid, ManagedPlugin*> m_managedPlugins;
2021-12-31 17:38:02 +08:00
};
}
#endif // SEARCHTASKPLUGINMANAGER_H