Package org.exoplatform.services.xml.parser

Source Code of org.exoplatform.services.xml.parser.XMLParser

/**
* Copyright (C) 2009 eXo Platform SAS.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.exoplatform.services.xml.parser;

import org.exoplatform.services.chars.CharsDecoder;
import org.exoplatform.services.common.DataReader;
import org.exoplatform.services.common.ServicesContainer;
import org.exoplatform.services.common.ServiceConfig.ServiceType;
import org.exoplatform.services.token.TypeToken;

import java.io.File;
import java.io.InputStream;

/**
* Created by eXoPlatform Studio
* Author : Nhu Dinh Thuan
*          nhudinhthuan@yahoo.com
* Mar 13, 2006
*/
public class XMLParser
{

   private final static String READER_ID = "XMLParserReader";

   public static synchronized XMLDocument createDocument(char[] data) throws Exception
   {
      XMLNode root = new XMLNode("document".toCharArray(), "document", TypeToken.TAG);
      XMLDocument document = new XMLDocument(root);
      XMLToken tokens = new XMLToken();
      document.setXmlType(tokens.getXmlType());
      Services.TOKEN_PARSER.getRef().createBeans(tokens, data);
      DOMParser.parse(tokens, root);
      return document;
   }

   public static synchronized XMLDocument createDocument(String text) throws Exception
   {
      return createDocument(text.toCharArray());
   }

   public static synchronized XMLDocument createDocument(byte[] data, String charset) throws Exception
   {
      char[] chars = CharsDecoder.decode(charset, data, 0, data.length);
      return createDocument(chars);
   }

   public static synchronized XMLDocument createDocument(InputStream input, String charset) throws Exception
   {
      DataReader reader = ServicesContainer.get(ServiceType.SOFT_REFERENCE, READER_ID, DataReader.class);
      return createDocument(reader.loadInputStream(input).toByteArray(), charset);
   }

   public static synchronized XMLDocument createDocument(File file, String charset) throws Exception
   {
      DataReader reader = ServicesContainer.get(ServiceType.SOFT_REFERENCE, READER_ID, DataReader.class);
      return createDocument(reader.load(file), charset);
   }

}
TOP

Related Classes of org.exoplatform.services.xml.parser.XMLParser

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.