All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openrewrite.yaml.search.FindProperty Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2021 the original author or authors.
 * 

* 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 *

* https://www.apache.org/licenses/LICENSE-2.0 *

* 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.yaml.search; import lombok.EqualsAndHashCode; import lombok.Value; import org.jspecify.annotations.Nullable; import org.openrewrite.*; import org.openrewrite.internal.NameCaseConvention; import org.openrewrite.internal.StringUtils; import org.openrewrite.marker.SearchResult; import org.openrewrite.yaml.YamlIsoVisitor; import org.openrewrite.yaml.YamlVisitor; import org.openrewrite.yaml.tree.Yaml; import java.util.HashSet; import java.util.Iterator; import java.util.Set; @Value @EqualsAndHashCode(callSuper = false) public class FindProperty extends Recipe { @Option(displayName = "Property key", description = "The key to look for. Glob is supported.", example = "management.metrics.binders.*.enabled") String propertyKey; @Option(displayName = "Use relaxed binding", description = "Whether to match the `propertyKey` using [relaxed binding](https://docs.spring.io/spring-boot/docs/2.5.6/reference/html/features.html#features.external-config.typesafe-configuration-properties.relaxed-binding) " + "rules. Defaults to `true`. If you want to use exact matching in your search, set this to `false`.", required = false) @Nullable Boolean relaxedBinding; @Override public String getDisplayName() { return "Find YAML properties"; } @Override public String getDescription() { return "Find YAML properties that match the specified `propertyKey`. Expects dot notation for nested YAML mappings, similar to how Spring Boot interprets `application.yml` files."; } @Override public TreeVisitor getVisitor() { return new YamlIsoVisitor() { @Override public Yaml.Mapping.Entry visitMappingEntry(Yaml.Mapping.Entry entry, ExecutionContext ctx) { Yaml.Mapping.Entry e = super.visitMappingEntry(entry, ctx); String prop = getProperty(getCursor()); if (!Boolean.FALSE.equals(relaxedBinding) ? NameCaseConvention.matchesGlobRelaxedBinding(prop, propertyKey) : StringUtils.matchesGlob(prop, propertyKey)) { e = e.withValue(SearchResult.found(e.getValue())); } return e; } }; } public static Set find(Yaml y, String propertyKey, @Nullable Boolean relaxedBinding) { YamlVisitor> findVisitor = new YamlIsoVisitor>() { @Override public Yaml.Mapping.Entry visitMappingEntry(Yaml.Mapping.Entry entry, Set values) { Yaml.Mapping.Entry e = super.visitMappingEntry(entry, values); String prop = getProperty(getCursor()); if (!Boolean.FALSE.equals(relaxedBinding) ? NameCaseConvention.matchesGlobRelaxedBinding(prop, propertyKey) : StringUtils.matchesGlob(prop, propertyKey)) { values.add(entry.getValue()); } return e; } }; Set values = new HashSet<>(); findVisitor.visit(y, values); return values; } public static boolean matches(Cursor cursor, String propertyKey, @Nullable Boolean relaxedBinding) { String prop = getProperty(cursor); return !Boolean.FALSE.equals(relaxedBinding) ? NameCaseConvention.matchesGlobRelaxedBinding(prop, propertyKey) : StringUtils.matchesGlob(prop, propertyKey); } private static String getProperty(Cursor cursor) { StringBuilder asProperty = new StringBuilder(); Iterator path = cursor.getPath(); int i = 0; while (path.hasNext()) { Object next = path.next(); if (next instanceof Yaml.Mapping.Entry) { Yaml.Mapping.Entry entry = (Yaml.Mapping.Entry) next; if (i++ > 0) { asProperty.insert(0, '.'); } asProperty.insert(0, entry.getKey().getValue()); } } return asProperty.toString(); } }