1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/** \file PluginLoader.h
\brief Define the class to load the plugin and lunch it
\author alpha_one_x86
\licence GPL3, see the file COPYING
This class load ALL plugin compatible to listen and catch the copy/move
*/
#ifndef PluginLoader_H
#define PluginLoader_H
#include <QObject>
#include <QList>
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE_DIRECT
#include <QPluginLoader>
#endif
#include <QString>
#include <QStringList>
#include "interface/PluginInterface_PluginLoader.h"
#include "PluginsManager.h"
#include "OptionDialog.h"
#include "LocalPluginOptions.h"
namespace Ui {
class PluginLoaderOptions;
}
/** \brief Load the plugin
It use ResourcesManager(), but it provide more higher abstraction. It parse the plugins information, check it, check the dependancies.
\see ResourcesManager::ResourcesManager()
*/
class PluginLoaderCore : public QObject
{
Q_OBJECT
public:
explicit PluginLoaderCore(OptionDialog *optionDialog);
~PluginLoaderCore();
/** \brief to rended the state */
void resendState();
/** \brief should load plugin into file manager if needed */
void load();
/** \brief should unload plugin into file manager */
void unload();
private slots:
void onePluginAdded(const PluginsAvailable &plugin);
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE
void onePluginWillBeRemoved(const PluginsAvailable &plugin);
#endif
#ifdef ULTRACOPIER_DEBUG
void debugInformation(const Ultracopier::DebugLevel &level, const std::string& fonction, const std::string& text, const std::string& file, const unsigned int &ligne);
#endif // ULTRACOPIER_DEBUG
void allPluginIsloaded();
void newState(const Ultracopier::CatchState &state);
private:
//variable
struct LocalPlugin
{
PluginInterface_PluginLoader * pluginLoaderInterface;
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE_DIRECT
QPluginLoader * pluginLoader;
#endif
Ultracopier::CatchState state;
std::string path;
bool inWaitOfReply;
LocalPluginOptions *options;
};
std::vector<LocalPlugin> pluginList;
bool needEnable;
Ultracopier::CatchState last_state;
bool last_have_plugin,last_inWaitOfReply;
void sendState(bool force=false);
OptionDialog *optionDialog;
bool stopIt;
signals:
void pluginLoaderReady(const Ultracopier::CatchState &state,bool havePlugin,bool someAreInWaitOfReply) const;
void previouslyPluginAdded(const PluginsAvailable &plugin) const;
};
#endif // PluginLoader_H
|