org.redisson.config.PropertiesConvertor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
/**
* Copyright (c) 2013-2024 Nikita Koksharov
*
* 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
*
* http://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.redisson.config;
import java.util.*;
import java.util.function.Function;
/**
*
* @author Nikita Koksharov
*
*/
public class PropertiesConvertor {
public static String toYaml(String suffix, Iterable propertyNames, Function resolver, boolean caseSensitive) {
Map map = new HashMap<>();
for (String propertyName : propertyNames) {
if (!propertyName.startsWith(suffix)) {
continue;
}
List pps = Arrays.asList(propertyName.replace(suffix, "").split("\\."));
String value = resolver.apply(propertyName);
String name = convertKey(pps.get(0), caseSensitive);
if (pps.size() == 2) {
Map m = (Map) map.computeIfAbsent(name, k -> new HashMap());
String subName = convertKey(pps.get(1), caseSensitive);
m.put(subName, value);
} else {
map.put(name, value);
}
}
StringBuilder yaml = new StringBuilder();
for (Map.Entry entry : map.entrySet()) {
if (entry.getValue() instanceof Map) {
yaml.append(entry.getKey()).append(":").append("\n");
Map m = (Map) entry.getValue();
for (Map.Entry subEntry : m.entrySet()) {
yaml.append(" ").append(subEntry.getKey()).append(": ");
addValue(yaml, subEntry);
yaml.append("\n");
}
} else {
yaml.append(entry.getKey()).append(": ");
addValue(yaml, entry);
yaml.append("\n");
}
}
return yaml.toString();
}
private static String convertKey(String key, boolean caseSensitive) {
if (!caseSensitive) {
return key.replace("-", "");
}
String[] parts = key.split("-");
StringBuilder builder = new StringBuilder();
builder.append(parts[0]);
for (int i = 1; i < parts.length; i++) {
builder.append(parts[i].substring(0, 1).toUpperCase())
.append(parts[i].substring(1));
}
return builder.toString();
}
private static final Set LIST_NODES = new HashSet<>(
Arrays.asList("node-addresses", "nodeaddresses", "slave-addresses", "slaveaddresses", "addresses"));
private static final Set CLASS_PROPERTIES = new HashSet<>(
Arrays.asList("codec",
"load-balancer", "loadbalancer",
"address-resolver-group-factory", "addressresolvergroupfactory",
"netty-hook", "nettyhook",
"nat-mapper", "natmapper",
"name-mapper", "namemapper",
"command-mapper", "commandmapper",
"failed-slave-node-detector", "failedSlaveNodeDetector",
"connection-listener", "connectionlistener",
"credentials-resolver", "credentialsresolver"
));
private static void addValue(StringBuilder yaml, Map.Entry subEntry) {
String value = (String) subEntry.getValue();
if (value.contains(",") || LIST_NODES.contains(subEntry.getKey())) {
for (String part : value.split(",")) {
yaml.append("\n ").append("- \"").append(part.trim()).append("\"");
}
return;
}
if (CLASS_PROPERTIES.contains(subEntry.getKey())) {
value = "!<" + value + "> {}";
} else {
try {
Long.parseLong(value);
} catch (NumberFormatException e) {
if (!Boolean.parseBoolean(value)
&& !"null".equals(value)) {
value = "\"" + value + "\"";
}
}
}
yaml.append(value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy