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

org.openrewrite.properties.ChangePropertyKey Maven / Gradle / Ivy

There is a newer version: 8.40.2
Show 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.properties; import lombok.EqualsAndHashCode; import lombok.Value; import org.jspecify.annotations.Nullable; import org.openrewrite.ExecutionContext; import org.openrewrite.Option; import org.openrewrite.Recipe; import org.openrewrite.TreeVisitor; import org.openrewrite.internal.NameCaseConvention; import org.openrewrite.properties.tree.Properties; @Value @EqualsAndHashCode(callSuper = false) public class ChangePropertyKey extends Recipe { @Option(displayName = "Old property key", description = "The property key to rename.", example = "management.metrics.binders.files.enabled") String oldPropertyKey; @Option(displayName = "New property key", description = "The new name for the key identified by `oldPropertyKey`.", example = "management.metrics.enable.process.files") String newPropertyKey; @Option(displayName = "Use relaxed binding", description = "Whether to match the `oldPropertyKey` 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. Default is `true`. Set to `false` to use exact matching.", required = false) @Nullable Boolean relaxedBinding; @Option(displayName = "Regex", description = "Default false. If enabled, `oldPropertyKey` will be interpreted as a Regular Expression, and capture group contents will be available in `newPropertyKey`", required = false) @Nullable Boolean regex; @Override public String getDisplayName() { return "Change property key"; } @Override public String getDescription() { return "Change a property key leaving the value intact."; } @Override public TreeVisitor getVisitor() { return new ChangePropertyKeyVisitor<>(); } public class ChangePropertyKeyVisitor

extends PropertiesVisitor

{ public ChangePropertyKeyVisitor() { } @Override public Properties visitEntry(Properties.Entry entry, P p) { if (Boolean.TRUE.equals(regex)) { if (!Boolean.FALSE.equals(relaxedBinding) ? NameCaseConvention.matchesRegexRelaxedBinding(entry.getKey(), oldPropertyKey) : entry.getKey().matches(oldPropertyKey)) { entry = entry.withKey(entry.getKey().replaceFirst(oldPropertyKey, newPropertyKey)) .withPrefix(entry.getPrefix()); } } else { if (!Boolean.FALSE.equals(relaxedBinding) ? NameCaseConvention.equalsRelaxedBinding(entry.getKey(), oldPropertyKey) : entry.getKey().equals(oldPropertyKey)) { entry = entry.withKey(newPropertyKey) .withPrefix(entry.getPrefix()); } } return super.visitEntry(entry, p); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy