summaryrefslogtreecommitdiff
path: root/libopie2/opiebluez/obluetooth.cpp
Unidiff
Diffstat (limited to 'libopie2/opiebluez/obluetooth.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiebluez/obluetooth.cpp57
1 files changed, 57 insertions, 0 deletions
diff --git a/libopie2/opiebluez/obluetooth.cpp b/libopie2/opiebluez/obluetooth.cpp
index c99a822..e0ba0ec 100644
--- a/libopie2/opiebluez/obluetooth.cpp
+++ b/libopie2/opiebluez/obluetooth.cpp
@@ -16,51 +16,53 @@
16    : ..    .:,     . . . without even the implied warranty of 16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 20++=   -.     .`     .: details.
21 :     =  ...= . :.=- 21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29 29
30#include "obluetooth.h" 30#include "obluetooth.h"
31 31
32/* OPIE */ 32/* OPIE */
33#include <opie2/odebug.h> 33#include <opie2/odebug.h>
34using namespace Opie::Core; 34using namespace Opie::Core;
35 35
36/* STD */ 36/* STD */
37#include <bluetooth/bluetooth.h> 37#include <bluetooth/bluetooth.h>
38#include <bluetooth/hci.h> 38#include <bluetooth/hci.h>
39#include <bluetooth/hci_lib.h> 39#include <bluetooth/hci_lib.h>
40#include <assert.h>
40#include <errno.h> 41#include <errno.h>
41#include <stdlib.h> 42#include <stdlib.h>
42#include <string.h> 43#include <string.h>
44#include <unistd.h>
43#include <sys/ioctl.h> 45#include <sys/ioctl.h>
44#include <sys/types.h> 46#include <sys/types.h>
45#include <sys/socket.h> 47#include <sys/socket.h>
46 48
47namespace Opie { 49namespace Opie {
48namespace Bluez { 50namespace Bluez {
49 51
50/*====================================================================================== 52/*======================================================================================
51 * OBluetooth 53 * OBluetooth
52 *======================================================================================*/ 54 *======================================================================================*/
53 55
54OBluetooth* OBluetooth::_instance = 0; 56OBluetooth* OBluetooth::_instance = 0;
55 57
56OBluetooth::OBluetooth() 58OBluetooth::OBluetooth()
57{ 59{
58 synchronize(); 60 synchronize();
59} 61}
60 62
61OBluetooth* OBluetooth::instance() 63OBluetooth* OBluetooth::instance()
62{ 64{
63 if ( !_instance ) _instance = new OBluetooth(); 65 if ( !_instance ) _instance = new OBluetooth();
64 return _instance; 66 return _instance;
65} 67}
66 68
@@ -168,27 +170,82 @@ QString OBluetoothInterface::macAddress() const
168 d->devinfo.bdaddr.b[0] ); 170 d->devinfo.bdaddr.b[0] );
169} 171}
170 172
171bool OBluetoothInterface::setUp( bool b ) 173bool OBluetoothInterface::setUp( bool b )
172{ 174{
173 int cmd = b ? HCIDEVUP : HCIDEVDOWN; 175 int cmd = b ? HCIDEVUP : HCIDEVDOWN;
174 int result = ::ioctl( d->ctlfd, cmd, d->devinfo.dev_id ); 176 int result = ::ioctl( d->ctlfd, cmd, d->devinfo.dev_id );
175 if ( result == -1 && errno != EALREADY ) 177 if ( result == -1 && errno != EALREADY )
176 { 178 {
177 owarn << "OBluetoothInterface::setUp( " << b << " ) - couldn't change interface state (" << strerror( errno ) << ")" << oendl; 179 owarn << "OBluetoothInterface::setUp( " << b << " ) - couldn't change interface state (" << strerror( errno ) << ")" << oendl;
178 return false; 180 return false;
179 } 181 }
180 else 182 else
181 { 183 {
182 d->reloadInfo(); 184 d->reloadInfo();
183 return true; 185 return true;
184 } 186 }
185} 187}
186 188
187bool OBluetoothInterface::isUp() const 189bool OBluetoothInterface::isUp() const
188{ 190{
189 return hci_test_bit( HCI_UP, &d->devinfo.flags ); 191 return hci_test_bit( HCI_UP, &d->devinfo.flags );
190} 192}
191 193
194OBluetoothInterface::DeviceIterator OBluetoothInterface::neighbourhood()
195{
196 _devices.clear();
197 struct hci_inquiry_req* ir;
198 int nrsp = 255;
199
200 char* mybuffer = static_cast<char*>( malloc( sizeof( *ir ) + ( sizeof( inquiry_info ) * (nrsp) ) ) );
201 assert( mybuffer );
202
203 ir = (struct hci_inquiry_req*) mybuffer;
204 memset( ir, 0, sizeof( *ir ) + ( sizeof( inquiry_info ) * (nrsp) ) );
205
206 ir->dev_id = d->devinfo.dev_id;
207 ir->num_rsp = nrsp;
208 ir->length = 8;
209 ir->flags = 0;
210 ir->lap[0] = 0x33;
211 ir->lap[1] = 0x8b;
212 ir->lap[2] = 0x9e;
213
214 int result = ::ioctl( d->ctlfd, HCIINQUIRY, mybuffer );
215 if ( result == -1 )
216 {
217 owarn << "OBluetoothInterface::neighbourhood() - can't issue HCIINQUIRY (" << strerror( errno ) << ")" << oendl;
218 return DeviceIterator( _devices );
219 }
220
221 for( int i = 0; i < ir->num_rsp; ++i )
222 {
223 odebug << "found a device" << oendl;
224 }
225
226 return DeviceIterator( _devices );
192} 227}
228
229
230/*======================================================================================
231 * OBluetoothDevice
232 *======================================================================================*/
233
234OBluetoothDevice::OBluetoothDevice( QObject* parent, const char* name )
235 :QObject( parent, name )
236{
237 odebug << "OBluetoothDevice::OBluetoothDevice() - '" << name << "'" << oendl;
238}
239
240OBluetoothDevice::~OBluetoothDevice()
241{
242 odebug << "OBluetoothDevice::~OBluetoothDevice()" << oendl;
193} 243}
194 244
245QString OBluetoothDevice::macAddress() const
246{
247 return "N/A";
248}
249
250}
251}