blob: f68a57086ec50094ef06266ac60017f4cc5e70c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.europa.tools.utils;
import java.io.IOException;
import java.io.OutputStream;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.TransformerFactoryConfigurationError;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.w3c.dom.Document;
/**
*/
public class CommonXML {
/**
* Provides a DocumentBuilder capable of creating a DOM Document from
* input. Sets the desired characteristics for this instance,
* validating=false
* ignoringComments=false
* ignoringElementContentWhitespace=false
*
* Example usage: Document document = null; try { DocumentBuilder builder =
* CommonXML.getDocumentBuilder(); if (builder != null) { InputStream fis =
* new FileInputStream(getFilename()); document = builder.parse(new
* InputSource(fis)); } else { Logger.log(Logger.ERROR, "Couldn't obtain a
* DocumentBuilder"); //$NON-NLS-1$ } } catch (FileNotFoundException e) { //
* typical of new workspace, don't log it document = null; } catch
* (IOException e) { Logger.logException("Could not load document", e);
* //$NON-NLS-1$ return definitions; } catch (SAXException e) {
* Logger.logException("Could not load document", e); //$NON-NLS-1$ return
* definitions; }
*
* @return DocumentBuilder
*/
public synchronized static DocumentBuilder getDocumentBuilder() {
DocumentBuilder result = null;
try {
DocumentBuilderFactory instance = DocumentBuilderFactory.newInstance();
instance.setValidating(false);
instance.setIgnoringComments(false);
instance.setIgnoringElementContentWhitespace(false);
result = instance.newDocumentBuilder();
}
catch (ParserConfigurationException e) {
e.printStackTrace();
}
return result;
}
public synchronized static DocumentBuilder getDocumentBuilder(boolean validating) {
DocumentBuilder result = null;
try {
DocumentBuilderFactory instance = DocumentBuilderFactory.newInstance();
instance.setValidating(validating);
result = instance.newDocumentBuilder();
}
catch (ParserConfigurationException e) {
e.printStackTrace();
}
return result;
}
/**
* Transforms a DOM document into a lightly-formatted UTF-16 represntation
* and outputs it to an outputstream
*
* @param document
* @param ostream
* @throws IOException
*/
public static void serialize(Document document, OutputStream ostream) throws IOException {
Source domSource = new DOMSource(document);
try {
Transformer serializer = TransformerFactory.newInstance().newTransformer();
try {
serializer.setOutputProperty(OutputKeys.INDENT, "yes"); //$NON-NLS-1$
serializer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4"); //$NON-NLS-1$ //$NON-NLS-2$
serializer.setOutputProperty(OutputKeys.ENCODING, "UTF-8"); //$NON-NLS-1$
//Properties prop = serializer.getOutputProperties();
//prop.list(System.out);
}
catch (IllegalArgumentException e) {
e.printStackTrace();
}
serializer.transform(domSource, new StreamResult(ostream));
}
catch (TransformerConfigurationException e) {
throw new IOException(e.getMessage());
}
catch (TransformerFactoryConfigurationError e) {
throw new IOException(e.getMessage());
}
catch (TransformerException e) {
throw new IOException(e.getMessage());
}
}
}