/android/src/com/googlecode/androbuntu/task/WakeUpComputerTask.java

http://androbuntu.googlecode.com/ · Java · 118 lines · 89 code · 29 blank · 0 comment · 8 complexity · d2d5fe66c63a9ab679996604828e7bd5 MD5 · raw file

  1. package com.googlecode.androbuntu.task;
  2. import java.net.DatagramPacket;
  3. import java.net.DatagramSocket;
  4. import java.net.InetAddress;
  5. import java.net.UnknownHostException;
  6. import android.content.Context;
  7. import android.content.SharedPreferences;
  8. import android.os.AsyncTask;
  9. import android.os.Handler;
  10. import android.preference.PreferenceManager;
  11. import android.util.Log;
  12. import android.widget.Toast;
  13. import com.googlecode.androbuntu.PreferencesServer;
  14. public class WakeUpComputerTask extends AsyncTask<Void, Void, String> {
  15. private static String TAG = "WakeUpComputerTask";
  16. Context context;
  17. int followup_delay_millis = 0;
  18. Runnable followup_runnable = null;
  19. public WakeUpComputerTask(
  20. Context context,
  21. Runnable followup_runnable) {
  22. this.context = context;
  23. this.followup_runnable = followup_runnable;
  24. }
  25. @Override
  26. protected String doInBackground(Void... arg0) {
  27. SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(context);
  28. String mac_address_string = settings.getString(PreferencesServer.PREFKEY_WOL_MAC_ADDRESS, PreferencesServer.DEFAULT_WOL_MAC_ADDRESS);
  29. String server_host_string = settings.getString(PreferencesServer.PREFKEY_HOSTNAME_OR_IP, PreferencesServer.DEFAULT_HOST_IP_ADDRESS);
  30. Log.d(TAG, "About to send wake packet, with server address: " + server_host_string);
  31. String broadcast_address_string = null;
  32. try {
  33. byte[] address_bytes = InetAddress.getByName(server_host_string).getAddress();
  34. address_bytes[3] = (byte) 0xFF;
  35. broadcast_address_string = InetAddress.getByAddress(address_bytes).getHostAddress();
  36. } catch (UnknownHostException e) {
  37. e.printStackTrace();
  38. }
  39. float wol_delay_seconds = settings.getFloat(PreferencesServer.PREFKEY_WOL_DELAY_SECONDS, PreferencesServer.DEFAULT_WOL_DELAY_SECONDS);
  40. this.followup_delay_millis = (int) (wol_delay_seconds*1000);
  41. Log.d(TAG, "Sending wake packet to " + broadcast_address_string + " with MAC address " + mac_address_string);
  42. String response = WakeUpPC(broadcast_address_string, mac_address_string);
  43. Log.d(TAG, "Wake packet sent!");
  44. return response;
  45. }
  46. @Override
  47. protected void onPostExecute (String response) {
  48. if (response != null) {
  49. Toast.makeText(context, response, Toast.LENGTH_SHORT).show();
  50. } else {
  51. Handler handler = new Handler();
  52. handler.postDelayed(this.followup_runnable, this.followup_delay_millis);
  53. }
  54. }
  55. public static String WakeUpPC(String ipStr, String macStr) {
  56. String error = null;
  57. try {
  58. byte[] macBytes = getMacBytes(macStr);
  59. byte[] bytes = new byte[6 + 16 * macBytes.length];
  60. for (int i = 0; i < 6; i++)
  61. bytes[i] = (byte) 0xff;
  62. for (int i = 6; i < bytes.length; i += macBytes.length)
  63. System.arraycopy(macBytes, 0, bytes, i, macBytes.length);
  64. InetAddress address = InetAddress.getByName(ipStr);
  65. DatagramPacket packet = new DatagramPacket(bytes, bytes.length, address, PreferencesServer.WOL_PORT);
  66. DatagramSocket socket = new DatagramSocket();
  67. socket.send(packet);
  68. socket.close();
  69. } catch (Exception e) {
  70. System.out.println("Failed to send Wake-on-LAN packet: + e");
  71. error = e.getMessage();
  72. }
  73. return error;
  74. }
  75. private static byte[] getMacBytes(String macStr) throws IllegalArgumentException {
  76. byte[] bytes = new byte[6];
  77. String[] hex = macStr.split("(\\:|\\-)");
  78. if (hex.length != 6)
  79. throw new IllegalArgumentException("Invalid MAC address.");
  80. try {
  81. for (int i = 0; i < 6; i++)
  82. bytes[i] = (byte) Integer.parseInt(hex[i], 16);
  83. }
  84. catch (NumberFormatException e) {
  85. throw new IllegalArgumentException("Invalid hex digit in MAC address.");
  86. }
  87. return bytes;
  88. }
  89. }