use of org.jf.dexlib2.iface.AnnotationElement in project smali by JesusFreke.
the class DexPool method internEncodedValue.
void internEncodedValue(@Nonnull EncodedValue encodedValue) {
switch(encodedValue.getValueType()) {
case ValueType.ANNOTATION:
AnnotationEncodedValue annotationEncodedValue = (AnnotationEncodedValue) encodedValue;
typeSection.intern(annotationEncodedValue.getType());
for (AnnotationElement element : annotationEncodedValue.getElements()) {
stringSection.intern(element.getName());
internEncodedValue(element.getValue());
}
break;
case ValueType.ARRAY:
for (EncodedValue element : ((ArrayEncodedValue) encodedValue).getValue()) {
internEncodedValue(element);
}
break;
case ValueType.STRING:
stringSection.intern(((StringEncodedValue) encodedValue).getValue());
break;
case ValueType.TYPE:
typeSection.intern(((TypeEncodedValue) encodedValue).getValue());
break;
case ValueType.ENUM:
fieldSection.intern(((EnumEncodedValue) encodedValue).getValue());
break;
case ValueType.FIELD:
fieldSection.intern(((FieldEncodedValue) encodedValue).getValue());
break;
case ValueType.METHOD:
methodSection.intern(((MethodEncodedValue) encodedValue).getValue());
break;
}
}
use of org.jf.dexlib2.iface.AnnotationElement in project smali by JesusFreke.
the class DexWriterTest method testAnnotationElementOrder.
@Test
public void testAnnotationElementOrder() {
// Elements are out of order wrt to the element name
ImmutableSet<ImmutableAnnotationElement> elements = ImmutableSet.of(new ImmutableAnnotationElement("zabaglione", ImmutableNullEncodedValue.INSTANCE), new ImmutableAnnotationElement("blah", ImmutableNullEncodedValue.INSTANCE));
ImmutableAnnotation annotation = new ImmutableAnnotation(AnnotationVisibility.RUNTIME, "Lorg/test/anno;", elements);
ImmutableClassDef classDef = new ImmutableClassDef("Lorg/test/blah;", 0, "Ljava/lang/Object;", null, null, ImmutableSet.of(annotation), null, null);
MemoryDataStore dataStore = new MemoryDataStore();
try {
DexPool.writeTo(dataStore, new ImmutableDexFile(Opcodes.getDefault(), ImmutableSet.of(classDef)));
} catch (IOException ex) {
throw new RuntimeException(ex);
}
DexBackedDexFile dexFile = new DexBackedDexFile(Opcodes.getDefault(), dataStore.getData());
ClassDef dbClassDef = Iterables.getFirst(dexFile.getClasses(), null);
Assert.assertNotNull(dbClassDef);
Annotation dbAnnotation = Iterables.getFirst(dbClassDef.getAnnotations(), null);
Assert.assertNotNull(dbAnnotation);
List<AnnotationElement> dbElements = Lists.newArrayList(dbAnnotation.getElements());
// Ensure that the elements were written out in sorted order
Assert.assertEquals(2, dbElements.size());
Assert.assertEquals("blah", dbElements.get(0).getName());
Assert.assertEquals("zabaglione", dbElements.get(1).getName());
}
Aggregations