Commit 61dec11a authored by Allan Sandfeld Jensen's avatar Allan Sandfeld Jensen
Browse files

Fix crashes and ownership issues in Custom URL scheme handling


Fixes crashes exposed by implementing the qthelp protocol handler for
Qt assistant.

Change-Id: I0b1153bc52ff82838cde009f1fe1ac46edc43210
Reviewed-by: default avatarAndras Becsi <andras.becsi@theqtcompany.com>
Showing with 16 additions and 14 deletions
...@@ -39,7 +39,6 @@ ...@@ -39,7 +39,6 @@
CustomUrlSchemeHandler::CustomUrlSchemeHandler(const QByteArray &scheme) CustomUrlSchemeHandler::CustomUrlSchemeHandler(const QByteArray &scheme)
: m_scheme(scheme) : m_scheme(scheme)
, m_protocolHandler(new CustomProtocolHandler(this))
{ {
} }
...@@ -57,7 +56,8 @@ void CustomUrlSchemeHandler::setScheme(const QByteArray &scheme) ...@@ -57,7 +56,8 @@ void CustomUrlSchemeHandler::setScheme(const QByteArray &scheme)
m_scheme = scheme; m_scheme = scheme;
} }
CustomProtocolHandler *CustomUrlSchemeHandler::protocolHandler() CustomProtocolHandler *CustomUrlSchemeHandler::createProtocolHandler()
{ {
return m_protocolHandler.data(); // Will be owned by the JobFactory.
return new CustomProtocolHandler(this);
} }
...@@ -55,13 +55,12 @@ public: ...@@ -55,13 +55,12 @@ public:
QByteArray scheme() const; QByteArray scheme() const;
void setScheme(const QByteArray &); void setScheme(const QByteArray &);
CustomProtocolHandler *protocolHandler(); CustomProtocolHandler *createProtocolHandler();
virtual bool handleJob(URLRequestCustomJobDelegate*) = 0; virtual bool handleJob(URLRequestCustomJobDelegate*) = 0;
private: private:
QByteArray m_scheme; QByteArray m_scheme;
QScopedPointer<CustomProtocolHandler> m_protocolHandler;
}; };
#endif // CUSTOM_URL_SCHEME_HANDLER_H_ #endif // CUSTOM_URL_SCHEME_HANDLER_H_
...@@ -122,6 +122,8 @@ void URLRequestContextGetterQt::generateStorage() ...@@ -122,6 +122,8 @@ void URLRequestContextGetterQt::generateStorage()
{ {
Q_ASSERT(m_urlRequestContext); Q_ASSERT(m_urlRequestContext);
Q_ASSERT(m_proxyConfigService); Q_ASSERT(m_proxyConfigService);
if (!m_proxyConfigService)
return;
m_updateStorageSettings = false; m_updateStorageSettings = false;
m_storage.reset(new net::URLRequestContextStorage(m_urlRequestContext.get())); m_storage.reset(new net::URLRequestContextStorage(m_urlRequestContext.get()));
...@@ -285,7 +287,7 @@ void URLRequestContextGetterQt::generateJobFactory() ...@@ -285,7 +287,7 @@ void URLRequestContextGetterQt::generateJobFactory()
new net::FtpProtocolHandler(new net::FtpNetworkLayer(m_urlRequestContext->host_resolver()))); new net::FtpProtocolHandler(new net::FtpNetworkLayer(m_urlRequestContext->host_resolver())));
Q_FOREACH (CustomUrlSchemeHandler* handler, m_browserContext->customUrlSchemeHandlers()) { Q_FOREACH (CustomUrlSchemeHandler* handler, m_browserContext->customUrlSchemeHandlers()) {
m_jobFactory->SetProtocolHandler(handler->scheme().toStdString(), handler->protocolHandler()); m_jobFactory->SetProtocolHandler(handler->scheme().toStdString(), handler->createProtocolHandler());
} }
m_urlRequestContext->set_job_factory(m_jobFactory.get()); m_urlRequestContext->set_job_factory(m_jobFactory.get());
......
...@@ -72,7 +72,7 @@ void URLRequestCustomJob::Start() ...@@ -72,7 +72,7 @@ void URLRequestCustomJob::Start()
void URLRequestCustomJob::Kill() void URLRequestCustomJob::Kill()
{ {
if (m_device->isOpen()) if (m_device && m_device->isOpen())
m_device->close(); m_device->close();
m_weakFactory.InvalidateWeakPtrs(); m_weakFactory.InvalidateWeakPtrs();
......
...@@ -41,8 +41,6 @@ ...@@ -41,8 +41,6 @@
#include "qwebengineprofile_p.h" #include "qwebengineprofile_p.h"
#include "qwebengineurlrequestjob_p.h" #include "qwebengineurlrequestjob_p.h"
#include <QSharedPointer>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
QWebEngineUrlSchemeHandlerPrivate::QWebEngineUrlSchemeHandlerPrivate(const QByteArray &scheme, QWebEngineUrlSchemeHandler *q, QWebEngineProfile *profile) QWebEngineUrlSchemeHandlerPrivate::QWebEngineUrlSchemeHandlerPrivate(const QByteArray &scheme, QWebEngineUrlSchemeHandler *q, QWebEngineProfile *profile)
...@@ -63,8 +61,8 @@ bool QWebEngineUrlSchemeHandlerPrivate::handleJob(URLRequestCustomJobDelegate *j ...@@ -63,8 +61,8 @@ bool QWebEngineUrlSchemeHandlerPrivate::handleJob(URLRequestCustomJobDelegate *j
return true; return true;
} }
QWebEngineUrlSchemeHandler::QWebEngineUrlSchemeHandler(const QByteArray &scheme, QWebEngineProfile *profile) QWebEngineUrlSchemeHandler::QWebEngineUrlSchemeHandler(const QByteArray &scheme, QWebEngineProfile *profile, QObject *parent)
: QObject(profile) : QObject(parent)
, d_ptr(new QWebEngineUrlSchemeHandlerPrivate(scheme, this, profile)) , d_ptr(new QWebEngineUrlSchemeHandlerPrivate(scheme, this, profile))
{ {
profile->d_func()->installUrlSchemeHandler(this); profile->d_func()->installUrlSchemeHandler(this);
...@@ -72,7 +70,8 @@ QWebEngineUrlSchemeHandler::QWebEngineUrlSchemeHandler(const QByteArray &scheme, ...@@ -72,7 +70,8 @@ QWebEngineUrlSchemeHandler::QWebEngineUrlSchemeHandler(const QByteArray &scheme,
QWebEngineUrlSchemeHandler::~QWebEngineUrlSchemeHandler() QWebEngineUrlSchemeHandler::~QWebEngineUrlSchemeHandler()
{ {
d_ptr->m_profile->d_func()->removeUrlSchemeHandler(this); if (d_ptr->m_profile)
d_ptr->m_profile->d_func()->removeUrlSchemeHandler(this);
} }
QByteArray QWebEngineUrlSchemeHandler::scheme() const QByteArray QWebEngineUrlSchemeHandler::scheme() const
......
...@@ -54,7 +54,7 @@ class QWebEngineUrlSchemeHandlerPrivate; ...@@ -54,7 +54,7 @@ class QWebEngineUrlSchemeHandlerPrivate;
class QWEBENGINEWIDGETS_EXPORT QWebEngineUrlSchemeHandler : public QObject { class QWEBENGINEWIDGETS_EXPORT QWebEngineUrlSchemeHandler : public QObject {
Q_OBJECT Q_OBJECT
public: public:
QWebEngineUrlSchemeHandler(const QByteArray &scheme, QWebEngineProfile *profile); QWebEngineUrlSchemeHandler(const QByteArray &scheme, QWebEngineProfile *profile, QObject *parent = 0);
virtual ~QWebEngineUrlSchemeHandler(); virtual ~QWebEngineUrlSchemeHandler();
QByteArray scheme() const; QByteArray scheme() const;
......
...@@ -41,6 +41,8 @@ ...@@ -41,6 +41,8 @@
#include "custom_url_scheme_handler.h" #include "custom_url_scheme_handler.h"
#include <QPointer>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
class QWebEngineProfile; class QWebEngineProfile;
...@@ -58,7 +60,7 @@ public: ...@@ -58,7 +60,7 @@ public:
private: private:
QWebEngineUrlSchemeHandler *q_ptr; QWebEngineUrlSchemeHandler *q_ptr;
QWebEngineProfile* m_profile; QPointer<QWebEngineProfile> m_profile;
}; };
QT_END_NAMESPACE QT_END_NAMESPACE
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment