htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/ProcessPage.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 16 Oct 2012 12:42:00 +0200
changeset 106 346633cd13d6
parent 26 03e4aaa4ef3d
permissions -rw-r--r--
Fixing license in all files
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage;
    19 
    20 import java.io.IOException;
    21 import java.io.InputStream;
    22 import java.util.Collections;
    23 import java.util.Map;
    24 import java.util.Set;
    25 import java.util.TreeMap;
    26 import javax.xml.parsers.DocumentBuilder;
    27 import javax.xml.parsers.DocumentBuilderFactory;
    28 import org.w3c.dom.Document;
    29 import org.w3c.dom.Element;
    30 import org.w3c.dom.Node;
    31 import org.w3c.dom.NodeList;
    32 
    33 class ProcessPage {
    34     private final Map<String,String> ids2Elems = new TreeMap<String, String>();
    35     
    36     public Set<String> ids() {
    37         return Collections.unmodifiableSet(ids2Elems.keySet());
    38     }
    39     
    40     public String tagNameForId(String id) {
    41         return ids2Elems.get(id);
    42     }
    43     
    44     public static ProcessPage readPage(InputStream is) throws IOException {
    45         DocumentBuilderFactory f = DocumentBuilderFactory.newInstance();
    46         f.setValidating(false);
    47         f.setIgnoringComments(true);
    48         
    49         Document doc = null;
    50         try {
    51             DocumentBuilder b = f.newDocumentBuilder();
    52             doc = b.parse(is);
    53         } catch (IOException ex) {
    54             throw ex;
    55         } catch (Exception e) {
    56             throw new IOException(e);
    57         }
    58         Element root = doc.getDocumentElement();
    59         
    60         ProcessPage pp = new ProcessPage();
    61         pp.seekForIds(root);
    62         return pp;
    63     }
    64 
    65     private void seekForIds(Element e) {
    66         String val = e.getAttribute("id");
    67         if (val != null && !val.isEmpty()) {
    68             String prev = ids2Elems.put(val, e.getTagName());
    69         }
    70         NodeList arr = e.getChildNodes();
    71         for (int i = 0; i < arr.getLength(); i++) {
    72             final Node n = arr.item(i);
    73             if (n instanceof Element) {
    74                 seekForIds((Element)n);
    75             }
    76         }
    77     }
    78 }