-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for simple re-usable
AddPropertyVisitor
(#4207)
- Loading branch information
Showing
3 changed files
with
202 additions
and
61 deletions.
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
63 changes: 63 additions & 0 deletions
63
rewrite-maven/src/main/java/org/openrewrite/maven/AddPropertyVisitor.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,63 @@ | ||
/* | ||
* Copyright 2022 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.maven; | ||
|
||
import lombok.EqualsAndHashCode; | ||
import lombok.Value; | ||
import org.openrewrite.ExecutionContext; | ||
import org.openrewrite.internal.lang.Nullable; | ||
import org.openrewrite.xml.AddToTagVisitor; | ||
import org.openrewrite.xml.ChangeTagValueVisitor; | ||
import org.openrewrite.xml.TagNameComparator; | ||
import org.openrewrite.xml.tree.Xml; | ||
|
||
import java.util.Optional; | ||
|
||
@Value | ||
@EqualsAndHashCode(callSuper = false) | ||
public class AddPropertyVisitor extends MavenIsoVisitor<ExecutionContext> { | ||
String key; | ||
String value; | ||
@Nullable Boolean preserveExistingValue; | ||
|
||
@Override | ||
public Xml.Document visitDocument(Xml.Document document, ExecutionContext ctx) { | ||
Xml.Document d = super.visitDocument(document, ctx); | ||
Xml.Tag root = d.getRoot(); | ||
Optional<Xml.Tag> properties = root.getChild("properties"); | ||
if (!properties.isPresent()) { | ||
Xml.Tag propertiesTag = Xml.Tag.build("<properties>\n<" + key + ">" + value + "</" + key + ">\n</properties>"); | ||
d = (Xml.Document) new AddToTagVisitor<ExecutionContext>(root, propertiesTag, new MavenTagInsertionComparator(root.getChildren())).visitNonNull(d, ctx); | ||
} else if (!properties.get().getChildValue(key).isPresent()) { | ||
Xml.Tag propertyTag = Xml.Tag.build("<" + key + ">" + value + "</" + key + ">"); | ||
d = (Xml.Document) new AddToTagVisitor<>(properties.get(), propertyTag, new TagNameComparator()).visitNonNull(d, ctx); | ||
} | ||
if (d != document) { | ||
maybeUpdateModel(); | ||
} | ||
return d; | ||
} | ||
|
||
@Override | ||
public Xml.Tag visitTag(Xml.Tag tag, ExecutionContext ctx) { | ||
if (!Boolean.TRUE.equals(preserveExistingValue) | ||
&& isPropertyTag() && key.equals(tag.getName()) | ||
&& !value.equals(tag.getValue().orElse(null))) { | ||
doAfterVisit(new ChangeTagValueVisitor<>(tag, value)); | ||
} | ||
return super.visitTag(tag, ctx); | ||
} | ||
} |
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