Skip to content

Commit

Permalink
Merge pull request quarkusio#30740 from mkouba/qute-value-resolver-fi…
Browse files Browse the repository at this point in the history
…elds-switch

Qute ValueResolverGenerator - use gizmo switch for field properties
  • Loading branch information
gastaldi committed Jan 31, 2023
2 parents 9609ed2 + c93ba50 commit 68e0f4b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 29 deletions.
Expand Up @@ -67,6 +67,9 @@ public String getName() {
@TemplateData
public static class Bar extends Foo {

// getName() takes precedence
public final String name = "Manny";

@Override
public String getName() {
return "bar";
Expand Down
Expand Up @@ -348,11 +348,13 @@ private boolean implementResolve(ClassCreator valueResolver, String clazzName, C
}
}

BytecodeCreator zeroParamsBranch = resolve.ifZero(paramsCount).trueBranch();
if (!noParamMethods.isEmpty() || !fields.isEmpty()) {

BytecodeCreator zeroParamsBranch = resolve.ifZero(paramsCount).trueBranch();

if (!noParamMethods.isEmpty()) {
Switch.StringSwitch nameSwitch = zeroParamsBranch.stringSwitch(name);
Set<String> matchedNames = new HashSet<>();

for (MethodKey methodKey : noParamMethods) {
// No params - just invoke the method if the name matches
MethodInfo method = methodKey.method;
Expand Down Expand Up @@ -390,34 +392,42 @@ public void accept(BytecodeCreator bc) {
};
nameSwitch.caseOf(matchingNames, invokeMethod);
}
}

for (FieldInfo field : fields) {
String getterName = fieldToGetterFun != null ? fieldToGetterFun.apply(field) : null;
if (getterName != null && noneMethodMatches(methods, getterName)) {
LOGGER.debugf("Forced getter added: %s", field);
BytecodeCreator getterMatch = zeroParamsBranch.createScope();
// Match the getter name
BytecodeCreator notMatched = getterMatch.ifTrue(Gizmo.equals(getterMatch, getterMatch.load(getterName),
name)).falseBranch();
// Match the property name
notMatched.ifTrue(Gizmo.equals(notMatched, notMatched.load(field.name()),
name)).falseBranch().breakScope(getterMatch);
ResultHandle value = getterMatch.invokeVirtualMethod(
MethodDescriptor.ofMethod(clazz.name().toString(), getterName,
DescriptorUtils.typeToString(field.type())),
base);
getterMatch.returnValue(getterMatch.invokeStaticMethod(Descriptors.COMPLETED_STAGE, value));
} else {
LOGGER.debugf("Field added: %s", field);
// Match field name
BytecodeCreator fieldMatch = zeroParamsBranch
.ifTrue(Gizmo.equals(zeroParamsBranch, resolve.load(field.name()), name))
.trueBranch();
ResultHandle value = fieldMatch
.readInstanceField(FieldDescriptor.of(clazzName, field.name(), field.type().name().toString()),
base);
fieldMatch.returnValue(fieldMatch.invokeStaticMethod(Descriptors.COMPLETED_STAGE, value));
for (FieldInfo field : fields) {
String getterName = fieldToGetterFun != null ? fieldToGetterFun.apply(field) : null;
if (getterName != null && noneMethodMatches(methods, getterName) && matchedNames.add(getterName)) {
LOGGER.debugf("Forced getter added: %s", field);
List<String> matching;
if (matchedNames.add(field.name())) {
matching = List.of(getterName, field.name());
} else {
matching = List.of(getterName);
}
Consumer<BytecodeCreator> invokeMethod = new Consumer<BytecodeCreator>() {
@Override
public void accept(BytecodeCreator bc) {
ResultHandle value = bc.invokeVirtualMethod(
MethodDescriptor.ofMethod(clazz.name().toString(), getterName,
DescriptorUtils.typeToString(field.type())),
base);
bc.returnValue(bc.invokeStaticMethod(Descriptors.COMPLETED_STAGE, value));
}
};
nameSwitch.caseOf(matching, invokeMethod);
} else if (matchedNames.add(field.name())) {
LOGGER.debugf("Field added: %s", field);
Consumer<BytecodeCreator> invokeMethod = new Consumer<BytecodeCreator>() {
@Override
public void accept(BytecodeCreator bc) {
ResultHandle value = bc.readInstanceField(
FieldDescriptor.of(clazzName, field.name(), field.type().name().toString()),
base);
ResultHandle ret = bc.invokeStaticMethod(Descriptors.COMPLETED_STAGE, value);
bc.returnValue(ret);
}
};
nameSwitch.caseOf(field.name(), invokeMethod);
}
}
}

Expand Down

0 comments on commit 68e0f4b

Please sign in to comment.