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
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwebviewfactory_p.h"
#include "qwebviewplugin_p.h"
#include <private/qfactoryloader_p.h>
#include <QtCore/qglobal.h>
QT_BEGIN_NAMESPACE
Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, loader, (QWebViewPluginInterface_iid, QLatin1String("/webview")))
static QString getPluginName()
{
static const QString name = !qEnvironmentVariableIsEmpty("QT_WEBVIEW_PLUGIN")
? QString::fromLatin1(qgetenv("QT_WEBVIEW_PLUGIN"))
: QStringLiteral("native");
return name;
}
class QNullWebViewSettings : public QAbstractWebViewSettings
{
public:
explicit QNullWebViewSettings(QObject *p) : QAbstractWebViewSettings(p) {}
bool localStorageEnabled() const override { return false; }
bool javaScriptEnabled() const override { return false; }
bool localContentCanAccessFileUrls() const override { return false; }
bool allowFileAccess() const override { return false; }
void setLocalContentCanAccessFileUrls(bool) override {}
void setJavaScriptEnabled(bool) override {}
void setLocalStorageEnabled(bool) override {}
void setAllowFileAccess(bool) override {}
};
class QNullWebView : public QAbstractWebView
{
public:
explicit QNullWebView(QObject *p = nullptr)
: QAbstractWebView(p)
, m_settings(new QNullWebViewSettings(this))
{}
QString httpUserAgent() const override { return QString(); }
void setHttpUserAgent(const QString &userAgent) override { Q_UNUSED(userAgent); }
void setUrl(const QUrl &url) override { Q_UNUSED(url); }
bool canGoBack() const override { return false; }
bool canGoForward() const override { return false; }
QString title() const override { return QString(); }
int loadProgress() const override { return 0; }
bool isLoading() const override { return false; }
void goBack() override { }
void goForward() override { }
void stop() override { }
void reload() override { }
void loadHtml(const QString &html, const QUrl &baseUrl) override
{ Q_UNUSED(html); Q_UNUSED(baseUrl); }
void runJavaScriptPrivate(const QString &script, int callbackId) override
{ Q_UNUSED(script); Q_UNUSED(callbackId); }
void setCookie(const QString &domain, const QString &name, const QString &value) override
{ Q_UNUSED(domain); Q_UNUSED(name); Q_UNUSED(value); }
void deleteCookie(const QString &domain, const QString &name) override
{ Q_UNUSED(domain); Q_UNUSED(name); }
void deleteAllCookies() override {}
QWindow *nativeWindow() const override { return nullptr; }
protected:
QAbstractWebViewSettings *getSettings() const override
{
return m_settings;
}
private:
QNullWebViewSettings *m_settings = nullptr;
};
QAbstractWebView *QWebViewFactory::createWebView()
{
QAbstractWebView *wv = nullptr;
QWebViewPlugin *plugin = getPlugin();
if (plugin)
wv = plugin->create(QStringLiteral("webview"));
if (!wv || !plugin) {
qWarning("No WebView plug-in found!");
wv = new QNullWebView;
}
return wv;
}
bool QWebViewFactory::requiresExtraInitializationSteps()
{
const QString pluginName = getPluginName();
const int index = pluginName.isEmpty() ? 0 : qMax<int>(0, loader->indexOf(pluginName));
const QList<QPluginParsedMetaData> metaDataList = loader->metaData();
if (metaDataList.isEmpty())
return false;
const auto &pluginMetaData = metaDataList.at(index);
Q_ASSERT(pluginMetaData.value(QtPluginMetaDataKeys::IID) == QLatin1String(QWebViewPluginInterface_iid));
const auto metaDataObject = pluginMetaData.value(QtPluginMetaDataKeys::MetaData).toMap();
return metaDataObject.value(QLatin1String("RequiresInit")).toBool();
}
QWebViewPlugin *QWebViewFactory::getPlugin()
{
// Plugin loading logic:
// 1. Get plugin name - plugin name is either user specified or "native"
// - Exception: macOS, which will default to using "webengine" until the native plugin is matured.
// 2. If neither a user specified or "default" plugin exists, then the first available is used.
const QString pluginName = getPluginName();
const int index = pluginName.isEmpty() ? 0 : qMax<int>(0, loader->indexOf(pluginName));
return qobject_cast<QWebViewPlugin *>(loader->instance(index));
}
QT_END_NAMESPACE
|