-
Notifications
You must be signed in to change notification settings - Fork 612
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
[epilogue] allow arrays with @Logged types to be logged #7499
Open
Daniel1464
wants to merge
4
commits into
wpilibsuite:main
Choose a base branch
from
Daniel1464:fix-array-logging
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+127
−14
Open
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
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
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 |
---|---|---|
|
@@ -4,33 +4,39 @@ | |
|
||
package edu.wpi.first.epilogue.processor; | ||
|
||
import java.util.Collection; | ||
import javax.annotation.processing.ProcessingEnvironment; | ||
import javax.lang.model.element.Element; | ||
import javax.lang.model.element.Modifier; | ||
import javax.lang.model.type.ArrayType; | ||
import javax.lang.model.type.PrimitiveType; | ||
import javax.lang.model.type.TypeMirror; | ||
import javax.tools.Diagnostic; | ||
|
||
/** | ||
* Arrays of bytes, ints, flats, doubles, booleans, Strings, and struct-serializable objects can be | ||
* logged. No other array types - including multidimensional arrays - are loggable. | ||
*/ | ||
public class ArrayHandler extends ElementHandler { | ||
private final StructHandler m_structHandler; | ||
private final LoggableHandler m_loggableHandler; | ||
private final TypeMirror m_javaLangString; | ||
|
||
protected ArrayHandler(ProcessingEnvironment processingEnv) { | ||
protected ArrayHandler( | ||
ProcessingEnvironment processingEnv, Collection<? extends Element> loggedTypes) { | ||
super(processingEnv); | ||
|
||
// use a struct handler for managing struct arrays | ||
m_structHandler = new StructHandler(processingEnv); | ||
|
||
m_loggableHandler = new LoggableHandler(processingEnv, loggedTypes); | ||
m_javaLangString = lookupTypeElement(processingEnv, "java.lang.String").asType(); | ||
} | ||
|
||
@Override | ||
public boolean isLoggable(Element element) { | ||
return dataType(element) instanceof ArrayType arr | ||
&& isLoggableComponentType(arr.getComponentType()); | ||
&& (isLoggableComponentType(arr.getComponentType()) | ||
|| isCustomLoggableArray(arr.getComponentType(), element)); | ||
} | ||
|
||
/** | ||
|
@@ -51,6 +57,30 @@ public boolean isLoggableComponentType(TypeMirror type) { | |
|| m_processingEnv.getTypeUtils().isAssignable(type, m_javaLangString); | ||
} | ||
|
||
/** | ||
* Checks to see if an array has a type that either contains a @Logged annotation or has a custom | ||
* logger. Will fail if the array is not final. | ||
* | ||
* @param componentType The component type of the array | ||
* @param arrayElement The element of the array | ||
* @return Whether the array | ||
*/ | ||
private boolean isCustomLoggableArray(TypeMirror componentType, Element arrayElement) { | ||
if (arrayElement.getModifiers().contains(Modifier.FINAL)) { | ||
return m_loggableHandler.isLoggableType(componentType); | ||
} else { | ||
m_processingEnv | ||
.getMessager() | ||
.printMessage( | ||
Diagnostic.Kind.NOTE, | ||
"[EPILOGUE] Excluded from logs because array " | ||
+ arrayElement | ||
+ " isn't marked as final(or is returned from a method).", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You could check the type of the element to be |
||
arrayElement); | ||
return false; | ||
} | ||
} | ||
|
||
@Override | ||
public String logInvocation(Element element) { | ||
var dataType = dataType(element); | ||
|
@@ -67,6 +97,18 @@ public String logInvocation(Element element) { | |
+ ", " | ||
+ m_structHandler.structAccess(componentType) | ||
+ ")"; | ||
} else if (m_loggableHandler.isLoggableType(componentType)) { | ||
var elementAccess = elementAccess(element); | ||
var logInvocation = | ||
m_loggableHandler.addLogPathSuffix( | ||
m_loggableHandler.logInvocation(element, componentType, elementAccess + "[i]"), | ||
"\"/\" + i"); | ||
return """ | ||
for (int i = 0; i < %s.length; i++) { | ||
%s; | ||
} | ||
""" | ||
.formatted(elementAccess, logInvocation); | ||
} else { | ||
// Primitive or string array | ||
return "backend.log(\"" + loggedName(element) + "\", " + elementAccess(element) + ")"; | ||
|
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
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
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.
Note that this will cause two messages to be emitted: one for the general "not a loggable type", and this message