File: pluginmanager.h

package info (click to toggle)
ktorrent 25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,104 kB
  • sloc: cpp: 40,482; xml: 1,163; python: 182; sh: 10; makefile: 5
file content (78 lines) | stat: -rw-r--r-- 1,651 bytes parent folder | download
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
/*
    SPDX-FileCopyrightText: 2005 Joris Guisson <joris.guisson@gmail.com>
    SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef KTPLUGINMANAGER_H
#define KTPLUGINMANAGER_H

#include <QList>
#include <QStringList>

#include <KPluginMetaData>
#include <KSharedConfig>

#include <interfaces/plugin.h>
#include <ktcore_export.h>
#include <util/ptrmap.h>

namespace kt
{
class CoreInterface;
class GUIInterface;
class PluginActivity;

/**
 * @author Joris Guisson
 * @brief Class to manage plugins
 *
 * This class manages all plugins. Plugins are stored in a map
 */
class KTCORE_EXPORT PluginManager
{
    QList<KPluginMetaData> pluginsMetaData;
    CoreInterface *core;
    GUIInterface *gui;
    PluginActivity *prefpage;
    bt::PtrMap<int, Plugin> loaded;

public:
    PluginManager(CoreInterface *core, GUIInterface *gui);
    ~PluginManager();

    QList<KPluginMetaData> pluginsMetaDataList() const
    {
        return pluginsMetaData;
    }

    /**
     * Load the list of plugins.
     * This basically uses KTrader to get a list of available plugins, and
     * loads those, but does not initialize them. We will consider a plugin loaded
     * when it's load method is called.
     */
    void loadPluginList();

    /**
     * Check the PluginInfo of each plugin and unload or load it if necessary
     */
    void loadPlugins();

    /**
     * Update all plugins who need a periodical GUI update.
     */
    void updateGuiPlugins();

    /**
     * Unload all plugins.
     */
    void unloadAll();

private:
    void load(const KPluginMetaData &data, int idx);
    void unload(const KPluginMetaData &data, int idx);
};

}

#endif