优化AnyValue.loadFromProperties

This commit is contained in:
Redkale
2022-12-11 17:57:44 +08:00
parent d36c168faa
commit 93ce83f137
3 changed files with 158 additions and 63 deletions

View File

@@ -393,14 +393,27 @@ public final class Application {
lib = lib.isEmpty() ? confDir : (lib + ";" + confDir);
Server.loadLib(classLoader, logger, lib);
}
System.setProperty("redkale.net.transport.poolmaxconns", "100");
System.setProperty("redkale.net.transport.pinginterval", "30");
System.setProperty("redkale.net.transport.checkinterval", "30");
System.setProperty("redkale.convert.tiny", "true");
System.setProperty("redkale.convert.pool.size", "128");
System.setProperty("redkale.convert.writer.buffer.defsize", "4096");
System.setProperty("redkale.trace.enable", "false");
if (System.getProperty("redkale.net.transport.poolmaxconns") == null) {
System.setProperty("redkale.net.transport.poolmaxconns", "100");
}
if (System.getProperty("redkale.net.transport.pinginterval") == null) {
System.setProperty("redkale.net.transport.pinginterval", "30");
}
if (System.getProperty("redkale.net.transport.checkinterval") == null) {
System.setProperty("redkale.net.transport.checkinterval", "30");
}
if (System.getProperty("redkale.convert.tiny") == null) {
System.setProperty("redkale.convert.tiny", "true");
}
if (System.getProperty("redkale.convert.pool.size") == null) {
System.setProperty("redkale.convert.pool.size", "128");
}
if (System.getProperty("redkale.convert.writer.buffer.defsize") == null) {
System.setProperty("redkale.convert.writer.buffer.defsize", "4096");
}
if (System.getProperty("redkale.trace.enable") == null) {
System.setProperty("redkale.trace.enable", "false");
}
this.resourceFactory.register(BsonFactory.root());
this.resourceFactory.register(JsonFactory.root());
@@ -740,7 +753,7 @@ public final class Application {
}
});
//原有properties节点上的属性同步到dyncEnvs
propertiesConf.forEach((k, v) -> dyncProps.put("redkale.properties." + k, v));
propertiesConf.forEach((k, v) -> dyncProps.put("redkale.properties[" + k + "]", v));
oldEnvs.forEach((k, v) -> { //去重后的配置项
String prefix = "redkale.properties.property[" + propertyIndex.getAndIncrement() + "]";
dyncProps.put(prefix + ".name", k);
@@ -786,16 +799,16 @@ public final class Application {
if (key.toString().endsWith(".name")) {
logger.log(Level.WARNING, "skip illegal key " + key + " in source config, key cannot endsWith '.name'");
} else {
sourceProperties.put(key, val);
this.sourceProperties.put(key, val);
}
} else if (key.toString().startsWith("redkale.mq.") || key.toString().startsWith("redkale.mq[")) {
if (key.toString().endsWith(".name")) {
logger.log(Level.WARNING, "skip illegal key " + key + " in mq config, key cannot endsWith '.name'");
} else {
messageProperties.put(key, val);
this.messageProperties.put(key, val);
}
} else if (key.toString().startsWith("redkale.cluster.")) {
clusterProperties.put(key, val);
this.clusterProperties.put(key, val);
}
});
}
@@ -818,10 +831,10 @@ public final class Application {
} else if (key.startsWith("mimetype.property.")) {
MimeType.add(key.substring("mimetype.property.".length()), value);
} else if (key.startsWith("property.")) {
envProperties.put(key, value);
this.envProperties.put(key, value);
resourceFactory.register(key, value);
} else {
envProperties.put(key, value);
this.envProperties.put(key, value);
resourceFactory.register(false, "property." + key, value);
}
}
@@ -921,8 +934,8 @@ public final class Application {
try {
LogManager manager = LogManager.getLogManager();
manager.readConfiguration(new ByteArrayInputStream(out.toByteArray()));
loggingProperties.clear();
loggingProperties.putAll(properties);
this.loggingProperties.clear();
this.loggingProperties.putAll(properties);
Enumeration<String> en = manager.getLoggerNames();
while (en.hasMoreElements()) {
for (Handler handler : manager.getLogger(en.nextElement()).getHandlers()) {
@@ -1772,6 +1785,7 @@ public final class Application {
conf = AnyValue.loadFromProperties(text).getAnyValue("redkale");
}
if (fromCache) ((DefaultAnyValue) conf).addValue("[config-from-cache]", "true");
return conf;
}
@@ -1870,7 +1884,7 @@ public final class Application {
for (ResourceEvent<String> event : events) {
if (namespace != null && namespace.startsWith("logging")) {
if (event.newValue() == null) {
if (loggingProperties.containsKey(event.name())) {
if (this.loggingProperties.containsKey(event.name())) {
loggingRemovedKeys.add(event.name());
}
} else {
@@ -1883,9 +1897,9 @@ public final class Application {
if (event.name().endsWith(".name")) {
logger.log(Level.WARNING, "skip illegal key " + event.name() + " in source config " + (namespace == null ? "" : namespace) + ", key cannot endsWith '.name'");
} else {
if (!Objects.equals(event.newValue(), sourceProperties.getProperty(event.name()))) {
if (!Objects.equals(event.newValue(), this.sourceProperties.getProperty(event.name()))) {
if (event.newValue() == null) {
if (sourceProperties.containsKey(event.name())) {
if (this.sourceProperties.containsKey(event.name())) {
sourceRemovedKeys.add(event.name());
}
} else {
@@ -1897,9 +1911,9 @@ public final class Application {
if (event.name().endsWith(".name")) {
logger.log(Level.WARNING, "skip illegal key " + event.name() + " in mq config " + (namespace == null ? "" : namespace) + ", key cannot endsWith '.name'");
} else {
if (!Objects.equals(event.newValue(), messageProperties.getProperty(event.name()))) {
if (!Objects.equals(event.newValue(), this.messageProperties.getProperty(event.name()))) {
if (event.newValue() == null) {
if (messageProperties.containsKey(event.name())) {
if (this.messageProperties.containsKey(event.name())) {
messageRemovedKeys.add(event.name());
}
} else {
@@ -1908,9 +1922,9 @@ public final class Application {
}
}
} else if (event.name().startsWith("redkale.cluster.")) {
if (!Objects.equals(event.newValue(), clusterProperties.getProperty(event.name()))) {
if (!Objects.equals(event.newValue(), this.clusterProperties.getProperty(event.name()))) {
if (event.newValue() == null) {
if (clusterProperties.containsKey(event.name())) {
if (this.clusterProperties.containsKey(event.name())) {
clusterRemovedKeys.add(event.name());
}
} else {
@@ -1930,10 +1944,10 @@ public final class Application {
MimeType.add(propName, event.newValue());
}
} else if (event.name().startsWith("property.")) {
if (!Objects.equals(event.newValue(), envProperties.getProperty(event.name()))) {
if (!Objects.equals(event.newValue(), this.envProperties.getProperty(event.name()))) {
envRegisterProps.put(event.name(), event.newValue());
if (event.newValue() == null) {
if (envProperties.containsKey(event.name())) {
if (this.envProperties.containsKey(event.name())) {
envRemovedKeys.add(event.name());
}
} else {
@@ -1941,12 +1955,12 @@ public final class Application {
}
}
} else if (event.name().startsWith("redkale.")) {
logger.log(Level.WARNING, "not support the env property key " + event.name() + " on change event");
logger.log(Level.WARNING, "not support the environment property key " + event.name() + " on change event");
} else {
if (!Objects.equals(event.newValue(), envProperties.getProperty(event.name()))) {
if (!Objects.equals(event.newValue(), this.envProperties.getProperty(event.name()))) {
envRegisterProps.put("property." + event.name(), event.newValue());
if (event.newValue() == null) {
if (envProperties.containsKey(event.name())) {
if (this.envProperties.containsKey(event.name())) {
envRemovedKeys.add(event.name());
}
} else {
@@ -1955,11 +1969,17 @@ public final class Application {
}
}
}
//普通配置项的变更
if (!envRegisterProps.isEmpty()) {
envProperties.putAll(envChangedProps);
envRemovedKeys.forEach(k -> envProperties.remove(k));
this.envProperties.putAll(envChangedProps);
envRemovedKeys.forEach(k -> this.envProperties.remove(k));
DefaultAnyValue oldConf = (DefaultAnyValue) this.config.getAnyValue("properties");
DefaultAnyValue newConf = new DefaultAnyValue();
oldConf.forEach((k, v) -> newConf.addValue(k, v));
this.envProperties.forEach((k, v) -> {
newConf.addValue("property", new DefaultAnyValue().addValue("name", k.toString()).addValue("value", v.toString()));
});
oldConf.replace(newConf);
resourceFactory.register(envRegisterProps, "", Environment.class);
}
@@ -1970,7 +1990,7 @@ public final class Application {
try {
Level logLevel = Level.parse(loggingChangedProps.getProperty(".level"));
Logger.getGlobal().setLevel(logLevel);
loggingProperties.putAll(loggingChangedProps);
this.loggingProperties.putAll(loggingChangedProps);
logger.log(Level.INFO, "reconfig logging level to " + logLevel);
} catch (Exception e) {
logger.log(Level.WARNING, "reconfig logging level error, new level is " + loggingChangedProps.getProperty(".level"));
@@ -2009,7 +2029,7 @@ public final class Application {
if (source == null) continue; //多余的数据源
final DefaultAnyValue old = (DefaultAnyValue) findSourceConfig(sourceName, "cachesource");
Properties newProps = new Properties();
sourceProperties.forEach((k, v) -> {
this.sourceProperties.forEach((k, v) -> {
final String key = k.toString();
String prefix = "redkale.cachesource[" + sourceName + "].";
int pos = key.indexOf(prefix);
@@ -2031,7 +2051,7 @@ public final class Application {
}
if (pos < 0) return; //不是同一name数据源配置项
newProps.put(k, v);
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), v, sourceProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), v, this.sourceProperties.getProperty(key)));
});
sourceRemovedKeys.forEach(k -> {
final String key = k;
@@ -2043,7 +2063,7 @@ public final class Application {
}
if (pos < 0) return;
newProps.remove(k); //不是同一name数据源配置项
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), null, sourceProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), null, this.sourceProperties.getProperty(key)));
});
if (!changeEvents.isEmpty()) {
DefaultAnyValue back = old.copy();
@@ -2062,7 +2082,7 @@ public final class Application {
if (source == null) continue; //多余的数据源
DefaultAnyValue old = (DefaultAnyValue) findSourceConfig(sourceName, "datasource");
Properties newProps = new Properties();
sourceProperties.forEach((k, v) -> {
this.sourceProperties.forEach((k, v) -> {
final String key = k.toString();
String prefix = "redkale.datasource[" + sourceName + "].";
int pos = key.indexOf(prefix);
@@ -2084,7 +2104,7 @@ public final class Application {
}
if (pos < 0) return; //不是同一name数据源配置项
newProps.put(k, v);
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), v, sourceProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), v, this.sourceProperties.getProperty(key)));
});
sourceRemovedKeys.forEach(k -> {
final String key = k;
@@ -2096,7 +2116,7 @@ public final class Application {
}
if (pos < 0) return;
newProps.remove(k); //不是同一name数据源配置项
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), null, sourceProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), null, this.sourceProperties.getProperty(key)));
});
if (!changeEvents.isEmpty()) {
DefaultAnyValue back = old.copy();
@@ -2109,8 +2129,8 @@ public final class Application {
}
}
}
sourceRemovedKeys.forEach(k -> sourceProperties.remove(k));
sourceProperties.putAll(sourceChangedProps);
sourceRemovedKeys.forEach(k -> this.sourceProperties.remove(k));
this.sourceProperties.putAll(sourceChangedProps);
}
//MQ配置项的变更
@@ -2132,7 +2152,7 @@ public final class Application {
if (agent == null) continue; //多余的数据源
final DefaultAnyValue old = (DefaultAnyValue) findMQConfig(mqName);
Properties newProps = new Properties();
messageProperties.forEach((k, v) -> {
this.messageProperties.forEach((k, v) -> {
final String key = k.toString();
String prefix = "redkale.mq[" + mqName + "].";
int pos = key.indexOf(prefix);
@@ -2154,7 +2174,7 @@ public final class Application {
}
if (pos < 0) return; //不是同一name数据源配置项
newProps.put(k, v);
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), v, messageProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), v, this.messageProperties.getProperty(key)));
});
messageRemovedKeys.forEach(k -> {
final String key = k;
@@ -2166,7 +2186,7 @@ public final class Application {
}
if (pos < 0) return;
newProps.remove(k); //不是同一name数据源配置项
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), null, messageProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring(prefix.length()), null, this.messageProperties.getProperty(key)));
});
if (!changeEvents.isEmpty()) {
DefaultAnyValue back = old.copy();
@@ -2179,8 +2199,8 @@ public final class Application {
}
}
}
messageRemovedKeys.forEach(k -> messageProperties.remove(k));
messageProperties.putAll(messageChangedProps);
messageRemovedKeys.forEach(k -> this.messageProperties.remove(k));
this.messageProperties.putAll(messageChangedProps);
}
//第三方服务注册配置项的变更
@@ -2193,12 +2213,12 @@ public final class Application {
clusterChangedProps.forEach((k, v) -> {
final String key = k.toString();
newProps.put(k, v);
changeEvents.add(ResourceEvent.create(key.substring("redkale.cluster.".length()), v, clusterProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring("redkale.cluster.".length()), v, this.clusterProperties.getProperty(key)));
});
clusterRemovedKeys.forEach(k -> {
final String key = k;
newProps.remove(k);
changeEvents.add(ResourceEvent.create(key.substring("redkale.cluster.".length()), null, clusterProperties.getProperty(key)));
changeEvents.add(ResourceEvent.create(key.substring("redkale.cluster.".length()), null, this.clusterProperties.getProperty(key)));
});
if (!changeEvents.isEmpty()) {
DefaultAnyValue back = old.copy();
@@ -2222,8 +2242,8 @@ public final class Application {
logger.log(Level.INFO, sb.toString());
}
}
clusterRemovedKeys.forEach(k -> clusterProperties.remove(k));
clusterProperties.putAll(clusterChangedProps);
clusterRemovedKeys.forEach(k -> this.clusterProperties.remove(k));
this.clusterProperties.putAll(clusterChangedProps);
}
}
}

View File

@@ -462,7 +462,7 @@ public abstract class AnyValue {
}
public DefaultAnyValue setValue(String name, String value) {
if (name == null) return this;
Objects.requireNonNull(name);
if (!existsValue(name)) {
this.addValue(name, value);
} else {
@@ -477,7 +477,7 @@ public abstract class AnyValue {
}
public DefaultAnyValue setValue(String name, AnyValue value) {
if (name == null) return this;
Objects.requireNonNull(name);
if (!existsValue(name)) {
this.addValue(name, value);
} else {
@@ -513,12 +513,13 @@ public abstract class AnyValue {
}
public DefaultAnyValue addValue(String name, String value) {
Objects.requireNonNull(name);
this.stringEntrys = Utility.append(this.stringEntrys, new Entry(name, value));
return this;
}
public DefaultAnyValue addValue(String name, AnyValue value) {
if (name == null || value == null) return this;
Objects.requireNonNull(name);
this.anyEntrys = Utility.append(this.anyEntrys, new Entry(name, value));
return this;
}
@@ -532,25 +533,29 @@ public abstract class AnyValue {
}
public DefaultAnyValue removeAnyValues(String name) {
if (name == null || this.anyEntrys == null) return this;
Objects.requireNonNull(name);
if (this.anyEntrys == null) return this;
this.anyEntrys = Utility.remove(this.anyEntrys, (t) -> name.equals(((Entry) t).name));
return this;
}
public DefaultAnyValue removeValue(String name, AnyValue value) {
if (name == null || value == null || this.anyEntrys == null) return this;
Objects.requireNonNull(name);
if (value == null || this.anyEntrys == null) return this;
this.anyEntrys = Utility.remove(this.anyEntrys, (t) -> name.equals(((Entry) t).name) && ((Entry) t).getValue().equals(value));
return this;
}
public DefaultAnyValue removeStringValues(String name) {
if (name == null || this.stringEntrys == null) return this;
Objects.requireNonNull(name);
if (this.stringEntrys == null) return this;
this.stringEntrys = Utility.remove(this.stringEntrys, (t) -> name.equals(((Entry) t).name));
return this;
}
public DefaultAnyValue removeValue(String name, String value) {
if (name == null || value == null || this.stringEntrys == null) return this;
Objects.requireNonNull(name);
if (value == null || this.stringEntrys == null) return this;
this.stringEntrys = Utility.remove(this.stringEntrys, (t) -> name.equals(((Entry) t).name) && ((Entry) t).getValue().equals(value));
return this;
}
@@ -605,9 +610,9 @@ public abstract class AnyValue {
T value;
@ConstructorParameters({"name", "value"})
public Entry(String name0, T value0) {
this.name = name0;
this.value = value0;
public Entry(String name, T value) {
this.name = name;
this.value = value;
}
/**
@@ -832,9 +837,26 @@ public abstract class AnyValue {
public static AnyValue loadFromProperties(Properties properties, String nameName) {
if (properties == null) return null;
DefaultAnyValue conf = new DefaultAnyValue();
final char splitChar = (char) 2;
Map<String, DefaultAnyValue> prefixArray = new TreeMap<>(); //已处理的数组key如 redkale.source[0].xx 存redkale.source[0]
properties.forEach((key, value) -> {
String[] keys = key.toString().split("\\.");
StringBuilder temp = new StringBuilder();
boolean flag = false;
for (char ch : key.toString().toCharArray()) { //替换redkale.properties[my.name]中括号里的'.'
if (ch == '[') {
flag = true;
temp.append(ch);
} else if (ch == ']') {
flag = false;
temp.append(ch);
} else {
temp.append(flag && ch == '.' ? splitChar : ch);
}
}
String[] keys = temp.toString().split("\\.");
for (int i = 0; i < keys.length; i++) {
keys[i] = keys[i].replace(splitChar, '.');
}
DefaultAnyValue parent = conf;
if (keys.length > 1) {
for (int i = 0; i < keys.length - 1; i++) {
@@ -849,7 +871,7 @@ public abstract class AnyValue {
parent = child;
} else { //数组或Map结构, []中间是数字开头的视为数组其他视为map
String itemField = item.substring(0, pos); //[前面一部分'sources[1]'中'sources'
String keyOrIndex = item.substring(pos + 1, item.indexOf(']'));
String keyOrIndex = item.substring(pos + 1, item.indexOf(']')); //'sources[1]'中'1'
int realIndex = -1;
if (!keyOrIndex.isEmpty() && keyOrIndex.charAt(0) >= '0' && keyOrIndex.charAt(0) <= '9') {
try {
@@ -857,7 +879,7 @@ public abstract class AnyValue {
} catch (NumberFormatException e) {
}
}
if (realIndex >= 0) { //数组
if (realIndex >= 0) { //数组结构
String prefixKey = "";
for (int j = 0; j < i; j++) {
prefixKey += keys[j] + ".";
@@ -889,7 +911,7 @@ public abstract class AnyValue {
array = prefixArray.get(prefixKey + item);
}
parent = array;
} else { //Map
} else { //Map结构
DefaultAnyValue field = (DefaultAnyValue) parent.getAnyValue(itemField);
if (field == null) {
field = new DefaultAnyValue();

View File

@@ -47,6 +47,59 @@ public class Environment implements java.io.Serializable {
properties.forEach((BiConsumer) action);
}
public boolean getBooleanProperty(String key) {
String val = properties.getProperty(key);
return "true".equalsIgnoreCase(val) || "1".equalsIgnoreCase(val);
}
public boolean getBooleanProperty(String key, boolean defaultValue) {
String val = properties.getProperty(key);
if (val == null || val.isEmpty()) return defaultValue;
return "true".equalsIgnoreCase(val) || "1".equalsIgnoreCase(val);
}
public short getShortProperty(String key) {
return Short.parseShort(properties.getProperty(key));
}
public short getShortProperty(String key, short defaultValue) {
String val = properties.getProperty(key);
if (val == null || val.isEmpty()) return defaultValue;
try {
return Short.parseShort(val);
} catch (Exception e) {
return defaultValue;
}
}
public int getIntProperty(String key) {
return Integer.parseInt(properties.getProperty(key));
}
public int getIntProperty(String key, int defaultValue) {
String val = properties.getProperty(key);
if (val == null || val.isEmpty()) return defaultValue;
try {
return Integer.parseInt(val);
} catch (Exception e) {
return defaultValue;
}
}
public long getLongProperty(String key) {
return Long.parseLong(properties.getProperty(key));
}
public long getLongProperty(String key, long defaultValue) {
String val = properties.getProperty(key);
if (val == null || val.isEmpty()) return defaultValue;
try {
return Long.parseLong(val);
} catch (Exception e) {
return defaultValue;
}
}
@Override
public String toString() {
return properties.toString();