-
Notifications
You must be signed in to change notification settings - Fork 80
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
Add Transient annotation to private accessor methods #425
Merged
Merged
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
9d0ecdb
Initial implementation with test
evie-lau 7b13dc6
Polishing and add another test
evie-lau 8cb83a6
Check if the method return value is a field from the parent class
evie-lau 9c611b5
Merge branch 'main' into transientGetter
evie-lau e196629
Prevent applying annotation twice; add unhandled case
timtebeek 932ab06
Add test to show annotated field not changed again
timtebeek b975a34
Handle FieldAccess and Literal returns, add test for Literal
evie-lau a1092f7
Cleanup
evie-lau b0f9e2a
Merge branch 'main' into transientGetter
timtebeek 17c703c
Small improvements and comments
evie-lau c2a51b5
Merge branch 'main' into transientGetter
evie-lau 58893dd
Refactor, add test
evie-lau bf9dab1
Handle private accessor in inner class of an entity to match WAMT beh…
evie-lau ef81876
Fix test formatting
evie-lau 8720c86
Merge branch 'main' into transientGetter
evie-lau 2c72bf8
Merge branch 'main' into transientGetter
evie-lau 32a6cfe
Apply suggestions from code review
timtebeek f35e327
Merge branch 'main' into transientGetter
evie-lau f42384d
Add protected getter to test
evie-lau d0a9660
Check all returns in method for class field variables
evie-lau d6e3b11
Add complex logic test without field access
evie-lau 3479ecd
Refactor for efficiency
evie-lau 2613275
Add logic comments
evie-lau File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
126 changes: 126 additions & 0 deletions
126
...main/java/org/openrewrite/java/migrate/javax/AddTransientAnnotationToPrivateAccessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* <p> | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.openrewrite.java.migrate.javax; | ||
|
||
import lombok.EqualsAndHashCode; | ||
import lombok.Value; | ||
import org.openrewrite.ExecutionContext; | ||
import org.openrewrite.Preconditions; | ||
import org.openrewrite.Recipe; | ||
import org.openrewrite.TreeVisitor; | ||
import org.openrewrite.java.JavaIsoVisitor; | ||
import org.openrewrite.java.JavaParser; | ||
import org.openrewrite.java.JavaTemplate; | ||
import org.openrewrite.java.search.FindAnnotations; | ||
import org.openrewrite.java.search.UsesType; | ||
import org.openrewrite.java.tree.J; | ||
import org.openrewrite.java.tree.JavaType; | ||
import org.openrewrite.java.tree.Statement; | ||
|
||
import java.util.*; | ||
import java.util.stream.Collectors; | ||
|
||
@Value | ||
@EqualsAndHashCode(callSuper = false) | ||
public class AddTransientAnnotationToPrivateAccessor extends Recipe { | ||
|
||
@Override | ||
public String getDisplayName() { | ||
return "Private accessor methods must have a `@Transient` annotation"; | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return "According to the JPA 2.1 specification, when property access is used, the property accessor methods " + | ||
"must be public or protected. OpenJPA ignores any private accessor methods, whereas EclipseLink persists " + | ||
"those attributes. To ignore private accessor methods in EclipseLink, the methods must have a " + | ||
"`@Transient` annotation."; | ||
} | ||
|
||
|
||
@Override | ||
public TreeVisitor<?, ExecutionContext> getVisitor() { | ||
return Preconditions.check( | ||
new UsesType<>("javax.persistence.Entity", true), | ||
new JavaIsoVisitor<ExecutionContext>() { | ||
@Override | ||
public J.MethodDeclaration visitMethodDeclaration(J.MethodDeclaration md, ExecutionContext ctx) { | ||
if (isPrivateAccessorMethodWithoutTransientAnnotation(md)) {// Add @Transient annotation | ||
maybeAddImport("javax.persistence.Transient"); | ||
return JavaTemplate.builder("@Transient") | ||
.contextSensitive() | ||
.javaParser(JavaParser.fromJavaVersion().classpathFromResources(ctx, "javax.persistence-api-2.2")) | ||
.imports("javax.persistence.Transient") | ||
.build() | ||
.apply(getCursor(), md.getCoordinates().addAnnotation(Comparator.comparing(J.Annotation::getSimpleName))); | ||
} | ||
return md; | ||
} | ||
|
||
private boolean isPrivateAccessorMethodWithoutTransientAnnotation(J.MethodDeclaration method) { | ||
return method.hasModifier(J.Modifier.Type.Private) | ||
&& method.getParameters().get(0) instanceof J.Empty | ||
&& method.getReturnTypeExpression().getType() != JavaType.Primitive.Void | ||
&& FindAnnotations.find(method, "javax.persistence.Transient").isEmpty() | ||
&& methodReturnsFieldFromClass(method); | ||
} | ||
|
||
/** | ||
* Check if the given method returns a field defined in the parent class | ||
*/ | ||
private boolean methodReturnsFieldFromClass(J.MethodDeclaration method) { | ||
// Get all return statements in method | ||
List<J.Return> returns = new ArrayList<>(); | ||
JavaIsoVisitor<List<J.Return>> returnGetter = new JavaIsoVisitor<List<J.Return>>() { | ||
@Override | ||
public J.Return visitReturn(J.Return ret, List<J.Return> statements) { | ||
statements.add(ret); | ||
return super.visitReturn(ret, statements); | ||
} | ||
}; | ||
returnGetter.visitBlock(method.getBody(), returns); | ||
|
||
// Get all return values | ||
List<?> returnValues = returns.stream() | ||
.map(J.Return::getExpression) | ||
.filter(Objects::nonNull) | ||
.map(expression -> { | ||
if (expression instanceof J.FieldAccess) { | ||
return ((J.FieldAccess) expression).getName().getFieldType(); | ||
} else if (expression instanceof J.Identifier) { // ie: return field; | ||
return ((J.Identifier) expression).getFieldType(); | ||
} else { | ||
return null; | ||
} | ||
}) | ||
.filter(Objects::nonNull) | ||
.collect(Collectors.toList()); | ||
|
||
// Check if any return values are a class field | ||
J.ClassDeclaration classDecl = getCursor().dropParentUntil(J.ClassDeclaration.class::isInstance).getValue(); | ||
return classDecl.getBody().getStatements().stream() | ||
.filter(J.VariableDeclarations.class::isInstance) | ||
.map(J.VariableDeclarations.class::cast) | ||
.map(J.VariableDeclarations::getVariables) | ||
.flatMap(Collection::stream) | ||
.map(var -> var.getName().getFieldType()) | ||
.filter(Objects::nonNull) | ||
.anyMatch(returnValues::contains); | ||
} | ||
} | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In a way we're iterating over returns twice; first as we visit each return, and then again to extract the returned field type; would it make sense to fold those into one by doing this extract in the visitor just above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch, will update to do that. Also I noticed that I'm collecting the class variables in each method, so I'll extract that to a higher scope variable to be reused.