/Java/OPSJLib/src/ops/MulticastReceiver.java

http://ops.googlecode.com/ · Java · 148 lines · 71 code · 21 blank · 56 comment · 3 complexity · f0d5c9118716d700e77140b7ebcd37ba MD5 · raw file

  1. /**
  2. *
  3. * Copyright (C) 2006-2009 Anton Gravestam.
  4. *
  5. * This file is part of OPS (Open Publish Subscribe).
  6. *
  7. * OPS (Open Publish Subscribe) is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. * OPS (Open Publish Subscribe) 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 Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with OPS (Open Publish Subscribe). If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package ops;
  20. import java.io.IOException;
  21. import java.net.DatagramPacket;
  22. import java.net.Inet4Address;
  23. import java.net.InetAddress;
  24. import java.net.InetSocketAddress;
  25. import java.net.MulticastSocket;
  26. import java.net.NetworkInterface;
  27. import java.net.SocketAddress;
  28. import java.net.SocketTimeoutException;
  29. import java.net.UnknownHostException;
  30. import java.nio.ByteBuffer;
  31. /**
  32. *
  33. * @author Anton Gravestam
  34. */
  35. public class MulticastReceiver implements Receiver
  36. {
  37. private MulticastSocket multicastSocket;
  38. int port;
  39. InetAddress ipAddress;
  40. private Event newBytesEvent = new Event();
  41. byte[] tempBytes = new byte[StaticManager.MAX_SIZE];
  42. /** Creates a new instance of MulticastReceiver */
  43. public MulticastReceiver(String ip, int port, String localInterface, int receiveBufferSize) throws IOException
  44. {
  45. ipAddress = InetAddress.getByName(ip);
  46. SocketAddress mcSocketAddress = new InetSocketAddress(ipAddress, port);
  47. this.port = port;
  48. //multicastSocket = new MulticastSocket();
  49. multicastSocket = MulticastSocketCreator.getMulticastSocket(port);
  50. if(!localInterface.equals("0.0.0.0"))
  51. {//For some reason this method throws an error if we try to set outgoing interface to ANY.
  52. multicastSocket.setNetworkInterface(NetworkInterface.getByInetAddress(Inet4Address.getByName(localInterface)));
  53. }
  54. if(receiveBufferSize > 0)
  55. {
  56. multicastSocket.setReceiveBufferSize(receiveBufferSize);
  57. }
  58. // try
  59. // {
  60. // setReceiveTimeout(100);
  61. // } catch (CommException ex)
  62. // {
  63. // //Logger.getLogger(MulticastReceiver.class.getName()).log(Level.SEVERE, null, ex);
  64. // }
  65. //multicastSocket.setReuseAddress(true);
  66. //multicastSocket.bind(new InetSocketAddress(port));
  67. multicastSocket.setTimeToLive(1);
  68. multicastSocket.joinGroup(mcSocketAddress, NetworkInterface.getByInetAddress(InetAddress.getByName(localInterface)));
  69. }
  70. public MulticastReceiver(String ip, int port) throws IOException
  71. {
  72. this(ip, port, "0.0.0.0", 0);
  73. }
  74. // public boolean receive(byte[] b, int offset)
  75. // {
  76. // DatagramPacket p = new DatagramPacket(b, offset, StaticManager.MAX_SIZE);
  77. // try
  78. // {
  79. // multicastSocket.receive(p);
  80. // newBytesEvent.fireEvent(p);
  81. // return true;
  82. // }
  83. // catch (SocketTimeoutException ex)
  84. // {
  85. // return false;
  86. // }
  87. // catch (IOException ex)
  88. // {
  89. // return false;
  90. // }
  91. // }
  92. // public boolean receive(byte[] b) //throws ReceiveTimedOutException
  93. // {
  94. // return receive(b, 0);
  95. // }
  96. public boolean receive(byte[] headerBytes, byte[] bytes, int offset)
  97. {
  98. DatagramPacket p = new DatagramPacket(tempBytes, 0, StaticManager.MAX_SIZE);
  99. try
  100. {
  101. multicastSocket.receive(p);
  102. if(p.getSocketAddress().equals(multicastSocket.getLocalSocketAddress()))
  103. {
  104. System.out.println("Ingnoring packaege from my self");
  105. return false;
  106. }
  107. ByteBuffer nioBuf = ByteBuffer.wrap(tempBytes);
  108. nioBuf.get(headerBytes, 0, headerBytes.length);
  109. nioBuf.get(bytes, offset, p.getLength() - headerBytes.length);
  110. newBytesEvent.fireEvent(new Integer(p.getLength()));
  111. return true;
  112. }
  113. catch (SocketTimeoutException ex)
  114. {
  115. return false;
  116. }
  117. catch (IOException ex)
  118. {
  119. return false;
  120. }
  121. }
  122. public Event getNewBytesEvent()
  123. {
  124. return newBytesEvent;
  125. }
  126. }