javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/ProcessPage.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 29 Apr 2014 14:59:40 +0200
branchclosure
changeset 1505 706b66d8c481
parent 140 590958fcb7d7
child 1787 ea12a3bb4b33
permissions -rw-r--r--
javaquery api works on JDK8
     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.apidesign.bck2brwsr.core.ExtraJavaScript;
    29 import org.w3c.dom.Document;
    30 import org.w3c.dom.Element;
    31 import org.w3c.dom.Node;
    32 import org.w3c.dom.NodeList;
    33 
    34 @ExtraJavaScript(processByteCode = false, resource = "")
    35 class ProcessPage {
    36     private final Map<String,String> ids2Elems = new TreeMap<String, String>();
    37     
    38     public Set<String> ids() {
    39         return Collections.unmodifiableSet(ids2Elems.keySet());
    40     }
    41     
    42     public String tagNameForId(String id) {
    43         return ids2Elems.get(id);
    44     }
    45     
    46     public static ProcessPage readPage(InputStream is) throws IOException {
    47         DocumentBuilderFactory f = DocumentBuilderFactory.newInstance();
    48         f.setValidating(false);
    49         f.setIgnoringComments(true);
    50         
    51         Document doc = null;
    52         try {
    53             DocumentBuilder b = f.newDocumentBuilder();
    54             doc = b.parse(is);
    55         } catch (IOException ex) {
    56             throw ex;
    57         } catch (Exception e) {
    58             throw new IOException(e);
    59         }
    60         Element root = doc.getDocumentElement();
    61         
    62         ProcessPage pp = new ProcessPage();
    63         pp.seekForIds(root);
    64         return pp;
    65     }
    66 
    67     private void seekForIds(Element e) {
    68         String val = e.getAttribute("id");
    69         if (val != null && !val.isEmpty()) {
    70             String prev = ids2Elems.put(val, e.getTagName());
    71         }
    72         NodeList arr = e.getChildNodes();
    73         for (int i = 0; i < arr.getLength(); i++) {
    74             final Node n = arr.item(i);
    75             if (n instanceof Element) {
    76                 seekForIds((Element)n);
    77             }
    78         }
    79     }
    80 }