author | mickeyl <mickeyl> | 2005-07-14 10:34:55 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-07-14 10:34:55 (UTC) |
commit | 237cf3ec5134e299a9da0ce7deb533383f3d11f0 (patch) (unidiff) | |
tree | 299215ea1616d3625b7294744ecfebbb2b0b1d7e /libopie2 | |
parent | 27646acf1280d2644b740d0fea03723030aa19cf (diff) | |
download | opie-237cf3ec5134e299a9da0ce7deb533383f3d11f0.zip opie-237cf3ec5134e299a9da0ce7deb533383f3d11f0.tar.gz opie-237cf3ec5134e299a9da0ce7deb533383f3d11f0.tar.bz2 |
- add bool OBluetoothInterface::setUp( bool )
- add void OBluetoothInterface::isUp() const
-rw-r--r-- | libopie2/opiebluez/obluetooth.cpp | 43 | ||||
-rw-r--r-- | libopie2/opiebluez/obluetooth.h | 10 |
2 files changed, 46 insertions, 7 deletions
diff --git a/libopie2/opiebluez/obluetooth.cpp b/libopie2/opiebluez/obluetooth.cpp index b5df96e..c99a822 100644 --- a/libopie2/opiebluez/obluetooth.cpp +++ b/libopie2/opiebluez/obluetooth.cpp | |||
@@ -101,49 +101,59 @@ void OBluetooth::synchronize() | |||
101 | return; | 101 | return; |
102 | } | 102 | } |
103 | 103 | ||
104 | dl->dev_num = HCI_MAX_DEV; | 104 | dl->dev_num = HCI_MAX_DEV; |
105 | dr = dl->dev_req; | 105 | dr = dl->dev_req; |
106 | 106 | ||
107 | if (ioctl( _fd, HCIGETDEVLIST, (void *) dl) == -1) | 107 | if (::ioctl( _fd, HCIGETDEVLIST, (void *) dl) == -1) |
108 | { | 108 | { |
109 | owarn << "OBluetooth::synchronize() - can't complete HCIGETDEVLIST (" << strerror( errno ) << ")" << oendl; | 109 | owarn << "OBluetooth::synchronize() - can't complete HCIGETDEVLIST (" << strerror( errno ) << ")" << oendl; |
110 | return; | 110 | return; |
111 | } | 111 | } |
112 | 112 | ||
113 | for ( int i = 0; i < dl->dev_num; ++i ) | 113 | for ( int i = 0; i < dl->dev_num; ++i ) |
114 | { | 114 | { |
115 | di.dev_id = ( dr + i )->dev_id; | 115 | di.dev_id = ( dr + i )->dev_id; |
116 | if ( ioctl( _fd, HCIGETDEVINFO, (void *) &di) == -1 ) | 116 | if ( ::ioctl( _fd, HCIGETDEVINFO, (void *) &di ) == -1 ) |
117 | { | 117 | { |
118 | owarn << "OBluetooth::synchronize() - can't issue HCIGETDEVINFO on device " << i << " (" << strerror( errno ) << ") - skipping that device. " << oendl; | 118 | owarn << "OBluetooth::synchronize() - can't issue HCIGETDEVINFO on device " << i << " (" << strerror( errno ) << ") - skipping that device. " << oendl; |
119 | continue; | 119 | continue; |
120 | } | 120 | } |
121 | odebug << "OBluetooth::synchronize() - found device #" << di.dev_id << oendl; | 121 | odebug << "OBluetooth::synchronize() - found device #" << di.dev_id << oendl; |
122 | _interfaces.insert( di.name, new OBluetoothInterface( this, di.name, (void*) &di ) ); | 122 | _interfaces.insert( di.name, new OBluetoothInterface( this, di.name, (void*) &di, _fd ) ); |
123 | } | 123 | } |
124 | } | 124 | } |
125 | 125 | ||
126 | /*====================================================================================== | 126 | /*====================================================================================== |
127 | * OBluetoothInterface | 127 | * OBluetoothInterface |
128 | *======================================================================================*/ | 128 | *======================================================================================*/ |
129 | 129 | ||
130 | class OBluetoothInterface::Private | 130 | class OBluetoothInterface::Private |
131 | { | 131 | { |
132 | public: | 132 | public: |
133 | Private( struct hci_dev_info* di ) | 133 | Private( struct hci_dev_info* di, int fd ) |
134 | { | 134 | { |
135 | ::memcpy( &devinfo, di, sizeof(struct hci_dev_info) ); | 135 | ::memcpy( &devinfo, di, sizeof(struct hci_dev_info) ); |
136 | ctlfd = fd; | ||
137 | } | ||
138 | void reloadInfo() | ||
139 | { | ||
140 | int result = ::ioctl( ctlfd, HCIGETDEVINFO, (void *) &devinfo ); | ||
141 | if ( result == -1 ) | ||
142 | { | ||
143 | owarn << "OBluetoothInterface::Private - can't reload device info (" << strerror( errno ) << ")" << oendl; | ||
144 | } | ||
136 | } | 145 | } |
137 | struct hci_dev_info devinfo; | 146 | struct hci_dev_info devinfo; |
147 | int ctlfd; | ||
138 | }; | 148 | }; |
139 | 149 | ||
140 | OBluetoothInterface::OBluetoothInterface( QObject* parent, const char* name, void* devinfo ) | 150 | OBluetoothInterface::OBluetoothInterface( QObject* parent, const char* name, void* devinfo, int ctlfd ) |
141 | :QObject( parent, name ) | 151 | :QObject( parent, name ) |
142 | { | 152 | { |
143 | d = new OBluetoothInterface::Private( (struct hci_dev_info*) devinfo ); | 153 | d = new OBluetoothInterface::Private( (struct hci_dev_info*) devinfo, ctlfd ); |
144 | } | 154 | } |
145 | 155 | ||
146 | OBluetoothInterface::~OBluetoothInterface() | 156 | OBluetoothInterface::~OBluetoothInterface() |
147 | { | 157 | { |
148 | } | 158 | } |
149 | 159 | ||
@@ -155,9 +165,30 @@ QString OBluetoothInterface::macAddress() const | |||
155 | d->devinfo.bdaddr.b[3], | 165 | d->devinfo.bdaddr.b[3], |
156 | d->devinfo.bdaddr.b[2], | 166 | d->devinfo.bdaddr.b[2], |
157 | d->devinfo.bdaddr.b[1], | 167 | d->devinfo.bdaddr.b[1], |
158 | d->devinfo.bdaddr.b[0] ); | 168 | d->devinfo.bdaddr.b[0] ); |
159 | } | 169 | } |
160 | 170 | ||
171 | bool OBluetoothInterface::setUp( bool b ) | ||
172 | { | ||
173 | int cmd = b ? HCIDEVUP : HCIDEVDOWN; | ||
174 | int result = ::ioctl( d->ctlfd, cmd, d->devinfo.dev_id ); | ||
175 | if ( result == -1 && errno != EALREADY ) | ||
176 | { | ||
177 | owarn << "OBluetoothInterface::setUp( " << b << " ) - couldn't change interface state (" << strerror( errno ) << ")" << oendl; | ||
178 | return false; | ||
179 | } | ||
180 | else | ||
181 | { | ||
182 | d->reloadInfo(); | ||
183 | return true; | ||
184 | } | ||
185 | } | ||
186 | |||
187 | bool OBluetoothInterface::isUp() const | ||
188 | { | ||
189 | return hci_test_bit( HCI_UP, &d->devinfo.flags ); | ||
190 | } | ||
191 | |||
161 | } | 192 | } |
162 | } | 193 | } |
163 | 194 | ||
diff --git a/libopie2/opiebluez/obluetooth.h b/libopie2/opiebluez/obluetooth.h index 10c8c49..4423a55 100644 --- a/libopie2/opiebluez/obluetooth.h +++ b/libopie2/opiebluez/obluetooth.h | |||
@@ -115,21 +115,29 @@ class OBluetoothInterface : public QObject | |||
115 | { | 115 | { |
116 | public: | 116 | public: |
117 | /** | 117 | /** |
118 | * Constructor. Normally you don't create @ref OBluetoothInterface objects yourself, | 118 | * Constructor. Normally you don't create @ref OBluetoothInterface objects yourself, |
119 | * but access them via @ref OBluetooth::interface(). | 119 | * but access them via @ref OBluetooth::interface(). |
120 | */ | 120 | */ |
121 | OBluetoothInterface( QObject* parent, const char* name, void* devinfo ); | 121 | OBluetoothInterface( QObject* parent, const char* name, void* devinfo, int ctlfd ); |
122 | /** | 122 | /** |
123 | * Destructor. | 123 | * Destructor. |
124 | */ | 124 | */ |
125 | virtual ~OBluetoothInterface(); | 125 | virtual ~OBluetoothInterface(); |
126 | /** | 126 | /** |
127 | * @return the MAC address of the interfaces | 127 | * @return the MAC address of the interfaces |
128 | */ | 128 | */ |
129 | QString macAddress() const; | 129 | QString macAddress() const; |
130 | /** | ||
131 | * Setting an interface to up enables it to receive packets. | ||
132 | */ | ||
133 | bool setUp( bool ); | ||
134 | /** | ||
135 | * @returns true if the interface is up. | ||
136 | */ | ||
137 | bool isUp() const; | ||
130 | 138 | ||
131 | private: | 139 | private: |
132 | class Private; | 140 | class Private; |
133 | Private *d; | 141 | Private *d; |
134 | }; | 142 | }; |
135 | 143 | ||