altosui: Remove a bunch of debugging printfs
[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                 if (list == null)
30                         return false;
31                 if (current != null)
32                         return true;
33                 if (done)
34                         return false;
35                 current = new AltosBTDevice();
36                 while (libaltos.altos_bt_list_next(list, current) != 0) {
37 //                      if (current.matchProduct(product))
38                                 return true;
39                 }
40                 current = null;
41                 done = true;
42                 return false;
43         }
44
45         public AltosBTDevice next() {
46                 if (hasNext()) {
47                         AltosBTDevice   next = current;
48                         current = null;
49                         return next;
50                 }
51                 return null;
52         }
53
54         public void remove() {
55                 throw new UnsupportedOperationException();
56         }
57
58         public AltosBTDeviceIterator(int inquiry_time) {
59                 done = false;
60                 current = null;
61                 list = libaltos.altos_bt_list_start(inquiry_time);
62         }
63 }