altosdroid: remove complexity around message passing
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / AltosBluetooth.java
1 /*
2  * Copyright © 2011 Keith Packard <keithp@keithp.com>
3  * Copyright © 2012 Mike Beattie <mike@ethernal.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; version 2 of the License.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 package org.altusmetrum.AltosDroid;
20
21 import java.io.IOException;
22 import java.io.InputStream;
23 import java.io.OutputStream;
24 import java.util.UUID;
25
26 import android.bluetooth.BluetoothAdapter;
27 import android.bluetooth.BluetoothDevice;
28 import android.bluetooth.BluetoothSocket;
29 //import android.os.Bundle;
30 import android.os.Handler;
31 //import android.os.Message;
32 import android.util.Log;
33
34 import org.altusmetrum.AltosLib.*;
35
36 public class AltosBluetooth extends AltosLink {
37
38         // Debugging
39         private static final String TAG = "AltosBluetooth";
40         private static final boolean D = true;
41
42         private ConnectThread    connect_thread = null;
43         private Thread           input_thread   = null;
44
45         private Handler          handler;
46
47         private BluetoothAdapter adapter;
48         private BluetoothDevice  device;
49         private BluetoothSocket  socket;
50         private InputStream      input;
51         private OutputStream     output;
52
53         // Constructor
54         public AltosBluetooth(BluetoothDevice in_device, Handler in_handler) {
55                 adapter = BluetoothAdapter.getDefaultAdapter();
56                 device = in_device;
57                 handler = in_handler;
58
59                 connect_thread = new ConnectThread(device);
60                 connect_thread.start();
61
62                 input_thread = new Thread(this);
63                 input_thread.start();
64         }
65
66         private class ConnectThread extends Thread {
67                 private final UUID SPP_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
68
69                 public ConnectThread(BluetoothDevice device) {
70                         BluetoothSocket tmp_socket = null;
71
72                         try {
73                                 tmp_socket = device.createInsecureRfcommSocketToServiceRecord(SPP_UUID);
74                         } catch (IOException e) {
75                                 e.printStackTrace();
76                         }
77                         socket = tmp_socket;
78                 }
79
80                 public void run() {
81                         if (D) Log.i(TAG, "ConnectThread: BEGIN");
82                         setName("ConnectThread");
83
84                         // Always cancel discovery because it will slow down a connection
85                         adapter.cancelDiscovery();
86
87                         synchronized (AltosBluetooth.this) {
88                                 // Make a connection to the BluetoothSocket
89                                 try {
90                                         // This is a blocking call and will only return on a
91                                         // successful connection or an exception
92                                         socket.connect();
93
94                                         input = socket.getInputStream();
95                                         output = socket.getOutputStream();
96                                 } catch (IOException e) {
97                                         // Close the socket
98                                         try {
99                                                 socket.close();
100                                         } catch (IOException e2) {
101                                                 if (D) Log.e(TAG, "ConnectThread: Failed to close() socket after failed connection");
102                                         }
103                                         input = null;
104                                         output = null;
105                                         AltosBluetooth.this.notifyAll();
106                                         if (D) Log.e(TAG, "ConnectThread: Failed to establish connection");
107                                         return;
108                                 }
109
110                                 // Configure the newly connected device for telemetry
111                                 print("~\nE 0\n");
112                                 set_monitor(false);
113
114                                 // Reset the ConnectThread because we're done
115                                 connect_thread = null;
116
117                                 // Send the device name back to the Telemetry Service
118                                 name = device.getName();
119                                 handler.obtainMessage(TelemetryService.MSG_CONNECTED).sendToTarget();
120
121                                 // Notify other waiting threads, now that we're connected
122                                 AltosBluetooth.this.notifyAll();
123
124                                 if (D) Log.i(TAG, "ConnectThread: Connect completed");
125                         }
126                 }
127
128                 public void cancel() {
129                         try {
130                                 if (socket != null)
131                                         socket.close();
132                         } catch (IOException e) {
133                                 if (D) Log.e(TAG, "ConnectThread: close() of connect socket failed", e);
134                         }
135                 }
136         }
137
138         private synchronized void wait_connected() throws InterruptedException, IOException {
139                 if (D) Log.i(TAG, "wait_connected(): begin");
140                 if (input == null) {
141                         if (D) Log.i(TAG, "wait_connected(): waiting");
142                         wait();
143                         if (D) Log.i(TAG, "wait_connected(): wait ended..");
144                         if (input == null) throw new IOException();
145                 }
146         }
147
148         private void connection_failed() {
149                 if (D) Log.e(TAG, "Bluetooth Socket IO failed!");
150         }
151
152         public void print(String data) {
153                 byte[] bytes = data.getBytes();
154                 if (D) Log.i(TAG, "print(): begin");
155                 try {
156                         wait_connected();
157                         output.write(bytes);
158                         if (D) Log.i(TAG, "print(): Wrote bytes: '" + data.replace('\n', '\\') + "'");
159                 } catch (IOException e) {
160                         connection_failed();
161                 } catch (InterruptedException e) {
162                         connection_failed();
163                 }
164         }
165
166         public int getchar() {
167                 if (D) Log.i(TAG, "getchar(): begin");
168                 try {
169                         wait_connected();
170                         if (D) Log.i(TAG, "getchar(): proceeding");
171                         return input.read();
172                 } catch (IOException e) {
173                         connection_failed();
174                 } catch (java.lang.InterruptedException e) {
175                         connection_failed();
176                 }
177                 return AltosLink.ERROR;
178         }
179
180         public void close() {
181                 if (D) Log.i(TAG, "close(): begin");
182                 synchronized(this) {
183                         if (D) Log.i(TAG, "close(): synched");
184
185                         if (connect_thread != null) {
186                                 if (D) Log.i(TAG, "close(): stopping connect_thread");
187                                 connect_thread.cancel();
188                                 connect_thread = null;
189                         }
190                         if (D) Log.i(TAG, "close(): Closing socket");
191                         try {
192                                 socket.close();
193                         } catch (IOException e) {
194                                 if (D) Log.e(TAG, "close(): unable to close() socket");
195                         }
196                         if (input_thread != null) {
197                                 if (D) Log.i(TAG, "close(): stopping input_thread");
198                                 try {
199                                         if (D) Log.i(TAG, "close(): input_thread.interrupt().....");
200                                         input_thread.interrupt();
201                                         if (D) Log.i(TAG, "close(): input_thread.join().....");
202                                         input_thread.join();
203                                 } catch (Exception e) {}
204                                 input_thread = null;
205                         }
206                         input = null;
207                         output = null;
208                         notifyAll();
209                 }
210         }
211
212
213         //public void flush_output() { super.flush_output(); }
214
215         public boolean can_cancel_reply()   { return false; }
216         public boolean show_reply_timeout() { return true; }
217         public void hide_reply_timeout()    { }
218
219 }