c99b27f94e8d0c3b0d309c994960e7405408cbd7
[fw/altos] / altosuilib / 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 org.altusmetrum.altosuilib_3;
19
20 import java.util.*;
21 import libaltosJNI.*;
22 import org.altusmetrum.altoslib_5.*;
23
24 public class AltosBTDeviceIterator implements Iterator<AltosBTDevice> {
25         AltosBTDevice   current;
26         boolean         done;
27         SWIGTYPE_p_altos_bt_list list;
28
29         public boolean hasNext() {
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 //                      if (current.matchProduct(product))
39                                 return true;
40                 }
41                 current = null;
42                 done = true;
43                 return false;
44         }
45
46         public AltosBTDevice next() {
47                 if (hasNext()) {
48                         AltosBTDevice   next = current;
49                         current = null;
50                         return next;
51                 }
52                 return null;
53         }
54
55         public void remove() {
56                 throw new UnsupportedOperationException();
57         }
58
59         public AltosBTDeviceIterator(int inquiry_time) {
60                 done = false;
61                 current = null;
62                 list = libaltos.altos_bt_list_start(inquiry_time);
63         }
64 }