description |
---|
Add arbitrary metadata to LSTs |
Markers annotate LST elements with metadata. Visitors can read or attach any type implementing the Marker interface to any LST element's Markers. Markers can be used to identify search results or to communicate between Recipes during OpenRewrite execution. When an LST is printed back to source code most markers, being metadata, have no textual representation within the source. The exception is SearchResult Markers which are printed as comments that indicate the result of a search. OpenRewrite attaches framework provided markers to LSTs.
LST implementations providing Markers have at last two methods to add Markers. LST elements are immutable, and that includes their metadata, so these methods return a copy of the LST element with the specified Markers.
// Returns the existing Markers
Markers getMarkers();
// Fully replaces any existing Markers
<M extends Markable> M withMarkers(Markers markers);
The Markers class provides several convenience methods.
{% code title="Markers.java" %}
// Returns the first Marker of the specified type.
<M extends Marker> Optional<M> findFirst(Class<M> markerType)
// Returns all Markers of the specified type
<M extends Marker> List<M> findAll(Class<M> markerType)
// Add a new marker or update some existing marker via the remappingFunction
// The existence of "identity" is determined based on equality
<M extends Marker> Markers compute(M identity, BinaryOperator<M> remappingFunction)
// Add a new marker or update some existing marker via the remappingFunction
// The existence of "identity" is determined based on type equality
<M extends Marker> Markers computeByType(M identity, BinaryOperator<M> remappingFunction)
{% endcode %}
The most common form of Marker in a typical Recipe is a SearchResult. A Recipe which adds SearchResult
markers to an LST is described as a search recipe. SearchResult
s can optionally include a text description. When a SearchResult
is added to an LST element, it is printed as a comment next to the element it is attached to.
In this example, the search recipe FindAnnotations adds a SearchResult
indicating that it found a matching Annotation.
{% code title="FindAnnotations.java" %}
public J.Annotation visitAnnotation(J.Annotation annotation, ExecutionContext ctx) {
J.Annotation a = super.visitAnnotation(annotation, ctx);
if (annotationMatcher.matches(annotation)) {
aa = a.withMarkers(a.getMarkers().searchResult());
}
return a;
}
{% endcode %}
{% code title="FindMissingTypes.java" %}
public J.Identifier visitIdentifier(J.Identifier identifier, ExecutionContext ctx) {
J.Identifier ident = super.visitIdentifier(identifier, ctx);
if (isNullType(ident.getType()) && !isAllowedToHaveNullType(ident)) {
ident = ident.withMarkers(ident.getMarkers().searchResult("Identifier type is null"));
}
return ident;
}
{% endcode %}
SearchResult Markers are written back to source code as comments, including the description if one is present.
For example: if the FindMethods("A singleArg(String)")
recipe were applied to this Java source file:
class Test {
void test() {
new java.util.ArrayList<String>().forEach(new A()::singleArg);
}
}
The search result would be visualized like so:
class Test {
void test() {
new java.util.ArrayList<String>().forEach(new A()::/*~~>*/singleArg);
}
}