nsIProtocolHandler: trouble loading image for html page - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T01:29:22Z http://stackoverflow.com/feeds/question/1046523 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1046523/nsiprotocolhandler-trouble-loading-image-for-html-page 2 nsIProtocolHandler: trouble loading image for html page Stijn Sanders 2009-06-25T22:19:53Z 2009-07-03T11:57:06Z <p>I'm building an nsIProtocolHandler implementation in Delphi. (<a href="http://stackoverflow.com/questions/864443/implementing-nsiprotocolhandler-with-delphi">more here</a>) And it's working already. Data the module builds gets streamed over an nsIInputStream. I've got all the nsIRequest, nsIChannel and nsIHttpChannel methods and properties working.</p> <p>I've started testing and I run into something strange. I have a page "a.html" with this simple HTML:</p> <p><code>&lt;img src="a.png"&gt;</code></p> <p>Both "xxm://test/a.html" and "xxm://test/a.png" work in Firefox, and give above HTML or the PNG image data. The problem is with displaying the HTML page, the image doesn't get loaded. When I debug, I see:</p> <ul> <li>NewChannel gets called for a.png, (when Firefox is processing an OnDataAvailable notice on a.html),</li> <li>NotificationCallbacks is set (I only need to keep a reference, right?)</li> <li>RequestHeader "<code>Accept</code>" is set to "<code>image/png,image/*;q=0.8,*/*;q=0.5</code>"</li> <li>but then, the channel object is released (most probably due to a zero reference count)</li> </ul> <p>Looking at other requests, I would expect some other properties to get set (such as LoadFlags or OriginalURI) and <a href="http://mxr.mozilla.org/firefox/source/netwerk/base/public/nsIChannel.idl#205" rel="nofollow">AsyncOpen</a> to get called, from where I can start getting the request responded to.</p> <p>Does anybody recognise this? Am I doing something wrong? Perhaps with LoadFlags or the LoadGroup? I'm not sure when to call AddRequest and RemoveRequest on the LoadGroup, and peeping from <a href="http://mxr.mozilla.org/firefox/source/netwerk/protocol/http/src/nsHttpHandler.cpp" rel="nofollow">nsHttpChannel</a> and <a href="http://mxr.mozilla.org/firefox/source/netwerk/base/src/nsBaseChannel.cpp" rel="nofollow">nsBaseChannel</a> I'm not sure it's better to call RemoveRequest early or late (before or after OnStartRequest or OnStopRequest)?</p> <p><strong>Update:</strong> Checked on the freshly new Firefox 3.5, still the same</p> <p><strong>Update:</strong> To try to further isolate the issue, I try "file://test/a1.html" with <code>&lt;img src="xxm://test/a.png" /&gt;</code> and still only get above sequence of events happening. <em>If</em> I'm supposed to add this secundary request to a load-group to get AsyncOpen called on it, I have no idea where to get a reference to it.</p> <p>There's more: I find only <a href="http://tinyurl.com/le7m77" rel="nofollow">one instance</a> of the "Accept" string that get's added to the request headers, it queries for nsIHttpChannelInternal right after creating a new channel, but I don't even get this QueryInterface call through... (I posted it <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=501952" rel="nofollow">here</a>)</p> http://stackoverflow.com/questions/1046523/nsiprotocolhandler-trouble-loading-image-for-html-page/1073124#1073124 0 Answer by eed3si9n for nsIProtocolHandler: trouble loading image for html page eed3si9n 2009-07-02T08:17:31Z 2009-07-03T09:41:12Z <p>Me again.</p> <p>I am going to quote the same stuff from <a href="https://developer.mozilla.org/En/NsIChannel#asyncOpen.28.29" rel="nofollow"><code>nsIChannel::asyncOpen()</code></a>: </p> <blockquote> <p>If <code>asyncOpen</code> returns successfully, the channel is responsible for keeping itself alive until it has called <code>onStopRequest</code> on <code>aListener</code> or called <code>onChannelRedirect</code>.</p> </blockquote> <p>If you go back to <a href="http://web.mit.edu/Source/third/mozilla/netwerk/protocol/viewsource/src/nsViewSourceChannel.cpp" rel="nofollow">nsViewSourceChannel.cpp</a>, there's one place where <code>loadGroup-&gt;AddRequest</code> is called and two places where <code>loadGroup-&gt;RemoveRequest</code> is being called.</p> <pre><code>nsViewSourceChannel::AsyncOpen(nsIStreamListener *aListener, nsISupports *ctxt) { NS_ENSURE_TRUE(mChannel, NS_ERROR_FAILURE); mListener = aListener; /* * We want to add ourselves to the loadgroup before opening * mChannel, since we want to make sure we're in the loadgroup * when mChannel finishes and fires OnStopRequest() */ nsCOMPtr&lt;nsILoadGroup&gt; loadGroup; mChannel-&gt;GetLoadGroup(getter_AddRefs(loadGroup)); if (loadGroup) loadGroup-&gt;AddRequest(NS_STATIC_CAST(nsIViewSourceChannel*, this), nsnull); nsresult rv = mChannel-&gt;AsyncOpen(this, ctxt); if (NS_FAILED(rv) &amp;&amp; loadGroup) loadGroup-&gt;RemoveRequest(NS_STATIC_CAST(nsIViewSourceChannel*, this), nsnull, rv); if (NS_SUCCEEDED(rv)) { mOpened = PR_TRUE; } return rv; } </code></pre> <p>and</p> <pre><code>nsViewSourceChannel::OnStopRequest(nsIRequest *aRequest, nsISupports* aContext, nsresult aStatus) { NS_ENSURE_TRUE(mListener, NS_ERROR_FAILURE); if (mChannel) { nsCOMPtr&lt;nsILoadGroup&gt; loadGroup; mChannel-&gt;GetLoadGroup(getter_AddRefs(loadGroup)); if (loadGroup) { loadGroup-&gt;RemoveRequest(NS_STATIC_CAST(nsIViewSourceChannel*, this), nsnull, aStatus); } } return mListener-&gt;OnStopRequest(NS_STATIC_CAST(nsIViewSourceChannel*, this), aContext, aStatus); } </code></pre> <p><strong>Edit</strong>:</p> <p>As I have no clue about how Mozilla works, so I have to guess from reading some code. From the channel's point of view, once the original file is loaded, its job is done. If you want to load the secondary items linked in file like an image, you have to implement that in the listener. See <a href="http://mxr.mozilla.org/firefox/source/netwerk/test/TestPageLoad.cpp" rel="nofollow">TestPageLoad.cpp</a>. It implements a crude parser and it retrieves child items upon <code>OnDataAvailable</code>:</p> <pre><code>NS_IMETHODIMP MyListener::OnDataAvailable(nsIRequest *req, nsISupports *ctxt, nsIInputStream *stream, PRUint32 offset, PRUint32 count) { //printf("&gt;&gt;&gt; OnDataAvailable [count=%u]\n", count); nsresult rv = NS_ERROR_FAILURE; PRUint32 bytesRead=0; char buf[1024]; if(ctxt == nsnull) { bytesRead=0; rv = stream-&gt;ReadSegments(streamParse, &amp;offset, count, &amp;bytesRead); } else { while (count) { PRUint32 amount = PR_MIN(count, sizeof(buf)); rv = stream-&gt;Read(buf, amount, &amp;bytesRead); count -= bytesRead; } } if (NS_FAILED(rv)) { printf("&gt;&gt;&gt; stream-&gt;Read failed with rv=%x\n", rv); return rv; } return NS_OK; } </code></pre> <p>The important thing is that it calls <code>streamParse()</code>, which looks at <code>src</code> attribute of <code>img</code> and <code>script</code> element, and calls <code>auxLoad()</code>, which creates new channel with new listener and calls <code>AsyncOpen()</code>.</p> <pre><code>uriList-&gt;AppendElement(uri); rv = NS_NewChannel(getter_AddRefs(chan), uri, nsnull, nsnull, callbacks); RETURN_IF_FAILED(rv, "NS_NewChannel"); gKeepRunning++; rv = chan-&gt;AsyncOpen(listener, myBool); RETURN_IF_FAILED(rv, "AsyncOpen"); </code></pre> <p>Since it's passing in another instance of <code>MyListener</code> object in there, that can also load more child items ad infinitum like a Russian doll situation.</p> http://stackoverflow.com/questions/1046523/nsiprotocolhandler-trouble-loading-image-for-html-page/1079041#1079041 0 Answer by Stijn Sanders for nsIProtocolHandler: trouble loading image for html page Stijn Sanders 2009-07-03T11:57:06Z 2009-07-03T11:57:06Z <p>I think I found it (myself), take a close look at <a href="http://www.oxymoronical.com/experiments/apidocs/compare/interface/nsIHttpChannelInternal/1.9.0.0/1.9.1b2" rel="nofollow">this page</a>. Why it doesn't highlight that the UUID has been changed over versions, isn't clear to me, but it would explain why things fail when (or just prior to) calling QueryInterface on nsIHttpChannelInternal.</p> <p>With the new(er) UUID, I'm getting better results. As I mentioned in an update to the question, I've posted this on bugzilla.mozilla.org, I'm curious if and which response I will get there.</p>