author | mickeyl <mickeyl> | 2005-07-14 14:17:46 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-07-14 14:17:46 (UTC) |
commit | 72224480ec012cf8d68608aea5a1b035f4d16895 (patch) (side-by-side diff) | |
tree | 104feb22de493fd96823b10e318f0160cc97e68f /libopie2/opiebluez | |
parent | 237cf3ec5134e299a9da0ce7deb533383f3d11f0 (diff) | |
download | opie-72224480ec012cf8d68608aea5a1b035f4d16895.zip opie-72224480ec012cf8d68608aea5a1b035f4d16895.tar.gz opie-72224480ec012cf8d68608aea5a1b035f4d16895.tar.bz2 |
- add device class
- first bits at inquiry
-rw-r--r-- | libopie2/opiebluez/obluetooth.cpp | 57 | ||||
-rw-r--r-- | libopie2/opiebluez/obluetooth.h | 40 |
2 files changed, 96 insertions, 1 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 @@ -38,7 +38,9 @@ using namespace Opie::Core; #include <bluetooth/hci.h> #include <bluetooth/hci_lib.h> +#include <assert.h> #include <errno.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #include <sys/ioctl.h> #include <sys/types.h> @@ -190,5 +192,60 @@ bool OBluetoothInterface::isUp() const } +OBluetoothInterface::DeviceIterator OBluetoothInterface::neighbourhood() +{ + _devices.clear(); + struct hci_inquiry_req* ir; + int nrsp = 255; + + char* mybuffer = static_cast<char*>( 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 @@ -38,4 +38,5 @@ namespace Bluez { class OBluetoothInterface; +class OBluetoothDevice; /** @@ -105,5 +106,5 @@ 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 @@ -114,4 +115,9 @@ class OBluetooth : public QObject class OBluetoothInterface : public QObject { + Q_OBJECT + public: + typedef QDict<OBluetoothDevice> DeviceMap; + typedef QDictIterator<OBluetoothDevice> DeviceIterator; + public: /** @@ -136,11 +142,43 @@ class OBluetoothInterface : public QObject */ 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 <mickey@vanille.de> + */ +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; +}; } |