blob: 37c1a1df08e608ae95729f23626e4a3b7af656f1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.lang;
import com.android.dex.Dex;
/**
* A dex cache holds resolved copies of strings, fields, methods, and classes from the dexfile.
*/
final class DexCache {
/** Lazily initialized dex file wrapper. Volatile to avoid double-check locking issues. */
private volatile Dex dex;
/** The location of the associated dex file. */
String location;
/** Holds C pointer to dexFile. */
private long dexFile;
/**
* References to fields (C array pointer) as they become resolved following
* interpreter semantics. May refer to fields defined in other dex files.
*/
private long resolvedFields;
/**
* References to methods (C array pointer) as they become resolved following
* interpreter semantics. May refer to methods defined in other dex files.
*/
private long resolvedMethods;
/**
* References to types (C array pointer) as they become resolved following
* interpreter semantics. May refer to types defined in other dex files.
*/
private long resolvedTypes;
/**
* References to strings (C array pointer) as they become resolved following
* interpreter semantics. All strings are interned.
*/
private long strings;
/**
* The number of elements in the native resolvedFields array.
*/
private int numResolvedFields;
/**
* The number of elements in the native resolvedMethods array.
*/
private int numResolvedMethods;
/**
* The number of elements in the native resolvedTypes array.
*/
private int numResolvedTypes;
/**
* The number of elements in the native strings array.
*/
private int numStrings;
// Only created by the VM.
private DexCache() {}
Dex getDex() {
Dex result = dex;
if (result == null) {
synchronized (this) {
result = dex;
if (result == null) {
dex = result = getDexNative();
}
}
}
return result;
}
native Class<?> getResolvedType(int typeIndex);
native String getResolvedString(int stringIndex);
native void setResolvedType(int typeIndex, Class<?> type);
native void setResolvedString(int stringIndex, String string);
private native Dex getDexNative();
}