show/hide this revision's text 2 Added more stuff on parsing issue.

Edit:

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 TestPageLoad.cpp. It implements a crude parser and it retrieves child items upon OnDataAvailable:

MyListener::OnDataAvailable(nsIRequest *req, nsISupports *ctxt, nsIInputStream *stream, PRUint32 offset, PRUint32 count) //printf(">>> OnDataAvailable [count=%u]\n", count); nsresult rv = NS_ERROR_FAILURE; PRUint32 bytesRead=0; char buf[1024]; if(ctxt == nsnull) { bytesRead=0; rv = stream->ReadSegments(streamParse, &offset, count, &bytesRead); } else { while (count) { PRUint32 amount = PR_MIN(count, sizeof(buf)); rv = stream->Read(buf, amount, &bytesRead); count -= bytesRead; if (NS_FAILED(rv)) { printf(">>> stream->Read failed with rv=%x\n", rv); return rv; return NS_OK;

The important thing is that it calls streamParse(), which looks at src attribute of img and script element, and calls auxLoad(), which creates new channel with new listener and calls AsyncOpen().

uriList->AppendElement(uri);rv = NS_NewChannel(getter_AddRefs(chan), uri, nsnull, nsnull, callbacks);RETURN_IF_FAILED(rv, "NS_NewChannel");rv = chan->AsyncOpen(listener, myBool);RETURN_IF_FAILED(rv, "AsyncOpen");

Since it's passing in another instance of MyListener object in there, that can also load more child items ad infinitum like a Russian doll situation.

show/hide this revision's text 1

Me again.

I am going to quote the same stuff from nsIChannel::asyncOpen():

If asyncOpen returns successfully, the channel is responsible for keeping itself alive until it has called onStopRequest on aListener or called onChannelRedirect.

If you go back to nsViewSourceChannel.cpp, there's one place where loadGroup->AddRequest is called and two places where loadGroup->RemoveRequest is being called.

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<nsILoadGroup> loadGroup;
    mChannel->GetLoadGroup(getter_AddRefs(loadGroup));
    if (loadGroup)
        loadGroup->AddRequest(NS_STATIC_CAST(nsIViewSourceChannel*,
                                             this), nsnull);

    nsresult rv = mChannel->AsyncOpen(this, ctxt);

    if (NS_FAILED(rv) && loadGroup)
        loadGroup->RemoveRequest(NS_STATIC_CAST(nsIViewSourceChannel*,
                                                this),
                                 nsnull, rv);

    if (NS_SUCCEEDED(rv)) {
        mOpened = PR_TRUE;
    }

    return rv;
}

and

nsViewSourceChannel::OnStopRequest(nsIRequest *aRequest, nsISupports* aContext,
                               nsresult aStatus)
{
    NS_ENSURE_TRUE(mListener, NS_ERROR_FAILURE);
    if (mChannel)
    {
        nsCOMPtr<nsILoadGroup> loadGroup;
        mChannel->GetLoadGroup(getter_AddRefs(loadGroup));
        if (loadGroup)
        {
            loadGroup->RemoveRequest(NS_STATIC_CAST(nsIViewSourceChannel*,
                                                    this),
                                     nsnull, aStatus);
        }
    }
    return mListener->OnStopRequest(NS_STATIC_CAST(nsIViewSourceChannel*,
                                                   this),
                                    aContext, aStatus);
}