/src/com/fullwall/Gastronomic/PropertyHandler.java

https://bitbucket.org/jyc/gastronomic · Java · 274 lines · 223 code · 51 blank · 0 comment · 18 complexity · 14aa37b1a44fa54923f915a69860204b MD5 · raw file

  1. package com.fullwall.Gastronomic;
  2. import java.io.BufferedReader;
  3. import java.io.File;
  4. import java.io.FileInputStream;
  5. import java.io.FileOutputStream;
  6. import java.io.FileReader;
  7. import java.io.IOException;
  8. import java.util.HashMap;
  9. import java.util.Map;
  10. import java.util.Properties;
  11. import java.util.logging.Level;
  12. import java.util.logging.Logger;
  13. public final class PropertyHandler
  14. {
  15. private static final Logger log = Logger.getLogger("Minecraft");
  16. private Properties properties;
  17. private String fileName;
  18. private boolean isNew = false;
  19. public PropertyHandler(String fileName) {
  20. this.fileName = fileName;
  21. this.properties = new Properties();
  22. File file = new File(fileName);
  23. if (file.exists()) {
  24. load();
  25. } else {
  26. createFile(file);
  27. save();
  28. }
  29. }
  30. private void createFile(File file) {
  31. try {
  32. log.info(this.fileName + " not found! Creating empty file at " +
  33. file.getPath() + ".");
  34. file.getParentFile().mkdirs();
  35. file.createNewFile();
  36. this.isNew = true;
  37. } catch (IOException ex) {
  38. log.log(Level.SEVERE, "Unable to create " + file.getPath(), ex);
  39. }
  40. }
  41. public void load() {
  42. try {
  43. this.properties.load(new FileInputStream(this.fileName));
  44. } catch (IOException ex) {
  45. log.log(Level.SEVERE, "Unable to load " + this.fileName, ex);
  46. }
  47. }
  48. public void save() {
  49. try {
  50. this.properties.store(new FileOutputStream(this.fileName),
  51. "Minecraft Properties File");
  52. } catch (IOException ex) {
  53. log.log(Level.SEVERE, "Unable to save " + this.fileName, ex);
  54. }
  55. }
  56. public Map<String, String> returnMap() throws Exception {
  57. Map map = new HashMap();
  58. BufferedReader reader = new BufferedReader(
  59. new FileReader(this.fileName));
  60. String line;
  61. while ((line = reader.readLine()) != null)
  62. {
  63. if (line.trim().length() == 0) {
  64. continue;
  65. }
  66. if (line.charAt(0) == '#') {
  67. continue;
  68. }
  69. int delimPosition = line.indexOf('=');
  70. String key = line.substring(0, delimPosition).trim();
  71. String value = line.substring(delimPosition + 1).trim();
  72. map.put(key, value);
  73. }
  74. reader.close();
  75. return map;
  76. }
  77. public void removeKey(String key) {
  78. this.properties.remove(key);
  79. save();
  80. }
  81. public void removeKey(int key) {
  82. removeKey(key);
  83. }
  84. public boolean keyExists(String key) {
  85. return this.properties.containsKey(key);
  86. }
  87. public boolean keyExists(int key) {
  88. return keyExists(key);
  89. }
  90. public String getString(String key) {
  91. if (this.properties.containsKey(key)) {
  92. return this.properties.getProperty(key);
  93. }
  94. return "";
  95. }
  96. public String getString(int key) {
  97. return getString(key);
  98. }
  99. public String getString(String key, String value) {
  100. if (this.properties.containsKey(key)) {
  101. return this.properties.getProperty(key);
  102. }
  103. setString(key, value);
  104. return value;
  105. }
  106. public String getString(int key, String value) {
  107. return getString(key, value);
  108. }
  109. public void setString(String key, String value) {
  110. this.properties.setProperty(key, value);
  111. save();
  112. }
  113. public void setString(int key, String value) {
  114. setString(key, value);
  115. }
  116. public int getInt(String key) {
  117. if (this.properties.containsKey(key)) {
  118. return Integer.parseInt(this.properties.getProperty(key));
  119. }
  120. return 0;
  121. }
  122. public int getInt(int key) {
  123. return getInt(key);
  124. }
  125. public int getInt(String key, int value) {
  126. if (this.properties.containsKey(key)) {
  127. return Integer.parseInt(this.properties.getProperty(key));
  128. }
  129. setInt(key, value);
  130. return value;
  131. }
  132. public int getInt(int key, int value) {
  133. return getInt(key, value);
  134. }
  135. public void setInt(String key, int value) {
  136. this.properties.setProperty(key, String.valueOf(value));
  137. save();
  138. }
  139. public void setInt(int key, int value) {
  140. setInt(key, value);
  141. }
  142. public double getDouble(String key) {
  143. if (this.properties.containsKey(key)) {
  144. return Double.parseDouble(this.properties.getProperty(key));
  145. }
  146. return 0.0D;
  147. }
  148. public double getDouble(int key) {
  149. return getDouble(key);
  150. }
  151. public double getDouble(String key, double value) {
  152. if (this.properties.containsKey(key)) {
  153. return Double.parseDouble(this.properties.getProperty(key));
  154. }
  155. setDouble(key, value);
  156. return value;
  157. }
  158. public double getDouble(int key, double value) {
  159. return getDouble(key, value);
  160. }
  161. public void setDouble(String key, double value) {
  162. this.properties.setProperty(key, String.valueOf(value));
  163. save();
  164. }
  165. public void setDouble(int key, double value) {
  166. setDouble(key, value);
  167. }
  168. public long getLong(String key) {
  169. if (this.properties.containsKey(key)) {
  170. return Long.parseLong(this.properties.getProperty(key));
  171. }
  172. return 0L;
  173. }
  174. public long getLong(int key) {
  175. return getLong(key);
  176. }
  177. public long getLong(String key, long value) {
  178. if (this.properties.containsKey(key)) {
  179. return Long.parseLong(this.properties.getProperty(key));
  180. }
  181. setLong(key, value);
  182. return value;
  183. }
  184. public long getLong(int key, long value) {
  185. return getLong(key, value);
  186. }
  187. public void setLong(String key, long value) {
  188. this.properties.setProperty(key, String.valueOf(value));
  189. save();
  190. }
  191. public void setLong(int key, long value) {
  192. setLong(key, value);
  193. }
  194. public boolean getBoolean(String key) {
  195. if (this.properties.containsKey(key)) {
  196. return Boolean.parseBoolean(this.properties.getProperty(key));
  197. }
  198. return false;
  199. }
  200. public boolean getBoolean(int key) {
  201. return getBoolean(key);
  202. }
  203. public boolean getBoolean(String key, boolean value) {
  204. if (this.properties.containsKey(key)) {
  205. return Boolean.parseBoolean(this.properties.getProperty(key));
  206. }
  207. setBoolean(key, value);
  208. return value;
  209. }
  210. public boolean getBoolean(int key, boolean value) {
  211. return getBoolean(key, value);
  212. }
  213. public void setBoolean(String key, boolean value) {
  214. this.properties.setProperty(key, String.valueOf(value));
  215. save();
  216. }
  217. public void setBoolean(int key, boolean value) {
  218. setBoolean(key, value);
  219. }
  220. public boolean isNew() {
  221. return this.isNew;
  222. }
  223. }