blob: 546634993d82dae74ed35d4fe92a8805a583deb8 [file] [log] [blame]
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.text.MessageFormat;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.Status;
import org.eclipse.jdt.core.Signature;
import org.eclipse.jdt.debug.core.IJavaClassType;
import org.eclipse.jdt.debug.core.IJavaType;
import org.eclipse.jdt.debug.core.IJavaValue;
import org.eclipse.jdt.debug.core.JDIDebugModel;
/**
* Sends a message. The arguments are on the
* stack in reverse order, followed by the receiver.
* Pushes the result, if any, onto the stack
*/
public class SendStaticMessage extends CompoundInstruction {
private int fArgCount;
private String fSelector;
private String fSignature;
private String fTypeSignature;
public SendStaticMessage(String typeSignature, String selector, String signature, int argCount, int start) {
super(start);
fArgCount= argCount;
fSelector= selector;
fSignature= signature;
fTypeSignature= typeSignature;
}
public void execute() throws CoreException {
IJavaValue[] args = new IJavaValue[fArgCount];
// args are in reverse order
for (int i= fArgCount - 1; i >= 0; i--) {
args[i] = (IJavaValue)popValue();
}
IJavaType receiver= getType(Signature.toString(fTypeSignature).replace('/', '.'));
IJavaValue result;
if (receiver instanceof IJavaClassType) {
result= ((IJavaClassType)receiver).sendMessage(fSelector, fSignature, args, getContext().getThread());
} else {
throw new CoreException(new Status(Status.ERROR, JDIDebugModel.getPluginIdentifier(), Status.OK, InstructionsEvaluationMessages.getString("SendStaticMessage.Cannot_send_a_static_message_to_a_non_class_type_object_1"), null)); //$NON-NLS-1$
}
setLastValue(result);
if (!fSignature.endsWith(")V")) { //$NON-NLS-1$
// only push the result if not a void method
push(result);
}
}
public String toString() {
return MessageFormat.format(InstructionsEvaluationMessages.getString("SendStaticMessage.send_static_message_{0}_{1}_2"), new String[]{fSelector, fSignature}); //$NON-NLS-1$
}
}