package com.gmail.nossr50.config; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.configuration.file.YamlConfiguration; import java.io.*; import java.util.HashMap; import java.util.HashSet; import java.util.LinkedHashMap; import java.util.Set; public abstract class AutoUpdateConfigLoader extends ConfigLoader { public AutoUpdateConfigLoader(String relativePath, String fileName) { super(relativePath, fileName); } public AutoUpdateConfigLoader(String fileName) { super(fileName); } @Override protected void loadFile() { super.loadFile(); FileConfiguration internalConfig = YamlConfiguration.loadConfiguration(plugin.getResourceAsReader(fileName)); Set configKeys = config.getKeys(true); Set internalConfigKeys = internalConfig.getKeys(true); boolean needSave = false; Set oldKeys = new HashSet(configKeys); oldKeys.removeAll(internalConfigKeys); Set newKeys = new HashSet(internalConfigKeys); newKeys.removeAll(configKeys); // Don't need a re-save if we have old keys sticking around? // Would be less saving, but less... correct? if (!newKeys.isEmpty() || !oldKeys.isEmpty()) { needSave = true; } for (String key : oldKeys) { plugin.debug("Detected potentially unused key: " + key); //config.set(key, null); } for (String key : newKeys) { plugin.debug("Adding new key: " + key + " = " + internalConfig.get(key)); config.set(key, internalConfig.get(key)); } if (needSave) { // Get Bukkit's version of an acceptable config with new keys, and no old keys String output = config.saveToString(); // Convert to the superior 4 space indentation output = output.replace(" ", " "); // Rip out Bukkit's attempt to save comments at the top of the file while (output.replaceAll("[//s]", "").startsWith("#")) { output = output.substring(output.indexOf('\n', output.indexOf('#')) + 1); } // Read the internal config to get comments, then put them in the new one try { // Read internal BufferedReader reader = new BufferedReader(new InputStreamReader(plugin.getResource(fileName))); LinkedHashMap comments = new LinkedHashMap(); String temp = ""; String line; while ((line = reader.readLine()) != null) { if (line.contains("#")) { temp += line + "\n"; } else if (line.contains(":")) { line = line.substring(0, line.indexOf(":") + 1); if (!temp.isEmpty()) { if(comments.containsKey(line)) { int index = 0; while(comments.containsKey(line + index)) { index++; } line = line + index; } comments.put(line, temp); temp = ""; } } } // Dump to the new one HashMap indexed = new HashMap(); for (String key : comments.keySet()) { String actualkey = key.substring(0, key.indexOf(":") + 1); int index = 0; if(indexed.containsKey(actualkey)) { index = indexed.get(actualkey); } boolean isAtTop = !output.contains("\n" + actualkey); index = output.indexOf((isAtTop ? "" : "\n") + actualkey, index); if (index >= 0) { output = output.substring(0, index) + "\n" + comments.get(key) + output.substring(isAtTop ? index : index + 1); indexed.put(actualkey, index + comments.get(key).length() + actualkey.length() + 1); } } } catch (Exception e) { e.printStackTrace(); } // Save it try { String saveName = fileName; // At this stage we cannot guarantee that Config has been loaded, so we do the check directly here if (!plugin.getConfig().getBoolean("General.Config_Update_Overwrite", true)) { saveName += ".new"; } BufferedWriter writer = new BufferedWriter(new FileWriter(new File(plugin.getDataFolder(), saveName))); writer.write(output); writer.flush(); writer.close(); } catch (Exception e) { e.printStackTrace(); } } } }