From f731eb10de7d35f41a68b4776e8154535e97b83b Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Tue, 8 Jun 2021 14:27:31 +0300 Subject: [PATCH] Feature - Helidon CDI integration. #3649 --- .../redisson/config/PropertiesConvertor.java | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 redisson/src/main/java/org/redisson/config/PropertiesConvertor.java diff --git a/redisson/src/main/java/org/redisson/config/PropertiesConvertor.java b/redisson/src/main/java/org/redisson/config/PropertiesConvertor.java new file mode 100644 index 000000000..92e271cd3 --- /dev/null +++ b/redisson/src/main/java/org/redisson/config/PropertiesConvertor.java @@ -0,0 +1,106 @@ +/** + * Copyright (c) 2013-2021 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) { + 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); + if (pps.size() == 2) { + Map m = (Map) map.computeIfAbsent(pps.get(0), k -> new HashMap()); + m.put(pps.get(1), value); + } else { + map.put(pps.get(0), value); + } + } + + StringBuilder yaml = new StringBuilder(); + for (Map.Entry entry : map.entrySet()) { + if (entry.getValue() instanceof Map) { + yaml.append(convertKey(entry.getKey())).append(":").append("\n"); + + Map m = (Map) entry.getValue(); + for (Map.Entry subEntry : m.entrySet()) { + yaml.append(" ").append(convertKey(subEntry.getKey())).append(": "); + addValue(yaml, subEntry); + yaml.append("\n"); + } + } else { + yaml.append(convertKey(entry.getKey())).append(": "); + addValue(yaml, entry); + yaml.append("\n"); + } + } + return yaml.toString(); + } + + private static String convertKey(String key) { + if (!key.contains("-")) { + return key; + } + + 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 void addValue(StringBuilder yaml, Map.Entry subEntry) { + String value = (String) subEntry.getValue(); + if (value.contains(",")) { + for (String part : value.split(",")) { + yaml.append("\n ").append("- \"").append(part.trim()).append("\""); + } + return; + } + + if ("codec".equals(subEntry.getKey()) + || "loadBalancer".equals(subEntry.getKey())) { + value = "!<" + value + "> {}"; + } else { + try { + Long.parseLong(value); + } catch (NumberFormatException e) { + if (!Boolean.parseBoolean(value) + && !"null".equals(value)) { + value = "\"" + value + "\""; + } + } + } + + yaml.append(value); + } + +}