final String signature = currentGetFieldIns.getFieldType(cpg).
toString() + " " + fieldName;
final Type joinPointType = TransformationUtil.STATIC_FIELD_SET_JOIN_POINT_TYPE;
final String joinPointClass = TransformationUtil.STATIC_FIELD_SET_JOIN_POINT_CLASS;
FieldMetaData fieldMetaData =
BcelMetaDataMaker.createFieldMetaData(currentGetFieldIns, cpg);
String uuid = setFieldFilter(definition, classMetaData, fieldMetaData);
// do we have to set a joinpoint ?
if (uuid != null) {
final String fieldClassName = currentGetFieldIns.getClassName(cpg);
if (fieldClassName.equals(cg.getClassName())) {
isMethodAdvised = true;
insertPreAdvice(il, ih, cg, fieldName, factory, joinPointType);
insertPostAdvice(il, ih.getNext().getNext(), cg, fieldName, factory, joinPointType);
// skip the creation of the set join point if we
// already have one
if (!setFieldJoinPoints.contains(fieldName)) {
setFieldJoinPoints.add(fieldName);
addStaticJoinPointField(cpg, cg, fieldName, joinPointType);
if (noClInitMethod && clInitMethod == null) {
// were no clinit and first creation of clinit
clInitMethod = createClInitMethodWithStaticJoinPointField(
cpg, cg, fieldName, signature, factory,
joinPointType, joinPointClass, uuid);
}
else if (noClInitMethod) {
// we are modyfing the newly created clinit
clInitMethod = createStaticJoinPointField(
cpg, cg, clInitMethod, fieldName, signature,
factory, joinPointType, joinPointClass, uuid);
}
else {
// the clinit method was existing
methods[clinitIndex] = createStaticJoinPointField(
cpg, cg, methods[clinitIndex], fieldName, signature,
factory, joinPointType, joinPointClass, uuid);
}
}
// add one step more to the InstructionList (GETFIELD(current) INVOKEINTERFACE with jp)
ih = ih.getNext();
ins = ih.getInstruction();
}
}
}
}
}
}
}
// handle the GETSTATIC instructions
// (if we have set a getstatic for collection modification jp the ins has been altered)
if (ins instanceof GETSTATIC) {
FieldInstruction gfIns = (FieldInstruction)ins;
String fieldName = gfIns.getName(cpg);
String signature = gfIns.getFieldType(cpg).toString() + " " + fieldName;
Type joinPointType = TransformationUtil.STATIC_FIELD_GET_JOIN_POINT_TYPE;
String joinPointClass = TransformationUtil.STATIC_FIELD_GET_JOIN_POINT_CLASS;
FieldMetaData fieldMetaData =
BcelMetaDataMaker.createFieldMetaData(gfIns, cpg);
String uuid = getFieldFilter(definition, classMetaData, fieldMetaData);
if (uuid != null) {
String fieldClassName = gfIns.getClassName(cpg);
if (fieldClassName.equals(cg.getClassName())) {
isMethodAdvised = true;
insertPreAdvice(il, ih, cg, fieldName, factory, joinPointType);
insertPostAdvice(il, ih.getNext(), cg, fieldName, factory, joinPointType);
// skip the creation of the join point if we
// already have one
if (!getFieldJoinPoints.contains(fieldName)) {
getFieldJoinPoints.add(fieldName);
addStaticJoinPointField(cpg, cg, fieldName, joinPointType);
if (noClInitMethod && clInitMethod == null) {
// were no clinit and first creation of clinit
clInitMethod = createClInitMethodWithStaticJoinPointField(
cpg, cg, fieldName, signature, factory,
joinPointType, joinPointClass, uuid);
}
else if (noClInitMethod) {
// we are modyfing the newly created clinit
clInitMethod = createStaticJoinPointField(
cpg, cg, clInitMethod, fieldName, signature,
factory, joinPointType, joinPointClass, uuid);
}
else {
// the clinit method was existing
methods[clinitIndex] = createStaticJoinPointField(
cpg, cg, methods[clinitIndex], fieldName, signature,
factory, joinPointType, joinPointClass, uuid);
}
}
}
}
}
else if (ins instanceof PUTSTATIC) {
FieldInstruction pfIns = (FieldInstruction)ins;
String fieldName = pfIns.getName(cpg);
String signature = pfIns.getFieldType(cpg).toString() + " " + fieldName;
Type joinPointType = TransformationUtil.STATIC_FIELD_SET_JOIN_POINT_TYPE;
String joinPointClass = TransformationUtil.STATIC_FIELD_SET_JOIN_POINT_CLASS;
FieldMetaData fieldMetaData =
BcelMetaDataMaker.createFieldMetaData(pfIns, cpg);
String uuid = setFieldFilter(definition, classMetaData, fieldMetaData);
if (uuid != null) {