r=timeless sr=jag git-svn-id: svn://10.0.0.236/trunk@114971 18797224-902f-48f8-a5cc-f745e15eee43
510 lines
19 KiB
C++
510 lines
19 KiB
C++
/* -*- 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 the TransforMiiX XSLT processor.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Peter Van der Beken <peterv@netscape.com>
|
|
*
|
|
* 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 "txMozillaXMLOutput.h"
|
|
|
|
#include "nsIDocument.h"
|
|
#include "nsIDOMComment.h"
|
|
#include "nsIDOMDocumentType.h"
|
|
#include "nsIDOMDOMImplementation.h"
|
|
#include "nsIDOMProcessingInstruction.h"
|
|
#include "nsIDOMText.h"
|
|
#include "nsIDOMHTMLTableSectionElem.h"
|
|
#include "nsIDOMHTMLScriptElement.h"
|
|
#include "nsIDOMNSDocument.h"
|
|
#include "nsUnicharUtils.h"
|
|
#include "txAtoms.h"
|
|
|
|
#define kXHTMLNameSpaceURI "http://www.w3.org/1999/xhtml"
|
|
#define kTXNameSpaceURI "http://www.mozilla.org/TransforMiix"
|
|
#define kTXWrapper "transformiix:result"
|
|
|
|
#define TX_ENSURE_CURRENTNODE \
|
|
NS_ASSERTION(mCurrentNode, "mCurrentNode is NULL"); \
|
|
if (!mCurrentNode) \
|
|
return
|
|
|
|
txMozillaXMLOutput::txMozillaXMLOutput() : mDisableStylesheetLoad(PR_FALSE)
|
|
{
|
|
}
|
|
|
|
txMozillaXMLOutput::~txMozillaXMLOutput()
|
|
{
|
|
}
|
|
|
|
void txMozillaXMLOutput::attribute(const String& aName,
|
|
const PRInt32 aNsID,
|
|
const String& aValue)
|
|
{
|
|
if (!mParentNode)
|
|
// XXX Signal this? (can't add attributes after element closed)
|
|
return;
|
|
|
|
nsCOMPtr<nsIDOMElement> element = do_QueryInterface(mCurrentNode);
|
|
NS_ASSERTION(element, "No element to add the attribute to.");
|
|
if (!element)
|
|
// XXX Signal this? (no element to add attributes to)
|
|
return;
|
|
|
|
if ((mOutputFormat.mMethod == eHTMLOutput) && (aNsID == kNameSpaceID_None)) {
|
|
// Outputting HTML as XHTML, lowercase attribute names
|
|
nsAutoString lowerName(aName.getConstNSString());
|
|
ToLowerCase(lowerName);
|
|
element->SetAttributeNS(NS_LITERAL_STRING(""), lowerName,
|
|
aValue.getConstNSString());
|
|
}
|
|
else {
|
|
nsAutoString nsURI;
|
|
mNameSpaceManager->GetNameSpaceURI(aNsID, nsURI);
|
|
element->SetAttributeNS(nsURI, aName.getConstNSString(),
|
|
aValue.getConstNSString());
|
|
}
|
|
}
|
|
|
|
void txMozillaXMLOutput::characters(const String& aData)
|
|
{
|
|
closePrevious(eCloseElement);
|
|
|
|
mText.Append(aData.getConstNSString());
|
|
}
|
|
|
|
void txMozillaXMLOutput::comment(const String& aData)
|
|
{
|
|
closePrevious(eCloseElement | eFlushText);
|
|
|
|
TX_ENSURE_CURRENTNODE;
|
|
|
|
nsCOMPtr<nsIDOMComment> comment;
|
|
nsresult rv = mDocument->CreateComment(aData.getConstNSString(),
|
|
getter_AddRefs(comment));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create comment");
|
|
|
|
nsCOMPtr<nsIDOMNode> node = do_QueryInterface(comment);
|
|
nsCOMPtr<nsIDOMNode> resultNode;
|
|
rv = mCurrentNode->AppendChild(node, getter_AddRefs(resultNode));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't append comment");
|
|
}
|
|
|
|
void txMozillaXMLOutput::disableStylesheetLoad()
|
|
{
|
|
mDisableStylesheetLoad = PR_TRUE;
|
|
}
|
|
|
|
void txMozillaXMLOutput::endDocument()
|
|
{
|
|
closePrevious(eCloseElement | eFlushText);
|
|
if (!mHaveTitle) {
|
|
nsCOMPtr<nsIDOMNSDocument> domDoc = do_QueryInterface(mDocument);
|
|
if (domDoc) {
|
|
domDoc->SetTitle(NS_LITERAL_STRING(""));
|
|
}
|
|
}
|
|
}
|
|
|
|
void txMozillaXMLOutput::endElement(const String& aName, const PRInt32 aNsID)
|
|
{
|
|
#ifdef DEBUG
|
|
nsAutoString nodeName;
|
|
mCurrentNode->GetNodeName(nodeName);
|
|
NS_ASSERTION(nodeName.Equals(aName.getConstNSString(), nsCaseInsensitiveStringComparator()),
|
|
"Unbalanced startElement and endElement calls!");
|
|
#endif
|
|
|
|
closePrevious(eCloseElement | eFlushText);
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIContent> currentContent = do_QueryInterface(mCurrentNode, &rv);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't QI to nsIContent");
|
|
if (!currentContent)
|
|
return;
|
|
|
|
nsCOMPtr<nsIAtom> atom;
|
|
currentContent->GetTag(*getter_AddRefs(atom));
|
|
|
|
PRBool isHTML = (mOutputFormat.mMethod == eHTMLOutput) &&
|
|
(aNsID == kNameSpaceID_None);
|
|
|
|
if (isHTML && (atom == txHTMLAtoms::table)) {
|
|
// Check if we have any table section.
|
|
nsCOMPtr<nsIDOMHTMLTableSectionElement> section;
|
|
nsCOMPtr<nsIContent> childContent;
|
|
PRInt32 count, i = 0;
|
|
|
|
currentContent->ChildCount(count);
|
|
while (!section && (i < count)) {
|
|
rv = currentContent->ChildAt(i, *getter_AddRefs(childContent));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Something went wrong while getting a child");
|
|
section = do_QueryInterface(childContent);
|
|
++i;
|
|
}
|
|
|
|
if (!section && (count > 0)) {
|
|
// If no section, wrap table's children in a tbody.
|
|
nsCOMPtr<nsIDOMElement> wrapper;
|
|
|
|
rv = mDocument->CreateElementNS(NS_LITERAL_STRING(kXHTMLNameSpaceURI),
|
|
NS_LITERAL_STRING("tbody"),
|
|
getter_AddRefs(wrapper));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create tbody element");
|
|
|
|
if (wrapper) {
|
|
nsCOMPtr<nsIDOMNode> resultNode;
|
|
|
|
wrapChildren(mCurrentNode, wrapper);
|
|
rv = mCurrentNode->AppendChild(wrapper, getter_AddRefs(resultNode));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't append tbody element");
|
|
}
|
|
}
|
|
}
|
|
else if (isHTML || (aNsID == kNameSpaceID_HTML)) {
|
|
if (mScriptParent && (atom == txHTMLAtoms::script)) {
|
|
// Add this script element to the array of loading script elements.
|
|
nsCOMPtr<nsIDOMHTMLScriptElement> scriptElement = do_QueryInterface(mCurrentNode, &rv);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Need script element");
|
|
if (!mScriptElements)
|
|
rv = NS_NewISupportsArray(getter_AddRefs(mScriptElements));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create array");
|
|
if (NS_SUCCEEDED(rv))
|
|
mScriptElements->AppendElement(scriptElement);
|
|
|
|
// Add the script element to the tree.
|
|
nsCOMPtr<nsIDocument> document = do_QueryInterface(mScriptParent);
|
|
if (document && !mRootContent) {
|
|
mRootContent = do_QueryInterface(mCurrentNode);
|
|
mRootContent->SetDocument(document, PR_FALSE, PR_TRUE);
|
|
document->SetRootContent(mRootContent);
|
|
}
|
|
else {
|
|
nsCOMPtr<nsIDOMNode> resultNode;
|
|
rv = mScriptParent->AppendChild(mCurrentNode,
|
|
getter_AddRefs(resultNode));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't append script element");
|
|
}
|
|
mScriptParent = nsnull;
|
|
}
|
|
else if (mStyleElement && (atom == txHTMLAtoms::style)) {
|
|
if (!mDisableStylesheetLoad) {
|
|
mStyleElement->SetEnableUpdates(PR_TRUE);
|
|
mStyleElement->UpdateStyleSheet(PR_TRUE, nsnull, -1);
|
|
}
|
|
mStyleElement = nsnull;
|
|
}
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMNode> tempNode = mCurrentNode;
|
|
tempNode->GetParentNode(getter_AddRefs(mCurrentNode));
|
|
}
|
|
|
|
nsresult txMozillaXMLOutput::getRootContent(nsIContent** aReturn)
|
|
{
|
|
NS_ASSERTION(aReturn, "NULL pointer passed to getRootContent");
|
|
|
|
*aReturn = mRootContent;
|
|
NS_IF_ADDREF(*aReturn);
|
|
return NS_OK;
|
|
}
|
|
|
|
PRBool txMozillaXMLOutput::isDone()
|
|
{
|
|
PRUint32 scriptCount = 0;
|
|
if (mScriptElements)
|
|
mScriptElements->Count(&scriptCount);
|
|
return (scriptCount == 0);
|
|
}
|
|
|
|
void txMozillaXMLOutput::processingInstruction(const String& aTarget, const String& aData)
|
|
{
|
|
if (mOutputFormat.mMethod == eHTMLOutput)
|
|
return;
|
|
|
|
closePrevious(eCloseElement | eFlushText);
|
|
|
|
TX_ENSURE_CURRENTNODE;
|
|
|
|
nsCOMPtr<nsIDOMProcessingInstruction> pi;
|
|
nsresult rv = mDocument->CreateProcessingInstruction(aTarget.getConstNSString(),
|
|
aData.getConstNSString(),
|
|
getter_AddRefs(pi));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create entity reference");
|
|
|
|
nsCOMPtr<nsIDOMNode> node = do_QueryInterface(pi);
|
|
nsCOMPtr<nsIDOMNode> resultNode;
|
|
mCurrentNode->AppendChild(node, getter_AddRefs(resultNode));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't append entity reference");
|
|
}
|
|
|
|
void txMozillaXMLOutput::removeScriptElement(nsIDOMHTMLScriptElement *aElement)
|
|
{
|
|
if (mScriptElements) {
|
|
PRInt32 index = mScriptElements->IndexOf(aElement);
|
|
if (index > -1)
|
|
mScriptElements->RemoveElementAt(index);
|
|
}
|
|
}
|
|
|
|
void txMozillaXMLOutput::setOutputDocument(nsIDOMDocument* aDocument)
|
|
{
|
|
NS_ASSERTION(aDocument, "Document can't be NULL!");
|
|
if (!aDocument)
|
|
return;
|
|
|
|
mDocument = aDocument;
|
|
mCurrentNode = mDocument;
|
|
mHaveTitle = PR_FALSE;
|
|
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(aDocument);
|
|
doc->GetNameSpaceManager(*getter_AddRefs(mNameSpaceManager));
|
|
NS_ASSERTION(mNameSpaceManager, "Can't get namespace manager.");
|
|
}
|
|
|
|
void txMozillaXMLOutput::setOutputFormat(txOutputFormat* aOutputFormat)
|
|
{
|
|
mOutputFormat.reset();
|
|
mOutputFormat.merge(*aOutputFormat);
|
|
mOutputFormat.setFromDefaults();
|
|
}
|
|
|
|
void txMozillaXMLOutput::startDocument()
|
|
{
|
|
NS_ASSERTION(mDocument, "Document can't be NULL!");
|
|
}
|
|
|
|
void txMozillaXMLOutput::startElement(const String& aName,
|
|
const PRInt32 aNsID)
|
|
{
|
|
closePrevious(eCloseElement | eFlushText);
|
|
|
|
nsresult rv;
|
|
|
|
if (!mRootContent && !mOutputFormat.mSystemId.isEmpty()) {
|
|
// No root element yet, so add the doctype if necesary.
|
|
nsCOMPtr<nsIDOMDOMImplementation> implementation;
|
|
rv = mDocument->GetImplementation(getter_AddRefs(implementation));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't get DOMImplementation");
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsAutoString qName;
|
|
nsCOMPtr<nsIDOMDocumentType> documentType;
|
|
nsCOMPtr<nsIDOMNode> firstNode, node;
|
|
if (mOutputFormat.mMethod == eHTMLOutput)
|
|
qName.Assign(NS_LITERAL_STRING("html"));
|
|
else
|
|
qName.Assign(aName.getConstNSString());
|
|
rv = implementation->CreateDocumentType(qName,
|
|
mOutputFormat.mPublicId.getConstNSString(),
|
|
mOutputFormat.mSystemId.getConstNSString(),
|
|
getter_AddRefs(documentType));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create doctype");
|
|
|
|
mDocument->GetFirstChild(getter_AddRefs(firstNode));
|
|
rv = mDocument->InsertBefore(documentType, firstNode, getter_AddRefs(node));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't insert doctype");
|
|
}
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMElement> element;
|
|
|
|
if ((mOutputFormat.mMethod == eHTMLOutput) && (aNsID == kNameSpaceID_None)) {
|
|
// Outputting HTML as XHTML, lowercase element names
|
|
nsAutoString lowerName(aName.getConstNSString());
|
|
ToLowerCase(lowerName);
|
|
rv = mDocument->CreateElementNS(NS_LITERAL_STRING(kXHTMLNameSpaceURI), lowerName,
|
|
getter_AddRefs(element));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create element");
|
|
|
|
startHTMLElement(element);
|
|
}
|
|
else {
|
|
nsAutoString nsURI;
|
|
mNameSpaceManager->GetNameSpaceURI(aNsID, nsURI);
|
|
rv = mDocument->CreateElementNS(nsURI, aName.getConstNSString(),
|
|
getter_AddRefs(element));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create element");
|
|
|
|
if (aNsID == kNameSpaceID_XHTML)
|
|
startHTMLElement(element);
|
|
}
|
|
|
|
if (element) {
|
|
nsCOMPtr<nsIContent> cont = do_QueryInterface(element);
|
|
if (cont) {
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(mDocument);
|
|
cont->SetDocument(doc, PR_FALSE, PR_TRUE);
|
|
}
|
|
mParentNode = mCurrentNode;
|
|
mCurrentNode = do_QueryInterface(element);
|
|
}
|
|
}
|
|
|
|
void txMozillaXMLOutput::closePrevious(PRInt8 aAction)
|
|
{
|
|
TX_ENSURE_CURRENTNODE;
|
|
|
|
nsresult rv;
|
|
PRInt32 namespaceID = kNameSpaceID_None;
|
|
nsCOMPtr<nsIContent> currentContent = do_QueryInterface(mCurrentNode, &rv);
|
|
if (currentContent)
|
|
currentContent->GetNameSpaceID(namespaceID);
|
|
PRBool isHTML = (namespaceID == kNameSpaceID_HTML) ||
|
|
((mOutputFormat.mMethod == eHTMLOutput) &&
|
|
(namespaceID == kNameSpaceID_None));
|
|
|
|
if ((aAction & eCloseElement) && mParentNode) {
|
|
nsCOMPtr<nsIDocument> document = do_QueryInterface(mParentNode);
|
|
nsCOMPtr<nsIDOMElement> currentElement = do_QueryInterface(mCurrentNode);
|
|
|
|
if (document && currentElement && mRootContent) {
|
|
// We already have a document element, but the XSLT spec allows this.
|
|
// As a workaround, create a wrapper object and use that as the
|
|
// document element.
|
|
nsCOMPtr<nsIDOMElement> wrapper;
|
|
|
|
rv = mDocument->CreateElementNS(NS_LITERAL_STRING(kTXNameSpaceURI),
|
|
NS_LITERAL_STRING(kTXWrapper),
|
|
getter_AddRefs(wrapper));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create wrapper element");
|
|
|
|
wrapChildren(mParentNode, wrapper);
|
|
mParentNode = wrapper;
|
|
mRootContent = do_QueryInterface(wrapper);
|
|
mRootContent->SetDocument(document, PR_FALSE, PR_TRUE);
|
|
document->SetRootContent(mRootContent);
|
|
}
|
|
|
|
PRBool appendNode = PR_TRUE;
|
|
if (isHTML) {
|
|
nsCOMPtr<nsIAtom> atom;
|
|
currentContent->GetTag(*getter_AddRefs(atom));
|
|
if (atom == txHTMLAtoms::script) {
|
|
appendNode = PR_FALSE;
|
|
mScriptParent = mParentNode;
|
|
}
|
|
else if (atom == txHTMLAtoms::style) {
|
|
mStyleElement = do_QueryInterface(mCurrentNode);
|
|
if (mStyleElement) {
|
|
// XXX Trick nsCSSLoader into blocking/notifying us?
|
|
// We would need to implement nsIParser and
|
|
// pass ourselves as first parameter to
|
|
// InitStyleLinkElement. We would then be notified
|
|
// of stylesheet loads/load failures.
|
|
mStyleElement->InitStyleLinkElement(nsnull, PR_FALSE);
|
|
mStyleElement->SetEnableUpdates(PR_FALSE);
|
|
}
|
|
}
|
|
}
|
|
if (appendNode) {
|
|
if (document && !mRootContent) {
|
|
mRootContent = do_QueryInterface(mCurrentNode);
|
|
mRootContent->SetDocument(document, PR_FALSE, PR_TRUE);
|
|
document->SetRootContent(mRootContent);
|
|
}
|
|
else {
|
|
nsCOMPtr<nsIDOMNode> resultNode;
|
|
|
|
rv = mParentNode->AppendChild(mCurrentNode, getter_AddRefs(resultNode));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't append node");
|
|
}
|
|
}
|
|
mParentNode = nsnull;
|
|
}
|
|
else if ((aAction & eFlushText) && !mText.IsEmpty()) {
|
|
nsCOMPtr<nsIDOMText> text;
|
|
rv = mDocument->CreateTextNode(mText, getter_AddRefs(text));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't create text node");
|
|
|
|
nsCOMPtr<nsIDOMNode> node = do_QueryInterface(text);
|
|
nsCOMPtr<nsIDOMNode> resultNode;
|
|
mCurrentNode->AppendChild(node, getter_AddRefs(resultNode));
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't append text node");
|
|
|
|
if (currentContent && !mHaveTitle) {
|
|
nsCOMPtr<nsIAtom> atom;
|
|
currentContent->GetTag(*getter_AddRefs(atom));
|
|
if ((atom == txHTMLAtoms::title) && mTitleElement) {
|
|
// The first title wins
|
|
mHaveTitle = PR_TRUE;
|
|
nsCOMPtr<nsIDOMNSDocument> domDoc = do_QueryInterface(mDocument);
|
|
if (domDoc) {
|
|
mText.CompressWhitespace();
|
|
domDoc->SetTitle(mText);
|
|
}
|
|
mTitleElement = nsnull;
|
|
}
|
|
}
|
|
mText.Truncate();
|
|
}
|
|
}
|
|
|
|
void txMozillaXMLOutput::startHTMLElement(nsIDOMElement* aElement)
|
|
{
|
|
nsCOMPtr<nsIAtom> atom;
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aElement);
|
|
content->GetTag(*getter_AddRefs(atom));
|
|
|
|
if ((atom == txHTMLAtoms::title) && !mHaveTitle) {
|
|
mTitleElement = aElement;
|
|
}
|
|
}
|
|
|
|
void txMozillaXMLOutput::wrapChildren(nsIDOMNode* aCurrentNode,
|
|
nsIDOMElement* aWrapper)
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsIContent> currentContent;
|
|
|
|
currentContent = do_QueryInterface(mCurrentNode, &rv);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Can't QI to nsIContent");
|
|
if (!currentContent)
|
|
return;
|
|
|
|
PRInt32 count, i = 0;
|
|
nsCOMPtr<nsIDOMNode> child, resultNode;
|
|
nsCOMPtr<nsIContent> childContent;
|
|
|
|
currentContent->ChildCount(count);
|
|
for (i = 0; i < count; i++) {
|
|
rv = currentContent->ChildAt(0, *getter_AddRefs(childContent));
|
|
if (NS_SUCCEEDED(rv)) {
|
|
child = do_QueryInterface(childContent);
|
|
aCurrentNode->RemoveChild(child, getter_AddRefs(resultNode));
|
|
aWrapper->AppendChild(resultNode, getter_AddRefs(child));
|
|
}
|
|
}
|
|
}
|