We don't need the loader anymore jdk8
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 13 Sep 2014 15:37:30 +0200
branchjdk8
changeset 16820e2fa0438a78
parent 1681 2082d4c4bf11
child 1683 17f95ced156b
We don't need the loader anymore
rt/vm8/src/test/java/org/apidesign/bck2brwsr/vm8/BytesLoader.java
     1.1 --- a/rt/vm8/src/test/java/org/apidesign/bck2brwsr/vm8/BytesLoader.java	Sat Sep 13 15:37:01 2014 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,69 +0,0 @@
     1.4 -/**
     1.5 - * Back 2 Browser Bytecode Translator
     1.6 - * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 - *
     1.8 - * This program is free software: you can redistribute it and/or modify
     1.9 - * it under the terms of the GNU General Public License as published by
    1.10 - * the Free Software Foundation, version 2 of the License.
    1.11 - *
    1.12 - * This program is distributed in the hope that it will be useful,
    1.13 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 - * GNU General Public License for more details.
    1.16 - *
    1.17 - * You should have received a copy of the GNU General Public License
    1.18 - * along with this program. Look for COPYING file in the top folder.
    1.19 - * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 - */
    1.21 -package org.apidesign.bck2brwsr.vm8;
    1.22 -
    1.23 -import java.io.IOException;
    1.24 -import java.io.InputStream;
    1.25 -import java.net.URL;
    1.26 -import java.util.Enumeration;
    1.27 -
    1.28 -/**
    1.29 - *
    1.30 - * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.31 - */
    1.32 -public final class BytesLoader {
    1.33 -    public byte[] get(String name) throws IOException {
    1.34 -        byte[] arr = readClass(name);
    1.35 -        /*
    1.36 -        System.err.print("loader['" + name + "'] = [");
    1.37 -        for (int i = 0; i < arr.length; i++) {
    1.38 -        if (i > 0) {
    1.39 -        System.err.print(", ");
    1.40 -        }
    1.41 -        System.err.print(arr[i]);
    1.42 -        }
    1.43 -        System.err.println("]");
    1.44 -         */
    1.45 -        return arr;
    1.46 -    }
    1.47 -
    1.48 -    static byte[] readClass(String name) throws IOException {
    1.49 -        URL u = null;
    1.50 -        Enumeration<URL> en = BytesLoader.class.getClassLoader().getResources(name);
    1.51 -        while (en.hasMoreElements()) {
    1.52 -            u = en.nextElement();
    1.53 -        }
    1.54 -        if (u == null) {
    1.55 -            throw new IOException("Can't find " + name);
    1.56 -        }
    1.57 -        try (InputStream is = u.openStream()) {
    1.58 -            byte[] arr;
    1.59 -            arr = new byte[is.available()];
    1.60 -            int offset = 0;
    1.61 -            while (offset < arr.length) {
    1.62 -                int len = is.read(arr, offset, arr.length - offset);
    1.63 -                if (len == -1) {
    1.64 -                    throw new IOException("Can't read " + name);
    1.65 -                }
    1.66 -                offset += len;
    1.67 -            }
    1.68 -            return arr;
    1.69 -        }
    1.70 -    }
    1.71 -    
    1.72 -}