blob: 2e73410ac8d4389ff50536b1f4232f7031e08e44 [file] [log] [blame]
package org.robolectric.res;
import org.robolectric.util.Logger;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
public class ResourceTableFactory {
/**
* Builds an Android framework resource table in the "android" package space.
*/
public PackageResourceTable newFrameworkResourceTable(ResourcePath resourcePath) {
PackageResourceTable resourceTable = new PackageResourceTable("android");
if (resourcePath.getRClass() != null) {
addRClassValues(resourceTable, resourcePath.getRClass());
addMissingStyleableAttributes(resourceTable, resourcePath.getRClass());
}
if (resourcePath.getInternalRClass() != null) {
addRClassValues(resourceTable, resourcePath.getInternalRClass());
addMissingStyleableAttributes(resourceTable, resourcePath.getInternalRClass());
}
parseResourceFiles(resourcePath, resourceTable);
return resourceTable;
}
/**
* Creates an application resource table which can be constructed with multiple resources paths representing
* overlayed resource libraries.
*/
public PackageResourceTable newResourceTable(String packageName, ResourcePath... resourcePaths) {
PackageResourceTable resourceTable = new PackageResourceTable(packageName);
for (ResourcePath resourcePath : resourcePaths) {
if (resourcePath.getRClass() != null) {
addRClassValues(resourceTable, resourcePath.getRClass());
}
}
for (ResourcePath resourcePath : resourcePaths) {
parseResourceFiles(resourcePath, resourceTable);
}
return resourceTable;
}
private void addRClassValues(PackageResourceTable resourceTable, Class<?> rClass) {
for (Class innerClass : rClass.getClasses()) {
String resourceType = innerClass.getSimpleName();
if (!resourceType.equals("styleable")) {
for (Field field : innerClass.getDeclaredFields()) {
if (field.getType().equals(Integer.TYPE) && Modifier.isStatic(field.getModifiers())) {
int id;
try {
id = field.getInt(null);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
String resourceName = field.getName();
resourceTable.addResource(id, resourceType, resourceName);
}
}
}
}
}
/**
* Check the stylable elements. Not for aapt generated R files but for framework R files it is possible to
* have attributes in the styleable array for which there is no corresponding R.attr field.
*/
private void addMissingStyleableAttributes(PackageResourceTable resourceTable, Class<?> rClass) {
for (Class innerClass : rClass.getClasses()) {
if (innerClass.getSimpleName().equals("styleable")) {
String styleableName = null; // Current styleable name
int[] styleableArray = null; // Current styleable value array or references
for (Field field : innerClass.getDeclaredFields()) {
if (field.getType().equals(int[].class) && Modifier.isStatic(field.getModifiers())) {
styleableName = field.getName();
try {
styleableArray = (int[]) (field.get(null));
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
} else if (field.getType().equals(Integer.TYPE) && Modifier.isStatic(field.getModifiers())) {
String attributeName = field.getName().substring(styleableName.length() + 1);
try {
int styleableIndex = field.getInt(null);
int attributeResId = styleableArray[styleableIndex];
resourceTable.addResource(attributeResId, "attr", attributeName);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
}
}
}
}
}
private void parseResourceFiles(ResourcePath resourcePath, PackageResourceTable resourceTable) {
if (!resourcePath.hasResources()) {
Logger.debug("No resources for %s", resourceTable.getPackageName());
return;
}
Logger.debug("Loading resources for %s from %s...", resourceTable.getPackageName(), resourcePath.getResourceBase());
try {
new StaxDocumentLoader(resourceTable.getPackageName(), resourcePath,
new StaxValueLoader(resourceTable, "/resources/bool", "bool", ResType.BOOLEAN),
new StaxValueLoader(resourceTable, "/resources/item[@type='bool']", "bool", ResType.BOOLEAN),
new StaxValueLoader(resourceTable, "/resources/color", "color", ResType.COLOR),
new StaxValueLoader(resourceTable, "/resources/drawable", "drawable", ResType.DRAWABLE),
new StaxValueLoader(resourceTable, "/resources/item[@type='color']", "color", ResType.COLOR),
new StaxValueLoader(resourceTable, "/resources/item[@type='drawable']", "drawable", ResType.DRAWABLE),
new StaxValueLoader(resourceTable, "/resources/dimen", "dimen", ResType.DIMEN),
new StaxValueLoader(resourceTable, "/resources/item[@type='dimen']", "dimen", ResType.DIMEN),
new StaxValueLoader(resourceTable, "/resources/integer", "integer", ResType.INTEGER),
new StaxValueLoader(resourceTable, "/resources/item[@type='integer']", "integer", ResType.INTEGER),
new StaxArrayLoader(resourceTable, "/resources/integer-array", "array", ResType.INTEGER_ARRAY, ResType.INTEGER),
new StaxValueLoader(resourceTable, "/resources/fraction", "fraction", ResType.FRACTION),
new StaxValueLoader(resourceTable, "/resources/item[@type='fraction']", "fraction", ResType.FRACTION),
new StaxValueLoader(resourceTable, "/resources/item[@type='layout']", "layout", ResType.LAYOUT),
new StaxPluralsLoader(resourceTable, "/resources/plurals", "plurals", ResType.CHAR_SEQUENCE),
new StaxValueLoader(resourceTable, "/resources/string", "string", ResType.CHAR_SEQUENCE),
new StaxValueLoader(resourceTable, "/resources/item[@type='string']", "string", ResType.CHAR_SEQUENCE),
new StaxArrayLoader(resourceTable, "/resources/string-array", "array", ResType.CHAR_SEQUENCE_ARRAY, ResType.CHAR_SEQUENCE),
new StaxArrayLoader(resourceTable, "/resources/array", "array", ResType.TYPED_ARRAY, null),
new StaxValueLoader(resourceTable, "/resources/id", "id", ResType.CHAR_SEQUENCE),
new StaxValueLoader(resourceTable, "/resources/item[@type='id']", "id", ResType.CHAR_SEQUENCE),
new StaxAttrLoader(resourceTable, "/resources/attr", "attr", ResType.ATTR_DATA),
new StaxAttrLoader(resourceTable, "/resources/declare-styleable/attr", "attr", ResType.ATTR_DATA),
new StaxStyleLoader(resourceTable, "/resources/style", "style", ResType.STYLE)
).load("values");
loadOpaque(resourcePath, resourceTable, "layout", ResType.LAYOUT);
loadOpaque(resourcePath, resourceTable, "menu", ResType.LAYOUT);
loadOpaque(resourcePath, resourceTable, "drawable", ResType.DRAWABLE);
loadOpaque(resourcePath, resourceTable, "anim", ResType.LAYOUT);
loadOpaque(resourcePath, resourceTable, "animator", ResType.LAYOUT);
loadOpaque(resourcePath, resourceTable, "color", ResType.COLOR_STATE_LIST);
loadOpaque(resourcePath, resourceTable, "xml", ResType.LAYOUT);
loadOpaque(resourcePath, resourceTable, "transition", ResType.LAYOUT);
loadOpaque(resourcePath, resourceTable, "interpolator", ResType.LAYOUT);
new DrawableResourceLoader(resourceTable).findDrawableResources(resourcePath);
new RawResourceLoader(resourcePath).loadTo(resourceTable);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private void loadOpaque(ResourcePath resourcePath, final PackageResourceTable resourceTable, final String type, final ResType resType) {
new StaxDocumentLoader(resourceTable.getPackageName(), resourcePath) {
@Override
protected void loadResourceXmlFile(XmlContext xmlContext) {
resourceTable.addResource(type, xmlContext.getXmlFile().getBaseName(),
new FileTypedResource(xmlContext.getXmlFile(), resType, xmlContext));
}
}.load(type);
}
}