altosui: Add primitive bluetooth device manager UI.
[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         String          product;
25         AltosBTDevice   current;
26         boolean         done;
27         SWIGTYPE_p_altos_bt_list list;
28
29         public boolean hasNext() {
30                 System.out.printf ("BT has next?\n");
31                 if (list == null)
32                         return false;
33                 if (current != null)
34                         return true;
35                 if (done)
36                         return false;
37                 current = new AltosBTDevice();
38                 while (libaltos.altos_bt_list_next(list, current) != 0) {
39                         System.out.printf("Got BT device %s\n", current.toString());
40 //                      if (current.matchProduct(product))
41                                 return true;
42                 }
43                 current = null;
44                 done = true;
45                 return false;
46         }
47
48         public AltosBTDevice next() {
49                 if (hasNext()) {
50                         AltosBTDevice   next = current;
51                         current = null;
52                         return next;
53                 }
54                 return null;
55         }
56
57         public void remove() {
58                 throw new UnsupportedOperationException();
59         }
60
61         public AltosBTDeviceIterator(String in_product) {
62                 product = in_product;
63                 done = false;
64                 current = null;
65                 list = libaltos.altos_bt_list_start();
66                 System.out.printf("Iteration of BT list started\n");
67         }
68 }