List<String> parameterTypenames = Type.parseMethodDescriptor(descriptor, true);
int parameterCount = parameterTypenames.size() - 1; // allows for return type
// make sure all entries are valid
while (bindingIter.hasNext()) {
Binding binding = bindingIter.next();
if (binding.isRecipient()) {
if ((access & Opcodes.ACC_STATIC) != 0) {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : found invalid recipient binding " + binding + " checking static method " + name + descriptor);
}
transformContext.warn(name, descriptor, "found invalid recipient binding " + binding + " injecting into static method");
}
} else if (binding.isParam()) {
int idx = binding.getIndex();
if (idx > parameterCount) {
// parameter out of range
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : found out of range parameter binding " + binding + " checking method " + name + descriptor);
}
transformContext.warn(name, descriptor, "found out of range parameter binding " + binding);
} else {
binding.setDescriptor(parameterTypenames.get(idx - 1));
}
} else if (binding.isReturn()) {
// this is a valid reference in an AT EXIT rule and in an AFTER INVOKE
// but only if the corresponding returning or called method is non-void
LocationType locationType = rule.getTargetLocation().getLocationType();
if (locationType == LocationType.EXIT) {
if ("void".equals(getReturnBindingType())) {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : found return value binding " + binding + " checking void trigger method " + name + descriptor + " in AT EXIT rule " + rule);
}
transformContext.warn(name, descriptor, "found return value binding " + binding + " checking void trigger method in AT EXIT rule");
}
} else if (locationType == LocationType.INVOKE_COMPLETED) {
if ("void".equals(getReturnBindingType())) {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : found return value binding " + binding + " checking void called method in AFTER INVOKE rule " + rule.getName());
}
transformContext.warn(name, descriptor, "found return value binding " + binding + " checking void called method in AFTER INVOKE rule");
}
} else {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : found return value binding " + binding + " in rule which is neither AT EXIT nor AFTER INVOKE " + rule.getName());
}
transformContext.warn(name, descriptor, "found return value binding " + binding + " in rule which is neither AT EXIT nor AFTER INVOKE");
}
} else if (binding.isThrowable()) {
// we can only allow reference to the current throwable in an AT THROW rule
if (rule.getTargetLocation().getLocationType() != LocationType.THROW) {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : found throwable value binding " + binding + " in rule which is not AT THROW " + rule.getName());
}
transformContext.warn(name, descriptor, "found throwable value binding " + binding + " in rule which is not AT THROW");
}
// we will need to set the descriptor at some point
} else if (binding.isParamArray()) {
// this is ok
} else if (binding.isParamCount()) {
// this is ok
} else if (binding.isInvokeParamArray()) {
// we can only allow reference to the invoked method parameters in an AT INVOKE rule
if (rule.getTargetLocation().getLocationType() != LocationType.INVOKE) {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : found invoke parameter array binding $@ in non-AT INVOKE rule " + rule.getName());
}
transformContext.warn(name, descriptor, "found throwable value binding " + binding + " in rule which is not AT THROW");
}
} else if (binding.isLocalVar()){
// make sure we have a local variable with the correct name
String localVarName = binding.getName().substring(1);
List<LocalVar> localVars = lookup(localVarName);
if (localVars == null || localVars.isEmpty()) {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : unsatisfiable local variable binding " + binding + " checking method " + name + descriptor);
}
transformContext.warn(name, descriptor, "unknown local variable " + binding);
} else {
String descriptor = null;
int index = -1;
Iterator<Label> labelIter = triggerPoints.iterator();
while (labelIter.hasNext()) {
int triggerPos = labelIter.next().getOffset();
boolean found = false;
Iterator<LocalVar> localVarIter = localVars.iterator();
while (localVarIter.hasNext()) {
LocalVar localVar = localVarIter.next();
int start = localVar.start.getOffset();
int end = localVar.end.getOffset();
if (start <= triggerPos && triggerPos < end) {
// only accept if the descriptor and index are the same or are not yet set
if (descriptor == null && index == -1) {
descriptor = localVar.desc;
index = localVar.index;
found = true;
} else if (descriptor.equals(localVar.desc) && index == localVar.index) {
found = true;
}
// terminate the loop here
break;
}
}
// if there was no variable for this trigger point then fail
if (!found) {
if (Transformer.isVerbose()) {
System.out.println("RuleCheckMethodAdapter.checkBindings : invalid local variable binding " + binding + " checking method " + name + descriptor);
}
transformContext.warn(name, descriptor, "invalid local variable binding " + binding);
}
}
// if we got here then we have a unique local var descriptor and index for
// all trigger points so update the binding
binding.setDescriptor(Type.parseFieldDescriptor(descriptor));
binding.setLocalIndex(index);
}
}
}
}