Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prefer get getters over is getters in recorders #26895

Merged
merged 1 commit into from
Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public Property[] apply(Class<?> type) {
Method[] methods = type.getMethods();

Map<String, Method> getters = new HashMap<>();
Map<String, Method> isGetters = new HashMap<>();
Map<String, Method> setters = new HashMap<>();
for (Method i : methods) {
if (i.getName().startsWith("get") && i.getName().length() > 3 && i.getParameterCount() == 0
Expand All @@ -37,16 +38,21 @@ public Property[] apply(Class<?> type) {
} else if (i.getName().startsWith("is") && i.getName().length() > 3 && i.getParameterCount() == 0
&& (i.getReturnType() == boolean.class || i.getReturnType() == Boolean.class)) {
String name = Character.toLowerCase(i.getName().charAt(2)) + i.getName().substring(3);
getters.put(name, i);
isGetters.put(name, i);
} else if (i.getName().startsWith("set") && i.getName().length() > 3 && i.getParameterCount() == 1) {
String name = Character.toLowerCase(i.getName().charAt(3)) + i.getName().substring(4);
setters.put(name, i);
}
}

Set<String> names = new HashSet<>(getters.keySet());
names.addAll(isGetters.keySet());
names.addAll(setters.keySet());
for (String i : names) {
Method get = getters.get(i);
if (get == null) {
get = isGetters.get(i); // If there is no "get" getter, use the "is" getter
}
Method set = setters.get(i);
if (get == null) {
ret.add(new Property(i, get, set, set.getParameterTypes()[0]));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,19 +341,19 @@ public void testObjects() throws Exception {
public void testJavaBeanWithBoolean() throws Exception {
runTest(generator -> {
TestRecorder recorder = generator.getRecordingProxy(TestRecorder.class);
TestJavaBeanWithBoolean newBean = new TestJavaBeanWithBoolean(true, true, true);
TestJavaBeanWithBoolean newBean = new TestJavaBeanWithBoolean(true, true, true, true);
recorder.bean(newBean);
}, new TestJavaBeanWithBoolean(true, true, true));
}, new TestJavaBeanWithBoolean(true, true, true, true));
runTest(generator -> {
TestRecorder recorder = generator.getRecordingProxy(TestRecorder.class);
TestJavaBeanWithBoolean newBean = new TestJavaBeanWithBoolean(false, false, false);
TestJavaBeanWithBoolean newBean = new TestJavaBeanWithBoolean(false, false, false, false);
recorder.bean(newBean);
}, new TestJavaBeanWithBoolean(false, false, false));
}, new TestJavaBeanWithBoolean(false, false, false, false));
runTest(generator -> {
TestRecorder recorder = generator.getRecordingProxy(TestRecorder.class);
TestJavaBeanWithBoolean newBean = new TestJavaBeanWithBoolean(true, null, null);
TestJavaBeanWithBoolean newBean = new TestJavaBeanWithBoolean(true, null, null, null);
recorder.bean(newBean);
}, new TestJavaBeanWithBoolean(true, null, null));
}, new TestJavaBeanWithBoolean(true, null, null, null));
}

void runTest(Consumer<BytecodeRecorderImpl> generator, Object... expected) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ public class TestJavaBeanWithBoolean {
private Boolean boxedBool;
private Boolean boxedBoolWithIsGetter;

private Boolean boxedBoolWithIsAndGetGetters;

public TestJavaBeanWithBoolean() {
}

public TestJavaBeanWithBoolean(boolean bool, Boolean boxedBool, Boolean boxedBoolWithIsGetter) {
public TestJavaBeanWithBoolean(boolean bool, Boolean boxedBool, Boolean boxedBoolWithIsGetter,
Boolean boxedBoolWithIsAndGetGetters) {
this.bool = bool;
this.boxedBool = boxedBool;
this.boxedBoolWithIsGetter = boxedBoolWithIsGetter;
this.boxedBoolWithIsAndGetGetters = boxedBoolWithIsAndGetGetters;
}

@Override
Expand All @@ -23,6 +27,7 @@ public String toString() {
"bool=" + bool +
", boxedBool=" + boxedBool +
", boxedBoolWithIsGetter=" + boxedBoolWithIsGetter +
", boxedBoolWithIsAndGetGetters=" + boxedBoolWithIsAndGetGetters +
'}';
}

Expand All @@ -34,12 +39,13 @@ public boolean equals(Object o) {
return false;
TestJavaBeanWithBoolean that = (TestJavaBeanWithBoolean) o;
return bool == that.bool && Objects.equals(boxedBool, that.boxedBool)
&& Objects.equals(boxedBoolWithIsGetter, that.boxedBoolWithIsGetter);
&& Objects.equals(boxedBoolWithIsGetter, that.boxedBoolWithIsGetter)
&& Objects.equals(boxedBoolWithIsAndGetGetters, that.boxedBoolWithIsAndGetGetters);
}

@Override
public int hashCode() {
return Objects.hash(bool, boxedBool, boxedBoolWithIsGetter);
return Objects.hash(bool, boxedBool, boxedBoolWithIsGetter, boxedBoolWithIsAndGetGetters);
}

public boolean isBool() {
Expand All @@ -64,7 +70,26 @@ public Boolean isBoxedBoolWithIsGetter() {
return boxedBoolWithIsGetter;
}

// this is not actually a getter (takes a parameter)
public Boolean getBoxedBoolWithIsGetter(String parameter) {
return !boxedBoolWithIsGetter;
}

public void setBoxedBoolWithIsGetter(Boolean boxedBoolWithIsGetter) {
this.boxedBoolWithIsGetter = boxedBoolWithIsGetter;
}

// method unwraps boxedBoolWithIsAndGetGetters to a default value if it is null
public boolean isBoxedBoolWithIsAndGetGetters() {
return (boxedBoolWithIsAndGetGetters != null) ? boxedBoolWithIsAndGetGetters : true;
}

// Using both the 'is' prefix and the 'get' prefix, to check the property still get set if there are two getters
public Boolean getBoxedBoolWithIsAndGetGetters() {
return boxedBoolWithIsAndGetGetters;
}

public void setBoxedBoolWithIsAndGetGetters(Boolean boxedBoolWithIsAndGetGetters) {
this.boxedBoolWithIsAndGetGetters = boxedBoolWithIsAndGetGetters;
}
}