blob: dc79232638d1e2f08a7899178969269b06f1addb (
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
|
/*
* This file is part of smolbote. It's copyrighted by the contributors recorded
* in the version control history of the file, available from its original
* location: https://library.iserlohn-fortress.net/aqua/smolbote.git
*
* SPDX-License-Identifier: GPL-3.0
*/
#ifndef SMOLBOTE_SMOLBLOK_HPP
#define SMOLBOTE_SMOLBLOK_HPP
#include "filtermanager.hpp"
#include "smolbote/filterinterface.hpp"
#include <QPluginLoader>
#include <QWebEngineUrlRequestInterceptor>
class smolblok
{
public:
smolblok() = default;
~smolblok()
{
for(auto &plugin : m_formats) {
delete plugin.loader;
}
}
auto registerFormatPlugin(const QString &format, const QString &filename)
{
struct {
bool loaded = false;
QString error;
} ret;
if(format.isEmpty() || filename.isEmpty()) {
ret.error = "Format or filename is empty";
return ret;
}
auto *plugin = new QPluginLoader(filename);
if(!plugin->load()) {
ret.error = plugin->errorString();
delete plugin;
return ret;
}
auto *instance = qobject_cast<FilterPlugin *>(plugin->instance());
if(instance == nullptr) {
ret.error = "Unable to cast";
delete plugin;
return ret;
}
m_formats[format] = PluginInfo{ plugin, instance };
ret.loaded = true;
return ret;
}
auto formats() const
{
return m_formats.keys();
}
bool addSubscriptions(const QString &filename);
QWebEngineUrlRequestInterceptor *interceptor()
{
return &m_subscriptions;
}
private:
struct PluginInfo {
QPluginLoader *loader = nullptr;
FilterPlugin *instance = nullptr;
};
QHash<QString, PluginInfo> m_formats;
FilterManager m_subscriptions;
};
#endif // SMOLBOTE_SMOLBLOK_HPP
|