Skip to content
Snippets Groups Projects
Unverified Commit 5d4c9915 authored by Hover Ruan's avatar Hover Ruan Committed by GitHub
Browse files

optimize: get config from file system even without file: prefix (#3341)

parent 80ea72af
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ import java.io.File; ...@@ -19,6 +19,7 @@ import java.io.File;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import java.net.URL; import java.net.URL;
import java.net.URLDecoder; import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
import java.util.HashMap; import java.util.HashMap;
import java.util.HashSet; import java.util.HashSet;
import java.util.Map; import java.util.Map;
...@@ -112,7 +113,7 @@ public class FileConfiguration extends AbstractConfiguration { ...@@ -112,7 +113,7 @@ public class FileConfiguration extends AbstractConfiguration {
targetFilePath = file.getPath(); targetFilePath = file.getPath();
fileConfig = FileConfigFactory.load(file, name); fileConfig = FileConfigFactory.load(file, name);
} }
/** /*
* For seata-server side the conf file should always exists. * For seata-server side the conf file should always exists.
* For application(or client) side,conf file may not exists when using seata-spring-boot-starter * For application(or client) side,conf file may not exists when using seata-spring-boot-starter
*/ */
...@@ -135,58 +136,81 @@ public class FileConfiguration extends AbstractConfiguration { ...@@ -135,58 +136,81 @@ public class FileConfiguration extends AbstractConfiguration {
if (name == null) { if (name == null) {
throw new IllegalArgumentException("name can't be null"); throw new IllegalArgumentException("name can't be null");
} }
String filePath = null;
boolean filePathCustom = name.startsWith(SYS_FILE_RESOURCE_PREFIX); boolean filePathCustom = name.startsWith(SYS_FILE_RESOURCE_PREFIX);
if (filePathCustom) { String filePath = filePathCustom ? name.substring(SYS_FILE_RESOURCE_PREFIX.length()) : name;
filePath = name.substring(SYS_FILE_RESOURCE_PREFIX.length()); String decodedPath = URLDecoder.decode(filePath, StandardCharsets.UTF_8.name());
} else {
// projectDir first File targetFile = getFileFromFileSystem(decodedPath);
filePath = this.getClass().getClassLoader().getResource("").getPath() + name; if (targetFile != null) {
}
filePath = URLDecoder.decode(filePath, "utf-8");
File targetFile = new File(filePath);
if (!targetFile.exists()) {
for (String s : FileConfigFactory.getSuffixSet()) {
targetFile = new File(filePath + ConfigurationKeys.FILE_CONFIG_SPLIT_CHAR + s);
if (targetFile.exists()) {
if (LOGGER.isInfoEnabled()) {
LOGGER.info("The configuration file used is {}", targetFile.getPath());
}
return targetFile;
}
}
} else {
if (LOGGER.isInfoEnabled()) { if (LOGGER.isInfoEnabled()) {
LOGGER.info("The configuration file used is {}", name); LOGGER.info("The configuration file used is {}", targetFile.getPath());
} }
return targetFile; return targetFile;
} }
if (!filePathCustom) { if (!filePathCustom) {
URL resource = this.getClass().getClassLoader().getResource(name); File classpathFile = getFileFromClasspath(name);
if (resource == null) { if (classpathFile != null) {
for (String s : FileConfigFactory.getSuffixSet()) { return classpathFile;
resource = this.getClass().getClassLoader().getResource(name + ConfigurationKeys.FILE_CONFIG_SPLIT_CHAR + s); }
if (resource != null) { }
if (LOGGER.isInfoEnabled()) { } catch (UnsupportedEncodingException e) {
LOGGER.info("The configuration file used is {}", resource.getPath()); LOGGER.error("decode name error: {}", e.getMessage(), e);
} }
String path = resource.getPath();
path = URLDecoder.decode(path, "utf-8"); return null;
return new File(path); }
}
} private File getFileFromFileSystem(String decodedPath) {
} else { String[] tryPaths = new String[] {
// first: project dir
this.getClass().getClassLoader().getResource("").getPath() + decodedPath,
// second: system path
decodedPath
};
for (String tryPath : tryPaths) {
File targetFile = new File(tryPath);
if (targetFile.exists()) {
return targetFile;
}
// try to append config suffix
for (String s : FileConfigFactory.getSuffixSet()) {
targetFile = new File(tryPath + ConfigurationKeys.FILE_CONFIG_SPLIT_CHAR + s);
if (targetFile.exists()) {
return targetFile;
}
}
}
return null;
}
private File getFileFromClasspath(String name) throws UnsupportedEncodingException {
URL resource = this.getClass().getClassLoader().getResource(name);
if (resource == null) {
for (String s : FileConfigFactory.getSuffixSet()) {
resource = this.getClass().getClassLoader().getResource(name + ConfigurationKeys.FILE_CONFIG_SPLIT_CHAR + s);
if (resource != null) {
if (LOGGER.isInfoEnabled()) { if (LOGGER.isInfoEnabled()) {
LOGGER.info("The configuration file used is {}", name); LOGGER.info("The configuration file used is {}", resource.getPath());
} }
String path = resource.getPath(); String path = resource.getPath();
path = URLDecoder.decode(path, "utf-8"); path = URLDecoder.decode(path, StandardCharsets.UTF_8.name());
return new File(path); return new File(path);
} }
} }
} catch (UnsupportedEncodingException e) { } else {
LOGGER.error("file not found--" + e.getMessage(), e); if (LOGGER.isInfoEnabled()) {
LOGGER.info("The configuration file used is {}", name);
}
String path = resource.getPath();
path = URLDecoder.decode(path, StandardCharsets.UTF_8.name());
return new File(path);
} }
return null; return null;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment