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

org.xerial.xml.analyzer.XMLNodeRelationAnalyzer Maven / Gradle / Ivy

/*--------------------------------------------------------------------------
 *  Copyright 2004 Taro L. Saito
 *
 *  Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *--------------------------------------------------------------------------*/
//--------------------------------------
// XerialJ Project
//
// XMLNodeRelationAnalyzer.java
// Since: 2005/05/31
//
// $URL$ 
// $Author$
//--------------------------------------
package org.xerial.xml.analyzer;

import static org.xmlpull.v1.XmlPullParser.*;

import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;
import java.util.TreeMap;
import java.util.TreeSet;

import org.xerial.core.XerialException;
import org.xerial.util.opt.Argument;
import org.xerial.util.opt.Option;
import org.xerial.util.opt.OptionParser;
import org.xerial.util.opt.OptionParserException;
import org.xerial.xml.SinglePathBuilder;
import org.xerial.xml.XMLErrorCode;
import org.xerial.xml.XMLException;
import org.xerial.xml.pullparser.PullParserUtil;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;

/**
 * Analyzes ancestor-descendant and parent-child relationships of XML data
 * 
 * @author leo
 * 
 */
public class XMLNodeRelationAnalyzer {
    private enum Opt {
        help
    }

    @Option(symbol = "h", longName = "help", description = "display help message")
    private boolean displayHelp = false;

    @Argument(index = 0, name = "XMLFile")
    private String xmlFile = null;

    private OptionParser _opt = new OptionParser(this);

    /**
     * @throws OptionParserException
     * 
     */
    public XMLNodeRelationAnalyzer() throws OptionParserException {

    }

    public static void main(String[] args) {
        try {
            XMLNodeRelationAnalyzer instance = new XMLNodeRelationAnalyzer();
            instance.perform(args);
        }
        catch (XerialException e) {
            System.err.println(e.getMessage());
        }
        catch (IOException e) {
            System.err.println(e.getMessage());
        }
    }

    public void perform(String[] args) throws OptionParserException, IOException, XerialException {
        _opt.parse(args);

        if (displayHelp || xmlFile == null) {
            printHelpMessage();
            return;
        }

        Reader xmlFileReader = new FileReader(xmlFile);
        XmlPullParser parser = PullParserUtil.newParser(xmlFileReader);

        ParseProcess parseProcess = new ParseProcess(parser);
        parseProcess.parse();

        for (String tag : parseProcess.tag2relatedTagNames.keySet()) {
            System.out.print(tag + ":\t");
            for (String related : parseProcess.tag2relatedTagNames.get(tag)) {
                System.out.print(related + " ");
            }
            System.out.println();
        }

        xmlFileReader.close();
    }

    class NodeRelation {

    }

    class ParseProcess {
        XmlPullParser parser;
        SinglePathBuilder currentPath = new SinglePathBuilder();
        TreeMap> tag2relatedTagNames = new TreeMap>();
        int pathCount = 0;

        ParseProcess(XmlPullParser parser) {
            this.parser = parser;
        }

        void parse() throws IOException, XMLException {

            int state;

            try {
                while ((state = parser.next()) != END_DOCUMENT) {
                    switch (state) {
                    case START_TAG:
                        String currentTag = parser.getName();
                        currentPath.addChild(currentTag);

                        TreeSet relatedTagSet = getRelatedTagSet(currentTag);
                        for (String t : currentPath) {
                            if (!t.equals(currentTag)) {
                                relatedTagSet.add(t);
                                TreeSet relatedTagSet2 = getRelatedTagSet(t);
                                relatedTagSet2.add(currentTag);
                            }
                        }
                        // TODO attribute processing
                        for (int i = 0; i < parser.getAttributeCount(); i++) {

                        }
                        break;
                    case END_TAG:
                        currentPath.removeLeaf();
                        break;
                    case START_DOCUMENT:
                        break;
                    case TEXT:
                        break;
                    }
                }
            }
            catch (XmlPullParserException e) {
                throw new XMLException(XMLErrorCode.PARSE_ERROR, e);
            }

        }

        private TreeSet getRelatedTagSet(String tag) {
            TreeSet s = tag2relatedTagNames.get(tag);
            if (s == null) {
                s = new TreeSet();
                tag2relatedTagNames.put(tag, s);
            }
            return s;
        }

    }

    private void printHelpMessage() {
        System.out.println("usage: > java XMLNodeRelationAnalyzer.jar [option] xml_file");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy