public class ApiLookup
extends java.lang.Object
This class is optimized for quick bytecode lookup used in conjunction with the ASM library: It has lookup methods that take internal JVM signatures, and for a method call for example it processes the owner, name and description parameters separately the way they are provided from ASM.
The Api class provides access to the full Android API along with version
information, initialized from an XML file. This lookup class adds a binary cache around
the API to make initialization faster and to require fewer objects. It creates
a binary cache data structure, which fits in a single byte array, which means that
to open the database you can just read in the byte array and go. On one particular
machine, this takes about 30-50 ms versus 600-800ms for the full parse. It also
helps memory by placing everything in a compact byte array instead of needing separate
strings (2 bytes per character in a char[] for the 25k method entries, 11k field entries
and 6k class entries) - and it also avoids the same number of Map.Entry objects.
When creating the memory data structure it performs a few other steps to help memory:
| Modifier and Type | Field and Description |
|---|---|
static int |
SDK_DATABASE_MIN_VERSION
Database moved from platform-tools to SDK in API level 26
|
static java.lang.String |
XML_FILE_PATH |
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsClass(java.lang.String className)
Returns true if the given owner class is known in the API database.
|
static ApiLookup |
get(com.android.tools.lint.client.api.LintClient client)
Returns an instance of the API database
|
static ApiLookup |
get(com.android.tools.lint.client.api.LintClient client,
com.android.sdklib.IAndroidTarget target)
Returns an instance of the API database
|
int |
getCallDeprecatedIn(java.lang.String owner,
java.lang.String name,
java.lang.String desc)
Returns the API version the given call was deprecated in, or -1 if the method is not
deprecated.
|
int |
getCallRemovedIn(java.lang.String owner,
java.lang.String name,
java.lang.String desc)
Returns the API version the given call was removed in, or -1 if the method was not removed.
|
int |
getCallVersion(java.lang.String owner,
java.lang.String name,
java.lang.String desc)
Returns the API version required by the given method call.
|
int |
getClassDeprecatedIn(java.lang.String className)
Returns the API version the given class was deprecated in, or -1 if the class is not
deprecated.
|
int |
getClassRemovedIn(java.lang.String className)
Returns the API version the given class was removed in, or -1 if the class was not removed.
|
int |
getClassVersion(java.lang.String className)
Returns the API version required by the given class reference,
or -1 if this is not a known API class.
|
int |
getFieldDeprecatedIn(java.lang.String owner,
java.lang.String name)
Returns the API version the given field was deprecated in, or -1 if the field is not
deprecated.
|
int |
getFieldRemovedIn(java.lang.String owner,
java.lang.String name)
Returns the API version the given field was removed in, or -1 if the field was not removed.
|
int |
getFieldVersion(java.lang.String owner,
java.lang.String name)
Returns the API version required to access the given field, or -1 if this is not a known API
method.
|
java.util.Collection<ApiMember> |
getRemovedCalls(java.lang.String owner)
Returns all removed methods of the given class and all its super classes and interfaces.
|
java.util.Collection<ApiMember> |
getRemovedFields(java.lang.String owner)
Returns all removed fields of the given class and all its super classes and interfaces.
|
com.android.sdklib.IAndroidTarget |
getTarget()
Returns the associated Android target, if known
|
int |
getValidCastVersion(java.lang.String sourceClass,
java.lang.String destinationClass)
Returns the API version required to perform the given cast, or -1 if this is valid for all
versions of the class (or, if these are not known classes or if the cast is not valid at
all.)
|
static boolean |
isRelevantOwner(java.lang.String owner)
Returns true if the given owner (in VM format) is relevant to the database.
|
boolean |
isValidJavaPackage(java.lang.String owner)
Returns true if the given owner (in VM format) is a valid Java package supported
in any version of Android.
|
public static final java.lang.String XML_FILE_PATH
public static final int SDK_DATABASE_MIN_VERSION
@Nullable public static ApiLookup get(@NonNull com.android.tools.lint.client.api.LintClient client)
client - the client to associate with this database - used only for
logging. The database object may be shared among repeated invocations,
and in that case client used will be the one originally passed in.
In other words, this parameter may be ignored if the client created
is not new.@Nullable public static ApiLookup get(@NonNull com.android.tools.lint.client.api.LintClient client, @Nullable com.android.sdklib.IAndroidTarget target)
client - the client to associate with this database - used only for logging. The
database object may be shared among repeated invocations, and in that case
client used will be the one originally passed in. In other words, this
parameter may be ignored if the client created is not new.target - the corresponding Android target, if known@Nullable public com.android.sdklib.IAndroidTarget getTarget()
public int getClassVersion(@NonNull
java.lang.String className)
className - the internal name of the class, e.g. its fully qualified name
(as returned by Class.getName())public int getValidCastVersion(@NonNull
java.lang.String sourceClass,
@NonNull
java.lang.String destinationClass)
Note also that this method should only be called for interfaces that are actually implemented by this class or extending the given super class (check elsewhere); it doesn't distinguish between interfaces implemented in the initial version of the class and interfaces not implemented at all.
sourceClass - the internal name of the class, e.g. its fully qualified name
(as returned by Class.getName())destinationClass - the class to cast the sourceClass topublic int getClassDeprecatedIn(@NonNull
java.lang.String className)
className - the internal name of the method's owner class, e.g. its fully qualified name
(as returned by Class.getName())public int getClassRemovedIn(@NonNull
java.lang.String className)
className - the internal name of the method's owner class, e.g. its fully qualified name
(as returned by Class.getName())public boolean containsClass(@NonNull
java.lang.String className)
className - the internal name of the class, e.g. its fully qualified name (as returned
by Class.getName(), but with '.' replaced by '/' (and '$' for inner classes)public int getCallVersion(@NonNull
java.lang.String owner,
@NonNull
java.lang.String name,
@NonNull
java.lang.String desc)
owner, name and desc fields. If the method is unknown it returns -1.
Note that it may return -1 for classes introduced in version 1; internally the database only
stores version data for version 2 and up.owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())name - the method's namedesc - the method's descriptor - see Typepublic int getCallDeprecatedIn(@NonNull
java.lang.String owner,
@NonNull
java.lang.String name,
@NonNull
java.lang.String desc)
owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())name - the method's namedesc - the method's descriptor - see Typepublic int getCallRemovedIn(@NonNull
java.lang.String owner,
@NonNull
java.lang.String name,
@NonNull
java.lang.String desc)
owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())name - the method's namedesc - the method's descriptor - see Type@Nullable public java.util.Collection<ApiMember> getRemovedFields(@NonNull java.lang.String owner)
owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())@Nullable public java.util.Collection<ApiMember> getRemovedCalls(@NonNull java.lang.String owner)
owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())public int getFieldVersion(@NonNull
java.lang.String owner,
@NonNull
java.lang.String name)
owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())name - the method's namepublic int getFieldDeprecatedIn(@NonNull
java.lang.String owner,
@NonNull
java.lang.String name)
owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())name - the method's namepublic int getFieldRemovedIn(@NonNull
java.lang.String owner,
@NonNull
java.lang.String name)
owner - the internal name of the field's owner class, e.g. its fully qualified name
(as returned by Class.getName())name - the method's namepublic static boolean isRelevantOwner(@NonNull
java.lang.String owner)
#getFieldVersion etc methods.owner - the owner to look uppublic boolean isValidJavaPackage(@NonNull
java.lang.String owner)
owner - the package, in VM format