mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2024-11-24 02:08:48 +00:00
fix: 修复配置更新 修复无参命令未显示
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
571c270248
commit
ec5cb657cc
@ -1,13 +1,6 @@
|
|||||||
package pw.yumc.YumCore.commands;
|
package pw.yumc.YumCore.commands;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.*;
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.Comparator;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.LinkedList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
@ -155,9 +148,9 @@ public class CommandHelp {
|
|||||||
helpList.add(formatCommand(cmdlist.get(i), label));
|
helpList.add(formatCommand(cmdlist.get(i), label));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// 帮助结尾
|
// 帮助结尾
|
||||||
helpList.add(String.format(helpFooter, label, HELPPAGECOUNT));
|
helpList.add(String.format(helpFooter, label, HELPPAGECOUNT));
|
||||||
|
}
|
||||||
cacheHelp.put(helpkey, helpList.toArray(new String[0]));
|
cacheHelp.put(helpkey, helpList.toArray(new String[0]));
|
||||||
}
|
}
|
||||||
sender.sendMessage(cacheHelp.get(helpkey));
|
sender.sendMessage(cacheHelp.get(helpkey));
|
||||||
|
@ -4,21 +4,10 @@ import java.lang.reflect.Constructor;
|
|||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.*;
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.command.PluginCommand;
|
|
||||||
import org.bukkit.command.SimpleCommandMap;
|
|
||||||
import org.bukkit.command.TabExecutor;
|
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.bukkit.plugin.PluginManager;
|
import org.bukkit.plugin.PluginManager;
|
||||||
@ -116,8 +105,7 @@ public class CommandManager implements TabExecutor {
|
|||||||
lookupNames.put(name, plugin);
|
lookupNames.put(name, plugin);
|
||||||
} catch (InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException ignored) {
|
} catch (InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException ignored) {
|
||||||
}
|
}
|
||||||
if ((cmd = plugin.getCommand(name)) == null) { throw new IllegalStateException("未找到命令 必须在plugin.yml先注册 "
|
if ((cmd = plugin.getCommand(name)) == null) { throw new IllegalStateException("未找到命令 必须在plugin.yml先注册 " + name + " 命令!"); }
|
||||||
+ name + " 命令!"); }
|
|
||||||
}
|
}
|
||||||
cmd.setExecutor(this);
|
cmd.setExecutor(this);
|
||||||
cmd.setTabCompleter(this);
|
cmd.setTabCompleter(this);
|
||||||
@ -189,8 +177,7 @@ public class CommandManager implements TabExecutor {
|
|||||||
List<String> matchedPlayers = new ArrayList<>();
|
List<String> matchedPlayers = new ArrayList<>();
|
||||||
for (Player player : C.Player.getOnlinePlayers()) {
|
for (Player player : C.Player.getOnlinePlayers()) {
|
||||||
String name = player.getName();
|
String name = player.getName();
|
||||||
if ((senderPlayer == null || senderPlayer.canSee(player))
|
if ((senderPlayer == null || senderPlayer.canSee(player)) && StringUtil.startsWithIgnoreCase(name, lastWord)) {
|
||||||
&& StringUtil.startsWithIgnoreCase(name, lastWord)) {
|
|
||||||
matchedPlayers.add(name);
|
matchedPlayers.add(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -254,7 +241,7 @@ public class CommandManager implements TabExecutor {
|
|||||||
registerTab(method, clazz);
|
registerTab(method, clazz);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
help = new CommandHelp(cmds);
|
help = new CommandHelp(defCmd, cmds);
|
||||||
buildCmdNameCache();
|
buildCmdNameCache();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ public class CommandTabInfo {
|
|||||||
try {
|
try {
|
||||||
return (List<String>) method.invoke(origin, cmdArgs);
|
return (List<String>) method.invoke(origin, cmdArgs);
|
||||||
} catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
|
} catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
|
||||||
throw new CommandException("调用Tab自动补全发生错误 请反馈给开发者 " + Arrays.toString(P.instance.getDescription().getAuthors().toArray()) + " !", e);
|
throw new CommandException("调用Tab自动补全发生错误 请反馈给开发者 " + Arrays.toString(P.getDescription().getAuthors().toArray()) + " !", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,17 +1,8 @@
|
|||||||
package pw.yumc.YumCore.config;
|
package pw.yumc.YumCore.config;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.*;
|
||||||
import java.io.FileInputStream;
|
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.io.InputStreamReader;
|
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import org.apache.commons.lang.Validate;
|
import org.apache.commons.lang.Validate;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
@ -30,7 +21,7 @@ import pw.yumc.YumCore.bukkit.Log;
|
|||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @since 2015年11月7日 下午2:36:07
|
* @since 2015年11月7日 下午2:36:07
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings({"unchecked"})
|
@SuppressWarnings({ "unchecked" })
|
||||||
public class FileConfig extends AbstractConfig {
|
public class FileConfig extends AbstractConfig {
|
||||||
protected static String VERSION = "Version";
|
protected static String VERSION = "Version";
|
||||||
|
|
||||||
@ -67,7 +58,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 从文件载入配置
|
* 从文件载入配置
|
||||||
*
|
*
|
||||||
* @param file 配置文件名称
|
* @param file
|
||||||
|
* 配置文件名称
|
||||||
*/
|
*/
|
||||||
public FileConfig(File file) {
|
public FileConfig(File file) {
|
||||||
Validate.notNull(file, FILE_NOT_BE_NULL);
|
Validate.notNull(file, FILE_NOT_BE_NULL);
|
||||||
@ -77,8 +69,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 从文件载入配置
|
* 从文件载入配置
|
||||||
*
|
*
|
||||||
* @param parent 文件夹
|
* @param parent
|
||||||
* @param filename 配置文件名称
|
* 文件夹
|
||||||
|
* @param filename
|
||||||
|
* 配置文件名称
|
||||||
*/
|
*/
|
||||||
public FileConfig(File parent, String filename) {
|
public FileConfig(File parent, String filename) {
|
||||||
init(new File(parent, filename), true);
|
init(new File(parent, filename), true);
|
||||||
@ -87,7 +81,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 从数据流载入配置文件
|
* 从数据流载入配置文件
|
||||||
*
|
*
|
||||||
* @param stream 数据流
|
* @param stream
|
||||||
|
* 数据流
|
||||||
*/
|
*/
|
||||||
public FileConfig(InputStream stream) {
|
public FileConfig(InputStream stream) {
|
||||||
init(stream);
|
init(stream);
|
||||||
@ -96,7 +91,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 从文件载入配置
|
* 从文件载入配置
|
||||||
*
|
*
|
||||||
* @param filename 配置文件名称
|
* @param filename
|
||||||
|
* 配置文件名称
|
||||||
*/
|
*/
|
||||||
public FileConfig(String filename) {
|
public FileConfig(String filename) {
|
||||||
init(new File(plugin.getDataFolder(), filename), true);
|
init(new File(plugin.getDataFolder(), filename), true);
|
||||||
@ -105,8 +101,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 从文件载入配置
|
* 从文件载入配置
|
||||||
*
|
*
|
||||||
* @param parent 文件夹
|
* @param parent
|
||||||
* @param filename 配置文件名称
|
* 文件夹
|
||||||
|
* @param filename
|
||||||
|
* 配置文件名称
|
||||||
*/
|
*/
|
||||||
public FileConfig(String parent, String filename) {
|
public FileConfig(String parent, String filename) {
|
||||||
init(new File(parent, filename), true);
|
init(new File(parent, filename), true);
|
||||||
@ -115,9 +113,12 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 添加到List末尾
|
* 添加到List末尾
|
||||||
*
|
*
|
||||||
* @param <E> List内容类型
|
* @param <E>
|
||||||
* @param path 路径
|
* List内容类型
|
||||||
* @param obj 对象
|
* @param path
|
||||||
|
* 路径
|
||||||
|
* @param obj
|
||||||
|
* 对象
|
||||||
* @return {@link FileConfig}
|
* @return {@link FileConfig}
|
||||||
*/
|
*/
|
||||||
public <E> FileConfig addToList(String path, E obj) {
|
public <E> FileConfig addToList(String path, E obj) {
|
||||||
@ -132,8 +133,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 添加到StringList末尾
|
* 添加到StringList末尾
|
||||||
*
|
*
|
||||||
* @param path 路径
|
* @param path
|
||||||
* @param obj 字符串
|
* 路径
|
||||||
|
* @param obj
|
||||||
|
* 字符串
|
||||||
* @return {@link FileConfig}
|
* @return {@link FileConfig}
|
||||||
*/
|
*/
|
||||||
public FileConfig addToStringList(String path, String obj) {
|
public FileConfig addToStringList(String path, String obj) {
|
||||||
@ -144,9 +147,12 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 添加到StringList末尾
|
* 添加到StringList末尾
|
||||||
*
|
*
|
||||||
* @param path 路径
|
* @param path
|
||||||
* @param obj 字符串
|
* 路径
|
||||||
* @param allowrepeat 是否允许重复
|
* @param obj
|
||||||
|
* 字符串
|
||||||
|
* @param allowrepeat
|
||||||
|
* 是否允许重复
|
||||||
* @return {@link FileConfig}
|
* @return {@link FileConfig}
|
||||||
*/
|
*/
|
||||||
public FileConfig addToStringList(String path, String obj, boolean allowrepeat) {
|
public FileConfig addToStringList(String path, String obj, boolean allowrepeat) {
|
||||||
@ -164,14 +170,13 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 获得已颜色转码的文本
|
* 获得已颜色转码的文本
|
||||||
*
|
*
|
||||||
* @param cfgmsg 待转码的List
|
* @param cfgmsg
|
||||||
|
* 待转码的List
|
||||||
* @return 颜色转码后的文本
|
* @return 颜色转码后的文本
|
||||||
*/
|
*/
|
||||||
public List<String> getColorList(List<String> cfgmsg) {
|
public List<String> getColorList(List<String> cfgmsg) {
|
||||||
List<String> message = new ArrayList<>();
|
List<String> message = new ArrayList<>();
|
||||||
if (cfgmsg == null) {
|
if (cfgmsg == null) { return Collections.emptyList(); }
|
||||||
return Collections.emptyList();
|
|
||||||
}
|
|
||||||
for (String msg : cfgmsg) {
|
for (String msg : cfgmsg) {
|
||||||
message.add(ChatColor.translateAlternateColorCodes('&', msg));
|
message.add(ChatColor.translateAlternateColorCodes('&', msg));
|
||||||
}
|
}
|
||||||
@ -190,7 +195,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 获得Location
|
* 获得Location
|
||||||
*
|
*
|
||||||
* @param key 键
|
* @param key
|
||||||
|
* 键
|
||||||
* @return {@link Location}
|
* @return {@link Location}
|
||||||
*/
|
*/
|
||||||
public Location getLocation(String key) {
|
public Location getLocation(String key) {
|
||||||
@ -200,8 +206,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 获得Location
|
* 获得Location
|
||||||
*
|
*
|
||||||
* @param path 键
|
* @param path
|
||||||
* @param def 默认地点
|
* 键
|
||||||
|
* @param def
|
||||||
|
* 默认地点
|
||||||
* @return {@link Location}
|
* @return {@link Location}
|
||||||
*/
|
*/
|
||||||
public Location getLocation(String path, Location def) {
|
public Location getLocation(String path, Location def) {
|
||||||
@ -212,7 +220,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 获得已颜色转码的文本
|
* 获得已颜色转码的文本
|
||||||
*
|
*
|
||||||
* @param path 配置路径
|
* @param path
|
||||||
|
* 配置路径
|
||||||
* @return 颜色转码后的文本
|
* @return 颜色转码后的文本
|
||||||
*/
|
*/
|
||||||
public String getMessage(String path) {
|
public String getMessage(String path) {
|
||||||
@ -222,8 +231,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 获得已颜色转码的文本
|
* 获得已颜色转码的文本
|
||||||
*
|
*
|
||||||
* @param path 配置路径
|
* @param path
|
||||||
* @param def 默认文本
|
* 配置路径
|
||||||
|
* @param def
|
||||||
|
* 默认文本
|
||||||
* @return 颜色转码后的文本
|
* @return 颜色转码后的文本
|
||||||
*/
|
*/
|
||||||
public String getMessage(String path, String def) {
|
public String getMessage(String path, String def) {
|
||||||
@ -237,14 +248,13 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 获得已颜色转码的文本
|
* 获得已颜色转码的文本
|
||||||
*
|
*
|
||||||
* @param path 配置路径
|
* @param path
|
||||||
|
* 配置路径
|
||||||
* @return 颜色转码后的文本
|
* @return 颜色转码后的文本
|
||||||
*/
|
*/
|
||||||
public List<String> getMessageList(String path) {
|
public List<String> getMessageList(String path) {
|
||||||
List<String> cfgmsg = this.getStringList(path);
|
List<String> cfgmsg = this.getStringList(path);
|
||||||
if (cfgmsg == null) {
|
if (cfgmsg == null) { return Collections.emptyList(); }
|
||||||
return Collections.emptyList();
|
|
||||||
}
|
|
||||||
for (int i = 0; i < cfgmsg.size(); i++) {
|
for (int i = 0; i < cfgmsg.size(); i++) {
|
||||||
cfgmsg.set(i, ChatColor.translateAlternateColorCodes(ALT_COLOR_CHAR, cfgmsg.get(i)));
|
cfgmsg.set(i, ChatColor.translateAlternateColorCodes(ALT_COLOR_CHAR, cfgmsg.get(i)));
|
||||||
}
|
}
|
||||||
@ -254,7 +264,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 获得字符串数组
|
* 获得字符串数组
|
||||||
*
|
*
|
||||||
* @param path 配置路径
|
* @param path
|
||||||
|
* 配置路径
|
||||||
* @return 字符串数组
|
* @return 字符串数组
|
||||||
*/
|
*/
|
||||||
public String[] getStringArray(String path) {
|
public String[] getStringArray(String path) {
|
||||||
@ -276,24 +287,21 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 比较版本号
|
* 比较版本号
|
||||||
*
|
*
|
||||||
* @param newver 新版本
|
* @param newver
|
||||||
* @param oldver 旧版本
|
* 新版本
|
||||||
|
* @param oldver
|
||||||
|
* 旧版本
|
||||||
* @return 是否需要更新
|
* @return 是否需要更新
|
||||||
*/
|
*/
|
||||||
public boolean needUpdate(String newver, String oldver) {
|
public boolean needUpdate(String newver, String oldver) {
|
||||||
if (newver == null) {
|
if (newver == null) { return false; }
|
||||||
return false;
|
if (oldver == null) { return true; }
|
||||||
}
|
|
||||||
if (oldver == null) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
String[] va1 = newver.split("\\.");// 注意此处为正则匹配,不能用".";
|
String[] va1 = newver.split("\\.");// 注意此处为正则匹配,不能用".";
|
||||||
String[] va2 = oldver.split("\\.");
|
String[] va2 = oldver.split("\\.");
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
int minLength = Math.min(va1.length, va2.length);// 取最小长度值
|
int minLength = Math.min(va1.length, va2.length);// 取最小长度值
|
||||||
int diff = 0;
|
int diff = 0;
|
||||||
while (idx < minLength
|
while (idx < minLength && (diff = va1[idx].length() - va2[idx].length()) == 0// 先比较长度
|
||||||
&& (diff = va1[idx].length() - va2[idx].length()) == 0// 先比较长度
|
|
||||||
&& (diff = va1[idx].compareTo(va2[idx])) == 0) {// 再比较字符
|
&& (diff = va1[idx].compareTo(va2[idx])) == 0) {// 再比较字符
|
||||||
++idx;
|
++idx;
|
||||||
}
|
}
|
||||||
@ -314,9 +322,12 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 从List移除对象
|
* 从List移除对象
|
||||||
*
|
*
|
||||||
* @param <E> List内容对象类型
|
* @param <E>
|
||||||
* @param path 路径
|
* List内容对象类型
|
||||||
* @param obj 对象
|
* @param path
|
||||||
|
* 路径
|
||||||
|
* @param obj
|
||||||
|
* 对象
|
||||||
* @return {@link FileConfig}
|
* @return {@link FileConfig}
|
||||||
*/
|
*/
|
||||||
public <E> FileConfig removeFromList(String path, E obj) {
|
public <E> FileConfig removeFromList(String path, E obj) {
|
||||||
@ -330,8 +341,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 从StringList移除对象
|
* 从StringList移除对象
|
||||||
*
|
*
|
||||||
* @param path 路径
|
* @param path
|
||||||
* @param obj 对象
|
* 路径
|
||||||
|
* @param obj
|
||||||
|
* 对象
|
||||||
* @return {@link FileConfig}
|
* @return {@link FileConfig}
|
||||||
*/
|
*/
|
||||||
public FileConfig removeFromStringList(String path, String obj) {
|
public FileConfig removeFromStringList(String path, String obj) {
|
||||||
@ -405,7 +418,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 备份配置文件
|
* 备份配置文件
|
||||||
*
|
*
|
||||||
* @param oldcfg 配置文件
|
* @param oldcfg
|
||||||
|
* 配置文件
|
||||||
*/
|
*/
|
||||||
protected void backupConfig(FileConfig oldcfg) {
|
protected void backupConfig(FileConfig oldcfg) {
|
||||||
String filename = oldcfg.getConfigName();
|
String filename = oldcfg.getConfigName();
|
||||||
@ -423,7 +437,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 检查配置文件
|
* 检查配置文件
|
||||||
*
|
*
|
||||||
* @param file 配置文件
|
* @param file
|
||||||
|
* 配置文件
|
||||||
*/
|
*/
|
||||||
protected void check(File file) {
|
protected void check(File file) {
|
||||||
String filename = file.getName();
|
String filename = file.getName();
|
||||||
@ -437,9 +452,7 @@ public class FileConfig extends AbstractConfig {
|
|||||||
plugin.saveResource(filename, true);
|
plugin.saveResource(filename, true);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (stream == null) {
|
if (stream == null) { return; }
|
||||||
return;
|
|
||||||
}
|
|
||||||
FileConfig newcfg = new FileConfig(stream);
|
FileConfig newcfg = new FileConfig(stream);
|
||||||
FileConfig oldcfg = new FileConfig(file);
|
FileConfig oldcfg = new FileConfig(file);
|
||||||
if (needUpdate(newcfg, oldcfg)) {
|
if (needUpdate(newcfg, oldcfg)) {
|
||||||
@ -476,7 +489,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 初始化FileConfig
|
* 初始化FileConfig
|
||||||
*
|
*
|
||||||
* @param file 配置文件
|
* @param file
|
||||||
|
* 配置文件
|
||||||
* @return FileConfig
|
* @return FileConfig
|
||||||
*/
|
*/
|
||||||
protected FileConfig init(File file) {
|
protected FileConfig init(File file) {
|
||||||
@ -487,8 +501,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 初始化FileConfig
|
* 初始化FileConfig
|
||||||
*
|
*
|
||||||
* @param file 配置文件
|
* @param file
|
||||||
* @param check 是否检查文件
|
* 配置文件
|
||||||
|
* @param check
|
||||||
|
* 是否检查文件
|
||||||
* @return FileConfig
|
* @return FileConfig
|
||||||
*/
|
*/
|
||||||
protected FileConfig init(File file, boolean check) {
|
protected FileConfig init(File file, boolean check) {
|
||||||
@ -508,7 +524,8 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 初始化FileConfig
|
* 初始化FileConfig
|
||||||
*
|
*
|
||||||
* @param stream 输入流
|
* @param stream
|
||||||
|
* 输入流
|
||||||
* @return FileConfig
|
* @return FileConfig
|
||||||
*/
|
*/
|
||||||
protected FileConfig init(InputStream stream) {
|
protected FileConfig init(InputStream stream) {
|
||||||
@ -516,16 +533,12 @@ public class FileConfig extends AbstractConfig {
|
|||||||
try {
|
try {
|
||||||
this.load(new InputStreamReader(stream, UTF_8));
|
this.load(new InputStreamReader(stream, UTF_8));
|
||||||
} catch (InvalidConfigurationException | IllegalArgumentException ex) {
|
} catch (InvalidConfigurationException | IllegalArgumentException ex) {
|
||||||
if (file == null) {
|
if (file == null) { throw new IllegalArgumentException(ex); }
|
||||||
throw new IllegalArgumentException(ex);
|
|
||||||
}
|
|
||||||
Log.warning(String.format(CONFIG_FORMAT_ERROR, file.getName()));
|
Log.warning(String.format(CONFIG_FORMAT_ERROR, file.getName()));
|
||||||
Log.warning(ex.getMessage());
|
Log.warning(ex.getMessage());
|
||||||
saveFromJar();
|
saveFromJar();
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
if (file == null) {
|
if (file == null) { throw new IllegalStateException(ex); }
|
||||||
throw new IllegalStateException(ex);
|
|
||||||
}
|
|
||||||
Log.warning(String.format(CONFIG_READ_ERROR, file.getName()));
|
Log.warning(String.format(CONFIG_READ_ERROR, file.getName()));
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
@ -534,8 +547,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 检查配置文件版本
|
* 检查配置文件版本
|
||||||
*
|
*
|
||||||
* @param newcfg 新配置文件
|
* @param newcfg
|
||||||
* @param oldcfg 旧配置文件
|
* 新配置文件
|
||||||
|
* @param oldcfg
|
||||||
|
* 旧配置文件
|
||||||
* @return 是否需要升级
|
* @return 是否需要升级
|
||||||
*/
|
*/
|
||||||
protected boolean needUpdate(FileConfig newcfg, FileConfig oldcfg) {
|
protected boolean needUpdate(FileConfig newcfg, FileConfig oldcfg) {
|
||||||
@ -545,8 +560,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 更新配置文件
|
* 更新配置文件
|
||||||
*
|
*
|
||||||
* @param newcfg 新配置文件
|
* @param newcfg
|
||||||
* @param oldcfg 旧配置文件
|
* 新配置文件
|
||||||
|
* @param oldcfg
|
||||||
|
* 旧配置文件
|
||||||
* @return 更新以后的配置文件
|
* @return 更新以后的配置文件
|
||||||
*/
|
*/
|
||||||
protected FileConfig updateConfig(FileConfig newCfg, FileConfig oldCfg) {
|
protected FileConfig updateConfig(FileConfig newCfg, FileConfig oldCfg) {
|
||||||
@ -556,9 +573,12 @@ public class FileConfig extends AbstractConfig {
|
|||||||
/**
|
/**
|
||||||
* 更新配置文件
|
* 更新配置文件
|
||||||
*
|
*
|
||||||
* @param newCfg 新的配置文件
|
* @param newCfg
|
||||||
* @param oldCfg 老的配置文件
|
* 新的配置文件
|
||||||
* @param force 是否强制更新
|
* @param oldCfg
|
||||||
|
* 老的配置文件
|
||||||
|
* @param force
|
||||||
|
* 是否强制更新
|
||||||
* @return 更新以后的配置文件
|
* @return 更新以后的配置文件
|
||||||
*/
|
*/
|
||||||
protected FileConfig updateConfig(FileConfig newCfg, FileConfig oldCfg, boolean force) {
|
protected FileConfig updateConfig(FileConfig newCfg, FileConfig oldCfg, boolean force) {
|
||||||
@ -578,7 +598,10 @@ public class FileConfig extends AbstractConfig {
|
|||||||
for (String string : oldConfigKeys) {
|
for (String string : oldConfigKeys) {
|
||||||
Object var = oldCfg.get(string);
|
Object var = oldCfg.get(string);
|
||||||
// 需要进行节点检查 还有类型检查 不同类型情况下 使用新配置
|
// 需要进行节点检查 还有类型检查 不同类型情况下 使用新配置
|
||||||
if (var != null && !(var instanceof MemorySection) && newCfg.get(string).getClass().equals(var.getClass())) {
|
if (var != null && !(var instanceof MemorySection)) {
|
||||||
|
if (!newCfg.get(string).getClass().equals(var.getClass())) {
|
||||||
|
Log.w("警告! 旧数据类型与新配置类型不匹配!");
|
||||||
|
}
|
||||||
Log.debug(String.format(CONFIG_UPDATE_VALUE, string, var));
|
Log.debug(String.format(CONFIG_UPDATE_VALUE, string, var));
|
||||||
newCfg.set(string, var);
|
newCfg.set(string, var);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user