blob: 7ade26032af9edf4c9f663632aa09dbe1b1fc718 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#include <QtCore/QDebug>
#include <QtCore/QPluginLoader>
#include <QtCore/QSettings>
#include <QtCore/QDir>
#include "watchplugininterface.h"
#include "notificationplugininterface.h"
#include "watchletplugininterface.h"
#include "registry.h"
using namespace sowatch;
Registry* Registry::singleRegistry = 0;
Registry* Registry::registry()
{
if (!singleRegistry) {
singleRegistry = new Registry();
}
return singleRegistry;
}
Registry::Registry()
{
loadDrivers();
loadNotificationProviders();
loadWatchlets();
}
void Registry::loadDrivers()
{
QDir dir(SOWATCH_DRIVERS_DIR);
foreach (QString file, dir.entryList(QDir::Files)) {
#if defined(Q_OS_UNIX)
// Temporary workaround for QtC deploy plugin issues
if (!file.endsWith(".so")) continue;
#endif
QPluginLoader loader(dir.absoluteFilePath(file));
QObject *pluginObj = loader.instance();
if (pluginObj) {
WatchPluginInterface *plugin = qobject_cast<WatchPluginInterface*>(pluginObj);
if (plugin) {
QStringList drivers = plugin->drivers();
foreach (const QString& driver, drivers) {
_drivers[driver] = plugin;
}
} else {
qWarning() << "Invalid plugin" << file;
loader.unload();
}
} else {
qWarning() << "Invalid plugin" << file << loader.errorString();
loader.unload();
}
}
qDebug() << "loaded drivers" << _drivers.keys();
}
void Registry::loadNotificationProviders()
{
QDir dir(SOWATCH_NOTIFICATIONS_DIR);
foreach (QString file, dir.entryList(QDir::Files)) {
#if defined(Q_OS_UNIX)
// Temporary workaround for QtC deploy plugin issues
if (!file.endsWith(".so")) continue;
#endif
QPluginLoader loader(dir.absoluteFilePath(file));
QObject *pluginObj = loader.instance();
if (pluginObj) {
NotificationPluginInterface *plugin = qobject_cast<NotificationPluginInterface*>(pluginObj);
if (plugin) {
QStringList providers = plugin->providers();
foreach (const QString& provider, providers) {
_providers[provider] = plugin;
}
} else {
qWarning() << "Invalid plugin" << file;
loader.unload();
}
} else {
qWarning() << "Invalid plugin" << file << loader.errorString();
loader.unload();
}
}
qDebug() << "loaded notification providers" << _providers.keys();
}
void Registry::loadWatchlets()
{
QDir dir(SOWATCH_WATCHLETS_DIR);
foreach (QString file, dir.entryList(QDir::Files)) {
#if defined(Q_OS_UNIX)
// Temporary workaround for QtC deploy plugin issues
if (!file.endsWith(".so")) continue;
#endif
QPluginLoader loader(dir.absoluteFilePath(file));
QObject *pluginObj = loader.instance();
if (pluginObj) {
WatchletPluginInterface *plugin = qobject_cast<WatchletPluginInterface*>(pluginObj);
if (plugin) {
QStringList watchlets = plugin->watchlets();
foreach (const QString& watchlet, watchlets) {
_watchlets[watchlet] = plugin;
}
} else {
qWarning() << "Invalid plugin" << file;
loader.unload();
}
} else {
qWarning() << "Invalid plugin" << file << loader.errorString();
loader.unload();
}
}
qDebug() << "loaded watchlets" << _watchlets.keys();
}
|