vm/src/test/java/org/apidesign/vm4brwsr/BytesLoader.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 17 Dec 2012 09:46:09 +0100
changeset 336 4c0c01da763d
parent 334 b5dd05670bef
permissions -rw-r--r--
If available, prefer emulation
     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.vm4brwsr;
    19 
    20 import java.io.IOException;
    21 import java.io.InputStream;
    22 import java.net.URL;
    23 import java.util.Enumeration;
    24 import java.util.Set;
    25 import java.util.TreeSet;
    26 
    27 /**
    28  *
    29  * @author Jaroslav Tulach <jtulach@netbeans.org>
    30  */
    31 public final class BytesLoader {
    32     private static Set<String> requested = new TreeSet<String>();
    33 
    34     public byte[] get(String name) throws IOException {
    35         if (!requested.add(name)) {
    36             throw new IllegalStateException("Requested for second time: " + name);
    37         }
    38         byte[] arr = readClass(name);
    39         /*
    40         System.err.print("loader['" + name + "'] = [");
    41         for (int i = 0; i < arr.length; i++) {
    42         if (i > 0) {
    43         System.err.print(", ");
    44         }
    45         System.err.print(arr[i]);
    46         }
    47         System.err.println("]");
    48          */
    49         return arr;
    50     }
    51 
    52     static byte[] readClass(String name) throws IOException {
    53         URL u = null;
    54         Enumeration<URL> en = BytesLoader.class.getClassLoader().getResources(name);
    55         while (en.hasMoreElements()) {
    56             u = en.nextElement();
    57         }
    58         if (u == null) {
    59             throw new IOException("Can't find " + name);
    60         }
    61         try (InputStream is = u.openStream()) {
    62             byte[] arr;
    63             arr = new byte[is.available()];
    64             int offset = 0;
    65             while (offset < arr.length) {
    66                 int len = is.read(arr, offset, arr.length - offset);
    67                 if (len == -1) {
    68                     throw new IOException("Can't read " + name);
    69                 }
    70                 offset += len;
    71             }
    72             return arr;
    73         }
    74     }
    75     
    76 }