/******************************************************************************* * 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 cuchaz.enigma.analysis.ClassCache; import cuchaz.enigma.analysis.EntryReference; import cuchaz.enigma.source.SourceIndex; import cuchaz.enigma.source.*; import cuchaz.enigma.analysis.Token; import cuchaz.enigma.translation.representation.entry.Entry; import java.io.IOException; import java.nio.file.Path; import java.util.Collection; import java.util.List; public class TokenChecker { private final Decompiler decompiler; protected TokenChecker(Path path) throws IOException { ClassCache classCache = ClassCache.of(path); decompiler = Decompilers.PROCYON.create(classCache, new SourceSettings(false, false)); } protected String getDeclarationToken(Entry entry) { // decompile the class Source source = decompiler.getSource(entry.getContainingClass().getFullName()); // DEBUG // tree.acceptVisitor( new TreeDumpVisitor( new File( "tree." + entry.getClassName().replace( '/', '.' ) + ".txt" ) ), null ); String string = source.asString(); SourceIndex index = source.index(); // get the token value Token token = index.getDeclarationToken(entry); if (token == null) { return null; } return string.substring(token.start, token.end); } @SuppressWarnings("unchecked") protected Collection getReferenceTokens(EntryReference, ? extends Entry> reference) { // decompile the class Source source = decompiler.getSource(reference.context.getContainingClass().getFullName()); String string = source.asString(); SourceIndex index = source.index(); // get the token values List values = Lists.newArrayList(); for (Token token : index.getReferenceTokens((EntryReference, Entry>) reference)) { values.add(string.substring(token.start, token.end)); } return values; } }