blob: dffcb0c6dba439c2b14e33f38a0af9903d231986 (
plain) (
blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
package cuchaz.enigma.translation.mapping;
import cuchaz.enigma.analysis.index.InheritanceIndex;
import cuchaz.enigma.analysis.index.JarIndex;
import cuchaz.enigma.throwables.IllegalNameException;
import cuchaz.enigma.translation.Translator;
import cuchaz.enigma.translation.mapping.tree.EntryTree;
import cuchaz.enigma.translation.representation.entry.ClassEntry;
import cuchaz.enigma.translation.representation.entry.Entry;
import java.util.Collection;
import java.util.HashSet;
import java.util.stream.Collectors;
public class MappingValidator {
private final EntryTree<EntryMapping> obfToDeobf;
private final Translator deobfuscator;
private final JarIndex index;
public MappingValidator(EntryTree<EntryMapping> obfToDeobf, Translator deobfuscator, JarIndex index) {
this.obfToDeobf = obfToDeobf;
this.deobfuscator = deobfuscator;
this.index = index;
}
public void validateRename(Entry<?> entry, String name) throws IllegalNameException {
Collection<Entry<?>> equivalentEntries = index.getEntryResolver().resolveEquivalentEntries(entry);
for (Entry<?> equivalentEntry : equivalentEntries) {
equivalentEntry.validateName(name);
validateUnique(equivalentEntry, name);
}
}
private void validateUnique(Entry<?> entry, String name) {
ClassEntry containingClass = entry.getContainingClass();
Collection<ClassEntry> relatedClasses = getRelatedClasses(containingClass);
for (ClassEntry relatedClass : relatedClasses) {
Entry<?> relatedEntry = entry.replaceAncestor(containingClass, relatedClass);
Entry<?> translatedEntry = deobfuscator.translate(relatedEntry);
Collection<Entry<?>> translatedSiblings = obfToDeobf.getSiblings(relatedEntry).stream()
.map(deobfuscator::translate)
.collect(Collectors.toList());
if (!isUnique(translatedEntry, translatedSiblings, name)) {
Entry<?> parent = translatedEntry.getParent();
if (parent != null) {
throw new IllegalNameException(name, "Name is not unique in " + parent + "!");
} else {
throw new IllegalNameException(name, "Name is not unique!");
}
}
}
}
private Collection<ClassEntry> getRelatedClasses(ClassEntry classEntry) {
InheritanceIndex inheritanceIndex = index.getInheritanceIndex();
Collection<ClassEntry> relatedClasses = new HashSet<>();
relatedClasses.add(classEntry);
relatedClasses.addAll(inheritanceIndex.getChildren(classEntry));
relatedClasses.addAll(inheritanceIndex.getAncestors(classEntry));
return relatedClasses;
}
private boolean isUnique(Entry<?> entry, Collection<Entry<?>> siblings, String name) {
for (Entry<?> sibling : siblings) {
if (entry.canConflictWith(sibling) && sibling.getName().equals(name)) {
return false;
}
}
return true;
}
}
|