34
34
import org .jboss .jandex .Type .Kind ;
35
35
import org .jboss .logging .Logger ;
36
36
import org .objectweb .asm .ClassVisitor ;
37
- import org .objectweb .asm .FieldVisitor ;
38
- import org .objectweb .asm .MethodVisitor ;
39
37
import org .objectweb .asm .Opcodes ;
40
38
41
39
import io .quarkus .arc .processor .InjectionPointInfo .TypeAndQualifiers ;
42
- import io .quarkus .gizmo .Gizmo ;
40
+ import io .quarkus .gizmo .ClassTransformer ;
41
+ import io .quarkus .gizmo .FieldDescriptor ;
42
+ import io .quarkus .gizmo .MethodCreator ;
43
+ import io .quarkus .gizmo .MethodDescriptor ;
43
44
44
45
public final class Beans {
45
46
@@ -696,7 +697,7 @@ static void validateInterceptorDecorator(BeanInfo bean, List<Throwable> errors,
696
697
if (injection .isField () && Modifier .isPrivate (injection .getTarget ().asField ().flags ())) {
697
698
bytecodeTransformerConsumer
698
699
.accept (new BytecodeTransformer (bean .getTarget ().get ().asClass ().name ().toString (),
699
- new PrivateInjectedFieldTransformFunction (injection .getTarget ().asField (). name () )));
700
+ new PrivateInjectedFieldTransformFunction (injection .getTarget ().asField ())));
700
701
}
701
702
}
702
703
}
@@ -791,7 +792,7 @@ static void validateBean(BeanInfo bean, List<Throwable> errors, Consumer<Bytecod
791
792
for (Injection injection : bean .getInjections ()) {
792
793
if (injection .isField () && Modifier .isPrivate (injection .getTarget ().asField ().flags ())) {
793
794
bytecodeTransformerConsumer .accept (new BytecodeTransformer (beanClass .name ().toString (),
794
- new PrivateInjectedFieldTransformFunction (injection .getTarget ().asField (). name () )));
795
+ new PrivateInjectedFieldTransformFunction (injection .getTarget ().asField ())));
795
796
}
796
797
}
797
798
}
@@ -1046,8 +1047,7 @@ private static Integer initAlternativePriority(AnnotationTarget target, Integer
1046
1047
Integer computedPriority = deployment .computeAlternativePriority (target , stereotypes );
1047
1048
if (computedPriority != null ) {
1048
1049
if (alternativePriority != null ) {
1049
- LOGGER .infof (
1050
- "Computed priority [%s] overrides the priority [%s] declared via @Priority" ,
1050
+ LOGGER .infof ("Computed priority [%s] overrides the priority [%s] declared via @Priority" ,
1051
1051
computedPriority , alternativePriority );
1052
1052
}
1053
1053
alternativePriority = computedPriority ;
@@ -1059,17 +1059,10 @@ static class FinalClassTransformFunction implements BiFunction<String, ClassVisi
1059
1059
1060
1060
@ Override
1061
1061
public ClassVisitor apply (String className , ClassVisitor classVisitor ) {
1062
- return new ClassVisitor (Gizmo .ASM_API_VERSION , classVisitor ) {
1063
-
1064
- @ Override
1065
- public void visit (int version , int access , String name , String signature ,
1066
- String superName ,
1067
- String [] interfaces ) {
1068
- LOGGER .debugf ("Final flag removed from bean class %s" , className );
1069
- super .visit (version , access = access & (~Opcodes .ACC_FINAL ), name , signature ,
1070
- superName , interfaces );
1071
- }
1072
- };
1062
+ ClassTransformer transformer = new ClassTransformer (className );
1063
+ transformer .removeModifiers (Opcodes .ACC_FINAL );
1064
+ LOGGER .debugf ("Final flag removed from bean class %s" , className );
1065
+ return transformer .applyTo (classVisitor );
1073
1066
}
1074
1067
}
1075
1068
@@ -1083,26 +1076,13 @@ public NoArgConstructorTransformFunction(String superClassName) {
1083
1076
1084
1077
@ Override
1085
1078
public ClassVisitor apply (String className , ClassVisitor classVisitor ) {
1086
- return new ClassVisitor (Gizmo .ASM_API_VERSION , classVisitor ) {
1087
-
1088
- @ Override
1089
- public void visit (int version , int access , String name , String signature ,
1090
- String superName ,
1091
- String [] interfaces ) {
1092
- super .visit (version , access , name , signature , superName , interfaces );
1093
- MethodVisitor mv = visitMethod (Modifier .PUBLIC | Opcodes .ACC_SYNTHETIC , Methods .INIT , "()V" , null ,
1094
- null );
1095
- mv .visitCode ();
1096
- mv .visitVarInsn (Opcodes .ALOAD , 0 );
1097
- mv .visitMethodInsn (Opcodes .INVOKESPECIAL , superClassName , Methods .INIT , "()V" ,
1098
- false );
1099
- // NOTE: it seems that we do not need to handle final fields?
1100
- mv .visitInsn (Opcodes .RETURN );
1101
- mv .visitMaxs (1 , 1 );
1102
- mv .visitEnd ();
1103
- LOGGER .debugf ("Added a no-args constructor to bean class: %s" , className );
1104
- }
1105
- };
1079
+ ClassTransformer transformer = new ClassTransformer (className );
1080
+ MethodCreator constructor = transformer .addMethod (MethodDescriptor .ofConstructor (className ));
1081
+ constructor .invokeSpecialMethod (MethodDescriptor .ofConstructor (superClassName ), constructor .getThis ());
1082
+ // NOTE: it seems that we do not need to handle final fields
1083
+ constructor .returnVoid ();
1084
+ LOGGER .debugf ("Added a no-args constructor to bean class: %s" , className );
1085
+ return transformer .applyTo (classVisitor );
1106
1086
}
1107
1087
1108
1088
}
@@ -1111,53 +1091,31 @@ static class PrivateNoArgsConstructorTransformFunction implements BiFunction<Str
1111
1091
1112
1092
@ Override
1113
1093
public ClassVisitor apply (String className , ClassVisitor classVisitor ) {
1114
- return new ClassVisitor (Gizmo .ASM_API_VERSION , classVisitor ) {
1115
-
1116
- @ Override
1117
- public MethodVisitor visitMethod (int access , String name , String descriptor , String signature ,
1118
- String [] exceptions ) {
1119
- if (name .equals (Methods .INIT )) {
1120
- access = access & (~Opcodes .ACC_PRIVATE );
1121
- LOGGER .debugf (
1122
- "Changed visibility of a private no-args constructor to package-private: %s" ,
1123
- className );
1124
- }
1125
- return super .visitMethod (access , name , descriptor , signature , exceptions );
1126
- }
1127
- };
1094
+ ClassTransformer transformer = new ClassTransformer (className );
1095
+ transformer .modifyMethod (MethodDescriptor .ofConstructor (className )).removeModifiers (Opcodes .ACC_PRIVATE );
1096
+ LOGGER .debugf ("Changed visibility of a private no-args constructor to package-private: %s" ,
1097
+ className );
1098
+ return transformer .applyTo (classVisitor );
1128
1099
}
1129
1100
1130
1101
}
1131
1102
1132
1103
// alters an injected field modifier from private to package private
1133
1104
static class PrivateInjectedFieldTransformFunction implements BiFunction <String , ClassVisitor , ClassVisitor > {
1134
1105
1135
- public PrivateInjectedFieldTransformFunction (String fieldName ) {
1136
- this .fieldName = fieldName ;
1106
+ public PrivateInjectedFieldTransformFunction (FieldInfo field ) {
1107
+ this .field = field ;
1137
1108
}
1138
1109
1139
- private String fieldName ;
1110
+ private FieldInfo field ;
1140
1111
1141
1112
@ Override
1142
1113
public ClassVisitor apply (String className , ClassVisitor classVisitor ) {
1143
- return new ClassVisitor (Gizmo .ASM_API_VERSION , classVisitor ) {
1144
-
1145
- @ Override
1146
- public FieldVisitor visitField (
1147
- int access ,
1148
- String name ,
1149
- String descriptor ,
1150
- String signature ,
1151
- Object value ) {
1152
- if (name .equals (fieldName )) {
1153
- access = access & (~Opcodes .ACC_PRIVATE );
1154
- LOGGER .debugf (
1155
- "Changed visibility of an injected private field to package-private. Field name: %s in class: %s" ,
1156
- name , className );
1157
- }
1158
- return super .visitField (access , name , descriptor , signature , value );
1159
- }
1160
- };
1114
+ ClassTransformer transformer = new ClassTransformer (className );
1115
+ transformer .modifyField (FieldDescriptor .of (field )).removeModifiers (Opcodes .ACC_PRIVATE );
1116
+ LOGGER .debugf ("Changed visibility of an injected private field to package-private. Field name: %s in class: %s" ,
1117
+ field .name (), className );
1118
+ return transformer .applyTo (classVisitor );
1161
1119
}
1162
1120
1163
1121
}
0 commit comments