/src/com/kteam/bukkit/kapital/KapitalSettings.java

https://github.com/Master-Guy/Kapital · Java · 165 lines · 52 code · 16 blank · 97 comment · 3 complexity · 6b4c9a45e80ac9cc6c3b3b4fa8c3777e MD5 · raw file

  1. package com.kteam.bukkit.kapital;
  2. import java.util.concurrent.ConcurrentHashMap;
  3. public class KapitalSettings {
  4. private static final ConcurrentHashMap<KapitalSettings.Str,String> propStrings = new ConcurrentHashMap<KapitalSettings.Str,String>();
  5. private static final ConcurrentHashMap<KapitalSettings.Int,Integer> propInts = new ConcurrentHashMap<KapitalSettings.Int,Integer>();
  6. private static final ConcurrentHashMap<KapitalSettings.Bool,Boolean> propBools = new ConcurrentHashMap<KapitalSettings.Bool,Boolean>();
  7. // String
  8. enum Str {
  9. MYSQL_HOST,
  10. MYSQL_PORT,
  11. MYSQL_USER,
  12. MYSQL_PASS,
  13. MYSQL_DB
  14. };
  15. // Integer
  16. enum Int {
  17. };
  18. // Boolean
  19. enum Bool {
  20. };
  21. // LOAD DEFAULTS
  22. static {
  23. // String
  24. propStrings.put(KapitalSettings.Str.MYSQL_HOST, "localhost");
  25. propStrings.put(KapitalSettings.Str.MYSQL_PORT, "3306");
  26. propStrings.put(KapitalSettings.Str.MYSQL_USER, "user");
  27. propStrings.put(KapitalSettings.Str.MYSQL_PASS, "pass");
  28. propStrings.put(KapitalSettings.Str.MYSQL_DB, "minecraft");
  29. }
  30. public static boolean loadConfig() {
  31. try {
  32. String propertiesFile = Kapital.k_Folder + "/config.properties";
  33. KapitalProperties properties = new KapitalProperties(propertiesFile);
  34. properties.load();
  35. for (KapitalSettings.Str key : KapitalSettings.Str.values())
  36. propStrings.put(key, properties.getString(key.toString().toLowerCase(), getString(key)));
  37. for (KapitalSettings.Int key : KapitalSettings.Int.values())
  38. propInts.put(key, properties.getInt(key.toString().toLowerCase(), getInt(key)));
  39. for (KapitalSettings.Bool key : KapitalSettings.Bool.values())
  40. propBools.put(key, properties.getBoolean(key.toString().toLowerCase(), getBoolean(key)));
  41. properties.save("Kapital Main Configuration File");
  42. } catch (Exception e) {
  43. System.out.println("Failed to load configuration");
  44. return false;
  45. }
  46. return true;
  47. }
  48. // Basic retrieval functions
  49. public static String getString(KapitalSettings.Str key) {
  50. return propStrings.get(key);
  51. }
  52. public static Integer getInt(KapitalSettings.Int key) {
  53. return propInts.get(key);
  54. }
  55. public static Boolean getBoolean(KapitalSettings.Bool key) {
  56. return propBools.get(key);
  57. }
  58. // Dedicated settings retrieval functions
  59. }
  60. /*
  61. import java.io.BufferedReader;
  62. import java.io.File;
  63. import java.io.FileInputStream;
  64. import java.io.FileOutputStream;
  65. import java.io.InputStreamReader;
  66. import java.io.PrintStream;
  67. import java.util.logging.Logger;
  68. public class KapitalSettings {
  69. public static final Logger log = Logger.getLogger("Minecraft"); // Logger
  70. private String curLine; // A line in the file
  71. public void testFolderExists(String folder) {
  72. boolean success = (new File(folder)).mkdirs();
  73. if (success) {
  74. log.info("Directory: " + folder + " created");
  75. }
  76. }
  77. public void testFileExists(String fileName) {
  78. boolean success = (new File(fileName)).isFile();
  79. if(!success) {
  80. success = false;
  81. try {
  82. success = (new File(fileName)).createNewFile();
  83. } catch (Exception e) {
  84. } finally {
  85. if (success) {
  86. log.info("File: " + fileName + " created");
  87. }
  88. }
  89. }
  90. }
  91. public String[] getSetting(String fileName, String optionName, String defaultValue) {
  92. return getSetting(fileName, optionName, defaultValue, "");
  93. }
  94. public String[] getSetting(String fileName, String optionName, String defaultValue, String splitValue) {
  95. Boolean gotLine; // Verification variable
  96. String[] returnValue = new String[100]; // Settings max at 100 values
  97. gotLine = false; // We don't have the settings found yet
  98. testFileExists(fileName); // Test if the file exists
  99. if(splitValue == "") {
  100. splitValue = "afs4wfa3waawfa3dogrsijkge5ssioeguhwar3awwa3rar";
  101. }
  102. try {
  103. // Get the line from the file
  104. FileInputStream fstream = new FileInputStream(fileName);
  105. BufferedReader in = new BufferedReader(new InputStreamReader(fstream));
  106. while(in.ready()) {
  107. curLine = in.readLine().toString();
  108. if(curLine.split("=", 2)[0].equalsIgnoreCase(optionName)) {
  109. returnValue = new String[100];
  110. returnValue = curLine.split("=", 2)[1].split(splitValue);
  111. gotLine = true;
  112. }
  113. }
  114. in.close();
  115. // If the line does not exist, create it
  116. if(!gotLine) {
  117. returnValue = defaultValue.split(splitValue);
  118. FileOutputStream out;
  119. PrintStream p;
  120. try {
  121. out = new FileOutputStream(fileName, true);
  122. p = new PrintStream( out );
  123. p.println (optionName+"="+defaultValue);
  124. p.close();
  125. } catch (Exception e) {
  126. log.warning("Error writing to file");
  127. }
  128. }
  129. }
  130. catch (Exception e) {
  131. log.info("-=-");
  132. log.info("File input error: "+e.toString());
  133. log.info("File input error: "+e.getStackTrace().toString());
  134. log.info("-=-");
  135. }
  136. finally {
  137. }
  138. return returnValue;
  139. }
  140. }
  141. */