5979b87df2
2005/09/05 17:02:15 rt 1.1.1.1.86.1: #i54170# Change license header: remove SISSL
328 lines
8.9 KiB
Java
328 lines
8.9 KiB
Java
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: SAXEventPrinter.java,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-09 17:44:08 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
package com.sun.star.xml.security.uno;
|
|
|
|
import org.w3c.dom.Node;
|
|
import org.w3c.dom.NamedNodeMap;
|
|
import org.w3c.dom.Attr;
|
|
import org.w3c.dom.NodeList;
|
|
import java.io.IOException;
|
|
import java.io.FileOutputStream;
|
|
|
|
/* uno classes */
|
|
import com.sun.star.xml.sax.XDocumentHandler;
|
|
import com.sun.star.xml.sax.XAttributeList;
|
|
|
|
/*
|
|
* The SAXEventPrinter class is used to print out received
|
|
* SAX event stream.
|
|
*/
|
|
class SAXEventPrinter implements XDocumentHandler
|
|
{
|
|
/*
|
|
* how many spaces as the indent of line
|
|
*/
|
|
private int m_nIndent;
|
|
|
|
/*
|
|
* whether a NEW LINE character need to be appended to
|
|
* each line
|
|
*/
|
|
private boolean m_bIsFormatted;
|
|
|
|
/*
|
|
* the output stream to write
|
|
*/
|
|
private FileOutputStream m_fileOutputStream;
|
|
|
|
SAXEventPrinter(FileOutputStream fileOutputStream, boolean isFormatted)
|
|
{
|
|
m_nIndent = 0;
|
|
m_fileOutputStream = fileOutputStream;
|
|
m_bIsFormatted = isFormatted;
|
|
}
|
|
|
|
protected static void outputIndent(int m_nIndent, FileOutputStream fileOutputStream)
|
|
throws IOException
|
|
{
|
|
for (int i=0; i<m_nIndent; ++i)
|
|
{
|
|
fileOutputStream.write(" ".getBytes());
|
|
}
|
|
}
|
|
|
|
/*
|
|
* displays the tree of a Node.
|
|
*/
|
|
protected static void display(Node node, int indent, FileOutputStream fileOutputStream, boolean isFormatted)
|
|
throws IOException
|
|
{
|
|
if (node != null)
|
|
{
|
|
int type = node.getNodeType();
|
|
String message;
|
|
NodeList children;
|
|
int i, length;
|
|
|
|
switch (type)
|
|
{
|
|
case Node.DOCUMENT_NODE:
|
|
children = node.getChildNodes();
|
|
length = children.getLength();
|
|
for (i=0; i<length; ++i)
|
|
{
|
|
display(children.item(i), indent+2, fileOutputStream, isFormatted);
|
|
}
|
|
|
|
break;
|
|
|
|
case Node.ELEMENT_NODE:
|
|
message = new String("<"+node.getNodeName());
|
|
NamedNodeMap attrs = node.getAttributes();
|
|
|
|
length = attrs.getLength();
|
|
for (i=0; i<length; ++i)
|
|
{
|
|
Attr attr = (Attr)attrs.item(i);
|
|
message += " "+attr.getNodeName()+"=\""+attr.getNodeValue()+"\"";
|
|
}
|
|
|
|
message += ">";
|
|
|
|
if (isFormatted)
|
|
{
|
|
outputIndent(indent, fileOutputStream);
|
|
}
|
|
|
|
fileOutputStream.write(message.getBytes("UTF-8"));
|
|
|
|
if (isFormatted)
|
|
{
|
|
fileOutputStream.write("\n".getBytes());
|
|
}
|
|
|
|
children = node.getChildNodes();
|
|
length = children.getLength();
|
|
for (i=0; i<length; ++i)
|
|
{
|
|
display(children.item(i), indent+2, fileOutputStream, isFormatted);
|
|
}
|
|
|
|
if (isFormatted)
|
|
{
|
|
outputIndent(indent, fileOutputStream);
|
|
}
|
|
|
|
fileOutputStream.write("</".getBytes());
|
|
fileOutputStream.write(node.getNodeName().getBytes("UTF-8"));
|
|
fileOutputStream.write(">".getBytes());
|
|
|
|
if (isFormatted)
|
|
{
|
|
fileOutputStream.write("\n".getBytes());
|
|
}
|
|
|
|
break;
|
|
|
|
case Node.TEXT_NODE:
|
|
message = node.getNodeValue();
|
|
if (message != null )
|
|
{
|
|
if (isFormatted)
|
|
{
|
|
outputIndent(indent, fileOutputStream);
|
|
}
|
|
|
|
fileOutputStream.write(node.getNodeValue().getBytes("UTF-8"));
|
|
|
|
if (isFormatted)
|
|
{
|
|
fileOutputStream.write("\n".getBytes());
|
|
}
|
|
}
|
|
break;
|
|
|
|
case Node.PROCESSING_INSTRUCTION_NODE:
|
|
if (isFormatted)
|
|
{
|
|
outputIndent(indent, fileOutputStream);
|
|
}
|
|
|
|
fileOutputStream.write("<?".getBytes());
|
|
fileOutputStream.write(node.getNodeName().getBytes("UTF-8"));
|
|
fileOutputStream.write(node.getNodeValue().getBytes("UTF-8"));
|
|
fileOutputStream.write("?>".getBytes());
|
|
|
|
if (isFormatted)
|
|
{
|
|
fileOutputStream.write("\n".getBytes());
|
|
}
|
|
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* XDocumentHandler
|
|
*/
|
|
public void startDocument ()
|
|
{
|
|
}
|
|
|
|
public void endDocument()
|
|
{
|
|
}
|
|
|
|
public void startElement (String str, com.sun.star.xml.sax.XAttributeList xattribs)
|
|
{
|
|
try
|
|
{
|
|
String message;
|
|
|
|
message = new String("<"+str);
|
|
if (xattribs !=null)
|
|
{
|
|
int length = xattribs.getLength();
|
|
for (short i=0; i<length; ++i)
|
|
{
|
|
message += " "+xattribs.getNameByIndex(i)+"=\""+xattribs.getValueByIndex(i)+"\"";
|
|
}
|
|
}
|
|
message += ">";
|
|
|
|
if (m_bIsFormatted)
|
|
{
|
|
outputIndent(m_nIndent, m_fileOutputStream);
|
|
}
|
|
|
|
m_fileOutputStream.write(message.getBytes("UTF-8"));
|
|
|
|
if (m_bIsFormatted)
|
|
{
|
|
m_fileOutputStream.write("\n".getBytes());
|
|
}
|
|
|
|
m_nIndent += 2;
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void endElement(String str)
|
|
{
|
|
try
|
|
{
|
|
m_nIndent -= 2;
|
|
if (m_bIsFormatted)
|
|
{
|
|
outputIndent(m_nIndent, m_fileOutputStream);
|
|
}
|
|
|
|
m_fileOutputStream.write("</".getBytes());
|
|
m_fileOutputStream.write(str.getBytes("UTF-8"));
|
|
m_fileOutputStream.write(">".getBytes());
|
|
|
|
if (m_bIsFormatted)
|
|
{
|
|
m_fileOutputStream.write("\n".getBytes());
|
|
}
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void characters(String str)
|
|
{
|
|
try
|
|
{
|
|
if (m_bIsFormatted)
|
|
{
|
|
outputIndent(m_nIndent, m_fileOutputStream);
|
|
}
|
|
|
|
m_fileOutputStream.write(str.getBytes("UTF-8"));
|
|
|
|
if (m_bIsFormatted)
|
|
{
|
|
m_fileOutputStream.write("\n".getBytes());
|
|
}
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void ignorableWhitespace(String str)
|
|
{
|
|
}
|
|
|
|
public void processingInstruction(String aTarget, String aData)
|
|
{
|
|
try
|
|
{
|
|
if (m_bIsFormatted)
|
|
{
|
|
outputIndent(m_nIndent, m_fileOutputStream);
|
|
}
|
|
|
|
m_fileOutputStream.write("<?".getBytes());
|
|
m_fileOutputStream.write(aTarget.getBytes("UTF-8"));
|
|
m_fileOutputStream.write("?>".getBytes());
|
|
|
|
if (m_bIsFormatted)
|
|
{
|
|
m_fileOutputStream.write("\n".getBytes());
|
|
}
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void setDocumentLocator (com.sun.star.xml.sax.XLocator xLocator )
|
|
throws com.sun.star.xml.sax.SAXException
|
|
{
|
|
}
|
|
}
|