X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f2049b683752950d1fe91aec07318e7f2122ff16..fea281f428a5c24465f2052ae3176850f8f01958:/src/gtk/webview_webkit.cpp?ds=sidebyside diff --git a/src/gtk/webview_webkit.cpp b/src/gtk/webview_webkit.cpp index 23aec2a8a4..ea424c8b16 100644 --- a/src/gtk/webview_webkit.cpp +++ b/src/gtk/webview_webkit.cpp @@ -63,13 +63,23 @@ wxgtk_webview_webkit_load_status(GtkWidget* widget, } static gboolean -wxgtk_webview_webkit_navigation(WebKitWebView *view, +wxgtk_webview_webkit_navigation(WebKitWebView *, WebKitWebFrame *frame, WebKitNetworkRequest *request, WebKitWebNavigationAction *, WebKitWebPolicyDecision *policy_decision, wxWebViewWebKit *webKitCtrl) { + if(webKitCtrl->m_guard) + { + webKitCtrl->m_guard = false; + //We set this to make sure that we don't try to load the page again from + //the resource request callback + webKitCtrl->m_vfsurl = webkit_network_request_get_uri(request); + webkit_web_policy_decision_use(policy_decision); + return FALSE; + } + webKitCtrl->m_busy = true; const gchar* uri = webkit_network_request_get_uri(request); @@ -108,14 +118,15 @@ wxgtk_webview_webkit_navigation(WebKitWebView *view, //ourselves if(handler) { + webKitCtrl->m_guard = true; wxFSFile* file = handler->GetFile(wxuri); - g_signal_handlers_block_by_func(view, - (gpointer)wxgtk_webview_webkit_navigation, - webKitCtrl); - webKitCtrl->SetPage(*file->GetStream(), wxuri); - g_signal_handlers_unblock_by_func(view, - (gpointer)wxgtk_webview_webkit_navigation, - webKitCtrl); + if(file) + { + webKitCtrl->SetPage(*file->GetStream(), wxuri); + } + //We need to throw some sort of error here if file is NULL + webkit_web_policy_decision_ignore(policy_decision); + return TRUE; } return FALSE; } @@ -307,6 +318,58 @@ wxgtk_webview_webkit_title_changed(WebKitWebView*, } +static void +wxgtk_webview_webkit_resource_req(WebKitWebView *, + WebKitWebFrame *, + WebKitWebResource *, + WebKitNetworkRequest *request, + WebKitNetworkResponse *, + wxWebViewWebKit *webKitCtrl) +{ + wxString uri = webkit_network_request_get_uri(request); + + wxWebHandler *handler = NULL; + wxVector hanlders = webKitCtrl->GetHandlers(); + + //We are not vetoed so see if we match one of the additional handlers + for(wxVector::iterator it = hanlders.begin(); + it != hanlders.end(); ++it) + { + if(uri.substr(0, (*it)->GetName().length()) == (*it)->GetName()) + { + handler = (*it); + } + } + //If we found a handler we can then use it to load the file directly + //ourselves + if(handler) + { + //If it is requsting the page itself then return as we have already + //loaded it from the archive + if(webKitCtrl->m_vfsurl == uri) + return; + + wxFSFile* file = handler->GetFile(uri); + if(file) + { + //We redirect to a temp file for now, small things could be loaded + //using the data scheme + size_t size = file->GetStream()->GetLength(); + char *buffer = new char[size]; + wxFile tempfile; + wxString path = wxFileName::CreateTempFileName("wxwebview_", &tempfile); + //We can then stream from the archive to the temp file + file->GetStream()->Read(buffer, size); + tempfile.Write(buffer, size); + tempfile.Close(); + delete[] buffer; + //Then we can redirect the call + webkit_network_request_set_uri(request, "file://" + path); + } + + } +} + } // extern "C" //----------------------------------------------------------------------------- @@ -325,6 +388,7 @@ bool wxWebViewWebKit::Create(wxWindow *parent, { m_ready = false; m_busy = false; + m_guard = false; if (!PreCreation( parent, pos, size ) || !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) @@ -361,6 +425,9 @@ bool wxWebViewWebKit::Create(wxWindow *parent, g_signal_connect_after(web_view, "title-changed", G_CALLBACK(wxgtk_webview_webkit_title_changed), this); + g_signal_connect_after(web_view, "resource-request-starting", + G_CALLBACK(wxgtk_webview_webkit_resource_req), this); + m_parent->DoAddChild( this ); PostCreation(size);