rt/vm/src/test/java/org/apidesign/vm4brwsr/BytesLoader.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 24 Feb 2015 11:12:53 +0100
changeset 1787 ea12a3bb4b33
parent 1373 c4e57ec5f0df
child 1798 18b3a9a85716
permissions -rw-r--r--
Using year range 2012-2015 in copyright header
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012-2015 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.vm4brwsr;
    19 
    20 import java.io.IOException;
    21 import java.io.InputStream;
    22 import java.net.URL;
    23 import java.util.Enumeration;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public final class BytesLoader {
    30     private static final StringArray requested = new StringArray();
    31 
    32     public byte[] get(String name) throws IOException {
    33         if (requested.contains(name)) {
    34             throw new IllegalStateException("Requested for second time: " + name);
    35         }
    36         requested.add(name);
    37         byte[] arr = readClass(name);
    38         /*
    39         System.err.print("loader['" + name + "'] = [");
    40         for (int i = 0; i < arr.length; i++) {
    41         if (i > 0) {
    42         System.err.print(", ");
    43         }
    44         System.err.print(arr[i]);
    45         }
    46         System.err.println("]");
    47          */
    48         return arr;
    49     }
    50 
    51     static byte[] readClass(String name) throws IOException {
    52         URL u = null;
    53         Enumeration<URL> en = BytesLoader.class.getClassLoader().getResources(name);
    54         while (en.hasMoreElements()) {
    55             u = en.nextElement();
    56         }
    57         if (u == null) {
    58             throw new IOException("Can't find " + name);
    59         }
    60         try (InputStream is = u.openStream()) {
    61             byte[] arr;
    62             arr = new byte[is.available()];
    63             int offset = 0;
    64             while (offset < arr.length) {
    65                 int len = is.read(arr, offset, arr.length - offset);
    66                 if (len == -1) {
    67                     throw new IOException("Can't read " + name);
    68                 }
    69                 offset += len;
    70             }
    71             return arr;
    72         }
    73     }
    74     
    75 }