/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** 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.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 2002 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Jonas Sicking (Original author) * * Alternatively, the contents of this file may be used under the terms of * either 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 "nsXMLPrettyPrinter.h" #include "nsContentUtils.h" #include "nsIDOMDocumentView.h" #include "nsIDOMAbstractView.h" #include "nsIDOMCSSStyleDeclaration.h" #include "nsIDOMViewCSS.h" #include "nsIDOMDocumentXBL.h" #include "nsIObserver.h" #include "nsIXSLTProcessor.h" #include "nsSyncLoadService.h" #include "nsPIDOMWindow.h" #include "nsIDOMElement.h" #include "nsIDOMDocument.h" #include "nsIServiceManager.h" #include "nsNetUtil.h" #include "nsIContent.h" #include "nsIDOMDocumentFragment.h" #include "nsBindingManager.h" NS_IMPL_ISUPPORTS2(nsXMLPrettyPrinter, nsIDocumentObserver, nsIMutationObserver) nsXMLPrettyPrinter::nsXMLPrettyPrinter() : mDocument(nsnull), mUpdateDepth(0), mUnhookPending(PR_FALSE) { } nsXMLPrettyPrinter::~nsXMLPrettyPrinter() { NS_ASSERTION(!mDocument, "we shouldn't be referencing the document still"); } nsresult nsXMLPrettyPrinter::PrettyPrint(nsIDocument* aDocument, PRBool* aDidPrettyPrint) { *aDidPrettyPrint = PR_FALSE; // Check for iframe with display:none. Such iframes don't have presshells if (!aDocument->GetPrimaryShell()) { return NS_OK; } // check if we're in an invisible iframe nsPIDOMWindow *internalWin = aDocument->GetWindow(); nsCOMPtr frameElem; if (internalWin) { internalWin->GetFrameElement(getter_AddRefs(frameElem)); } if (frameElem) { nsCOMPtr computedStyle; nsCOMPtr frameOwnerDoc; frameElem->GetOwnerDocument(getter_AddRefs(frameOwnerDoc)); nsCOMPtr docView = do_QueryInterface(frameOwnerDoc); if (docView) { nsCOMPtr defaultView; docView->GetDefaultView(getter_AddRefs(defaultView)); nsCOMPtr defaultCSSView = do_QueryInterface(defaultView); if (defaultCSSView) { defaultCSSView->GetComputedStyle(frameElem, EmptyString(), getter_AddRefs(computedStyle)); } } if (computedStyle) { nsAutoString visibility; computedStyle->GetPropertyValue(NS_LITERAL_STRING("visibility"), visibility); if (!visibility.EqualsLiteral("visible")) { return NS_OK; } } } // check the pref if (!nsContentUtils::GetBoolPref("layout.xml.prettyprint", PR_TRUE)) { return NS_OK; } // Ok, we should prettyprint. Let's do it! *aDidPrettyPrint = PR_TRUE; nsresult rv = NS_OK; // Load the XSLT nsCOMPtr xslUri; rv = NS_NewURI(getter_AddRefs(xslUri), NS_LITERAL_CSTRING("chrome://global/content/xml/XMLPrettyPrint.xsl")); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr xslDocument; rv = nsSyncLoadService::LoadDocument(xslUri, nsnull, nsnull, PR_TRUE, getter_AddRefs(xslDocument)); NS_ENSURE_SUCCESS(rv, rv); // Transform the document nsCOMPtr transformer = do_CreateInstance("@mozilla.org/document-transformer;1?type=xslt", &rv); NS_ENSURE_SUCCESS(rv, rv); rv = transformer->ImportStylesheet(xslDocument); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr resultFragment; nsCOMPtr sourceDocument = do_QueryInterface(aDocument); rv = transformer->TransformToFragment(sourceDocument, sourceDocument, getter_AddRefs(resultFragment)); NS_ENSURE_SUCCESS(rv, rv); // Add the binding nsCOMPtr xblDoc = do_QueryInterface(aDocument); NS_ASSERTION(xblDoc, "xml document doesn't implement nsIDOMDocumentXBL"); NS_ENSURE_TRUE(xblDoc, NS_ERROR_FAILURE); xblDoc->LoadBindingDocument(NS_LITERAL_STRING("chrome://global/content/xml/XMLPrettyPrint.xml")); nsCOMPtr rootElem; sourceDocument->GetDocumentElement(getter_AddRefs(rootElem)); NS_ENSURE_TRUE(rootElem, NS_ERROR_UNEXPECTED); rv = xblDoc->AddBinding(rootElem, NS_LITERAL_STRING("chrome://global/content/xml/XMLPrettyPrint.xml#prettyprint")); NS_ENSURE_SUCCESS(rv, rv); // Hand the result document to the binding nsCOMPtr binding; nsCOMPtr rootCont = do_QueryInterface(rootElem); NS_ASSERTION(rootCont, "Element doesn't implement nsIContent"); aDocument->BindingManager()->GetBindingImplementation(rootCont, NS_GET_IID(nsIObserver), (void**)getter_AddRefs(binding)); NS_ASSERTION(binding, "Prettyprint binding doesn't implement nsIObserver"); NS_ENSURE_TRUE(binding, NS_ERROR_UNEXPECTED); rv = binding->Observe(resultFragment, "prettyprint-dom-created", EmptyString().get()); NS_ENSURE_SUCCESS(rv, rv); // Observe the document so we know when to switch to "normal" view aDocument->AddObserver(this); mDocument = aDocument; NS_ADDREF_THIS(); return NS_OK; } void nsXMLPrettyPrinter::MaybeUnhook(nsIContent* aContent) { // If there either aContent is null (the document-node was modified) or // there isn't a binding parent we know it's non-anonymous content. if (!aContent || !aContent->GetBindingParent()) { mUnhookPending = PR_TRUE; } } // nsIDocumentObserver implementation void nsXMLPrettyPrinter::BeginUpdate(nsIDocument* aDocument, nsUpdateType aUpdateType) { mUpdateDepth++; } void nsXMLPrettyPrinter::EndUpdate(nsIDocument* aDocument, nsUpdateType aUpdateType) { mUpdateDepth--; // Only remove the binding once we're outside all updates. This protects us // from nasty surprices of elements being removed from the document in the // midst of setting attributes etc. if (mUnhookPending && mUpdateDepth == 0) { mDocument->RemoveObserver(this); nsCOMPtr document = do_QueryInterface(mDocument); nsCOMPtr rootElem; document->GetDocumentElement(getter_AddRefs(rootElem)); if (rootElem) { nsCOMPtr xblDoc = do_QueryInterface(mDocument); xblDoc->RemoveBinding(rootElem, NS_LITERAL_STRING("chrome://global/content/xml/XMLPrettyPrint.xml#prettyprint")); } mDocument = nsnull; NS_RELEASE_THIS(); } } void nsXMLPrettyPrinter::AttributeChanged(nsIDocument* aDocument, nsIContent* aContent, PRInt32 aNameSpaceID, nsIAtom* aAttribute, PRInt32 aModType, PRUint32 aStateMask) { MaybeUnhook(aContent); } void nsXMLPrettyPrinter::ContentAppended(nsIDocument* aDocument, nsIContent* aContainer, PRInt32 aNewIndexInContainer) { MaybeUnhook(aContainer); } void nsXMLPrettyPrinter::ContentInserted(nsIDocument* aDocument, nsIContent* aContainer, nsIContent* aChild, PRInt32 aIndexInContainer) { MaybeUnhook(aContainer); } void nsXMLPrettyPrinter::ContentRemoved(nsIDocument* aDocument, nsIContent* aContainer, nsIContent* aChild, PRInt32 aIndexInContainer) { MaybeUnhook(aContainer); } void nsXMLPrettyPrinter::NodeWillBeDestroyed(const nsINode* aNode) { mDocument = nsnull; NS_RELEASE_THIS(); } nsresult NS_NewXMLPrettyPrinter(nsXMLPrettyPrinter** aPrinter) { *aPrinter = new nsXMLPrettyPrinter; NS_ENSURE_TRUE(*aPrinter, NS_ERROR_OUT_OF_MEMORY); NS_ADDREF(*aPrinter); return NS_OK; }