All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arjuna.orbportability.internal.utils.SimpleXMLParser Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source
 * Copyright 2006, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. 
 * See the copyright.txt in the distribution for a full listing 
 * of individual contributors.
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU Lesser General Public License, v. 2.1.
 * This program is distributed in the hope that it will be useful, but WITHOUT A
 * 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,
 * v.2.1 along with this distribution; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA  02110-1301, USA.
 * 
 * (C) 2005-2006,
 * @author JBoss Inc.
 */
package com.arjuna.orbportability.internal.utils;

/**
 * An extremely simple XML parser used to parse the XML returned by ORBInfo.
 * NOT TO BE USED FOR PARSING XML OUTSIDE OF THIS SCOPE.
 *
 * @author Richard A. Begg
 */
public class SimpleXMLParser
{
    private String  _xml;

    /**
     * Create a simple xml parser which parses the given XML fragment.
     *
     * @param xml The XML fragment to parse
     */
    public SimpleXMLParser(String xml)
    {
        _xml = xml;
    }

    /**
     * Generate a start element tag from the given name.
     *
     *  e.g.  
     *
     * @param name The name of the tag.
     */
    private String getStartElement(String name)
    {
        return "<"+ name +">";
    }

    /**
     * Generate an end element tag from the given name.
     *
     *  e.g.  
     *
     * @param name The name of the tag.
     */
    private String getEndElement(String name)
    {
        return "";
    }

    /**
     * Generate a simple XML parser to parse the XML in the given element.
     *
     * @param element The element whose children will be parsed.
     * @return A simple XML parser for parsing the children.
     */
    public SimpleXMLParser getElementParser(String element) throws Exception
    {
        return new SimpleXMLParser(getElementString(element));
    }

    /**
     * Retrieve the children of a given XML element.
     *
     * @param element The element whose children will be returned.
     * @return The XML for that given element.
     */
    public String getElementString(String element) throws Exception
    {
        String text = null;
        String startElement = getStartElement( element );

        int startIndex = _xml.indexOf( startElement );

        if ( startIndex != -1 )
        {
            text = _xml.substring( startIndex + startElement.length() );
            int endIndex = text.indexOf( getEndElement(element) );

            if ( endIndex != -1 )
            {
                text = text.substring( 0, text.indexOf( getEndElement(element) ) );
            }
            else
            {
                throw new Exception();
            }
        }
        else
        {
            throw new Exception();
        }

        return text;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy