Server.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package server;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileWriter;
  6. import java.io.IOException;
  7. import java.net.ServerSocket;
  8. import java.util.ArrayList;
  9. import java.util.Properties;
  10. import java.util.Scanner;
  11. import common.Message;
  12. import server.CommandHandler;
  13. import server.Channel;
  14. public class Server {
  15. static Properties prop = new Properties();
  16. static int port, maxUsers, maxChannels;
  17. static final String version = "0.3";
  18. public static ArrayList<BanNote> banNotes = new ArrayList<BanNote>();
  19. public static Channel[] channels;
  20. public static ClientCollection clients;
  21. static ServerSocket so;
  22. public static LocalClient OPClient;
  23. public static void main(String[] arg){
  24. System.out.println("Starting ChatServer version " + version + "...");
  25. loadProperties();
  26. System.out.println("Setting up socket.");
  27. try {
  28. so = new ServerSocket(port);
  29. } catch(IOException ex) {
  30. System.out.println("Error setting up socket. Server already running?");
  31. System.exit(0);
  32. }
  33. clients = new ClientCollection();
  34. channels = new Channel[maxChannels];
  35. channels[0] = new Channel("Main");
  36. System.out.println("Starting commandhandler!");
  37. new CommandHandler();
  38. System.out.println("Creating virtual local client!");
  39. OPClient = new LocalClient();
  40. System.out.println("Server started successfully!");
  41. getClients();
  42. }
  43. static void getClients() {
  44. while(true) {
  45. Client newClient = null;
  46. try {
  47. newClient = new Client(Server.so.accept());
  48. clients.add(newClient);
  49. channels[0].add(newClient);
  50. wideBroadcast(new Message(newClient.username + " has connected."));
  51. } catch (IllegalArgumentException ex) {
  52. } catch (ArrayIndexOutOfBoundsException ex) {
  53. newClient.send(new Message("Server full!"));
  54. newClient.disconnect(false);
  55. } catch (Exception ex) {
  56. System.out.println("Could not get new client!");
  57. ex.printStackTrace();
  58. }
  59. }
  60. }
  61. public static Channel getChannelByName(String name) throws NullPointerException {
  62. for (int i = 0; i < channels.length; i++) {
  63. if (channels[i] != null)
  64. if (channels[i].name.equals(name)) {
  65. return channels[i];
  66. }
  67. }
  68. return null;
  69. }
  70. public static void wideBroadcast(Message mess) {
  71. clients.broadcast(mess);
  72. }
  73. public static String[] getUsersOnline() {
  74. return clients.listClientsArray();
  75. }
  76. public static String listClients() {
  77. return clients.listClients();
  78. }
  79. public static Client getUserByName(String username) {
  80. return clients.getClientByName(username);
  81. }
  82. public static void cleanUp() { //Makes sure the client gets removed from all arrays
  83. clients.cleanUp();
  84. for (int i = 0; i < channels.length; i++)
  85. if (channels[i] != null)
  86. channels[i].cleanUp();
  87. }
  88. public static void exit() {
  89. wideBroadcast(new Message("Shutting down server!"));
  90. for (int i = 0; i < clients.size(); i++)
  91. clients.get(i).disconnect();
  92. System.exit(0);
  93. }
  94. static int CInt(String str) {
  95. int i;
  96. Scanner sc = new Scanner(str);
  97. i = sc.nextInt();
  98. sc.close();
  99. return i;
  100. }
  101. static void loadProperties() {
  102. System.out.println("Loadning properties file.");
  103. try {
  104. prop.load(new FileInputStream("server.properties"));
  105. } catch (FileNotFoundException e1) {
  106. newPropertiesFile();
  107. } catch (IOException e2) {
  108. System.out.println("Could not load properties.");
  109. e2.printStackTrace();
  110. }
  111. System.out.println("Reading numbers from properties object.");
  112. try {
  113. port = CInt(prop.getProperty("port"));
  114. maxUsers = CInt(prop.getProperty("maxUsers"));
  115. maxChannels = CInt(prop.getProperty("maxChannels"));
  116. } catch (NullPointerException ex) {
  117. System.out.println("Could not get values from properties file.");
  118. newPropertiesFile();
  119. }
  120. }
  121. static void newPropertiesFile() {
  122. System.out.println("Generating new preperties file.");
  123. try {
  124. new File("server.properties").createNewFile();
  125. prop.setProperty("port", "25566");
  126. prop.setProperty("maxUsers", "20");
  127. prop.setProperty("maxChannels", "10");
  128. prop.store(new FileWriter("server.properties"), "ChatServer config file");
  129. } catch (IOException e) {
  130. e.printStackTrace();
  131. }
  132. }
  133. }