/web-client/src/main/java/jahspotify/client/ServerBroadcasterClient.java

http://github.com/johanlindquist/jahspotify · Java · 90 lines · 51 code · 16 blank · 23 comment · 6 complexity · c1c137bba0622c3bb4bba123fbb56747 MD5 · raw file

  1. package jahspotify.client;
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. */
  20. import java.net.*;
  21. import java.util.*;
  22. import com.google.gson.Gson;
  23. import jahspotify.web.system.ServerIdentity;
  24. /**
  25. * @author Johan Lindquist
  26. */
  27. public class ServerBroadcasterClient
  28. {
  29. public static void main(String[] args) throws Exception
  30. {
  31. final Set<ServerIdentity> serverIdentities = ServerBroadcasterClient.discoverServers("224.0.0.1", 9764, 10000, new ServerFoundListener()
  32. {
  33. @Override
  34. public void serverFound(final ServerIdentity serverIdentity)
  35. {
  36. System.out.println("serverIdentity = " + serverIdentity);
  37. }
  38. });
  39. }
  40. public static Set<ServerIdentity> discoverServers(String address, int port, int timeout, final ServerFoundListener serverFoundListener) throws Exception
  41. {
  42. Set<ServerIdentity> serversFound = new HashSet<ServerIdentity>();
  43. InetAddress group = InetAddress.getByName(address);
  44. MulticastSocket multicastSocket = new MulticastSocket(port);
  45. multicastSocket.joinGroup(group);
  46. long s1 = System.currentTimeMillis();
  47. while (s1 + timeout > System.currentTimeMillis())
  48. {
  49. // get their responses!
  50. byte[] buf = new byte[1000];
  51. DatagramPacket recv = new DatagramPacket(buf, buf.length);
  52. multicastSocket.receive(recv);
  53. String message = new String(recv.getData(), recv.getOffset(), recv.getLength());
  54. Gson gson = new Gson();
  55. final ServerIdentity serverIdentity = gson.fromJson(message, ServerIdentity.class);
  56. if (serverIdentity.getServerWebAddress() == null)
  57. {
  58. serverIdentity.setServerWebAddress(recv.getAddress().getHostAddress());
  59. }
  60. if (serversFound.add(serverIdentity) && serverFoundListener != null)
  61. {
  62. serverFoundListener.serverFound(serverIdentity);
  63. }
  64. serversFound.add(serverIdentity);
  65. }
  66. // OK, I'm done talking - leave the group...
  67. multicastSocket.leaveGroup(group);
  68. return serversFound;
  69. }
  70. public static interface ServerFoundListener
  71. {
  72. public void serverFound(ServerIdentity serverIdentity);
  73. }
  74. }