summaryrefslogtreecommitdiff
path: root/src/test/java/cuchaz/enigma/TokenChecker.java
blob: c4670a20a1482dbe8f2d86942bea298da311ab0a (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
/*******************************************************************************
 * Copyright (c) 2015 Jeff Martin.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser General Public
 * License v3.0 which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl.html
 *
 * Contributors:
 *     Jeff Martin - initial API and implementation
 ******************************************************************************/

package cuchaz.enigma;

import com.google.common.collect.Lists;
import com.strobel.decompiler.languages.java.ast.CompilationUnit;
import cuchaz.enigma.analysis.EntryReference;
import cuchaz.enigma.analysis.SourceIndex;
import cuchaz.enigma.analysis.Token;
import cuchaz.enigma.translation.representation.entry.Entry;

import java.io.IOException;
import java.util.Collection;
import java.util.List;
import java.util.jar.JarFile;

public class TokenChecker {

	private Deobfuscator deobfuscator;

	protected TokenChecker(JarFile jarFile)
		throws IOException {
		deobfuscator = new Deobfuscator(jarFile);
	}

	protected String getDeclarationToken(Entry<?> entry) {
		// decompile the class
		SourceProvider sourceProvider = deobfuscator.getObfSourceProvider();
		CompilationUnit tree = sourceProvider.getSources(entry.getContainingClass().getFullName());
		// DEBUG
		// tree.acceptVisitor( new TreeDumpVisitor( new File( "tree." + entry.getClassName().replace( '/', '.' ) + ".txt" ) ), null );
		String source = sourceProvider.writeSourceToString(tree);
		SourceIndex index = SourceIndex.buildIndex(source, tree, true);

		// get the token value
		Token token = index.getDeclarationToken(entry);
		if (token == null) {
			return null;
		}
		return source.substring(token.start, token.end);
	}

	@SuppressWarnings("unchecked")
	protected Collection<String> getReferenceTokens(EntryReference<? extends Entry<?>, ? extends Entry<?>> reference) {
		// decompile the class
		SourceProvider sourceProvider = deobfuscator.getObfSourceProvider();
		CompilationUnit tree = sourceProvider.getSources(reference.context.getContainingClass().getFullName());
		String source = sourceProvider.writeSourceToString(tree);
		SourceIndex index = SourceIndex.buildIndex(source, tree, true);

		// get the token values
		List<String> values = Lists.newArrayList();
		for (Token token : index.getReferenceTokens((EntryReference<Entry<?>, Entry<?>>) reference)) {
			values.add(source.substring(token.start, token.end));
		}
		return values;
	}
}