/* Copyright (C) 2004-2007 Sami Koivu
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package net.sf.rej.gui.editor.iteration;
import net.sf.rej.gui.IterationContext;
import net.sf.rej.gui.IteratorAgentAdapter;
import net.sf.rej.gui.Link;
import net.sf.rej.gui.MainWindow;
import net.sf.rej.gui.tab.Tab;
import net.sf.rej.java.ClassFile;
import net.sf.rej.java.constantpool.ClassInfo;
import net.sf.rej.java.constantpool.ConstantPoolInfo;
import net.sf.rej.java.constantpool.RefInfo;
import net.sf.rej.java.instruction.Instruction;
import net.sf.rej.java.instruction.ParameterType;
import net.sf.rej.java.instruction.Parameters;
/**
* <code>IteratorAgent</code> which gets a class name as a parameter and finds
* all class references (and definitions) which match it.
*
* @author Sami Koivu
*/
public class FindClassRefs extends IteratorAgentAdapter {
private int resultCount = 0;
private String className;
public FindClassRefs(String className) {
this.className = className;
}
@Override
public void processClass(IterationContext sc, ClassFile cf) {
boolean classNamesMatch = cf.getFullClassName().equals(className);
if (classNamesMatch) {
Link link = new Link();
link.setText("Class definition : " + sc.getCf().getFullClassName());
link.setAnchor(Link.ANCHOR_CLASS_DEF);
link.setProject(sc.getProject());
link.setFile(sc.getFilename());
link.setTab(Tab.EDITOR);
MainWindow.getInstance().getSearchTab().addResult(link);
this.resultCount++;
}
}
@Override
public void processInstruction(IterationContext sc, Instruction instruction) {
Parameters params = instruction.getParameters();
for (int i = 0; i < params.getCount(); i++) {
if (params.getType(i) == ParameterType.TYPE_CONSTANT_POOL_FIELD_REF) {
ConstantPoolInfo cpi = sc.getDc().getConstantPool().get(
params.getInt(i));
RefInfo ri = (RefInfo) cpi;
boolean classNamesMatch = ri.getClassName().equals(className);
if (classNamesMatch) {
String instructionLine = instruction.getMnemonic() + " "
+ instruction.getParameters().getString(sc.getDc());
Link link = new Link();
link.setText("Field Ref : " + sc.getCf().getFullClassName() + "." + sc.getMethod().getName() + " / " + instructionLine);
link.setAnchor(Link.ANCHOR_METHOD_CODE);
link.setProject(sc.getProject());
link.setFile(sc.getFilename());
link.setTab(Tab.EDITOR);
link.setMethod(sc.getMethod());
link.setPosition(sc.getDc().getPosition());
MainWindow.getInstance().getSearchTab().addResult(link);
this.resultCount++;
}
} else if (params.getType(i) == ParameterType.TYPE_CONSTANT_POOL_METHOD_REF) {
ConstantPoolInfo cpi = sc.getDc().getConstantPool().get(
params.getInt(i));
RefInfo ri = (RefInfo) cpi;
boolean classNamesMatch = ri.getClassName().equals(className);
if (classNamesMatch) {
String instructionLine = instruction.getMnemonic() + " "
+ instruction.getParameters().getString(sc.getDc());
Link link = new Link();
link.setText("Method Call : " + sc.getCf().getFullClassName() + "." + sc.getMethod().getName() + " / " + instructionLine);
link.setAnchor(Link.ANCHOR_METHOD_CODE);
link.setProject(sc.getProject());
link.setFile(sc.getFilename());
link.setTab(Tab.EDITOR);
link.setMethod(sc.getMethod());
link.setPosition(sc.getDc().getPosition());
MainWindow.getInstance().getSearchTab().addResult(link);
this.resultCount++;
}
} else if (params.getType(i) == ParameterType.TYPE_CONSTANT_POOL_CLASS) {
ConstantPoolInfo cpi = sc.getDc().getConstantPool().get(
params.getInt(i));
ClassInfo ci = (ClassInfo) cpi;
boolean classNamesMatch = ci.getName().equals(className);
if (classNamesMatch) {
String instructionLine = instruction.getMnemonic() + " "
+ instruction.getParameters().getString(sc.getDc());
Link link = new Link();
link.setText("Instruction : " + sc.getCf().getFullClassName() + "." + sc.getMethod().getName() + " / " + instructionLine);
link.setAnchor(Link.ANCHOR_METHOD_CODE);
link.setProject(sc.getProject());
link.setFile(sc.getFilename());
link.setTab(Tab.EDITOR);
link.setMethod(sc.getMethod());
link.setPosition(sc.getDc().getPosition());
MainWindow.getInstance().getSearchTab().addResult(link);
this.resultCount++;
}
}
}
}
}