summaryrefslogtreecommitdiff
path: root/PluginLoader.h
blob: 010956aec56cf17a9fe2d387ed699b5b0c2b01e3 (plain)
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
/** \file PluginLoader.h
\brief Define the class to load the plugin and lunch it
\author alpha_one_x86
\version 0.3
\date 2010
\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>
#include <QPluginLoader>
#include <QString>
#include <QStringList>

#include "interface/PluginInterface_PluginLoader.h"
#include "PluginsManager.h"
#include "GlobalClass.h"
#include "OptionDialog.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 PluginLoader : public QObject, GlobalClass
{
	Q_OBJECT
public:
	explicit PluginLoader(OptionDialog *optionDialog);
	~PluginLoader();
	/** \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);
	void onePluginWillBeRemoved(const PluginsAvailable &plugin);
	#ifdef ULTRACOPIER_DEBUG
	void debugInformation(DebugLevel level,const QString& fonction,const QString& text,const QString& file,const int& ligne);
	#endif // ULTRACOPIER_DEBUG
	void allPluginIsloaded();
	void newState(const CatchState &state);
private:
	//variable
	struct LocalPlugin
	{
		PluginInterface_PluginLoader * PluginLoaderInterface;
		QPluginLoader * pluginLoader;
		CatchState state;
		QString path;
		bool inWaitOfReply;
		LocalPluginOptions *options;
	};
	QList<LocalPlugin> pluginList;
	bool needEnable;
	//temp variable
	int index,loop_size;
	CatchState last_state;
	bool last_have_plugin,last_inWaitOfReply;
	void sendState(bool force=false);
	OptionDialog *optionDialog;
signals:
	void pluginLoaderReady(CatchState state,bool havePlugin,bool someAreInWaitOfReply);
	void previouslyPluginAdded(PluginsAvailable);
};

#endif // PluginLoader_H