Android Open Source - SamyGo-Android-Remote Discovery






From Project

Back to project page SamyGo-Android-Remote.

License

The source code is released under:

GNU General Public License

If you think the Android project SamyGo-Android-Remote listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 *  Copyright (C) 2011  Tom Quist/*www  .j  a  v a  2s.  co m*/
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You can get the GNU General Public License at
 *  http://www.gnu.org/licenses/gpl.html
 */
package de.quist.app.samyGoRemote.upnp;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.DatagramPacket;
import java.net.InetAddress;
import java.net.MulticastSocket;
import java.net.SocketTimeoutException;
import java.net.UnknownHostException;

import android.os.AsyncTask;
import android.os.SystemClock;
import android.util.Log;

public class Discovery extends AsyncTask<Integer, Integer, InetAddress> {

  public final static InetAddress MULTICAST_ADDRESS;
    public final static short DEFAULT_PORT = 1900;
    private static final int DEFAULT_TIMEOUT = 10000;
    private static final String MEDIA_RENDERER_UUID = "SamsungMRDesc.xml";
    private static final String PERSONAL_MESSAGE_RECEIVER_UUID = "PersonalMessageReceiver.xml";
    private static final String REMOTE_CONTROL_RECEIVER_UUID = "RemoteControlReceiver.xml";
    private static final String REMOCON_SN = "urn:samsung.com:device:RemoteControlReceiver:1";
    


  static {
        try {
            MULTICAST_ADDRESS = InetAddress.getByName("239.255.255.250");
        } catch (UnknownHostException e) {
            throw new RuntimeException(e);
        }
    }
  
  private final static String SEARCH_TEAMPLTE = 
        "M-SEARCH * HTTP/1.1\r\n" +
        "HOST: 239.255.255.250:1900\r\n" +
        "MAN: \"ssdp:discover\"\r\n" + 
        "USER-AGENT: " + System.getProperty("os.name") + "/" + System.getProperty("os.version") + " UPnP/1.1 SamyGo Remote\r\n" +
        "ST: %s\r\n" + 
        "MX: %d\r\n" +
        "\r\n";
  private int timeout = DEFAULT_TIMEOUT;
  protected boolean isCSeries = false;
  
  @Override
  public InetAddress doInBackground(Integer... params) {
    if (params.length > 0) {
      this.timeout  = params[0]; 
    }
    this.isCSeries = false;
    return sendSearchMessage();
  }
  
  private InetAddress sendSearchMessage() {
    try {
      MulticastSocket socket = new MulticastSocket();
      socket.setReuseAddress(true);
      socket.joinGroup(MULTICAST_ADDRESS);
      
      // First send a search message
      //String searchMessage = String.format(SEARCH_TEAMPLTE, "upnp:rootdevice", 3);
      String searchMessage = String.format(SEARCH_TEAMPLTE, REMOCON_SN, 3);
      byte[] buffer = searchMessage.getBytes("UTF-8");
      DatagramPacket packet = new DatagramPacket(buffer, buffer.length, MULTICAST_ADDRESS, DEFAULT_PORT);
      socket.send(packet);
      
      searchMessage = String.format(SEARCH_TEAMPLTE, "urn:schemas-upnp-org:device:MediaRenderer:1", 3);
      buffer = searchMessage.getBytes("UTF-8");
      packet = new DatagramPacket(buffer, buffer.length, MULTICAST_ADDRESS, DEFAULT_PORT);
      socket.send(packet);
      
      // Now listen for replies
      buffer = new byte[8192];
      packet = new DatagramPacket(buffer, buffer.length);
      long start = SystemClock.uptimeMillis();
      InetAddress addr = null;
      while (SystemClock.uptimeMillis() - start < timeout) {
        try {
          int soTimeout = (int)(timeout - (SystemClock.uptimeMillis()-start));
          if (soTimeout < 0) break;
          socket.setSoTimeout(soTimeout);
          socket.receive(packet);
          String data = new String(packet.getData(), 0, packet.getLength());
          Log.d("TESTSDASDSADA", data);
          if (data.contains(REMOTE_CONTROL_RECEIVER_UUID)) {
            
            // We have a C- or D-Series TV
            addr = packet.getAddress();
            this.isCSeries  = true;
            socket.close();
            return addr;
          } else if (data.contains(PERSONAL_MESSAGE_RECEIVER_UUID) || data.contains(MEDIA_RENDERER_UUID)) {
            // B-Series
            addr = packet.getAddress();
          }
          
          buffer = new byte[8192];
          packet = new DatagramPacket(buffer, buffer.length);
        } catch (SocketTimeoutException e) {
          continue;
        }
      }
      socket.close();
      return addr;
    } catch (UnsupportedEncodingException e) {
      // Should never happen
    } catch (IOException e) {
      
    }
    return null;
  }
  
}




Java Source Code List

de.quist.app.samyGoRemote.AboutActivity.java
de.quist.app.samyGoRemote.BSeriesKeyCodeSenderFactory.java
de.quist.app.samyGoRemote.BSeriesSender.java
de.quist.app.samyGoRemote.Base64.java
de.quist.app.samyGoRemote.ButtonMappings.java
de.quist.app.samyGoRemote.CSeriesButtons.java
de.quist.app.samyGoRemote.CSeriesKeyCodeSenderFactory.java
de.quist.app.samyGoRemote.CSeriesSender.java
de.quist.app.samyGoRemote.HostnamePreference.java
de.quist.app.samyGoRemote.KeyCodeSender.java
de.quist.app.samyGoRemote.LayoutListPreference.java
de.quist.app.samyGoRemote.LayoutManager.java
de.quist.app.samyGoRemote.MainPreferencesActivity.java
de.quist.app.samyGoRemote.RemoconLogWrapper.java
de.quist.app.samyGoRemote.RemoteButton.java
de.quist.app.samyGoRemote.Remote.java
de.quist.app.samyGoRemote.SeekBarPreference.java
de.quist.app.samyGoRemote.SenderFactory.java
de.quist.app.samyGoRemote.Sender.java
de.quist.app.samyGoRemote.TextSender.java
de.quist.app.samyGoRemote.upnp.Discovery.java
de.quist.samy.remocon.Base64.java
de.quist.samy.remocon.ConnectionDeniedException.java
de.quist.samy.remocon.Key.java
de.quist.samy.remocon.Loggable.java
de.quist.samy.remocon.RemoteReader.java
de.quist.samy.remocon.RemoteSession.java