altosui: Separate out flash debug code to separate thread
[fw/altos] / altosui / AltosBTDeviceIterator.java
1 /*
2  * Copyright © 2011 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package altosui;
19 import java.lang.*;
20 import java.util.*;
21 import libaltosJNI.*;
22
23 public class AltosBTDeviceIterator implements Iterator<AltosBTDevice> {
24         AltosBTDevice   current;
25         boolean         done;
26         SWIGTYPE_p_altos_bt_list list;
27
28         public boolean hasNext() {
29                 System.out.printf ("BT has next?\n");
30                 if (list == null)
31                         return false;
32                 if (current != null)
33                         return true;
34                 if (done)
35                         return false;
36                 current = new AltosBTDevice();
37                 while (libaltos.altos_bt_list_next(list, current) != 0) {
38                         System.out.printf("Got BT device %s\n", current.toString());
39 //                      if (current.matchProduct(product))
40                                 return true;
41                 }
42                 current = null;
43                 done = true;
44                 return false;
45         }
46
47         public AltosBTDevice next() {
48                 if (hasNext()) {
49                         AltosBTDevice   next = current;
50                         current = null;
51                         return next;
52                 }
53                 return null;
54         }
55
56         public void remove() {
57                 throw new UnsupportedOperationException();
58         }
59
60         public AltosBTDeviceIterator(int inquiry_time) {
61                 done = false;
62                 current = null;
63                 list = libaltos.altos_bt_list_start(inquiry_time);
64         }
65 }