summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/Config.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/redstoner/misc/mysql/Config.java')
-rw-r--r--src/main/java/com/redstoner/misc/mysql/Config.java261
1 files changed, 102 insertions, 159 deletions
diff --git a/src/main/java/com/redstoner/misc/mysql/Config.java b/src/main/java/com/redstoner/misc/mysql/Config.java
index 519b20a..b88b0c2 100644
--- a/src/main/java/com/redstoner/misc/mysql/Config.java
+++ b/src/main/java/com/redstoner/misc/mysql/Config.java
@@ -1,215 +1,170 @@
package com.redstoner.misc.mysql;
-import java.io.File;
-import java.io.FileReader;
-import java.io.IOException;
-import java.io.PrintWriter;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Map.Entry;
-import java.util.Set;
-
+import com.redstoner.exceptions.NonSaveableConfigException;
+import com.redstoner.misc.Main;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
-import com.redstoner.exceptions.NonSaveableConfigException;
-import com.redstoner.misc.Main;
+import java.io.File;
+import java.io.FileReader;
+import java.io.IOException;
+import java.io.PrintWriter;
+import java.util.*;
+import java.util.Map.Entry;
-public class Config
-{
- private File file;
+public class Config {
+ private File file;
private JSONObject config;
private JSONParser parser;
-
- public Config()
- {
+
+ public Config() {
file = null;
parser = new JSONParser();
config = new JSONObject();
}
-
- public Config(JSONObject config)
- {
+
+ public Config(JSONObject config) {
this.file = null;
this.parser = new JSONParser();
this.config = config;
}
-
- private Config(File file) throws IOException, ParseException
- {
+
+ private Config(File file) throws IOException, ParseException {
this.file = file;
parser = new JSONParser();
- if (file.exists())
- {
+ if (file.exists()) {
config = loadConfig(file);
- }
- else
- {
+ } else {
config = new JSONObject();
}
}
-
- public static final Config getConfig(String fileName) throws IOException, ParseException
- {
- return new Config(new File(Main.plugin.getDataFolder(), fileName));
- }
-
- public static final Config getConfig(File file) throws IOException, ParseException
- {
- return new Config(file);
- }
-
- private JSONObject loadConfig(File file) throws IOException, ParseException
- {
+
+ private JSONObject loadConfig(File file) throws IOException, ParseException {
FileReader reader = new FileReader(file);
JSONObject object = (JSONObject) parser.parse(reader);
reader.close();
return object;
}
-
+
+ public static final Config getConfig(String fileName) throws IOException, ParseException {
+ return new Config(new File(Main.plugin.getDataFolder(), fileName));
+ }
+
+ public static final Config getConfig(File file) throws IOException, ParseException {
+ return new Config(file);
+ }
+
@Override
- public String toString()
- {
+ public String toString() {
return config.toJSONString();
}
-
- public JSONObject asObject()
- {
+
+ public JSONObject asObject() {
return config;
}
-
- public void save() throws IOException, NonSaveableConfigException
- {
- if (file == null)
- {
+
+ public void save() throws IOException, NonSaveableConfigException {
+ if (file == null) {
throw new NonSaveableConfigException();
}
PrintWriter writer = new PrintWriter(file);
writer.write(config.toJSONString());
writer.close();
}
-
- public void refresh() throws IOException, ParseException, NonSaveableConfigException
- {
- if (file == null)
- {
+
+ public void refresh() throws IOException, ParseException, NonSaveableConfigException {
+ if (file == null) {
throw new NonSaveableConfigException();
}
loadConfig(file);
}
-
- public void setFile(String fileName)
- {
+
+ public void setFile(String fileName) {
file = new File(Main.plugin.getDataFolder(), fileName);
}
-
- public void setFile(File file)
- {
+
+ public void setFile(File file) {
this.file = file;
}
-
- @SuppressWarnings("unchecked")
- public void put(String key, String value)
- {
+
+ @SuppressWarnings ("unchecked")
+ public void put(String key, String value) {
config.put(key, value);
}
-
- @SuppressWarnings("unchecked")
- public void put(String key, List<String> value)
- {
+
+ @SuppressWarnings ("unchecked")
+ public void put(String key, List<String> value) {
JSONArray array = new JSONArray();
- for (String entry : value)
- {
+ for (String entry : value) {
array.add(entry);
}
config.put(key, array);
}
-
- @SuppressWarnings("unchecked")
- public void putArray(String key, JSONArray value)
- {
+
+ @SuppressWarnings ("unchecked")
+ public void putArray(String key, JSONArray value) {
config.put(key, value);
}
-
- @SuppressWarnings("unchecked")
- public void put(String key, Map<String, String> value)
- {
+
+ @SuppressWarnings ("unchecked")
+ public void put(String key, Map<String, String> value) {
JSONObject object = new JSONObject();
- for (String valKey : value.keySet())
- {
+ for (String valKey : value.keySet()) {
String valVal = value.get(valKey);
object.put(valKey, valVal);
}
config.put(key, object);
}
-
- @SuppressWarnings("unchecked")
- public void put(String key, JSONObject value)
- {
+
+ @SuppressWarnings ("unchecked")
+ public void put(String key, JSONObject value) {
config.put(key, value);
}
-
- @SuppressWarnings("unchecked")
- public void putAll(Map<String, String> entry)
- {
- for (String key : entry.keySet())
- {
+
+ @SuppressWarnings ("unchecked")
+ public void putAll(Map<String, String> entry) {
+ for (String key : entry.keySet()) {
String value = entry.get(key);
config.put(key, value);
}
}
-
- public boolean containsKey(String key)
- {
- return config.containsKey(key);
- }
-
- public String get(String key)
- {
- if (containsKey(key))
- {
+
+ public String get(String key) {
+ if (containsKey(key)) {
Object value = config.get(key);
- if (value instanceof String)
- {
+ if (value instanceof String) {
return (String) value;
}
}
return null;
}
-
- public String getOrDefault(String key, String defaultValue)
- {
- if (containsKey(key))
- {
+
+ public boolean containsKey(String key) {
+ return config.containsKey(key);
+ }
+
+ public String getOrDefault(String key, String defaultValue) {
+ if (containsKey(key)) {
Object value = config.get(key);
- if (value instanceof String)
- {
+ if (value instanceof String) {
return (String) value;
}
return null;
- }
- else
- {
+ } else {
return defaultValue;
}
}
-
- @SuppressWarnings("unchecked")
- public List<String> getList(String key)
- {
- if (containsKey(key))
- {
+
+ @SuppressWarnings ("unchecked")
+ public List<String> getList(String key) {
+ if (containsKey(key)) {
Object value = config.get(key);
- if (value instanceof JSONArray)
- {
- JSONArray array = (JSONArray) value;
+ if (value instanceof JSONArray) {
+ JSONArray array = (JSONArray) value;
List<String> output = new ArrayList<String>();
- for (String entry : (String[]) array.toArray(new String[0]))
- {
+ for (String entry : (String[]) array.toArray(new String[0])) {
output.add(entry);
}
return output;
@@ -217,34 +172,27 @@ public class Config
}
return null;
}
-
- public JSONArray getArray(String key)
- {
- if (containsKey(key))
- {
+
+ public JSONArray getArray(String key) {
+ if (containsKey(key)) {
Object value = config.get(key);
- if (value instanceof JSONArray)
- {
+ if (value instanceof JSONArray) {
JSONArray array = (JSONArray) value;
return array;
}
}
return null;
}
-
- public Map<String, String> getMap(String key)
- {
- if (containsKey(key))
- {
+
+ public Map<String, String> getMap(String key) {
+ if (containsKey(key)) {
Object value = config.get(key);
- if (value instanceof JSONObject)
- {
+ if (value instanceof JSONObject) {
JSONObject object = (JSONObject) value;
- @SuppressWarnings("unchecked")
+ @SuppressWarnings ("unchecked")
Set<Map.Entry<String, String>> entrySet = object.entrySet();
Map<String, String> output = new HashMap<String, String>();
- for (Map.Entry<String, String> entry : entrySet)
- {
+ for (Map.Entry<String, String> entry : entrySet) {
output.put(entry.getKey(), entry.getValue());
}
return output;
@@ -252,29 +200,24 @@ public class Config
}
return null;
}
-
- public JSONObject getObject(String key)
- {
- if (containsKey(key))
- {
+
+ public JSONObject getObject(String key) {
+ if (containsKey(key)) {
Object value = config.get(key);
- if (value instanceof JSONObject)
- {
+ if (value instanceof JSONObject) {
JSONObject object = (JSONObject) value;
return object;
}
}
return null;
}
-
- public void remove(String key)
- {
+
+ public void remove(String key) {
config.remove(key);
}
-
- @SuppressWarnings("unchecked")
- public Set<Entry<String, String>> getAll()
- {
+
+ @SuppressWarnings ("unchecked")
+ public Set<Entry<String, String>> getAll() {
return config.entrySet();
}
}