/********************************************************************** PluginManager - Class to handle dynamic loading/unloading of plugins Copyright (C) 2008 Donald Ephraim Curtis Copyright (C) 2008,2009 Tim Vandermeersch Copyright (C) 2008 Marcus D. Hanwell This file is part of the Avogadro molecular editor project. For more information, see Avogadro 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 2 of the License, or (at your option) any later version. Avogadro 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **********************************************************************/ #ifndef PLUGINMANAGER_H #define PLUGINMANAGER_H #include #include #include class QDir; class QSettings; namespace Avogadro { class PluginFactory; class Tool; class Engine; class Extension; class Color; class PluginItemPrivate; class A_EXPORT PluginItem { public: PluginItem(); // PluginItem(int type, const QString &fileName, // const QString &filePath, PluginFactory *factory); PluginItem(const QString &name, const QString &identifier, const QString &description, Plugin::Type type, const QString &fileName, const QString &filePath, PluginFactory *factory = 0, bool enabled = true); ~PluginItem(); /** * The plugin type (engine = 0, tool = 1, extension = 2) */ int type() const; /** * The plugin name (Draw, Stick, ...) */ QString name() const; /** * The plugin description (Draw, Stick, ...) */ QString description() const; /** * The plugin unique, untranslated identifier */ QString identifier() const; /** * The plugin filename (libdrawtool.so, libaligntool.dll, ...) */ QString fileName() const; /** * The absolute file path */ QString absoluteFilePath() const; /** * Should the plugin be loaded */ bool isEnabled() const; PluginFactory *factory() const; /** * Set the plugin type (engine = 0, tool = 1, extension = 2) */ void setType( Plugin::Type type ); /** * Set the plugin name (Draw, Stick, ...) */ void setName( const QString &name ); /** * Set the plugin unique, untranslated identifier */ void setIdentifier( const QString &id ); /** * Set the plugin description */ void setDescription( const QString &description ); /** * The plugin filename (libdrawtool.so, libaligntool.dll, ...) */ void setFileName( const QString &fileName ); /** * The absolute file path */ void setAbsoluteFilePath( const QString &filePath ); /** * Should the plugin be loaded */ void setEnabled( bool enable ); void setFactory( PluginFactory *factory ); private: PluginItemPrivate * const d; }; class PluginManagerPrivate; class A_EXPORT PluginManager: public QObject { Q_OBJECT public: PluginManager(QObject *parent = 0); ~PluginManager(); static PluginManager* instance(); /** * Find all plugins by looking through the search paths: * /usr/(local/)lib/avogadro/engines * /usr/(local/)lib/avogadro/tools * /usr/(local/)lib/avogadro/extensions * /usr/(local/)lib/avogadro/colors * * You can set AVOGADRO_PLUGINS to designate a path at runtime to search. * * WIN32: look in the applications working dir ( ./engines, ...) */ static void loadFactories(); /** * Get all the PluginFactory obacjects for a given type. */ static QList factories( Plugin::Type type ); /** * Get the PluginFactory of type @p type with plugin identifier @p id. */ static PluginFactory *factory(const QString &id, Plugin::Type type); /** * Get a new instance of the extension with identifier @p id * @return 0 if there is no extension plugin with identifier @p id */ Extension *extension(const QString &id, QObject *parent = 0); /** * Get a new instance of the tool with identifier @p id * @return 0 if there is no tool plugin with identifier @p id */ Tool *tool(const QString &id, QObject *parent = 0); /** * Get a new instance of the color with identifier @p id * @return 0 if there is no color plugin with identifier @p id */ Color *color(const QString &id, QObject *parent = 0); /** * Get a new instance of the color with identifier @p id * @return 0 if there is no engine plugin with identifier @p id */ Engine *engine(const QString &id, QObject *parent = 0); /** * Get a list with the plugin names of type @p type */ QList names(Plugin::Type type); /** * Get a list with the plugin identifiers of type @p type */ QList identifiers(Plugin::Type type); /** * Get a list with the plugin descriptions of type @p type */ QList descriptions(Plugin::Type type); /** * Get a list of all extension (new instances) */ QList extensions(QObject *parent=0) const; /** * Get a list of all tools (new instances) */ QList tools(QObject *parent=0) const; /** * Get a list of all colors (new instances) */ QList colors(QObject *parent=0) const; /** * Write the settings of the PluginManager in order to save them to disk. */ static void writeSettings(QSettings &settings); /*static void readSettings(QSettings &settings);*/ /** * Get a list of all python tool script filenames. */ static QList toolScripts(); /** * Get a list of all python engine script filenames. */ static QList engineScripts(); /** * Get a list of all python extension script filenames. */ static QList extensionScripts(); /** * Use by the plugin manager settings dialog */ static QList pluginItems(Plugin::Type); public Q_SLOTS: void reload(); Q_SIGNALS: void reloadPlugins(); private: PluginManagerPrivate * const d; /** * Private function that traverses a directory loading plugins if they are * valid. */ static void loadPluginDir(const QString &directory, QSettings &settings); static void loadFactory(PluginFactory *factory, QFileInfo &fileInfo, QSettings &settings); static QList scripts(const QString &type); }; } #endif