altosdroid: Add input thread for reading from TBT
[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.util.Log;
30
31 import org.altusmetrum.AltosLib.*;
32
33 public class AltosBluetooth extends AltosLink {
34
35         // Debugging
36         private static final String TAG = "AltosBluetooth";
37         private static final boolean D = true;
38
39         private ConnectThread    connect_thread = null;
40         private Thread           input_thread   = null;
41
42         private BluetoothAdapter adapter;
43         private BluetoothDevice  device;
44         private BluetoothSocket  socket;
45         private InputStream      input;
46         private OutputStream     output;
47
48         // Constructor
49         public AltosBluetooth(BluetoothDevice in_device) {
50                 adapter = BluetoothAdapter.getDefaultAdapter();
51
52
53                 connect_thread = new ConnectThread(device);
54                 connect_thread.start();
55
56                 input_thread = new Thread(this);
57                 input_thread.start();
58         }
59
60         private class ConnectThread extends Thread {
61                 private final UUID SPP_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
62
63                 public ConnectThread(BluetoothDevice device) {
64                         BluetoothSocket tmp_socket = null;
65
66                         try {
67                                 tmp_socket = device.createInsecureRfcommSocketToServiceRecord(SPP_UUID);
68                         } catch (IOException e) {
69                                 e.printStackTrace();
70                         }
71                         socket = tmp_socket;
72                 }
73
74                 public void run() {
75                         if (D) Log.i(TAG, "BEGIN ConnectThread");
76                         setName("ConnectThread");
77
78                         // Always cancel discovery because it will slow down a connection
79                         adapter.cancelDiscovery();
80
81                         // Make a connection to the BluetoothSocket
82                         try {
83                                 // This is a blocking call and will only return on a
84                                 // successful connection or an exception
85                                 socket.connect();
86                         } catch (IOException e) {
87                                 // Close the socket
88                                 try {
89                                         socket.close();
90                                 } catch (IOException e2) {
91                                         if (D) Log.e(TAG, "unable to close() socket during connection failure", e2);
92                                 }
93                                 connection_failed();
94                                 return;
95                         }
96
97                         try {
98                                 synchronized (AltosBluetooth.this) {
99                                         input = socket.getInputStream();
100                                         output = socket.getOutputStream();
101
102                                         // Reset the ConnectThread because we're done
103                                         AltosBluetooth.this.notify();
104                                         connect_thread = null;
105                                         if (D) Log.i(TAG, "Completed connect");
106                                 }
107                         } catch (Exception e) {
108                                 if (D) Log.e(TAG, "Failed to finish connection", e);
109                                 e.printStackTrace();
110                         }
111                 }
112
113                 public void cancel() {
114                         try {
115                                 if (socket != null)
116                                         socket.close();
117                         } catch (IOException e) {
118                                 if (D) Log.e(TAG, "close() of connect socket failed", e);
119                         }
120                 }
121         }
122
123         private synchronized void wait_connected() throws InterruptedException {
124                 if (input == null) {
125                         wait();
126                 }
127         }
128
129         private void connection_failed() {
130         }
131         
132         public void print(String data) {
133                 byte[] bytes = data.getBytes();
134                 try {
135                         wait_connected();
136                         output.write(bytes);
137                 } catch (IOException e) {
138                         connection_failed();
139                 } catch (InterruptedException e) {
140                         connection_failed();
141                 }
142         }
143
144         public int getchar() {
145                 try {
146                         wait_connected();
147                         return input.read();
148                 } catch (IOException e) {
149                         connection_failed();
150                 } catch (java.lang.InterruptedException e) {
151                         connection_failed();
152                 }
153                 return AltosLink.ERROR;
154         }
155                         
156         public void close() {
157                 synchronized(this) {
158                         if (connect_thread != null) {
159                                 connect_thread.cancel();
160                                 connect_thread = null;
161                         }
162                         if (input_thread != null) {
163                                 try {
164                                         input_thread.interrupt();
165                                         input_thread.join();
166                                 } catch (Exception e) {}
167                                 input_thread = null;
168                         }
169                 }
170         }
171
172
173         //public void flush_output() { super.flush_output(); }
174
175         public boolean can_cancel_reply()   { return false; }
176         public boolean show_reply_timeout() { return true; }
177         public void hide_reply_timeout()    { }
178
179 }