2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsXMLDocument.h"
|
|
|
|
#include "nsParserCIID.h"
|
|
|
|
#include "nsIParser.h"
|
|
|
|
#include "nsIXMLContentSink.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIContentViewerContainer.h"
|
|
|
|
#include "nsIContentViewer.h"
|
|
|
|
#include "nsIDocShell.h"
|
|
|
|
#include "nsIMarkupDocumentViewer.h"
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIBaseWindow.h"
|
|
|
|
#include "nsIDOMWindow.h"
|
|
|
|
#include "nsIDOMDocumentType.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsXPIDLString.h"
|
|
|
|
#include "nsIHttpChannel.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsICharsetAlias.h"
|
|
|
|
#include "nsICharsetAlias.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsDOMError.h"
|
|
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsLayoutCID.h"
|
|
|
|
#include "nsDOMAttribute.h"
|
|
|
|
#include "nsGUIEvent.h"
|
|
|
|
#include "nsCExternalHandlerService.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsMimeTypes.h"
|
2011-06-23 19:18:01 -07:00
|
|
|
#include "nsEventListenerManager.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "nsCRT.h"
|
|
|
|
#include "nsIAuthPrompt.h"
|
|
|
|
#include "nsIScriptGlobalObjectOwner.h"
|
|
|
|
#include "nsIJSContextStack.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
2010-03-02 11:40:14 -08:00
|
|
|
#include "nsContentPolicyUtils.h"
|
|
|
|
#include "nsContentErrors.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMUserDataHandler.h"
|
|
|
|
#include "nsEventDispatcher.h"
|
|
|
|
#include "nsNodeUtils.h"
|
2008-04-08 17:38:12 -07:00
|
|
|
#include "nsIConsoleService.h"
|
|
|
|
#include "nsIScriptError.h"
|
2008-09-20 11:55:04 -07:00
|
|
|
#include "nsIHTMLDocument.h"
|
2010-07-23 02:49:57 -07:00
|
|
|
#include "nsGenericElement.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// ==================================================================
|
|
|
|
// =
|
|
|
|
// ==================================================================
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewDOMDocument(nsIDOMDocument** aInstancePtrResult,
|
|
|
|
const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aQualifiedName,
|
|
|
|
nsIDOMDocumentType* aDoctype,
|
|
|
|
nsIURI* aDocumentURI,
|
|
|
|
nsIURI* aBaseURI,
|
2007-10-01 03:02:32 -07:00
|
|
|
nsIPrincipal* aPrincipal,
|
2011-09-17 06:32:32 -07:00
|
|
|
PRBool aLoadedAsData,
|
|
|
|
nsIScriptGlobalObject* aEventObject)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Note: can't require that aDocumentURI/aBaseURI/aPrincipal be non-null,
|
|
|
|
// since at least one caller (XMLHttpRequest) doesn't have decent args to
|
|
|
|
// pass in.
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
*aInstancePtrResult = nsnull;
|
|
|
|
|
2008-09-20 11:55:04 -07:00
|
|
|
nsCOMPtr<nsIDocument> d;
|
|
|
|
PRBool isHTML = PR_FALSE;
|
|
|
|
PRBool isXHTML = PR_FALSE;
|
|
|
|
if (aDoctype) {
|
2010-09-21 02:17:18 -07:00
|
|
|
nsAutoString publicId, name;
|
2008-09-20 11:55:04 -07:00
|
|
|
aDoctype->GetPublicId(publicId);
|
2010-09-21 02:17:18 -07:00
|
|
|
if (publicId.IsEmpty()) {
|
|
|
|
aDoctype->GetName(name);
|
|
|
|
}
|
|
|
|
if (name.EqualsLiteral("html") ||
|
|
|
|
publicId.EqualsLiteral("-//W3C//DTD HTML 4.01//EN") ||
|
2008-09-20 11:55:04 -07:00
|
|
|
publicId.EqualsLiteral("-//W3C//DTD HTML 4.01 Frameset//EN") ||
|
|
|
|
publicId.EqualsLiteral("-//W3C//DTD HTML 4.01 Transitional//EN") ||
|
|
|
|
publicId.EqualsLiteral("-//W3C//DTD HTML 4.0//EN") ||
|
|
|
|
publicId.EqualsLiteral("-//W3C//DTD HTML 4.0 Frameset//EN") ||
|
|
|
|
publicId.EqualsLiteral("-//W3C//DTD HTML 4.0 Transitional//EN")) {
|
|
|
|
rv = NS_NewHTMLDocument(getter_AddRefs(d));
|
|
|
|
isHTML = PR_TRUE;
|
|
|
|
} else if (publicId.EqualsLiteral("-//W3C//DTD XHTML 1.0 Strict//EN") ||
|
|
|
|
publicId.EqualsLiteral("-//W3C//DTD XHTML 1.0 Transitional//EN") ||
|
|
|
|
publicId.EqualsLiteral("-//W3C//DTD XHTML 1.0 Frameset//EN")) {
|
|
|
|
rv = NS_NewHTMLDocument(getter_AddRefs(d));
|
|
|
|
isHTML = PR_TRUE;
|
|
|
|
isXHTML = PR_TRUE;
|
|
|
|
}
|
|
|
|
else if (publicId.EqualsLiteral("-//W3C//DTD SVG 1.1//EN")) {
|
|
|
|
rv = NS_NewSVGDocument(getter_AddRefs(d));
|
|
|
|
}
|
|
|
|
// XXX Add support for XUL documents.
|
|
|
|
else {
|
|
|
|
rv = NS_NewXMLDocument(getter_AddRefs(d));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rv = NS_NewXMLDocument(getter_AddRefs(d));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2011-09-17 06:32:32 -07:00
|
|
|
d->SetScriptHandlingObject(aEventObject);
|
|
|
|
|
2008-09-20 11:55:04 -07:00
|
|
|
if (isHTML) {
|
|
|
|
nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(d);
|
|
|
|
NS_ASSERTION(htmlDoc, "HTML Document doesn't implement nsIHTMLDocument?");
|
|
|
|
htmlDoc->SetCompatibilityMode(eCompatibility_FullStandards);
|
|
|
|
htmlDoc->SetIsXHTML(isXHTML);
|
|
|
|
}
|
|
|
|
nsDocument* doc = static_cast<nsDocument*>(d.get());
|
2007-10-01 03:02:32 -07:00
|
|
|
doc->SetLoadedAsData(aLoadedAsData);
|
2007-03-22 10:30:00 -07:00
|
|
|
doc->nsDocument::SetDocumentURI(aDocumentURI);
|
|
|
|
// Must set the principal first, since SetBaseURI checks it.
|
|
|
|
doc->SetPrincipal(aPrincipal);
|
|
|
|
doc->SetBaseURI(aBaseURI);
|
|
|
|
|
2008-09-20 11:55:04 -07:00
|
|
|
// XMLDocuments and documents "created in memory" get to be UTF-8 by default,
|
|
|
|
// unlike the legacy HTML mess
|
2008-08-28 05:56:45 -07:00
|
|
|
doc->SetDocumentCharacterSet(NS_LITERAL_CSTRING("UTF-8"));
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aDoctype) {
|
|
|
|
nsCOMPtr<nsIDOMNode> tmpNode;
|
|
|
|
rv = doc->AppendChild(aDoctype, getter_AddRefs(tmpNode));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aQualifiedName.IsEmpty()) {
|
|
|
|
nsCOMPtr<nsIDOMElement> root;
|
|
|
|
rv = doc->CreateElementNS(aNamespaceURI, aQualifiedName,
|
|
|
|
getter_AddRefs(root));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> tmpNode;
|
|
|
|
|
|
|
|
rv = doc->AppendChild(root, getter_AddRefs(tmpNode));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aInstancePtrResult = doc;
|
|
|
|
NS_ADDREF(*aInstancePtrResult);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewXMLDocument(nsIDocument** aInstancePtrResult)
|
|
|
|
{
|
|
|
|
nsXMLDocument* doc = new nsXMLDocument();
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
NS_ADDREF(doc);
|
|
|
|
nsresult rv = doc->Init();
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_RELEASE(doc);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aInstancePtrResult = doc;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE! nsDocument::operator new() zeroes out all members, so don't
|
|
|
|
// bother initializing members to 0.
|
|
|
|
|
|
|
|
nsXMLDocument::nsXMLDocument(const char* aContentType)
|
|
|
|
: nsDocument(aContentType),
|
|
|
|
mAsync(PR_TRUE)
|
|
|
|
{
|
|
|
|
|
|
|
|
// NOTE! nsDocument::operator new() zeroes out all members, so don't
|
|
|
|
// bother initializing members to 0.
|
|
|
|
}
|
|
|
|
|
|
|
|
nsXMLDocument::~nsXMLDocument()
|
|
|
|
{
|
|
|
|
// XXX We rather crash than hang
|
|
|
|
mLoopingForSyncLoad = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-07-23 02:49:57 -07:00
|
|
|
DOMCI_NODE_DATA(XMLDocument, nsXMLDocument)
|
2010-01-12 05:08:43 -08:00
|
|
|
|
2008-02-21 12:39:20 -08:00
|
|
|
// QueryInterface implementation for nsXMLDocument
|
|
|
|
NS_INTERFACE_TABLE_HEAD(nsXMLDocument)
|
2008-11-03 02:31:47 -08:00
|
|
|
NS_DOCUMENT_INTERFACE_TABLE_BEGIN(nsXMLDocument)
|
|
|
|
NS_INTERFACE_TABLE_ENTRY(nsXMLDocument, nsIDOMXMLDocument)
|
|
|
|
NS_OFFSET_AND_INTERFACE_TABLE_END
|
|
|
|
NS_OFFSET_AND_INTERFACE_TABLE_TO_MAP_SEGUE
|
2010-03-17 08:09:05 -07:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(XMLDocument)
|
2008-02-21 12:39:20 -08:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(nsDocument)
|
|
|
|
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_ADDREF_INHERITED(nsXMLDocument, nsDocument)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsXMLDocument, nsDocument)
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXMLDocument::Init()
|
|
|
|
{
|
|
|
|
nsresult rv = nsDocument::Init();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsXMLDocument::Reset(nsIChannel* aChannel, nsILoadGroup* aLoadGroup)
|
|
|
|
{
|
|
|
|
nsDocument::Reset(aChannel, aLoadGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsXMLDocument::ResetToURI(nsIURI *aURI, nsILoadGroup *aLoadGroup,
|
|
|
|
nsIPrincipal* aPrincipal)
|
|
|
|
{
|
|
|
|
if (mChannelIsPending) {
|
|
|
|
StopDocumentLoad();
|
|
|
|
mChannel->Cancel(NS_BINDING_ABORTED);
|
|
|
|
mChannelIsPending = nsnull;
|
|
|
|
}
|
2008-01-25 13:49:11 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDocument::ResetToURI(aURI, aLoadGroup, aPrincipal);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXMLDocument::GetAsync(PRBool *aAsync)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAsync);
|
|
|
|
*aAsync = mAsync;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXMLDocument::SetAsync(PRBool aAsync)
|
|
|
|
{
|
|
|
|
mAsync = aAsync;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-04-12 18:59:00 -07:00
|
|
|
static void
|
|
|
|
ReportUseOfDeprecatedMethod(nsIDocument *aDoc, const char* aWarning)
|
|
|
|
{
|
|
|
|
nsContentUtils::ReportToConsole(nsContentUtils::eDOM_PROPERTIES,
|
|
|
|
aWarning,
|
|
|
|
nsnull, 0,
|
2010-12-20 08:21:58 -08:00
|
|
|
nsnull,
|
2010-04-12 18:59:00 -07:00
|
|
|
EmptyString(), 0, 0,
|
|
|
|
nsIScriptError::warningFlag,
|
2010-12-20 08:21:58 -08:00
|
|
|
"DOM3 Load", aDoc);
|
2010-04-12 18:59:00 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXMLDocument::Load(const nsAString& aUrl, PRBool *aReturn)
|
|
|
|
{
|
2011-03-24 04:37:32 -07:00
|
|
|
PRBool hasHadScriptObject = PR_TRUE;
|
|
|
|
nsIScriptGlobalObject* scriptObject =
|
|
|
|
GetScriptHandlingObject(hasHadScriptObject);
|
|
|
|
NS_ENSURE_STATE(scriptObject || !hasHadScriptObject);
|
|
|
|
|
2010-04-12 18:59:00 -07:00
|
|
|
ReportUseOfDeprecatedMethod(this, "UseOfDOM3LoadMethodWarning");
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
*aReturn = PR_FALSE;
|
|
|
|
|
2008-01-25 13:49:11 -08:00
|
|
|
nsCOMPtr<nsIDocument> callingDoc =
|
|
|
|
do_QueryInterface(nsContentUtils::GetDocumentFromContext());
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsIURI *baseURI = mDocumentURI;
|
|
|
|
nsCAutoString charset;
|
|
|
|
|
2008-01-25 13:49:11 -08:00
|
|
|
if (callingDoc) {
|
2010-04-19 08:40:15 -07:00
|
|
|
baseURI = callingDoc->GetDocBaseURI();
|
2008-01-25 13:49:11 -08:00
|
|
|
charset = callingDoc->GetDocumentCharacterSet();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new URI
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
nsresult rv = NS_NewURI(getter_AddRefs(uri), aUrl, charset.get(), baseURI);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2008-04-08 17:38:12 -07:00
|
|
|
// Check to see whether the current document is allowed to load this URI.
|
|
|
|
// It's important to use the current document's principal for this check so
|
|
|
|
// that we don't end up in a case where code with elevated privileges is
|
|
|
|
// calling us and changing the principal of this document.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-26 19:45:29 -08:00
|
|
|
// Enforce same-origin even for chrome loaders to avoid someone accidentally
|
|
|
|
// using a document that content has a reference to and turn that into a
|
|
|
|
// chrome document.
|
2010-03-02 11:40:14 -08:00
|
|
|
nsCOMPtr<nsIPrincipal> principal = NodePrincipal();
|
|
|
|
if (!nsContentUtils::IsSystemPrincipal(principal)) {
|
2008-04-08 17:38:12 -07:00
|
|
|
rv = principal->CheckMayLoad(uri, PR_FALSE);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-03-02 11:40:14 -08:00
|
|
|
|
|
|
|
PRInt16 shouldLoad = nsIContentPolicy::ACCEPT;
|
|
|
|
rv = NS_CheckContentLoadPolicy(nsIContentPolicy::TYPE_XMLHTTPREQUEST,
|
|
|
|
uri,
|
|
|
|
principal,
|
|
|
|
callingDoc ? callingDoc.get() :
|
|
|
|
static_cast<nsIDocument*>(this),
|
|
|
|
NS_LITERAL_CSTRING("application/xml"),
|
|
|
|
nsnull,
|
|
|
|
&shouldLoad,
|
|
|
|
nsContentUtils::GetContentPolicy(),
|
|
|
|
nsContentUtils::GetSecurityManager());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (NS_CP_REJECTED(shouldLoad)) {
|
|
|
|
return NS_ERROR_CONTENT_BLOCKED;
|
|
|
|
}
|
2008-01-25 13:49:11 -08:00
|
|
|
} else {
|
|
|
|
// We're called from chrome, check to make sure the URI we're
|
|
|
|
// about to load is also chrome.
|
|
|
|
|
|
|
|
PRBool isChrome = PR_FALSE;
|
|
|
|
if (NS_FAILED(uri->SchemeIs("chrome", &isChrome)) || !isChrome) {
|
2008-04-08 17:38:12 -07:00
|
|
|
nsCAutoString spec;
|
|
|
|
if (mDocumentURI)
|
|
|
|
mDocumentURI->GetSpec(spec);
|
|
|
|
|
|
|
|
nsAutoString error;
|
|
|
|
error.AssignLiteral("Cross site loading using document.load is no "
|
|
|
|
"longer supported. Use XMLHttpRequest instead.");
|
2010-12-20 08:21:58 -08:00
|
|
|
nsCOMPtr<nsIScriptError2> errorObject =
|
2008-04-08 17:38:12 -07:00
|
|
|
do_CreateInstance(NS_SCRIPTERROR_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-12-20 08:21:58 -08:00
|
|
|
|
|
|
|
rv = errorObject->InitWithWindowID(error.get(), NS_ConvertUTF8toUTF16(spec).get(),
|
|
|
|
nsnull, 0, 0, nsIScriptError::warningFlag,
|
|
|
|
"DOM",
|
|
|
|
callingDoc ?
|
2011-08-24 13:44:35 -07:00
|
|
|
callingDoc->InnerWindowID() :
|
|
|
|
this->InnerWindowID());
|
2010-12-20 08:21:58 -08:00
|
|
|
|
2008-04-08 17:38:12 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIConsoleService> consoleService =
|
|
|
|
do_GetService(NS_CONSOLESERVICE_CONTRACTID);
|
2010-12-20 08:21:58 -08:00
|
|
|
nsCOMPtr<nsIScriptError> logError = do_QueryInterface(errorObject);
|
|
|
|
if (consoleService && logError) {
|
|
|
|
consoleService->LogMessage(logError);
|
2008-04-08 17:38:12 -07:00
|
|
|
}
|
|
|
|
|
2008-01-25 13:49:11 -08:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-25 13:49:11 -08:00
|
|
|
// Partial Reset, need to restore principal for security reasons and
|
|
|
|
// event listener manager so that load listeners etc. will
|
|
|
|
// remain. This should be done before the security check is done to
|
|
|
|
// ensure that the document is reset even if the new document can't
|
|
|
|
// be loaded. Note that we need to hold a strong ref to |principal|
|
|
|
|
// here, because ResetToURI will null out our node principal before
|
|
|
|
// setting the new one.
|
2011-06-23 19:18:01 -07:00
|
|
|
nsRefPtr<nsEventListenerManager> elm(mListenerManager);
|
2008-01-25 13:49:11 -08:00
|
|
|
mListenerManager = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-25 13:49:11 -08:00
|
|
|
// When we are called from JS we can find the load group for the page,
|
|
|
|
// and add ourselves to it. This way any pending requests
|
|
|
|
// will be automatically aborted if the user leaves the page.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-25 13:49:11 -08:00
|
|
|
nsCOMPtr<nsILoadGroup> loadGroup;
|
|
|
|
if (callingDoc) {
|
|
|
|
loadGroup = callingDoc->GetDocumentLoadGroup();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-25 13:49:11 -08:00
|
|
|
ResetToURI(uri, loadGroup, principal);
|
|
|
|
|
|
|
|
mListenerManager = elm;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Create a channel
|
2008-11-25 17:50:04 -08:00
|
|
|
nsCOMPtr<nsIInterfaceRequestor> req = nsContentUtils::GetSameOriginChecker();
|
|
|
|
NS_ENSURE_TRUE(req, NS_ERROR_OUT_OF_MEMORY);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
|
|
// nsIRequest::LOAD_BACKGROUND prevents throbber from becoming active,
|
|
|
|
// which in turn keeps STOP button from becoming active
|
2008-11-25 17:50:04 -08:00
|
|
|
rv = NS_NewChannel(getter_AddRefs(channel), uri, nsnull, loadGroup, req,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIRequest::LOAD_BACKGROUND);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare for loading the XML document "into oneself"
|
|
|
|
nsCOMPtr<nsIStreamListener> listener;
|
|
|
|
if (NS_FAILED(rv = StartDocumentLoad(kLoadAsData, channel,
|
|
|
|
loadGroup, nsnull,
|
|
|
|
getter_AddRefs(listener),
|
|
|
|
PR_FALSE))) {
|
|
|
|
NS_ERROR("nsXMLDocument::Load: Failed to start the document load.");
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// After this point, if we error out of this method we should clear
|
|
|
|
// mChannelIsPending.
|
|
|
|
|
|
|
|
// Start an asynchronous read of the XML document
|
|
|
|
rv = channel->AsyncOpen(listener, nsnull);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
mChannelIsPending = PR_FALSE;
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mAsync) {
|
|
|
|
nsCOMPtr<nsIThread> thread = do_GetCurrentThread();
|
|
|
|
|
|
|
|
mLoopingForSyncLoad = PR_TRUE;
|
|
|
|
while (mLoopingForSyncLoad) {
|
|
|
|
if (!NS_ProcessNextEvent(thread))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We set return to true unless there was a parsing error
|
2010-04-30 06:12:05 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> node = do_QueryInterface(GetRootElement());
|
2007-03-22 10:30:00 -07:00
|
|
|
if (node) {
|
|
|
|
nsAutoString name, ns;
|
|
|
|
if (NS_SUCCEEDED(node->GetLocalName(name)) &&
|
|
|
|
name.EqualsLiteral("parsererror") &&
|
|
|
|
NS_SUCCEEDED(node->GetNamespaceURI(ns)) &&
|
|
|
|
ns.EqualsLiteral("http://www.mozilla.org/newlayout/xml/parsererror.xml")) {
|
|
|
|
//return is already false
|
|
|
|
} else {
|
|
|
|
*aReturn = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*aReturn = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXMLDocument::StartDocumentLoad(const char* aCommand,
|
|
|
|
nsIChannel* aChannel,
|
|
|
|
nsILoadGroup* aLoadGroup,
|
|
|
|
nsISupports* aContainer,
|
|
|
|
nsIStreamListener **aDocListener,
|
|
|
|
PRBool aReset,
|
|
|
|
nsIContentSink* aSink)
|
|
|
|
{
|
|
|
|
nsresult rv = nsDocument::StartDocumentLoad(aCommand,
|
|
|
|
aChannel, aLoadGroup,
|
|
|
|
aContainer,
|
|
|
|
aDocListener, aReset, aSink);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2007-07-26 19:49:18 -07:00
|
|
|
if (nsCRT::strcmp("loadAsInteractiveData", aCommand) == 0) {
|
|
|
|
mLoadedAsInteractiveData = PR_TRUE;
|
|
|
|
aCommand = kLoadAsData; // XBL, for example, needs scripts and styles
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 charsetSource = kCharsetFromDocTypeDefault;
|
|
|
|
nsCAutoString charset(NS_LITERAL_CSTRING("UTF-8"));
|
|
|
|
TryChannelCharset(aChannel, charsetSource, charset);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> aUrl;
|
|
|
|
rv = aChannel->GetURI(getter_AddRefs(aUrl));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
static NS_DEFINE_CID(kCParserCID, NS_PARSER_CID);
|
|
|
|
|
|
|
|
mParser = do_CreateInstance(kCParserCID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXMLContentSink> sink;
|
|
|
|
|
|
|
|
if (aSink) {
|
|
|
|
sink = do_QueryInterface(aSink);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsCOMPtr<nsIDocShell> docShell;
|
|
|
|
if (aContainer) {
|
|
|
|
docShell = do_QueryInterface(aContainer);
|
|
|
|
NS_ENSURE_TRUE(docShell, NS_ERROR_FAILURE);
|
|
|
|
}
|
|
|
|
rv = NS_NewXMLContentSink(getter_AddRefs(sink), this, aUrl, docShell,
|
|
|
|
aChannel);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the parser as the stream listener for the document loader...
|
|
|
|
rv = CallQueryInterface(mParser, aDocListener);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
NS_ASSERTION(mChannel, "How can we not have a channel here?");
|
|
|
|
mChannelIsPending = PR_TRUE;
|
|
|
|
|
|
|
|
SetDocumentCharacterSet(charset);
|
|
|
|
mParser->SetDocumentCharset(charset, charsetSource);
|
|
|
|
mParser->SetCommand(aCommand);
|
|
|
|
mParser->SetContentSink(sink);
|
|
|
|
mParser->Parse(aUrl, nsnull, (void *)this);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsXMLDocument::EndLoad()
|
|
|
|
{
|
|
|
|
mChannelIsPending = PR_FALSE;
|
|
|
|
mLoopingForSyncLoad = PR_FALSE;
|
|
|
|
|
2009-01-26 01:53:20 -08:00
|
|
|
mSynchronousDOMContentLoaded = (mLoadedAsData || mLoadedAsInteractiveData);
|
2008-07-19 08:20:22 -07:00
|
|
|
nsDocument::EndLoad();
|
2009-01-26 01:53:20 -08:00
|
|
|
if (mSynchronousDOMContentLoaded) {
|
|
|
|
mSynchronousDOMContentLoaded = PR_FALSE;
|
2009-01-09 09:12:09 -08:00
|
|
|
nsDocument::SetReadyStateInternal(nsIDocument::READYSTATE_COMPLETE);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Generate a document load event for the case when an XML
|
|
|
|
// document was loaded as pure data without any presentation
|
|
|
|
// attached to it.
|
|
|
|
nsEvent event(PR_TRUE, NS_LOAD);
|
2007-07-08 00:08:04 -07:00
|
|
|
nsEventDispatcher::Dispatch(static_cast<nsIDocument*>(this), nsnull,
|
2007-10-01 03:02:32 -07:00
|
|
|
&event);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsIDOMDocument interface
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXMLDocument::Clone(nsINodeInfo *aNodeInfo, nsINode **aResult) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aNodeInfo->NodeInfoManager() == mNodeInfoManager,
|
|
|
|
"Can't import this document into another document!");
|
|
|
|
|
2008-09-18 04:15:47 -07:00
|
|
|
nsRefPtr<nsXMLDocument> clone = new nsXMLDocument();
|
|
|
|
NS_ENSURE_TRUE(clone, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
nsresult rv = CloneDocHelper(clone);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-09-18 04:15:47 -07:00
|
|
|
// State from nsXMLDocument
|
|
|
|
clone->mAsync = mAsync;
|
|
|
|
|
|
|
|
return CallQueryInterface(clone.get(), aResult);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|