/TextMash/src/pl/olek/jruce/GroupReceiver.java

http://textmash.googlecode.com/ · Java · 153 lines · 60 code · 31 blank · 62 comment · 1 complexity · 61a80c699012848f4417cb269c55c385 MD5 · raw file

  1. /**
  2. * TextMash - simple IDE for Clojure
  3. *
  4. * Copyright (C) 2010 Aleksander Naszko
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package pl.olek.jruce;
  20. import java.io.ByteArrayInputStream;
  21. import java.io.InputStream;
  22. import java.net.DatagramPacket;
  23. import java.net.InetAddress;
  24. import java.net.InetSocketAddress;
  25. import java.net.MulticastSocket;
  26. import java.net.SocketTimeoutException;
  27. import java.util.logging.Logger;
  28. /**
  29. *
  30. * @author anaszko
  31. */
  32. public abstract class GroupReceiver {
  33. final public static Logger logger = Logger.getLogger(GroupReceiver.class.getName());
  34. // final private static HashSet<GroupReceiver> listeners = new HashSet<GroupReceiver>();
  35. public abstract void receive(InetSocketAddress incomingAddress, InputStream input) throws Exception;
  36. Daemon daemon;
  37. public GroupReceiver(String groupName) {
  38. try {
  39. final MulticastSocket socket = new MulticastSocket(extractPort(groupName));
  40. final InetAddress address = InetAddress.getByName(extractIp(groupName));
  41. socket.joinGroup(address);
  42. socket.setSoTimeout(400);
  43. // synchronized (listeners) {
  44. // listeners.add(this);
  45. // listeners.notify();
  46. // }
  47. daemon = new Daemon() {
  48. @Override
  49. public void run() {
  50. try {
  51. byte[] buffer = new byte[4096];
  52. while (isRunning()) {
  53. // synchronized (listeners) {
  54. // if (!listeners.contains(GroupReceiver.this)) {
  55. // break;
  56. // }
  57. // }
  58. try {
  59. DatagramPacket packet = new DatagramPacket(buffer, buffer.length);
  60. socket.receive(packet);
  61. receive(new InetSocketAddress(packet.getAddress(), packet.getPort()),
  62. new ByteArrayInputStream(packet.getData(), 0, packet.getLength()));
  63. } catch (SocketTimeoutException e) {
  64. }
  65. }
  66. socket.leaveGroup(address);
  67. socket.close();
  68. } catch (Exception e) {
  69. // logger.log(Level.SEVERE, null, e);
  70. }
  71. }
  72. };
  73. // thread.start();
  74. } catch (Exception e) {
  75. throw new RuntimeException(e);
  76. }
  77. }
  78. public void join(){
  79. daemon.join();
  80. }
  81. public void close() {
  82. daemon.stop();
  83. //// synchronized (listeners) {
  84. //// listeners.remove(this);
  85. ////// listeners.notify();
  86. //// }
  87. }
  88. public static Integer extractPort(String groupName) {
  89. int code = Integer.MAX_VALUE & groupName.hashCode();
  90. int result = 1024 + (code % (Short.MAX_VALUE - 1024));
  91. // logger.info("For group " + groupName + " port=" + result);
  92. return result;
  93. }
  94. public static String extractIp(String groupName) {
  95. int code = Integer.MAX_VALUE & groupName.hashCode();
  96. String result = "225." + (code % 225) + "." + ((code / 2) % 225) + "." + ((code / 3) % 225);
  97. // logger.info("For group " + groupName + " ip=" + result);
  98. return result;
  99. }
  100. // private static void join() {
  101. // for (;;) {
  102. // synchronized (listeners) {
  103. // if (listeners.isEmpty()) {
  104. // break;
  105. // }
  106. // try {
  107. // listeners.wait();
  108. // } catch (Exception e) {
  109. // e.printStackTrace();
  110. // break;
  111. // }
  112. // }
  113. // }
  114. // }
  115. //
  116. // private static void closeAll() {
  117. // synchronized (listeners) {
  118. // listeners.clear();
  119. // listeners.notify();
  120. // }
  121. // }
  122. }