summaryrefslogtreecommitdiffstats
path: root/src/java/jogamp/android/launcher/AssetDexClassLoader.java
blob: fb2d7d399d8b2f900b570f1f10b368b26afbdabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package jogamp.android.launcher;

import java.net.URL;

import android.util.Log;

import dalvik.system.DexClassLoader;

public class AssetDexClassLoader extends DexClassLoader {
    private static final boolean DEBUG = false;
    private static final String assets_folder = "assets/";
    
    private static int next_id = 1;
    private final int id;
    
    public AssetDexClassLoader(String dexPath, String dexOutputDir, String libPath, ClassLoader parent) {
        super(dexPath, dexOutputDir, libPath, parent);
        synchronized(AssetDexClassLoader.class) {
            id = next_id++;
        }
        if(DEBUG) {
            Log.d(getSimpleName(), getIdName()+".ctor: dexPath " + dexPath + ", dexOutputDir " + dexOutputDir + ", libPath " + libPath + ", parent " + parent);
        }
    }
    
    protected final String getSimpleName() {
        return AssetDexClassLoader.class.getSimpleName();
    }
    protected final String getIdName() {
        return "ADCL["+id+"]";
    }
    
    @Override
    public String findLibrary(String libName) {
        final String res = super.findLibrary(libName); 
        if(DEBUG) {
            Log.d(getSimpleName(), getIdName()+".findLibrary: " + libName + " -> " + res);
        }
        return res;
    }
    
    @Override
    public URL findResource(String name) {
        final String assetName = name.startsWith(assets_folder) ? name : assets_folder + name ;
        URL url = super.findResource(assetName);
        if(DEBUG) {
            Log.d(getSimpleName(), getIdName()+".findResource: " + name + " -> " + assetName + " -> " + url);
        }
        return url;
    }
}