rt/vm/src/main/java/org/apidesign/vm4brwsr/ClassDataCache.java
author Lubomir Nerad <lubomir.nerad@oracle.com>
Mon, 06 May 2013 18:06:08 +0200
branchclosure
changeset 1084 f5c9934a252c
child 1085 6a4ef883e233
permissions -rw-r--r--
Overridable class member access type
     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.util.HashMap;
    23 import java.util.Map;
    24 import org.apidesign.bck2brwsr.core.ExtraJavaScript;
    25 import org.apidesign.vm4brwsr.ByteCodeParser.ClassData;
    26 
    27 @ExtraJavaScript(processByteCode = false, resource="")
    28 final class ClassDataCache {
    29     private static final Object MISSING_CLASS = new Object();
    30 
    31     private final Bck2Brwsr.Resources resources;
    32     private final Map<String, Object> classDataMap;
    33 
    34     ClassDataCache(final Bck2Brwsr.Resources resources) {
    35         this.resources = resources;
    36 
    37         classDataMap = new HashMap<String, Object>();
    38     }
    39 
    40     ClassData getClassData(final String className) throws IOException {
    41         Object cacheEntry = classDataMap.get(className);
    42         if (cacheEntry == null) {
    43             final InputStream is = loadClass(resources, className);
    44             cacheEntry = (is != null) ? new ClassData(is) : MISSING_CLASS;
    45             classDataMap.put(className, cacheEntry);
    46         }
    47 
    48         return (cacheEntry != MISSING_CLASS) ? (ClassData) cacheEntry : null;
    49     }
    50 
    51     private static InputStream loadClass(Bck2Brwsr.Resources l, String name)
    52             throws IOException {
    53         return l.get(name + ".class"); // NOI18N
    54     }
    55 }