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
|
package cuchaz.enigma.analysis.index;
import cuchaz.enigma.translation.representation.entry.ClassDefEntry;
import cuchaz.enigma.translation.representation.entry.FieldDefEntry;
import cuchaz.enigma.translation.representation.entry.MethodDefEntry;
import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.FieldVisitor;
import org.objectweb.asm.MethodVisitor;
public class IndexClassVisitor extends ClassVisitor {
private final JarIndexer indexer;
private ClassDefEntry classEntry;
public IndexClassVisitor(JarIndex indexer, int api) {
super(api);
this.indexer = indexer;
}
@Override
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
classEntry = ClassDefEntry.parse(access, name, signature, superName, interfaces);
indexer.indexClass(classEntry);
super.visit(version, access, name, signature, superName, interfaces);
}
@Override
public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
indexer.indexField(FieldDefEntry.parse(classEntry, access, name, desc, signature));
return super.visitField(access, name, desc, signature, value);
}
@Override
public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
indexer.indexMethod(MethodDefEntry.parse(classEntry, access, name, desc, signature));
return super.visitMethod(access, name, desc, signature, exceptions);
}
}
|