summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/JSONManager.java
blob: 6084e8d5408e44fd47e9ef8d268d1f04967e42dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.redstoner.misc.mysql;

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 java.io.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class JSONManager {
	public static Map<Serializable, Serializable> getConfiguration(String fileName) {
		File file = new File(Main.plugin.getDataFolder(), fileName);
		if (!file.exists()) {
			try {
				PrintWriter writer = new PrintWriter(file.getAbsolutePath(), "UTF-8");
				writer.println("{}");
				writer.close();
			} catch (FileNotFoundException | UnsupportedEncodingException e) {
				e.printStackTrace();
			}
		}
		try {
			return loadMap(file);
		} catch (IOException | ParseException e) {
			e.printStackTrace();
			return null;
		}
	}

	public static Map<Serializable, Serializable> loadMap(File file) throws IOException, ParseException {
		FileReader                      reader  = new FileReader(file);
		JSONObject                      map     = (JSONObject) new JSONParser().parse(reader);
		Map<Serializable, Serializable> entries = new HashMap<>();
		for (Object o : map.keySet()) {
			entries.put((Serializable) o, (Serializable) map.get(o));
		}
		return entries;
	}

	public static void saveConfiguration(Map<Serializable, Serializable> config, String fileName) {
		try {
			saveMap(new File(Main.plugin.getDataFolder(), fileName), config);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	@SuppressWarnings ("unchecked")
	public static void saveMap(File file, Map<Serializable, Serializable> entries) throws IOException {
		JSONObject map = new JSONObject();
		map.putAll(entries);
		FileWriter writer = new FileWriter(file);
		writer.write(map.toJSONString());
		writer.close();
	}

	@SuppressWarnings ("unchecked")
	public static void saveList(File file, List<Serializable> entries) throws IOException {
		JSONArray array = new JSONArray();
		array.addAll(entries);
		FileWriter writer = new FileWriter(file);
		writer.write(array.toJSONString());
		writer.close();
	}

	public static List<Serializable> loadList(File file) throws IOException, ParseException {
		FileReader         read    = new FileReader(file);
		List<Serializable> entries = new ArrayList<>();
		JSONArray          array   = (JSONArray) new JSONParser().parse(read);
		for (Object o : array) {
			entries.add((Serializable) o);
		}
		return entries;
	}
}