From 72224480ec012cf8d68608aea5a1b035f4d16895 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Thu, 14 Jul 2005 14:17:46 +0000 Subject: - add device class - first bits at inquiry --- (limited to 'libopie2') 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 @@ -37,9 +37,11 @@ using namespace Opie::Core; #include #include #include +#include #include #include #include +#include #include #include #include @@ -189,6 +191,61 @@ bool OBluetoothInterface::isUp() const return hci_test_bit( HCI_UP, &d->devinfo.flags ); } +OBluetoothInterface::DeviceIterator OBluetoothInterface::neighbourhood() +{ + _devices.clear(); + struct hci_inquiry_req* ir; + int nrsp = 255; + + char* mybuffer = static_cast( malloc( sizeof( *ir ) + ( sizeof( inquiry_info ) * (nrsp) ) ) ); + assert( mybuffer ); + + ir = (struct hci_inquiry_req*) mybuffer; + memset( ir, 0, sizeof( *ir ) + ( sizeof( inquiry_info ) * (nrsp) ) ); + + ir->dev_id = d->devinfo.dev_id; + ir->num_rsp = nrsp; + ir->length = 8; + ir->flags = 0; + ir->lap[0] = 0x33; + ir->lap[1] = 0x8b; + ir->lap[2] = 0x9e; + + int result = ::ioctl( d->ctlfd, HCIINQUIRY, mybuffer ); + if ( result == -1 ) + { + owarn << "OBluetoothInterface::neighbourhood() - can't issue HCIINQUIRY (" << strerror( errno ) << ")" << oendl; + return DeviceIterator( _devices ); + } + + for( int i = 0; i < ir->num_rsp; ++i ) + { + odebug << "found a device" << oendl; + } + + return DeviceIterator( _devices ); } + + +/*====================================================================================== + * OBluetoothDevice + *======================================================================================*/ + +OBluetoothDevice::OBluetoothDevice( QObject* parent, const char* name ) + :QObject( parent, name ) +{ + odebug << "OBluetoothDevice::OBluetoothDevice() - '" << name << "'" << oendl; +} + +OBluetoothDevice::~OBluetoothDevice() +{ + odebug << "OBluetoothDevice::~OBluetoothDevice()" << oendl; } +QString OBluetoothDevice::macAddress() const +{ + return "N/A"; +} + +} +} diff --git a/libopie2/opiebluez/obluetooth.h b/libopie2/opiebluez/obluetooth.h index 4423a55..ee4a90d 100644 --- a/libopie2/opiebluez/obluetooth.h +++ b/libopie2/opiebluez/obluetooth.h @@ -37,6 +37,7 @@ namespace Opie { namespace Bluez { class OBluetoothInterface; +class OBluetoothDevice; /** * @brief A container class for all bluetooth interfaces @@ -104,7 +105,7 @@ class OBluetooth : public QObject /** * @brief An bluetooth interface wrapper. * - * This class provides a wrapper for an infrared interface. All the cumbersome details of + * This class provides a wrapper for a bluetooth HCI device. All the cumbersome details of * Linux ioctls are hidden under a convenient high-level interface. * @warning Most of the setting methods contained in this class require the appropriate * process permissions to work. @@ -113,6 +114,11 @@ class OBluetooth : public QObject */ class OBluetoothInterface : public QObject { + Q_OBJECT + public: + typedef QDict DeviceMap; + typedef QDictIterator DeviceIterator; + public: /** * Constructor. Normally you don't create @ref OBluetoothInterface objects yourself, @@ -135,13 +141,45 @@ class OBluetoothInterface : public QObject * @returns true if the interface is up. */ bool isUp() const; + /** + * @returns an iterator usable for iterating through the devices in range + */ + DeviceIterator neighbourhood(); private: + DeviceMap _devices; class Private; Private *d; }; +/*====================================================================================== + * OBluetoothDevice + *======================================================================================*/ + +/** + * @brief An bluetooth (remote) device abstraction. + * + * This class resembles a (remote) bluetooth device. + * @author Michael 'Mickey' Lauer + */ +class OBluetoothDevice : public QObject +{ + Q_OBJECT + public: + /** + * Constructor. + */ + OBluetoothDevice( QObject* parent, const char* name ); + /** + * Destructor. + */ + virtual ~OBluetoothDevice(); + /** + * @returns the MAC address of the device's interface + */ + QString macAddress() const; +}; } } -- cgit v0.9.0.2