/gameserver/src/gameserver/configs/IPConfig.java

http://u3j-aion-beta.googlecode.com/ · Java · 124 lines · 67 code · 15 blank · 42 comment · 3 complexity · 555eaccfb429118d64f2cb2c0fc90e14 MD5 · raw file

  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package gameserver.configs;
  16. import java.io.File;
  17. import java.net.InetAddress;
  18. import java.net.UnknownHostException;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import javax.xml.parsers.SAXParser;
  22. import javax.xml.parsers.SAXParserFactory;
  23. import org.apache.log4j.Logger;
  24. import org.xml.sax.Attributes;
  25. import org.xml.sax.SAXException;
  26. import org.xml.sax.helpers.DefaultHandler;
  27. import commons.network.IPRange;
  28. /**
  29. * Class that is designed to read IPConfig.xml
  30. */
  31. public class IPConfig
  32. {
  33. /**
  34. * Logger
  35. */
  36. private static final Logger log = Logger.getLogger(IPConfig.class);
  37. /**
  38. * Location of config file
  39. */
  40. private static final String CONFIG_FILE = "./config/ipconfig.xml";
  41. /**
  42. * List of all ip ranges
  43. */
  44. private static final List<IPRange> ranges = new ArrayList<IPRange>();
  45. /**
  46. * Default address
  47. */
  48. private static byte[] defaultAddress;
  49. /**
  50. * Method that loads IPConfig
  51. */
  52. public static void load()
  53. {
  54. try
  55. {
  56. SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
  57. parser.parse(new File(CONFIG_FILE), new DefaultHandler(){
  58. @Override
  59. public void startElement(String uri, String localName, String qName, Attributes attributes)
  60. throws SAXException
  61. {
  62. if(qName.equals("ipconfig"))
  63. {
  64. try
  65. {
  66. defaultAddress = InetAddress.getByName(attributes.getValue("default")).getAddress();
  67. }
  68. catch(UnknownHostException e)
  69. {
  70. throw new RuntimeException("Failed to resolve DSN for address: "
  71. + attributes.getValue("default"), e);
  72. }
  73. }
  74. else if(qName.equals("iprange"))
  75. {
  76. String min = attributes.getValue("min");
  77. String max = attributes.getValue("max");
  78. String address = attributes.getValue("address");
  79. IPRange ipRange = new IPRange(min, max, address);
  80. ranges.add(ipRange);
  81. }
  82. }
  83. });
  84. }
  85. catch(Exception e)
  86. {
  87. log.fatal("Critical error while parsing ipConfig", e);
  88. throw new Error("Can't load ipConfig", e);
  89. }
  90. }
  91. /**
  92. * Returns list of ip ranges
  93. *
  94. * @return list of ip ranges
  95. */
  96. public static List<IPRange> getRanges()
  97. {
  98. return ranges;
  99. }
  100. /**
  101. * Returns default address
  102. *
  103. * @return default address
  104. */
  105. public static byte[] getDefaultAddress()
  106. {
  107. return defaultAddress;
  108. }
  109. }