author | korovkin <korovkin> | 2006-05-10 13:32:46 (UTC) |
---|---|---|
committer | korovkin <korovkin> | 2006-05-10 13:32:46 (UTC) |
commit | 5521b2c0508cf6e6a390bd4796e8c9f2c7a6d05f (patch) (unidiff) | |
tree | e9ea63a2fe15982e98886af727649dc6a513faac | |
parent | 620d55ae3b94fa8d2fa696b6626893e4520c3a02 (diff) | |
download | opie-5521b2c0508cf6e6a390bd4796e8c9f2c7a6d05f.zip opie-5521b2c0508cf6e6a390bd4796e8c9f2c7a6d05f.tar.gz opie-5521b2c0508cf6e6a390bd4796e8c9f2c7a6d05f.tar.bz2 |
OBEX push functionality moved to libbluetooth1.
Made some reformatting in device.cc
In bluezapplet.cpp /etc/init.d/bluetooth is started synchronously if it's called from QCopMessage.
-rw-r--r-- | noncore/net/opietooth/applet/bluezapplet.cpp | 12 | ||||
-rw-r--r-- | noncore/net/opietooth/applet/bluezapplet.h | 2 | ||||
-rw-r--r-- | noncore/net/opietooth/lib/device.cc | 108 | ||||
-rw-r--r-- | noncore/net/opietooth/lib/lib.pro | 7 | ||||
-rw-r--r-- | noncore/net/opietooth/lib/obexpush.cpp | 108 | ||||
-rw-r--r-- | noncore/net/opietooth/lib/obexpush.h | 77 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/obexdialog.cpp | 68 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/obexdialog.h | 15 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/obexftpdialog.cpp | 2 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/obexpopup.cpp | 8 |
10 files changed, 289 insertions, 118 deletions
diff --git a/noncore/net/opietooth/applet/bluezapplet.cpp b/noncore/net/opietooth/applet/bluezapplet.cpp index 90b0c6d..6351d4e 100644 --- a/noncore/net/opietooth/applet/bluezapplet.cpp +++ b/noncore/net/opietooth/applet/bluezapplet.cpp | |||
@@ -1,340 +1,344 @@ | |||
1 | /* | 1 | /* |
2 | =. This file is part of the OPIE Project | 2 | =. This file is part of the OPIE Project |
3 | .=l. Copyright (c) 2002 Maximilian Reiss <max.reiss@gmx.de> | 3 | .=l. Copyright (c) 2002 Maximilian Reiss <max.reiss@gmx.de> |
4 | .>+-= | 4 | .>+-= |
5 | _;:, .> :=|. This library is free software; you can | 5 | _;:, .> :=|. This library is free software; you can |
6 | .> <, > . <= redistribute it and/or modify it under | 6 | .> <, > . <= redistribute it and/or modify it under |
7 | :=1 )Y*s>-.-- : the terms of the GNU Library General Public | 7 | :=1 )Y*s>-.-- : the terms of the GNU Library General Public |
8 | .="- .-=="i, .._ License as published by the Free Software | 8 | .="- .-=="i, .._ License as published by the Free Software |
9 | - . .-<_> .<> Foundation; version 2 of the License. | 9 | - . .-<_> .<> Foundation; version 2 of the License. |
10 | ._= =} : | 10 | ._= =} : |
11 | .%+i> _;_. | 11 | .%+i> _;_. |
12 | .i_,=:_. -<s. This library is distributed in the hope that | 12 | .i_,=:_. -<s. This library is distributed in the hope that |
13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
14 | : .. .:, . . . without even the implied warranty of | 14 | : .. .:, . . . without even the implied warranty of |
15 | =_ + =;=| MERCHANTABILITY or FITNESS FOR A | 15 | =_ + =;=| MERCHANTABILITY or FITNESS FOR A |
16 | _.=:. : :=>: PARTICULAR PURPOSE. See the GNU | 16 | _.=:. : :=>: PARTICULAR PURPOSE. See the GNU |
17 | ..}^=.= = ; Library General Public License for more | 17 | ..}^=.= = ; Library General Public License for more |
18 | ++= -. . .: details. | 18 | ++= -. . .: details. |
19 | : = ...= . :.=- | 19 | : = ...= . :.=- |
20 | -. .:....=;==+<; You should have received a copy of the GNU | 20 | -. .:....=;==+<; You should have received a copy of the GNU |
21 | -_. . . )=. = Library General Public License along with | 21 | -_. . . )=. = Library General Public License along with |
22 | -- :-= this library; see the file COPYING.LIB. | 22 | -- :-= this library; see the file COPYING.LIB. |
23 | If not, write to the Free Software Foundation, | 23 | If not, write to the Free Software Foundation, |
24 | Inc., 59 Temple Place - Suite 330, | 24 | Inc., 59 Temple Place - Suite 330, |
25 | Boston, MA 02111-1307, USA. | 25 | Boston, MA 02111-1307, USA. |
26 | 26 | ||
27 | */ | 27 | */ |
28 | 28 | ||
29 | 29 | ||
30 | #include "bluezapplet.h" | 30 | #include "bluezapplet.h" |
31 | 31 | ||
32 | /* OPIE */ | 32 | /* OPIE */ |
33 | #include <opie2/otaskbarapplet.h> | 33 | #include <opie2/otaskbarapplet.h> |
34 | #include <opie2/odevice.h> | 34 | #include <opie2/odevice.h> |
35 | #include <opie2/odebug.h> | 35 | #include <opie2/odebug.h> |
36 | #include <opie2/oresource.h> | 36 | #include <opie2/oresource.h> |
37 | #include <opie2/oprocess.h> | 37 | #include <opie2/oprocess.h> |
38 | #include <qpe/applnk.h> | 38 | #include <qpe/applnk.h> |
39 | #include <qpe/qcopenvelope_qws.h> | 39 | #include <qpe/qcopenvelope_qws.h> |
40 | #include <qpe/config.h> | 40 | #include <qpe/config.h> |
41 | using namespace Opie::Core; | 41 | using namespace Opie::Core; |
42 | 42 | ||
43 | /* QT */ | 43 | /* QT */ |
44 | #include <qapplication.h> | 44 | #include <qapplication.h> |
45 | #include <qpoint.h> | 45 | #include <qpoint.h> |
46 | #include <qpainter.h> | 46 | #include <qpainter.h> |
47 | #include <qlayout.h> | 47 | #include <qlayout.h> |
48 | #include <qframe.h> | 48 | #include <qframe.h> |
49 | #include <qpixmap.h> | 49 | #include <qpixmap.h> |
50 | #include <qstring.h> | 50 | #include <qstring.h> |
51 | #include <qtimer.h> | 51 | #include <qtimer.h> |
52 | #include <qpopupmenu.h> | 52 | #include <qpopupmenu.h> |
53 | #include <qmessagebox.h> | 53 | #include <qmessagebox.h> |
54 | 54 | ||
55 | /* STD */ | 55 | /* STD */ |
56 | #include <device.h> | 56 | #include <device.h> |
57 | 57 | ||
58 | #define OPIE120 // undefine it fo the latest OPIE | 58 | #define OPIE120 // undefine it fo the latest OPIE |
59 | 59 | ||
60 | namespace OpieTooth { | 60 | namespace OpieTooth { |
61 | BluezApplet::BluezApplet( QWidget *parent, const char *name ) : QWidget( parent, name ) { | 61 | BluezApplet::BluezApplet( QWidget *parent, const char *name ) : QWidget( parent, name ) { |
62 | setFixedHeight( AppLnk::smallIconSize() ); | 62 | setFixedHeight( AppLnk::smallIconSize() ); |
63 | setFixedWidth( AppLnk::smallIconSize() ); | 63 | setFixedWidth( AppLnk::smallIconSize() ); |
64 | #ifdef OPIE120 | 64 | #ifdef OPIE120 |
65 | bluezOnPixmap = Resource::loadPixmap( "bluetoothapplet/bluezon" ); | 65 | bluezOnPixmap = Resource::loadPixmap( "bluetoothapplet/bluezon" ); |
66 | bluezOffPixmap = Resource::loadPixmap( "bluetoothapplet/bluezoff" ); | 66 | bluezOffPixmap = Resource::loadPixmap( "bluetoothapplet/bluezoff" ); |
67 | bluezDiscoveryOnPixmap = Resource::loadPixmap( "bluetoothapplet/magglass.png" ); | 67 | bluezDiscoveryOnPixmap = Resource::loadPixmap( "bluetoothapplet/magglass.png" ); |
68 | #else | 68 | #else |
69 | bluezOnPixmap = OResource::loadImage( "bluetoothapplet/bluezon", OResource::SmallIcon ); | 69 | bluezOnPixmap = OResource::loadImage( "bluetoothapplet/bluezon", OResource::SmallIcon ); |
70 | bluezOffPixmap = OResource::loadImage( "bluetoothapplet/bluezoff", Opie::Core::OResource::SmallIcon ); | 70 | bluezOffPixmap = OResource::loadImage( "bluetoothapplet/bluezoff", Opie::Core::OResource::SmallIcon ); |
71 | bluezDiscoveryOnPixmap = OResource::loadImage( "bluetoothapplet/bluezondiscovery", Opie::Core::OResource::SmallIcon ); | 71 | bluezDiscoveryOnPixmap = OResource::loadImage( "bluetoothapplet/bluezondiscovery", Opie::Core::OResource::SmallIcon ); |
72 | #endif | 72 | #endif |
73 | startTimer(2000); | 73 | startTimer(2000); |
74 | btDevice = 0; | 74 | btDevice = 0; |
75 | btManager = 0; | 75 | btManager = 0; |
76 | bluezactive = false; | 76 | bluezactive = false; |
77 | bluezDiscoveryActive = false; | 77 | bluezDiscoveryActive = false; |
78 | doListDevice = false; | 78 | doListDevice = false; |
79 | isScanning = false; | 79 | isScanning = false; |
80 | m_wasOn = false; | 80 | m_wasOn = false; |
81 | 81 | ||
82 | // TODO: determine whether this channel has to be closed at destruction time. | 82 | // TODO: determine whether this channel has to be closed at destruction time. |
83 | QCopChannel* chan = new QCopChannel("QPE/Bluetooth", this ); | 83 | QCopChannel* chan = new QCopChannel("QPE/Bluetooth", this ); |
84 | connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), | 84 | connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), |
85 | this, SLOT(slotMessage(const QCString&,const QByteArray&) ) ); | 85 | this, SLOT(slotMessage(const QCString&,const QByteArray&) ) ); |
86 | ::system("/etc/init.d/bluetooth stop >/dev/null 2>/dev/null"); | 86 | ::system("/etc/init.d/bluetooth stop >/dev/null 2>/dev/null"); |
87 | } | 87 | } |
88 | 88 | ||
89 | BluezApplet::~BluezApplet() { | 89 | BluezApplet::~BluezApplet() { |
90 | if ( btDevice ) { | 90 | if ( btDevice ) { |
91 | delete btDevice; | 91 | delete btDevice; |
92 | } | 92 | } |
93 | if ( btManager ) { | 93 | if ( btManager ) { |
94 | delete btManager; | 94 | delete btManager; |
95 | } | 95 | } |
96 | } | 96 | } |
97 | 97 | ||
98 | int BluezApplet::position() | 98 | int BluezApplet::position() |
99 | { | 99 | { |
100 | return 6; | 100 | return 6; |
101 | } | 101 | } |
102 | 102 | ||
103 | 103 | ||
104 | bool BluezApplet::checkBluezStatus() { | 104 | bool BluezApplet::checkBluezStatus() { |
105 | if (btDevice) { | 105 | if (btDevice) { |
106 | if (btDevice->isLoaded() ) { | 106 | if (btDevice->isLoaded() ) { |
107 | odebug << "btDevice isLoaded" << oendl; | 107 | odebug << "btDevice isLoaded" << oendl; |
108 | return true; | 108 | return true; |
109 | } else { | 109 | } else { |
110 | odebug << "btDevice is NOT loaded" << oendl; | 110 | odebug << "btDevice is NOT loaded" << oendl; |
111 | return false; | 111 | return false; |
112 | } | 112 | } |
113 | } else { | 113 | } else { |
114 | odebug << "btDevice is ZERO" << oendl; | 114 | odebug << "btDevice is ZERO" << oendl; |
115 | return false; | 115 | return false; |
116 | } | 116 | } |
117 | } | 117 | } |
118 | 118 | ||
119 | int BluezApplet::setBluezStatus(int c) { | 119 | int BluezApplet::setBluezStatus(int c, bool sync) { |
120 | 120 | ||
121 | if ( c == 1 ) { | 121 | if ( c == 1 ) { |
122 | switch ( ODevice::inst()->model() ) { | 122 | switch ( ODevice::inst()->model() ) { |
123 | case Model_iPAQ_H39xx: | 123 | case Model_iPAQ_H39xx: |
124 | btDevice = new Device( "/dev/tts/1", "bcsp", "921600" ); | 124 | btDevice = new Device( "/dev/tts/1", "bcsp", "921600" ); |
125 | break; | 125 | break; |
126 | 126 | ||
127 | case Model_iPAQ_H5xxx: | 127 | case Model_iPAQ_H5xxx: |
128 | btDevice = new Device( "/dev/tts/1", "any", "921600" ); | 128 | btDevice = new Device( "/dev/tts/1", "any", "921600" ); |
129 | break; | 129 | break; |
130 | 130 | ||
131 | #ifndef OPIE120 | 131 | #ifndef OPIE120 |
132 | case Model_MyPal_716: | 132 | case Model_MyPal_716: |
133 | btDevice = new Device( "/dev/ttyS1", "bcsp", "921600" ); | 133 | btDevice = new Device( "/dev/ttyS1", "bcsp", "921600" ); |
134 | break; | 134 | break; |
135 | #endif | 135 | #endif |
136 | 136 | ||
137 | default: | 137 | default: |
138 | btDevice = new Device( "/dev/ttySB0", "bcsp", "230400" ); | 138 | btDevice = new Device( "/dev/ttySB0", "bcsp", "230400" ); |
139 | break; | 139 | break; |
140 | } | 140 | } |
141 | QCopEnvelope e("QPE/System", "execute(QString)"); | 141 | if (sync) { |
142 | e << QString("/etc/init.d/bluetooth start"); | 142 | ::system("/etc/init.d/bluetooth start >/dev/null 2>/dev/null"); |
143 | } else { | ||
144 | QCopEnvelope e("QPE/System", "execute(QString)"); | ||
145 | e << QString("/etc/init.d/bluetooth start"); | ||
146 | } | ||
143 | } else { | 147 | } else { |
144 | ::system("/etc/init.d/bluetooth stop >/dev/null 2>/dev/null"); | 148 | ::system("/etc/init.d/bluetooth stop >/dev/null 2>/dev/null"); |
145 | if ( btManager ) { | 149 | if ( btManager ) { |
146 | delete btManager; | 150 | delete btManager; |
147 | btManager = 0; | 151 | btManager = 0; |
148 | } | 152 | } |
149 | if ( btDevice ) { | 153 | if ( btDevice ) { |
150 | delete btDevice; | 154 | delete btDevice; |
151 | btDevice = 0; | 155 | btDevice = 0; |
152 | } | 156 | } |
153 | } | 157 | } |
154 | return 0; | 158 | return 0; |
155 | } | 159 | } |
156 | 160 | ||
157 | int BluezApplet::checkBluezDiscoveryStatus() { | 161 | int BluezApplet::checkBluezDiscoveryStatus() { |
158 | return isScanning; | 162 | return isScanning; |
159 | } | 163 | } |
160 | 164 | ||
161 | int BluezApplet::setBluezDiscoveryStatus(int d) { | 165 | int BluezApplet::setBluezDiscoveryStatus(int d) { |
162 | return bluezDiscoveryActive = d; | 166 | return bluezDiscoveryActive = d; |
163 | } | 167 | } |
164 | 168 | ||
165 | // FIXME mbhaynie | 169 | // FIXME mbhaynie |
166 | // receiver for QCopChannel("QPE/Bluetooth") messages. | 170 | // receiver for QCopChannel("QPE/Bluetooth") messages. |
167 | void BluezApplet::slotMessage( const QCString& str, const QByteArray& ) | 171 | void BluezApplet::slotMessage( const QCString& str, const QByteArray& ) |
168 | { | 172 | { |
169 | if ( str == "enableBluetooth()") { | 173 | if ( str == "enableBluetooth()") { |
170 | m_wasOn = checkBluezStatus(); | 174 | m_wasOn = checkBluezStatus(); |
171 | if (!m_wasOn) { | 175 | if (!m_wasOn) { |
172 | setBluezStatus(1); | 176 | setBluezStatus(1, true); |
173 | sleep(2); | 177 | sleep(2); |
174 | } | 178 | } |
175 | } | 179 | } |
176 | else if ( str == "disableBluetooth()") { | 180 | else if ( str == "disableBluetooth()") { |
177 | /* | 181 | /* |
178 | * We can down BT only if it was started by qcop. We don't want | 182 | * We can down BT only if it was started by qcop. We don't want |
179 | * to down BT started from menu an break our networking connection | 183 | * to down BT started from menu an break our networking connection |
180 | */ | 184 | */ |
181 | if (checkBluezStatus() && !m_wasOn) | 185 | if (checkBluezStatus() && !m_wasOn) |
182 | setBluezStatus(0); | 186 | setBluezStatus(0); |
183 | doListDevice = false; | 187 | doListDevice = false; |
184 | } | 188 | } |
185 | else if ( str == "listDevices()") { | 189 | else if ( str == "listDevices()") { |
186 | if (checkBluezStatus()) { | 190 | if (checkBluezStatus()) { |
187 | doListDevice = false; | 191 | doListDevice = false; |
188 | timerEvent(0); | 192 | timerEvent(0); |
189 | if (!btManager) { | 193 | if (!btManager) { |
190 | btManager = new Manager("hci0"); | 194 | btManager = new Manager("hci0"); |
191 | connect( btManager, | 195 | connect( btManager, |
192 | SIGNAL( foundDevices(const QString&, RemoteDevice::ValueList) ), | 196 | SIGNAL( foundDevices(const QString&, RemoteDevice::ValueList) ), |
193 | this, SLOT( fillList(const QString&, RemoteDevice::ValueList) ) ) ; | 197 | this, SLOT( fillList(const QString&, RemoteDevice::ValueList) ) ) ; |
194 | } | 198 | } |
195 | btManager->searchDevices(); | 199 | btManager->searchDevices(); |
196 | isScanning = true; | 200 | isScanning = true; |
197 | } else | 201 | } else |
198 | doListDevice = true; | 202 | doListDevice = true; |
199 | } | 203 | } |
200 | } | 204 | } |
201 | 205 | ||
202 | // Once the hcitool scan is complete, report back. | 206 | // Once the hcitool scan is complete, report back. |
203 | void BluezApplet::fillList(const QString&, RemoteDevice::ValueList deviceList) | 207 | void BluezApplet::fillList(const QString&, RemoteDevice::ValueList deviceList) |
204 | { | 208 | { |
205 | QCopEnvelope e("QPE/BluetoothBack", "devices(QStringMap)"); | 209 | QCopEnvelope e("QPE/BluetoothBack", "devices(QStringMap)"); |
206 | 210 | ||
207 | QMap<QString, QString> btmap; | 211 | QMap<QString, QString> btmap; |
208 | 212 | ||
209 | RemoteDevice::ValueList::Iterator it; | 213 | RemoteDevice::ValueList::Iterator it; |
210 | for( it = deviceList.begin(); it != deviceList.end(); ++it ) | 214 | for( it = deviceList.begin(); it != deviceList.end(); ++it ) |
211 | btmap[(*it).name()] = (*it).mac(); | 215 | btmap[(*it).name()] = (*it).mac(); |
212 | 216 | ||
213 | e << btmap; | 217 | e << btmap; |
214 | isScanning = false; | 218 | isScanning = false; |
215 | timerEvent( 0 ); | 219 | timerEvent( 0 ); |
216 | } | 220 | } |
217 | 221 | ||
218 | void BluezApplet::mousePressEvent( QMouseEvent *) { | 222 | void BluezApplet::mousePressEvent( QMouseEvent *) { |
219 | 223 | ||
220 | QPopupMenu *menu = new QPopupMenu(); | 224 | QPopupMenu *menu = new QPopupMenu(); |
221 | QPopupMenu *signal = new QPopupMenu(); | 225 | QPopupMenu *signal = new QPopupMenu(); |
222 | int ret=0; | 226 | int ret=0; |
223 | 227 | ||
224 | /* Refresh active state */ | 228 | /* Refresh active state */ |
225 | timerEvent( 0 ); | 229 | timerEvent( 0 ); |
226 | 230 | ||
227 | 231 | ||
228 | if (bluezactive) { | 232 | if (bluezactive) { |
229 | menu->insertItem( tr("Disable Bluetooth"), 0 ); | 233 | menu->insertItem( tr("Disable Bluetooth"), 0 ); |
230 | } else { | 234 | } else { |
231 | menu->insertItem( tr("Enable Bluetooth"), 1 ); | 235 | menu->insertItem( tr("Enable Bluetooth"), 1 ); |
232 | } | 236 | } |
233 | 237 | ||
234 | menu->insertItem( tr("Launch manager"), 2 ); | 238 | menu->insertItem( tr("Launch manager"), 2 ); |
235 | 239 | ||
236 | menu->insertSeparator(6); | 240 | menu->insertSeparator(6); |
237 | //menu->insertItem( tr("Signal strength"), signal, 5); | 241 | //menu->insertItem( tr("Signal strength"), signal, 5); |
238 | //menu->insertSeparator(8); | 242 | //menu->insertSeparator(8); |
239 | 243 | ||
240 | if (bluezDiscoveryActive) { | 244 | if (bluezDiscoveryActive) { |
241 | menu->insertItem( tr("Disable discovery"), 3 ); | 245 | menu->insertItem( tr("Disable discovery"), 3 ); |
242 | } else { | 246 | } else { |
243 | menu->insertItem( tr("Enable discovery"), 4 ); | 247 | menu->insertItem( tr("Enable discovery"), 4 ); |
244 | } | 248 | } |
245 | 249 | ||
246 | 250 | ||
247 | QPoint p = mapToGlobal( QPoint(1, -menu->sizeHint().height()-1) ); | 251 | QPoint p = mapToGlobal( QPoint(1, -menu->sizeHint().height()-1) ); |
248 | ret = menu->exec(p, 0); | 252 | ret = menu->exec(p, 0); |
249 | menu->hide(); | 253 | menu->hide(); |
250 | 254 | ||
251 | switch(ret) { | 255 | switch(ret) { |
252 | case 0: | 256 | case 0: |
253 | setBluezStatus(0); | 257 | setBluezStatus(0); |
254 | timerEvent( 0 ); | 258 | timerEvent( 0 ); |
255 | break; | 259 | break; |
256 | case 1: | 260 | case 1: |
257 | setBluezStatus(1); | 261 | setBluezStatus(1); |
258 | timerEvent( 0 ); | 262 | timerEvent( 0 ); |
259 | break; | 263 | break; |
260 | case 2: | 264 | case 2: |
261 | // start bluetoothmanager | 265 | // start bluetoothmanager |
262 | launchManager(); | 266 | launchManager(); |
263 | timerEvent( 0 ); | 267 | timerEvent( 0 ); |
264 | break; | 268 | break; |
265 | case 3: | 269 | case 3: |
266 | setBluezDiscoveryStatus(0); | 270 | setBluezDiscoveryStatus(0); |
267 | timerEvent( 0 ); | 271 | timerEvent( 0 ); |
268 | break; | 272 | break; |
269 | case 4: | 273 | case 4: |
270 | setBluezDiscoveryStatus(1); | 274 | setBluezDiscoveryStatus(1); |
271 | timerEvent(0 ); | 275 | timerEvent(0 ); |
272 | break; | 276 | break; |
273 | //case 7: | 277 | //case 7: |
274 | // With table of currently-detected devices. | 278 | // With table of currently-detected devices. |
275 | } | 279 | } |
276 | 280 | ||
277 | delete signal; | 281 | delete signal; |
278 | delete menu; | 282 | delete menu; |
279 | } | 283 | } |
280 | 284 | ||
281 | 285 | ||
282 | /** | 286 | /** |
283 | * Launches the bluetooth manager | 287 | * Launches the bluetooth manager |
284 | */ | 288 | */ |
285 | void BluezApplet::launchManager() { | 289 | void BluezApplet::launchManager() { |
286 | QCopEnvelope e("QPE/System", "execute(QString)"); | 290 | QCopEnvelope e("QPE/System", "execute(QString)"); |
287 | e << QString("bluetooth-manager"); | 291 | e << QString("bluetooth-manager"); |
288 | } | 292 | } |
289 | 293 | ||
290 | /** | 294 | /** |
291 | * Refresh timer | 295 | * Refresh timer |
292 | * @param the timer event | 296 | * @param the timer event |
293 | */ | 297 | */ |
294 | void BluezApplet::timerEvent( QTimerEvent * ) { | 298 | void BluezApplet::timerEvent( QTimerEvent * ) { |
295 | bool oldactive = bluezactive; | 299 | bool oldactive = bluezactive; |
296 | int olddiscovery = bluezDiscoveryActive; | 300 | int olddiscovery = bluezDiscoveryActive; |
297 | 301 | ||
298 | bluezactive = checkBluezStatus(); | 302 | bluezactive = checkBluezStatus(); |
299 | bluezDiscoveryActive = checkBluezDiscoveryStatus(); | 303 | bluezDiscoveryActive = checkBluezDiscoveryStatus(); |
300 | 304 | ||
301 | if ((bluezactive != oldactive) || | 305 | if ((bluezactive != oldactive) || |
302 | (bluezDiscoveryActive != olddiscovery)) | 306 | (bluezDiscoveryActive != olddiscovery)) |
303 | update(); | 307 | update(); |
304 | if (bluezactive && doListDevice) { | 308 | if (bluezactive && doListDevice) { |
305 | const QByteArray arr; | 309 | const QByteArray arr; |
306 | slotMessage("listDevices()", arr); | 310 | slotMessage("listDevices()", arr); |
307 | } | 311 | } |
308 | } | 312 | } |
309 | 313 | ||
310 | /** | 314 | /** |
311 | * Implementation of the paint event | 315 | * Implementation of the paint event |
312 | * @param the QPaintEvent | 316 | * @param the QPaintEvent |
313 | */ | 317 | */ |
314 | void BluezApplet::paintEvent( QPaintEvent* ) { | 318 | void BluezApplet::paintEvent( QPaintEvent* ) { |
315 | QPainter p(this); | 319 | QPainter p(this); |
316 | odebug << "paint bluetooth pixmap" << oendl; | 320 | odebug << "paint bluetooth pixmap" << oendl; |
317 | 321 | ||
318 | if (bluezactive) { | 322 | if (bluezactive) { |
319 | #ifdef OPIE120 | 323 | #ifdef OPIE120 |
320 | p.drawPixmap( 0, -1, bluezOnPixmap ); | 324 | p.drawPixmap( 0, -1, bluezOnPixmap ); |
321 | #else | 325 | #else |
322 | p.drawPixmap( 0, 0, bluezOnPixmap ); | 326 | p.drawPixmap( 0, 0, bluezOnPixmap ); |
323 | #endif | 327 | #endif |
324 | } else { | 328 | } else { |
325 | #ifdef OPIE120 | 329 | #ifdef OPIE120 |
326 | p.drawPixmap( 0, -1, bluezOffPixmap ); | 330 | p.drawPixmap( 0, -1, bluezOffPixmap ); |
327 | #else | 331 | #else |
328 | p.drawPixmap( 0, 0, bluezOffPixmap ); | 332 | p.drawPixmap( 0, 0, bluezOffPixmap ); |
329 | #endif | 333 | #endif |
330 | } | 334 | } |
331 | 335 | ||
332 | if (bluezDiscoveryActive) { | 336 | if (bluezDiscoveryActive) { |
333 | p.drawPixmap( 0, 0, bluezDiscoveryOnPixmap ); | 337 | p.drawPixmap( 0, 0, bluezDiscoveryOnPixmap ); |
334 | } | 338 | } |
335 | } | 339 | } |
336 | }; | 340 | }; |
337 | 341 | ||
338 | 342 | ||
339 | EXPORT_OPIE_APPLET_v1( OpieTooth::BluezApplet ) | 343 | EXPORT_OPIE_APPLET_v1( OpieTooth::BluezApplet ) |
340 | 344 | ||
diff --git a/noncore/net/opietooth/applet/bluezapplet.h b/noncore/net/opietooth/applet/bluezapplet.h index 90bee3b..1937934 100644 --- a/noncore/net/opietooth/applet/bluezapplet.h +++ b/noncore/net/opietooth/applet/bluezapplet.h | |||
@@ -1,81 +1,81 @@ | |||
1 | /* | 1 | /* |
2 | =. This file is part of the OPIE Project | 2 | =. This file is part of the OPIE Project |
3 | .=l. Copyright (c) 2002 Maximilian Reiss <max.reiss@gmx.de> | 3 | .=l. Copyright (c) 2002 Maximilian Reiss <max.reiss@gmx.de> |
4 | .>+-= | 4 | .>+-= |
5 | _;:, .> :=|. This library is free software; you can | 5 | _;:, .> :=|. This library is free software; you can |
6 | .> <, > . <= redistribute it and/or modify it under | 6 | .> <, > . <= redistribute it and/or modify it under |
7 | :=1 )Y*s>-.-- : the terms of the GNU Library General Public | 7 | :=1 )Y*s>-.-- : the terms of the GNU Library General Public |
8 | .="- .-=="i, .._ License as published by the Free Software | 8 | .="- .-=="i, .._ License as published by the Free Software |
9 | - . .-<_> .<> Foundation; version 2 of the License. | 9 | - . .-<_> .<> Foundation; version 2 of the License. |
10 | ._= =} : | 10 | ._= =} : |
11 | .%+i> _;_. | 11 | .%+i> _;_. |
12 | .i_,=:_. -<s. This library is distributed in the hope that | 12 | .i_,=:_. -<s. This library is distributed in the hope that |
13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 13 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
14 | : .. .:, . . . without even the implied warranty of | 14 | : .. .:, . . . without even the implied warranty of |
15 | =_ + =;=| MERCHANTABILITY or FITNESS FOR A | 15 | =_ + =;=| MERCHANTABILITY or FITNESS FOR A |
16 | _.=:. : :=>: PARTICULAR PURPOSE. See the GNU | 16 | _.=:. : :=>: PARTICULAR PURPOSE. See the GNU |
17 | ..}^=.= = ; Library General Public License for more | 17 | ..}^=.= = ; Library General Public License for more |
18 | ++= -. . .: details. | 18 | ++= -. . .: details. |
19 | : = ...= . :.=- | 19 | : = ...= . :.=- |
20 | -. .:....=;==+<; You should have received a copy of the GNU | 20 | -. .:....=;==+<; You should have received a copy of the GNU |
21 | -_. . . )=. = Library General Public License along with | 21 | -_. . . )=. = Library General Public License along with |
22 | -- :-= this library; see the file COPYING.LIB. | 22 | -- :-= this library; see the file COPYING.LIB. |
23 | If not, write to the Free Software Foundation, | 23 | If not, write to the Free Software Foundation, |
24 | Inc., 59 Temple Place - Suite 330, | 24 | Inc., 59 Temple Place - Suite 330, |
25 | Boston, MA 02111-1307, USA. | 25 | Boston, MA 02111-1307, USA. |
26 | 26 | ||
27 | */ | 27 | */ |
28 | 28 | ||
29 | #ifndef __BLUEZAPPLET_H__ | 29 | #ifndef __BLUEZAPPLET_H__ |
30 | #define __BLUEZAPPLET_H__ | 30 | #define __BLUEZAPPLET_H__ |
31 | 31 | ||
32 | #include <qwidget.h> | 32 | #include <qwidget.h> |
33 | #include <qpixmap.h> | 33 | #include <qpixmap.h> |
34 | #include <qtimer.h> | 34 | #include <qtimer.h> |
35 | #include <manager.h> | 35 | #include <manager.h> |
36 | #include <opie2/oprocess.h> | 36 | #include <opie2/oprocess.h> |
37 | 37 | ||
38 | namespace OpieTooth { | 38 | namespace OpieTooth { |
39 | class Device; | 39 | class Device; |
40 | 40 | ||
41 | class BluezApplet : public QWidget { | 41 | class BluezApplet : public QWidget { |
42 | Q_OBJECT | 42 | Q_OBJECT |
43 | public: | 43 | public: |
44 | BluezApplet( QWidget *parent = 0, const char *name=0 ); | 44 | BluezApplet( QWidget *parent = 0, const char *name=0 ); |
45 | ~BluezApplet(); | 45 | ~BluezApplet(); |
46 | static int position(); | 46 | static int position(); |
47 | protected: | 47 | protected: |
48 | void timerEvent(QTimerEvent *te ); | 48 | void timerEvent(QTimerEvent *te ); |
49 | 49 | ||
50 | public slots: | 50 | public slots: |
51 | void fillList( const QString& device, RemoteDevice::ValueList list ); | 51 | void fillList( const QString& device, RemoteDevice::ValueList list ); |
52 | 52 | ||
53 | private: | 53 | private: |
54 | void mousePressEvent( QMouseEvent * ); | 54 | void mousePressEvent( QMouseEvent * ); |
55 | void paintEvent( QPaintEvent* ); | 55 | void paintEvent( QPaintEvent* ); |
56 | void launchManager(); | 56 | void launchManager(); |
57 | bool checkBluezStatus(); | 57 | bool checkBluezStatus(); |
58 | int setBluezStatus(int); | 58 | int setBluezStatus(int, bool sync = false); |
59 | int checkBluezDiscoveryStatus(); | 59 | int checkBluezDiscoveryStatus(); |
60 | int setBluezDiscoveryStatus(int); | 60 | int setBluezDiscoveryStatus(int); |
61 | 61 | ||
62 | private: | 62 | private: |
63 | Device* btDevice; | 63 | Device* btDevice; |
64 | Manager *btManager; | 64 | Manager *btManager; |
65 | QPixmap bluezOnPixmap; | 65 | QPixmap bluezOnPixmap; |
66 | QPixmap bluezOffPixmap; | 66 | QPixmap bluezOffPixmap; |
67 | QPixmap bluezDiscoveryOnPixmap; | 67 | QPixmap bluezDiscoveryOnPixmap; |
68 | bool bluezactive; | 68 | bool bluezactive; |
69 | bool bluezDiscoveryActive; | 69 | bool bluezDiscoveryActive; |
70 | bool doListDevice; //If I have to list devices after bringing BT up? | 70 | bool doListDevice; //If I have to list devices after bringing BT up? |
71 | bool isScanning; //If I'm scanning devices | 71 | bool isScanning; //If I'm scanning devices |
72 | bool m_wasOn; //If BT was started by menu? | 72 | bool m_wasOn; //If BT was started by menu? |
73 | 73 | ||
74 | private slots: | 74 | private slots: |
75 | void slotMessage( const QCString& , const QByteArray& ); | 75 | void slotMessage( const QCString& , const QByteArray& ); |
76 | }; | 76 | }; |
77 | }; | 77 | }; |
78 | 78 | ||
79 | 79 | ||
80 | #endif | 80 | #endif |
81 | 81 | ||
diff --git a/noncore/net/opietooth/lib/device.cc b/noncore/net/opietooth/lib/device.cc index 40acbd2..2f04d46 100644 --- a/noncore/net/opietooth/lib/device.cc +++ b/noncore/net/opietooth/lib/device.cc | |||
@@ -1,186 +1,182 @@ | |||
1 | 1 | ||
2 | #include "device.h" | 2 | #include "device.h" |
3 | 3 | ||
4 | /* OPIE */ | 4 | /* OPIE */ |
5 | #include <opie2/oprocess.h> | 5 | #include <opie2/oprocess.h> |
6 | #include <opie2/odebug.h> | 6 | #include <opie2/odebug.h> |
7 | #include <opie2/odevice.h> | 7 | #include <opie2/odevice.h> |
8 | 8 | ||
9 | using namespace Opie::Core; | 9 | using namespace Opie::Core; |
10 | 10 | ||
11 | /* STD */ | 11 | /* STD */ |
12 | #include <signal.h> | 12 | #include <signal.h> |
13 | 13 | ||
14 | 14 | ||
15 | using namespace OpieTooth; | 15 | using namespace OpieTooth; |
16 | 16 | ||
17 | using Opie::Core::OProcess; | 17 | using Opie::Core::OProcess; |
18 | namespace { | 18 | namespace { |
19 | int parsePid( const QCString& par ) | 19 | int parsePid( const QCString& par ) |
20 | { | 20 | { |
21 | int id=0; | 21 | int id = 0; |
22 | QString string( par ); | 22 | QString string( par ); |
23 | QStringList list = QStringList::split( '\n', string ); | 23 | QStringList list = QStringList::split( '\n', string ); |
24 | 24 | ||
25 | for( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) | 25 | for( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) { |
26 | { | 26 | owarn << "parsePID: " << (*it).latin1() << oendl; |
27 | owarn << "parsePID: " << (*it).latin1() << oendl; | ||
28 | 27 | ||
29 | // FIXME mbhaynie: Surely there is a better way to skip | 28 | // FIXME mbhaynie: Surely there is a better way to skip |
30 | // verbosity (E.g. the TI device configuration | 29 | // verbosity (E.g. the TI device configuration |
31 | // script). Apparently the PID is always on a line by | 30 | // script). Apparently the PID is always on a line by |
32 | // itself, or is at least the first word of a line. Does | 31 | // itself, or is at least the first word of a line. Does |
33 | // QString have somethine like startsWithRegex("[0-9]+")? | 32 | // QString have somethine like startsWithRegex("[0-9]+")? |
34 | if( (*it).startsWith("#") ) continue; | 33 | if( (*it).startsWith("#") ) continue; |
35 | if( (*it).startsWith("TI") ) continue; | 34 | if( (*it).startsWith("TI") ) continue; |
36 | if( (*it).startsWith("Loading") ) continue; | 35 | if( (*it).startsWith("Loading") ) continue; |
37 | if( (*it).startsWith("BTS") ) continue; | 36 | if( (*it).startsWith("BTS") ) continue; |
38 | if( !(*it).startsWith("CSR") ) | 37 | if( !(*it).startsWith("CSR") ) { |
39 | { | 38 | id = (*it).toInt(); |
40 | id = (*it).toInt(); | 39 | break; |
41 | break; | 40 | } |
42 | } | ||
43 | } | ||
44 | return id; | ||
45 | } | 41 | } |
42 | return id; | ||
43 | } | ||
46 | } | 44 | } |
47 | 45 | ||
48 | Device::Device(const QString &device, const QString &mode, const QString &speed ) | 46 | Device::Device(const QString &device, const QString &mode, const QString &speed ) |
49 | : QObject(0, "device") { | 47 | : QObject(0, "device") { |
50 | 48 | ||
51 | owarn << "OpieTooth::Device create" << oendl; | 49 | owarn << "OpieTooth::Device create" << oendl; |
52 | m_hci = 0; | 50 | m_hci = 0; |
53 | m_process = 0; | 51 | m_process = 0; |
54 | m_attached = false; | 52 | m_attached = false; |
55 | m_device = device; | 53 | m_device = device; |
56 | m_mode = mode; | 54 | m_mode = mode; |
57 | m_speed = speed; | 55 | m_speed = speed; |
58 | attach(); | 56 | attach(); |
59 | } | 57 | } |
60 | Device::~Device(){ | 58 | Device::~Device(){ |
61 | detach(); | 59 | detach(); |
62 | } | 60 | } |
63 | 61 | ||
64 | // FIXME mbhaynie -- If BT is active, and opie is restarted, this | 62 | // FIXME mbhaynie -- If BT is active, and opie is restarted, this |
65 | // applet thinks bt is down, and will fail to start it again. Not | 63 | // applet thinks bt is down, and will fail to start it again. Not |
66 | // sure why. | 64 | // sure why. |
67 | void Device::attach(){ | 65 | void Device::attach(){ |
68 | owarn << "attaching " << m_device.latin1() << " " << m_mode.latin1() << " " << m_speed.latin1() << oendl; | 66 | owarn << "attaching " << m_device.latin1() << " " << m_mode.latin1() << " " << m_speed.latin1() << oendl; |
69 | if(m_process == 0 ){ | 67 | if(m_process == 0 ){ |
70 | m_output.resize(0); | 68 | m_output.resize(0); |
71 | owarn << "new process to create" << oendl; | 69 | owarn << "new process to create" << oendl; |
72 | m_process = new OProcess(); | 70 | m_process = new OProcess(); |
73 | *m_process << "hciattach"; | 71 | *m_process << "hciattach"; |
74 | *m_process << "-p"; | 72 | *m_process << "-p"; |
75 | 73 | ||
76 | // FIXME -- this is a hack for an odd hciattach interface. | 74 | // FIXME -- this is a hack for an odd hciattach interface. |
77 | if ( ODevice::inst()->modelString() == "HX4700" ) | 75 | if ( ODevice::inst()->modelString() == "HX4700" ) |
78 | { | 76 | *m_process << "-S" << "/etc/bluetooth/TIInit_3.2.26.bts" << "/dev/ttyS1" << "texas"; |
79 | *m_process << "-S" << "/etc/bluetooth/TIInit_3.2.26.bts" << "/dev/ttyS1" << "texas"; | ||
80 | } | ||
81 | else | 77 | else |
82 | { | 78 | *m_process << m_device << m_mode << m_speed; |
83 | *m_process << m_device << m_mode << m_speed; | ||
84 | } | ||
85 | connect(m_process, SIGNAL( processExited(Opie::Core::OProcess*) ), | 79 | connect(m_process, SIGNAL( processExited(Opie::Core::OProcess*) ), |
86 | this, SLOT( slotExited(Opie::Core::OProcess* ) ) ); | 80 | this, SLOT( slotExited(Opie::Core::OProcess* ) ) ); |
87 | connect(m_process, SIGNAL( receivedStdout(Opie::Core::OProcess*, char*, int) ), | 81 | connect(m_process, SIGNAL( receivedStdout(Opie::Core::OProcess*, char*, int) ), |
88 | this, SLOT(slotStdOut(Opie::Core::OProcess*,char*,int ) ) ); | 82 | this, SLOT(slotStdOut(Opie::Core::OProcess*,char*,int ) ) ); |
89 | connect(m_process, SIGNAL(receivedStderr(Opie::Core::OProcess*, char*, int ) ), | 83 | connect(m_process, SIGNAL(receivedStderr(Opie::Core::OProcess*, char*, int ) ), |
90 | this, SLOT(slotStdErr(Opie::Core::OProcess*,char*,int) ) ); | 84 | this, SLOT(slotStdErr(Opie::Core::OProcess*,char*,int) ) ); |
91 | if(!m_process->start(OProcess::NotifyOnExit, OProcess::AllOutput ) ){ | 85 | if(!m_process->start(OProcess::NotifyOnExit, OProcess::AllOutput ) ){ |
92 | owarn << "Could not start" << oendl; | 86 | owarn << "Could not start" << oendl; |
93 | delete m_process; | 87 | delete m_process; |
94 | m_process = 0; | 88 | m_process = 0; |
95 | } | 89 | } |
96 | }; | 90 | } |
97 | } | 91 | } |
98 | void Device::detach(){ | 92 | void Device::detach(){ |
99 | delete m_hci; | 93 | delete m_hci; |
94 | m_hci = 0; | ||
100 | delete m_process; | 95 | delete m_process; |
96 | m_process = 0; | ||
101 | // kill the pid we got | 97 | // kill the pid we got |
102 | if(m_attached ){ | 98 | if(m_attached ){ |
103 | //kill the pid | 99 | //kill the pid |
104 | owarn << "killing" << oendl; | 100 | owarn << "killing" << oendl; |
105 | kill(pid, 9); | 101 | ::kill(pid, 9); |
106 | } | 102 | } |
107 | owarn << "detached" << oendl; | 103 | owarn << "detached" << oendl; |
108 | } | 104 | } |
109 | bool Device::isLoaded()const{ | 105 | bool Device::isLoaded()const{ |
110 | return m_attached; | 106 | return m_attached; |
111 | } | 107 | } |
112 | QString Device::devName()const { | 108 | QString Device::devName()const { |
113 | return QString::fromLatin1("hci0"); | 109 | return QString::fromLatin1("hci0"); |
114 | }; | 110 | }; |
115 | void Device::slotExited( OProcess* proc) | 111 | void Device::slotExited( OProcess* proc) |
116 | { | 112 | { |
117 | owarn << "prcess exited" << oendl; | 113 | owarn << "prcess exited" << oendl; |
118 | if(proc== m_process ){ | 114 | if(proc== m_process ){ |
119 | owarn << "proc == m_process" << oendl; | 115 | owarn << "proc == m_process" << oendl; |
120 | if( m_process->normalExit() ){ // normal exit | 116 | if( m_process->normalExit() ){ // normal exit |
121 | owarn << "normalExit" << oendl; | 117 | owarn << "normalExit" << oendl; |
122 | int ret = m_process->exitStatus(); | 118 | int ret = m_process->exitStatus(); |
123 | if( ret == 0 ){ // attached | 119 | if( ret == 0 ){ // attached |
124 | owarn << "attached" << oendl; | 120 | owarn << "attached" << oendl; |
125 | owarn << "Output: " << m_output.data() << oendl; | 121 | owarn << "Output: " << m_output.data() << oendl; |
126 | pid = parsePid( m_output ); | 122 | pid = parsePid( m_output ); |
127 | owarn << "Pid = " << pid << oendl; | 123 | owarn << "Pid = " << pid << oendl; |
128 | // now hciconfig hci0 up ( determine hciX FIXME) | 124 | // now hciconfig hci0 up ( determine hciX FIXME) |
129 | // and call hciconfig hci0 up | 125 | // and call hciconfig hci0 up |
130 | // FIXME hardcoded to hci0 now :( | 126 | // FIXME hardcoded to hci0 now :( |
131 | m_hci = new OProcess( ); | 127 | m_hci = new OProcess( ); |
132 | *m_hci << "hciconfig"; | 128 | *m_hci << "hciconfig"; |
133 | *m_hci << "hci0 up"; | 129 | *m_hci << "hci0 up"; |
134 | connect(m_hci, SIGNAL( processExited(Opie::Core::OProcess*) ), | 130 | connect(m_hci, SIGNAL( processExited(Opie::Core::OProcess*) ), |
135 | this, SLOT( slotExited(Opie::Core::OProcess* ) ) ); | 131 | this, SLOT( slotExited(Opie::Core::OProcess* ) ) ); |
136 | if(!m_hci->start() ){ | 132 | if(!m_hci->start() ){ |
137 | owarn << "could not start" << oendl; | 133 | owarn << "could not start" << oendl; |
138 | m_attached = false; | 134 | m_attached = false; |
139 | emit device("hci0", false ); | 135 | emit device("hci0", false ); |
140 | } | 136 | } |
141 | }else{ | 137 | }else{ |
142 | owarn << "crass" << oendl; | 138 | owarn << "crass" << oendl; |
143 | m_attached = false; | 139 | m_attached = false; |
144 | emit device("hci0", false ); | 140 | emit device("hci0", false ); |
145 | 141 | ||
146 | } | 142 | } |
147 | } | 143 | } |
148 | delete m_process; | 144 | delete m_process; |
149 | m_process = 0; | 145 | m_process = 0; |
150 | }else if(proc== m_hci ){ | 146 | }else if(proc== m_hci ){ |
151 | owarn << "M HCI exited" << oendl; | 147 | owarn << "M HCI exited" << oendl; |
152 | if( m_hci->normalExit() ){ | 148 | if( m_hci->normalExit() ){ |
153 | owarn << "normal exit" << oendl; | 149 | owarn << "normal exit" << oendl; |
154 | int ret = m_hci->exitStatus(); | 150 | int ret = m_hci->exitStatus(); |
155 | if( ret == 0 ){ | 151 | if( ret == 0 ){ |
156 | owarn << "attached really really attached" << oendl; | 152 | owarn << "attached really really attached" << oendl; |
157 | m_attached = true; | 153 | m_attached = true; |
158 | emit device("hci0", true ); | 154 | emit device("hci0", true ); |
159 | }else{ | 155 | }else{ |
160 | owarn << "failed" << oendl; | 156 | owarn << "failed" << oendl; |
161 | emit device("hci0", false ); | 157 | emit device("hci0", false ); |
162 | m_attached = false; | 158 | m_attached = false; |
163 | } | 159 | } |
164 | }// normal exit | 160 | }// normal exit |
165 | delete m_hci; | 161 | delete m_hci; |
166 | m_hci = 0; | 162 | m_hci = 0; |
167 | } | 163 | } |
168 | } | 164 | } |
169 | void Device::slotStdOut(OProcess* proc, char* chars, int len) | 165 | void Device::slotStdOut(OProcess* proc, char* chars, int len) |
170 | { | 166 | { |
171 | owarn << "std out" << oendl; | 167 | owarn << "std out" << oendl; |
172 | if( len <1 ){ | 168 | if( len <1 ){ |
173 | owarn << "len < 1 " << oendl; | 169 | owarn << "len < 1 " << oendl; |
174 | return; | 170 | return; |
175 | } | 171 | } |
176 | if(proc == m_process ){ | 172 | if(proc == m_process ){ |
177 | QCString string( chars, len+1 ); // \0 == +1 | 173 | QCString string( chars, len+1 ); // \0 == +1 |
178 | owarn << "output: " << string.data() << oendl; | 174 | owarn << "output: " << string.data() << oendl; |
179 | m_output.append( string.data() ); | 175 | m_output.append( string.data() ); |
180 | } | 176 | } |
181 | } | 177 | } |
182 | void Device::slotStdErr(OProcess* proc, char* chars, int len) | 178 | void Device::slotStdErr(OProcess* proc, char* chars, int len) |
183 | { | 179 | { |
184 | owarn << "std err" << oendl; | 180 | owarn << "std err" << oendl; |
185 | slotStdOut( proc, chars, len ); | 181 | slotStdOut( proc, chars, len ); |
186 | } | 182 | } |
diff --git a/noncore/net/opietooth/lib/lib.pro b/noncore/net/opietooth/lib/lib.pro index 781bf15..e11af9a 100644 --- a/noncore/net/opietooth/lib/lib.pro +++ b/noncore/net/opietooth/lib/lib.pro | |||
@@ -1,12 +1,15 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qte warn_on | 2 | CONFIG += qte warn_on |
3 | HEADERS = connection.h parser.h device.h manager.h remotedevice.h services.h \ | 3 | HEADERS = connection.h parser.h device.h manager.h remotedevice.h services.h \ |
4 | startpanconnection.h startdunconnection.h bt-serial.h forwarder.h | 4 | startpanconnection.h startdunconnection.h obexpush.h \ |
5 | bt-serial.h forwarder.h | ||
5 | SOURCES = connection.cpp parser.cc device.cc manager.cc remotedevice.cc services.cc \ | 6 | SOURCES = connection.cpp parser.cc device.cc manager.cc remotedevice.cc services.cc \ |
6 | startpanconnection.cpp startdunconnection.cpp bt-serial.c forwarder.cc | 7 | startpanconnection.cpp startdunconnection.cpp obexpush.cpp \ |
8 | bt-serial.c forwarder.cc | ||
9 | |||
7 | TARGET = opietooth1 | 10 | TARGET = opietooth1 |
8 | INCLUDEPATH += $(OPIEDIR)/include . | 11 | INCLUDEPATH += $(OPIEDIR)/include . |
9 | DESTDIR = $(OPIEDIR)/lib | 12 | DESTDIR = $(OPIEDIR)/lib |
10 | LIBS += -lopiecore2 | 13 | LIBS += -lopiecore2 |
11 | 14 | ||
12 | include( $(OPIEDIR)/include.pro ) | 15 | include( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/net/opietooth/lib/obexpush.cpp b/noncore/net/opietooth/lib/obexpush.cpp new file mode 100644 index 0000000..e0a4bee --- a/dev/null +++ b/noncore/net/opietooth/lib/obexpush.cpp | |||
@@ -0,0 +1,108 @@ | |||
1 | /* $Id$ */ | ||
2 | /* OBEX push functions implementation */ | ||
3 | /*************************************************************************** | ||
4 | * * | ||
5 | * This program is free software; you can redistribute it and/or modify * | ||
6 | * it under the terms of the GNU General Public License as published by * | ||
7 | * the Free Software Foundation; either version 2 of the License, or * | ||
8 | * (at your option) any later version. * | ||
9 | * * | ||
10 | ***************************************************************************/ | ||
11 | #include "obexpush.h" | ||
12 | |||
13 | #include <qfileinfo.h> | ||
14 | #include <qfile.h> | ||
15 | |||
16 | #include <opie2/odebug.h> | ||
17 | #include <opie2/odebug.h> | ||
18 | |||
19 | using namespace Opie::Core; | ||
20 | using namespace OpieTooth; | ||
21 | |||
22 | ObexPush::ObexPush() | ||
23 | { | ||
24 | pushProc = new OProcess(); | ||
25 | connect(pushProc, SIGNAL(processExited(Opie::Core::OProcess*)), | ||
26 | this, SLOT(slotPushExited(Opie::Core::OProcess*))); | ||
27 | connect(pushProc, SIGNAL(receivedStdout(Opie::Core::OProcess*, char*, int)), | ||
28 | this, SLOT(slotPushOut(Opie::Core::OProcess*, char*, int))); | ||
29 | connect(pushProc, SIGNAL(receivedStderr(Opie::Core::OProcess*, char*, int)), | ||
30 | this, SLOT(slotPushErr(Opie::Core::OProcess*, char*, int))); | ||
31 | |||
32 | } | ||
33 | |||
34 | ObexPush::~ObexPush() | ||
35 | { | ||
36 | if (pushProc->isRunning()) | ||
37 | pushProc->kill(); | ||
38 | delete pushProc; | ||
39 | pushProc = NULL; | ||
40 | } | ||
41 | |||
42 | /** | ||
43 | * Function that sends a file | ||
44 | * @param mac destination device MAC address | ||
45 | * @param port service port number | ||
46 | * @param src source file name | ||
47 | * @param dst destination file name | ||
48 | * @return 0 on success, -1 on error, 1 if sending process is running | ||
49 | */ | ||
50 | int ObexPush::send(QString& mac, int port, QString& src, QString& dst) | ||
51 | { | ||
52 | QString dev = mac; | ||
53 | QString execName = "ussp-push"; | ||
54 | if (pushProc->isRunning()) | ||
55 | return 1; | ||
56 | pushProc->clearArguments(); | ||
57 | dev += "@"; | ||
58 | dev += QString::number(port); | ||
59 | if (!dst.isEmpty()) | ||
60 | *pushProc << execName << "--timeo 30" << dev | ||
61 | << QFile::encodeName(src) << QFile::encodeName(dst); | ||
62 | else | ||
63 | *pushProc << execName << "--timeo 30" << dev | ||
64 | << QFile::encodeName(src) | ||
65 | << QFile::encodeName(QFileInfo(src).fileName()); | ||
66 | odebug << execName << " " << dev << " " << src << " " | ||
67 | << ((!dst.isEmpty())? dst: QFileInfo(src).fileName()) << oendl; | ||
68 | pushProc->setUseShell(true); | ||
69 | if (!pushProc->start(OProcess::NotifyOnExit, OProcess::All)) | ||
70 | return -1; | ||
71 | else | ||
72 | return 0; | ||
73 | } | ||
74 | |||
75 | void ObexPush::slotPushExited(Opie::Core::OProcess* proc) | ||
76 | { | ||
77 | if (pushProc != proc) | ||
78 | return; | ||
79 | odebug << "Process exited" << oendl; | ||
80 | if (pushProc->normalExit()) | ||
81 | emit sendComplete(pushProc->exitStatus()); | ||
82 | else | ||
83 | emit sendError(-1); | ||
84 | } | ||
85 | |||
86 | /** | ||
87 | * Function makes a notification from slotPushOut and slotPushErr | ||
88 | */ | ||
89 | void ObexPush::notifyInfo(Opie::Core::OProcess* proc, char* buf, int len) | ||
90 | { | ||
91 | if (proc != pushProc) | ||
92 | return; | ||
93 | QCString str(buf, len); | ||
94 | odebug << str << oendl; | ||
95 | emit status(str); | ||
96 | } | ||
97 | |||
98 | void ObexPush::slotPushOut(Opie::Core::OProcess* proc, char* buf, int len) | ||
99 | { | ||
100 | notifyInfo(proc, buf, len); | ||
101 | } | ||
102 | |||
103 | void ObexPush::slotPushErr(Opie::Core::OProcess* proc, char* buf, int len) | ||
104 | { | ||
105 | notifyInfo(proc, buf, len); | ||
106 | } | ||
107 | |||
108 | //eof | ||
diff --git a/noncore/net/opietooth/lib/obexpush.h b/noncore/net/opietooth/lib/obexpush.h new file mode 100644 index 0000000..8147643 --- a/dev/null +++ b/noncore/net/opietooth/lib/obexpush.h | |||
@@ -0,0 +1,77 @@ | |||
1 | /* $Id$ */ | ||
2 | /* OBEX push functions declarations */ | ||
3 | /*************************************************************************** | ||
4 | * * | ||
5 | * This program is free software; you can redistribute it and/or modify * | ||
6 | * it under the terms of the GNU General Public License as published by * | ||
7 | * the Free Software Foundation; either version 2 of the License, or * | ||
8 | * (at your option) any later version. * | ||
9 | * * | ||
10 | ***************************************************************************/ | ||
11 | #ifndef _OBEXPUSH_H_ | ||
12 | #define _OBEXPUSH_H_ | ||
13 | #include <qobject.h> | ||
14 | #include <qstring.h> | ||
15 | #include "services.h" | ||
16 | #include <opie2/oprocess.h> | ||
17 | namespace OpieTooth { | ||
18 | class ObexPush : public QObject { | ||
19 | Q_OBJECT | ||
20 | public: | ||
21 | /** | ||
22 | * Constructor which creates an object | ||
23 | */ | ||
24 | ObexPush(); | ||
25 | |||
26 | /** | ||
27 | * Public destructor | ||
28 | */ | ||
29 | ~ObexPush(); | ||
30 | |||
31 | /** | ||
32 | * Function that sends a file | ||
33 | * @param mac destination device MAC address | ||
34 | * @param port service port number | ||
35 | * @param src source file name | ||
36 | * @param dst destination file name | ||
37 | * @return 0 on success, -1 on error, 1 if sending process is running | ||
38 | */ | ||
39 | int send(QString& mac, int port, QString& src, QString& dst); | ||
40 | |||
41 | /** | ||
42 | * @return true if it's sending and false otherwise | ||
43 | */ | ||
44 | bool isSending() { return pushProc->isRunning(); } | ||
45 | signals: | ||
46 | /** | ||
47 | * Informs that the sending process has completed | ||
48 | * @param status the finish status | ||
49 | */ | ||
50 | void sendComplete(int); | ||
51 | |||
52 | /** | ||
53 | * Informs that the sending process has finished with error | ||
54 | * @param status the finish status | ||
55 | */ | ||
56 | void sendError(int); | ||
57 | |||
58 | /** | ||
59 | * Informs that we have a string status update | ||
60 | * @param str status string | ||
61 | */ | ||
62 | void status(QCString&); | ||
63 | protected slots: | ||
64 | void slotPushOut(Opie::Core::OProcess*, char*, int); | ||
65 | void slotPushErr(Opie::Core::OProcess*, char*, int); | ||
66 | void slotPushExited(Opie::Core::OProcess* proc); | ||
67 | protected: | ||
68 | /** | ||
69 | * Function makes a notification from slotPushOut and slotPushErr | ||
70 | */ | ||
71 | void notifyInfo(Opie::Core::OProcess*, char*, int); | ||
72 | protected: | ||
73 | Opie::Core::OProcess* pushProc; //The push process | ||
74 | }; | ||
75 | }; | ||
76 | #endif | ||
77 | //eof | ||
diff --git a/noncore/net/opietooth/manager/obexdialog.cpp b/noncore/net/opietooth/manager/obexdialog.cpp index 8d7b593..4b795b7 100644 --- a/noncore/net/opietooth/manager/obexdialog.cpp +++ b/noncore/net/opietooth/manager/obexdialog.cpp | |||
@@ -1,140 +1,122 @@ | |||
1 | 1 | ||
2 | #include "obexdialog.h" | 2 | #include "obexdialog.h" |
3 | #include <errno.h> | 3 | #include <errno.h> |
4 | #include <qpushbutton.h> | 4 | #include <qpushbutton.h> |
5 | #include <qmultilineedit.h> | 5 | #include <qmultilineedit.h> |
6 | #include <qlineedit.h> | 6 | #include <qlineedit.h> |
7 | #include <qlayout.h> | 7 | #include <qlayout.h> |
8 | #include <qlabel.h> | 8 | #include <qlabel.h> |
9 | #include <qfileinfo.h> | 9 | #include <qfileinfo.h> |
10 | 10 | ||
11 | #include <qpe/resource.h> | 11 | #include <qpe/resource.h> |
12 | 12 | ||
13 | #include <opie2/oprocess.h> | 13 | #include <opie2/oprocess.h> |
14 | #include <opie2/ofiledialog.h> | 14 | #include <opie2/ofiledialog.h> |
15 | #include <opie2/odebug.h> | 15 | #include <opie2/odebug.h> |
16 | using namespace Opie::Core; | 16 | using namespace Opie::Core; |
17 | 17 | ||
18 | using namespace OpieTooth; | 18 | using namespace OpieTooth; |
19 | 19 | ||
20 | using namespace Opie::Core; | 20 | using namespace Opie::Core; |
21 | using namespace Opie::Ui; | 21 | using namespace Opie::Ui; |
22 | using namespace Opie::Core; | 22 | using namespace Opie::Core; |
23 | ObexDialog::ObexDialog(const QString& device, QWidget* parent, const char* name, bool modal, WFlags fl) | 23 | ObexDialog::ObexDialog(const QString& device, int port, |
24 | QWidget* parent, const char* name, bool modal, WFlags fl) | ||
24 | : QDialog( parent, name, modal, fl ) { | 25 | : QDialog( parent, name, modal, fl ) { |
25 | 26 | ||
26 | if ( !name ) | 27 | if ( !name ) |
27 | setName( "ObexDialog" ); | 28 | setName( "ObexDialog" ); |
28 | setCaption( tr( "beam files " ) ) ; | 29 | setCaption( tr( "beam files " ) ) ; |
29 | 30 | ||
30 | m_device = device; | 31 | m_device = device; |
32 | m_port = port; | ||
31 | 33 | ||
32 | layout = new QVBoxLayout( this ); | 34 | layout = new QVBoxLayout( this ); |
33 | obexSend = new OProcess(); | 35 | obexSend = new ObexPush(); |
34 | 36 | ||
35 | info = new QLabel( this ); | 37 | info = new QLabel( this ); |
36 | info->setText( tr("Which file should be beamed?") ); | 38 | info->setText( tr("Which file should be beamed?") ); |
37 | 39 | ||
38 | statLine = new QLabel(this); | 40 | statLine = new QLabel(this); |
39 | statLine->setText( tr("Ready") ); | 41 | statLine->setText( tr("Ready") ); |
40 | 42 | ||
41 | status = new QMultiLineEdit(this); | 43 | status = new QMultiLineEdit(this); |
42 | status->setReadOnly(true); | 44 | status->setReadOnly(true); |
43 | 45 | ||
44 | cmdLine = new QLineEdit( this ); | 46 | cmdLine = new QLineEdit( this ); |
45 | 47 | ||
46 | QPushButton *browserButton; | 48 | QPushButton *browserButton; |
47 | browserButton = new QPushButton( Resource::loadIconSet("fileopen"),"",this,"BrowseButton"); | 49 | browserButton = new QPushButton( Resource::loadIconSet("fileopen"),"",this,"BrowseButton"); |
48 | connect( browserButton, SIGNAL(released() ), this , SLOT(browse() ) ); | 50 | connect( browserButton, SIGNAL(released() ), this , SLOT(browse() ) ); |
49 | 51 | ||
50 | chNameLine = new QLineEdit( this ); | 52 | chNameLine = new QLineEdit( this ); |
51 | 53 | ||
52 | sendButton = new QPushButton( this ); | 54 | sendButton = new QPushButton( this ); |
53 | sendButton->setText( tr( "Send" ) ); | 55 | sendButton->setText( tr( "Send" ) ); |
54 | 56 | ||
55 | layout->addWidget(info); | 57 | layout->addWidget(info); |
56 | layout->addWidget(status); | 58 | layout->addWidget(status); |
57 | layout->addWidget(cmdLine); | 59 | layout->addWidget(cmdLine); |
58 | layout->addWidget(browserButton); | 60 | layout->addWidget(browserButton); |
59 | layout->addWidget(chNameLine); | 61 | layout->addWidget(chNameLine); |
60 | layout->addWidget(sendButton); | 62 | layout->addWidget(sendButton); |
61 | layout->addWidget(statLine); | 63 | layout->addWidget(statLine); |
62 | 64 | ||
63 | connect( sendButton, SIGNAL( clicked() ), this, SLOT( sendData() ) ); | 65 | connect( sendButton, SIGNAL( clicked() ), this, SLOT( sendData() ) ); |
64 | 66 | ||
65 | connect(obexSend, SIGNAL(processExited(Opie::Core::OProcess*)), | 67 | connect(obexSend, SIGNAL(sendComplete(int)), |
66 | this, SLOT(slotProcessExited(Opie::Core::OProcess*))); | 68 | this, SLOT(slotPushComplete(int))); |
67 | connect(obexSend, SIGNAL(receivedStdout(Opie::Core::OProcess*, char*, int)), | 69 | connect(obexSend, SIGNAL(sendError(int)), |
68 | this, SLOT(slotPushOut(Opie::Core::OProcess*, char*, int))); | 70 | this, SLOT(slotPushError(int))); |
69 | connect(obexSend, SIGNAL(receivedStderr(Opie::Core::OProcess*, char*, int)), | 71 | connect(obexSend, SIGNAL(status(QCString&)), |
70 | this, SLOT(slotPushErr(Opie::Core::OProcess*, char*, int))); | 72 | this, SLOT(slotPushStatus(QCString&))); |
71 | 73 | ||
72 | } | 74 | } |
73 | 75 | ||
74 | ObexDialog::~ObexDialog() { | 76 | ObexDialog::~ObexDialog() { |
75 | if (obexSend->isRunning()) | ||
76 | obexSend->kill(); | ||
77 | delete obexSend; | 77 | delete obexSend; |
78 | obexSend = NULL; | 78 | obexSend = NULL; |
79 | } | 79 | } |
80 | 80 | ||
81 | void ObexDialog::browse() { | 81 | void ObexDialog::browse() { |
82 | 82 | ||
83 | MimeTypes types; | 83 | MimeTypes types; |
84 | QStringList all; | 84 | QStringList all; |
85 | all << "*/*"; | 85 | all << "*/*"; |
86 | types.insert("All Files", all ); | 86 | types.insert("All Files", all ); |
87 | 87 | ||
88 | QString str = OFileDialog::getOpenFileName( 1,"/","", types, 0 ); | 88 | QString str = OFileDialog::getOpenFileName( 1,"/","", types, 0 ); |
89 | cmdLine->setText( str ); | 89 | cmdLine->setText( str ); |
90 | statLine->setText( tr("Ready") ); | 90 | statLine->setText( tr("Ready") ); |
91 | } | 91 | } |
92 | 92 | ||
93 | void ObexDialog::sendData() { | 93 | void ObexDialog::sendData() { |
94 | int result; //function call result | ||
94 | QString fileURL = cmdLine->text(); | 95 | QString fileURL = cmdLine->text(); |
95 | QString file = QFileInfo( fileURL ).fileName(); | ||
96 | QString modifiedName = chNameLine->text(); | 96 | QString modifiedName = chNameLine->text(); |
97 | QString execName = "ussp-push"; | 97 | result = obexSend->send(m_device, m_port, fileURL, modifiedName); |
98 | 98 | if (result > 0) | |
99 | if (obexSend->isRunning()) | ||
100 | return; | 99 | return; |
101 | obexSend->clearArguments(); | 100 | else if (result < 0) |
102 | // vom popupmenu beziehen | ||
103 | if ( !modifiedName.isEmpty() ) { | ||
104 | *obexSend << execName << "--timeo 30" << m_device << fileURL << modifiedName; | ||
105 | } else { | ||
106 | *obexSend << execName << "--timeo 30" << m_device << fileURL << file; | ||
107 | } | ||
108 | obexSend->setUseShell(true); | ||
109 | if (!obexSend->start(OProcess::NotifyOnExit, OProcess::All) ) { | ||
110 | statLine->setText( tr("Error: couln't start process") ); | 101 | statLine->setText( tr("Error: couln't start process") ); |
111 | } | ||
112 | else | 102 | else |
113 | statLine->setText( tr("Sending") ); | 103 | statLine->setText( tr("Sending") ); |
114 | } | 104 | } |
115 | 105 | ||
116 | void ObexDialog::slotPushOut(OProcess*, char* buf, int len) { | 106 | void ObexDialog::slotPushStatus(QCString& str) { |
117 | QCString str(buf, len); | ||
118 | status->append(str); | 107 | status->append(str); |
119 | } | 108 | } |
120 | 109 | ||
121 | void ObexDialog::slotPushErr(OProcess*, char* buf, int len) { | 110 | void ObexDialog::slotPushComplete(int result) { |
122 | QCString str(buf, len); | 111 | status->append( tr("Finished with result ") ); |
123 | status->append(str); | 112 | status->append( QString::number(result) ); |
113 | status->append( tr("\n") ); | ||
114 | odebug << result << oendl; | ||
115 | statLine->setText( tr("Finished: ") + tr(strerror(result)) ); | ||
124 | } | 116 | } |
125 | 117 | ||
126 | void ObexDialog::slotProcessExited(OProcess*) { | 118 | void ObexDialog::slotPushError(int) { |
127 | if (obexSend == NULL) | 119 | status->append( tr("Exited abnormally\n") ); |
128 | return; | 120 | statLine->setText( tr("Exited abnormally") ); |
129 | if (obexSend->normalExit()) { | ||
130 | status->append( tr("Finished with result ") ); | ||
131 | status->append( QString::number(obexSend->exitStatus()) ); | ||
132 | status->append( tr("\n") ); | ||
133 | odebug << obexSend->exitStatus() << oendl; | ||
134 | statLine->setText( tr("Finished: ") + tr(strerror(obexSend->exitStatus())) ); | ||
135 | } | ||
136 | else { | ||
137 | status->append( tr("Exited abnormally\n") ); | ||
138 | statLine->setText( tr("Exited abnormally") ); | ||
139 | } | ||
140 | } | 121 | } |
122 | //eof | ||
diff --git a/noncore/net/opietooth/manager/obexdialog.h b/noncore/net/opietooth/manager/obexdialog.h index 44a26f3..063b7f1 100644 --- a/noncore/net/opietooth/manager/obexdialog.h +++ b/noncore/net/opietooth/manager/obexdialog.h | |||
@@ -1,48 +1,51 @@ | |||
1 | #ifndef OBEXDIALOG_H | 1 | #ifndef OBEXDIALOG_H |
2 | #define OBEXDIALOG_H | 2 | #define OBEXDIALOG_H |
3 | 3 | ||
4 | 4 | ||
5 | #include <qdialog.h> | 5 | #include <qdialog.h> |
6 | #include <opie2/oprocess.h> | ||
7 | #include <qlabel.h> | 6 | #include <qlabel.h> |
8 | #include <qmultilineedit.h> | 7 | #include <qmultilineedit.h> |
8 | #include "obexpush.h" | ||
9 | 9 | ||
10 | class QVBoxLayout; | 10 | class QVBoxLayout; |
11 | class QPushButton; | 11 | class QPushButton; |
12 | class QMultiLineEdit; | 12 | class QMultiLineEdit; |
13 | class QLineEdit; | 13 | class QLineEdit; |
14 | 14 | ||
15 | namespace Opie {namespace Core {class OProcess;}} | 15 | namespace Opie {namespace Core {class OProcess;}} |
16 | namespace OpieTooth { | 16 | namespace OpieTooth { |
17 | 17 | ||
18 | class ObexDialog : public QDialog { | 18 | class ObexDialog : public QDialog { |
19 | 19 | ||
20 | Q_OBJECT | 20 | Q_OBJECT |
21 | 21 | ||
22 | public: | 22 | public: |
23 | ObexDialog( const QString& device = 0, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0); | 23 | ObexDialog( const QString& device = 0, int port = 0, |
24 | QWidget* parent = 0, const char* name = 0, | ||
25 | bool modal = TRUE, WFlags fl = 0); | ||
24 | ~ObexDialog(); | 26 | ~ObexDialog(); |
25 | 27 | ||
26 | 28 | ||
27 | private slots: | 29 | private slots: |
28 | void browse(); | 30 | void browse(); |
29 | void sendData(); | 31 | void sendData(); |
30 | void slotPushOut(Opie::Core::OProcess*, char*, int); | 32 | void slotPushStatus(QCString&); |
31 | void slotPushErr(Opie::Core::OProcess*, char*, int); | 33 | void slotPushComplete(int); |
32 | void slotProcessExited(Opie::Core::OProcess* proc); | 34 | void slotPushError(int); |
33 | 35 | ||
34 | protected: | 36 | protected: |
35 | QVBoxLayout* layout; | 37 | QVBoxLayout* layout; |
36 | QLineEdit* cmdLine; | 38 | QLineEdit* cmdLine; |
37 | QLineEdit* chNameLine; | 39 | QLineEdit* chNameLine; |
38 | QPushButton* sendButton; | 40 | QPushButton* sendButton; |
39 | QLabel* info; | 41 | QLabel* info; |
40 | QMultiLineEdit* status; | 42 | QMultiLineEdit* status; |
41 | QLabel* statLine; | 43 | QLabel* statLine; |
42 | private: | 44 | private: |
43 | // Device that is used | 45 | // Device that is used |
44 | QString m_device; | 46 | QString m_device; |
45 | Opie::Core::OProcess *obexSend; | 47 | int m_port; //Port used |
48 | ObexPush* obexSend; | ||
46 | }; | 49 | }; |
47 | } | 50 | } |
48 | #endif | 51 | #endif |
diff --git a/noncore/net/opietooth/manager/obexftpdialog.cpp b/noncore/net/opietooth/manager/obexftpdialog.cpp index efb3ff2..2a578ac 100644 --- a/noncore/net/opietooth/manager/obexftpdialog.cpp +++ b/noncore/net/opietooth/manager/obexftpdialog.cpp | |||
@@ -54,385 +54,385 @@ static void info_cb(int event, const char *msg, int len, void* data); | |||
54 | * device - bluetooth address of the device | 54 | * device - bluetooth address of the device |
55 | * port - port to connect to | 55 | * port - port to connect to |
56 | */ | 56 | */ |
57 | ObexFtpDialog::ObexFtpDialog(const QString& device, int port, | 57 | ObexFtpDialog::ObexFtpDialog(const QString& device, int port, |
58 | QWidget* parent, const char* name, bool modal, WFlags fl) | 58 | QWidget* parent, const char* name, bool modal, WFlags fl) |
59 | : ObexFtpDialogBase(parent, name, modal, fl), m_device(device), | 59 | : ObexFtpDialogBase(parent, name, modal, fl), m_device(device), |
60 | m_port(port), curdir("") | 60 | m_port(port), curdir("") |
61 | { | 61 | { |
62 | client = NULL; | 62 | client = NULL; |
63 | nRetries = 3; | 63 | nRetries = 3; |
64 | transport = OBEX_TRANS_BLUETOOTH; | 64 | transport = OBEX_TRANS_BLUETOOTH; |
65 | use_conn = TRUE; | 65 | use_conn = TRUE; |
66 | use_path = TRUE; | 66 | use_path = TRUE; |
67 | progressStatus = 0; | 67 | progressStatus = 0; |
68 | localCurdir = "/"; | 68 | localCurdir = "/"; |
69 | browseLog->setEdited(FALSE); | 69 | browseLog->setEdited(FALSE); |
70 | fileList->setSorting(1); | 70 | fileList->setSorting(1); |
71 | fileList->clear(); | 71 | fileList->clear(); |
72 | fileProgress->setTotalSteps(MAX_PROGRESS); | 72 | fileProgress->setTotalSteps(MAX_PROGRESS); |
73 | statusBar->clear(); | 73 | statusBar->clear(); |
74 | localLayout = new QVBoxLayout(localFs); | 74 | localLayout = new QVBoxLayout(localFs); |
75 | localLayout->setSpacing( 0 ); | 75 | localLayout->setSpacing( 0 ); |
76 | localLayout->setMargin( 0 ); | 76 | localLayout->setMargin( 0 ); |
77 | destFile = new OFileSelector(localFs, | 77 | destFile = new OFileSelector(localFs, |
78 | OFileSelector::FileSelector, | 78 | OFileSelector::FileSelector, |
79 | OFileSelector::ExtendedAll, localCurdir, ""); | 79 | OFileSelector::ExtendedAll, localCurdir, ""); |
80 | destFile->setCloseVisible(false); | 80 | destFile->setCloseVisible(false); |
81 | destFile->setNewVisible(false); | 81 | destFile->setNewVisible(false); |
82 | localLayout->addWidget(destFile); | 82 | localLayout->addWidget(destFile); |
83 | nReries->setValue(nRetries); | 83 | nReries->setValue(nRetries); |
84 | connect(browseOK, SIGNAL(clicked()), SLOT(slotBrowse())); | 84 | connect(browseOK, SIGNAL(clicked()), SLOT(slotBrowse())); |
85 | connect(fileList, SIGNAL(clicked(QListViewItem*)), | 85 | connect(fileList, SIGNAL(clicked(QListViewItem*)), |
86 | SLOT(slotCd(QListViewItem*))); | 86 | SLOT(slotCd(QListViewItem*))); |
87 | connect(getButton, | 87 | connect(getButton, |
88 | SIGNAL(clicked()), | 88 | SIGNAL(clicked()), |
89 | SLOT(getFile())); | 89 | SLOT(getFile())); |
90 | connect(putButton, | 90 | connect(putButton, |
91 | SIGNAL(clicked()), | 91 | SIGNAL(clicked()), |
92 | SLOT(putFile())); | 92 | SLOT(putFile())); |
93 | connect(delButton, | 93 | connect(delButton, |
94 | SIGNAL(clicked()), | 94 | SIGNAL(clicked()), |
95 | SLOT(delFile())); | 95 | SLOT(delFile())); |
96 | connect(destFile, | 96 | connect(destFile, |
97 | SIGNAL(dirSelected (const QString&)), | 97 | SIGNAL(dirSelected (const QString&)), |
98 | SLOT(updateDir(const QString&))); | 98 | SLOT(updateDir(const QString&))); |
99 | connect(saveButton, | 99 | connect(saveButton, |
100 | SIGNAL(clicked()), | 100 | SIGNAL(clicked()), |
101 | SLOT(slotSaveLog())); | 101 | SLOT(slotSaveLog())); |
102 | connect(browseButton, | 102 | connect(browseButton, |
103 | SIGNAL(clicked()), | 103 | SIGNAL(clicked()), |
104 | SLOT(slotBrowseLog())); | 104 | SLOT(slotBrowseLog())); |
105 | } | 105 | } |
106 | 106 | ||
107 | ObexFtpDialog::~ObexFtpDialog() | 107 | ObexFtpDialog::~ObexFtpDialog() |
108 | { | 108 | { |
109 | if (client != NULL) { | 109 | if (client != NULL) { |
110 | obexftp_disconnect(client); | 110 | obexftp_disconnect(client); |
111 | obexftp_close(client); | 111 | obexftp_close(client); |
112 | } | 112 | } |
113 | } | 113 | } |
114 | 114 | ||
115 | void ObexFtpDialog::slotBrowse() | 115 | void ObexFtpDialog::slotBrowse() |
116 | { | 116 | { |
117 | doBrowse(TRUE); | 117 | doBrowse(TRUE); |
118 | } | 118 | } |
119 | 119 | ||
120 | /* | 120 | /* |
121 | * Do device browsing | 121 | * Do device browsing |
122 | */ | 122 | */ |
123 | void ObexFtpDialog::doBrowse(bool reconnect) | 123 | void ObexFtpDialog::doBrowse(bool reconnect) |
124 | { | 124 | { |
125 | stat_entry_t* ent; //Directory entry | 125 | stat_entry_t* ent; //Directory entry |
126 | void *dir; //Directory to read | 126 | void *dir; //Directory to read |
127 | const uint8_t* use_uuid; //uuid | 127 | const uint8_t* use_uuid; //uuid |
128 | int len; //uuid length | 128 | int len; //uuid length |
129 | FileListItem* root; //root node | 129 | FileListItem* root; //root node |
130 | int fsize; //file size | 130 | int fsize; //file size |
131 | bool numOk; //true if the string is a number | 131 | bool numOk; //true if the string is a number |
132 | int tmp; //just a temp var | 132 | int tmp; //just a temp var |
133 | 133 | ||
134 | status(tr("Connecting to ") + m_device); | 134 | status(tr("Connecting to ") + m_device); |
135 | odebug << "Browse device " << m_device << oendl; | 135 | odebug << "Browse device " << m_device << oendl; |
136 | browseLog->clear(); | 136 | browseLog->clear(); |
137 | fileList->clear(); | 137 | fileList->clear(); |
138 | progressStatus = 0; | 138 | progressStatus = 0; |
139 | fileProgress->setTotalSteps(MAX_PROGRESS); | 139 | fileProgress->setTotalSteps(MAX_PROGRESS); |
140 | fileProgress->reset(); | 140 | fileProgress->reset(); |
141 | 141 | ||
142 | //Get parameters | 142 | //Get parameters |
143 | tmp = nReries->text().toInt(&numOk); | 143 | tmp = nReries->text().toInt(&numOk); |
144 | if (numOk) | 144 | if (numOk) |
145 | nRetries = tmp; | 145 | nRetries = tmp; |
146 | if (uuidType->currentText() == "FBS") { | 146 | if (uuidType->currentText() == "FBS") { |
147 | use_uuid = UUID_FBS; | 147 | use_uuid = UUID_FBS; |
148 | len = sizeof(UUID_FBS); | 148 | len = sizeof(UUID_FBS); |
149 | } else if (uuidType->currentText() == "S45") { | 149 | } else if (uuidType->currentText() == "S45") { |
150 | use_uuid = UUID_S45; | 150 | use_uuid = UUID_S45; |
151 | len = sizeof(UUID_S45); | 151 | len = sizeof(UUID_S45); |
152 | } else { | 152 | } else { |
153 | use_uuid = UUID_FBS; | 153 | use_uuid = UUID_FBS; |
154 | len = sizeof(UUID_FBS); | 154 | len = sizeof(UUID_FBS); |
155 | } | 155 | } |
156 | 156 | ||
157 | if (!cli_connect_uuid(use_uuid, len, reconnect)) { | 157 | if (!cli_connect_uuid(use_uuid, len, reconnect)) { |
158 | log(tr("Connection failed: ") + tr(strerror(errno))); | 158 | log(tr("Connection failed: ") + tr(strerror(errno))); |
159 | errBox("Connection failed"); | 159 | errBox("Connection failed"); |
160 | status("Connection failed"); | 160 | status("Connection failed"); |
161 | return; | 161 | return; |
162 | } | 162 | } |
163 | else { | 163 | else { |
164 | log(QString("Connected to ") + m_device); | 164 | log(QString("Connected to ") + m_device); |
165 | status(QString("Connected to ") + m_device); | 165 | status(QString("Connected to ") + m_device); |
166 | } | 166 | } |
167 | /* List folder */ | 167 | /* List folder */ |
168 | root = new FileListItem(fileList, NULL); | 168 | root = new FileListItem(fileList, NULL); |
169 | dir = obexftp_opendir(client, curdir); | 169 | dir = obexftp_opendir(client, curdir); |
170 | while ((ent = obexftp_readdir(dir)) != NULL) { | 170 | while ((ent = obexftp_readdir(dir)) != NULL) { |
171 | FileListItem* a; //List view item | 171 | FileListItem* a; //List view item |
172 | if (ent->mode != 16877) { | 172 | if (ent->mode != 16877) { |
173 | fsize = ent->size; | 173 | fsize = ent->size; |
174 | } | 174 | } |
175 | else | 175 | else |
176 | fsize = 0; | 176 | fsize = 0; |
177 | log(QString(ent->name) + QString(" ") + | 177 | log(QString(ent->name) + QString(" ") + |
178 | QString::number(ent->mode)); | 178 | QString::number(ent->mode)); |
179 | 179 | ||
180 | a = new FileListItem(fileList, ent, fsize); | 180 | a = new FileListItem(fileList, ent, fsize); |
181 | } | 181 | } |
182 | obexftp_closedir(dir); | 182 | obexftp_closedir(dir); |
183 | } | 183 | } |
184 | 184 | ||
185 | //Error message box | 185 | //Error message box |
186 | int ObexFtpDialog::errBox(QCString msg) | 186 | int ObexFtpDialog::errBox(QCString msg) |
187 | { | 187 | { |
188 | return QMessageBox::critical(this, tr("ObexFTP error"), msg); | 188 | return QMessageBox::critical(this, tr("ObexFTP error"), msg); |
189 | } | 189 | } |
190 | 190 | ||
191 | int ObexFtpDialog::errBox(QString msg) | 191 | int ObexFtpDialog::errBox(QString msg) |
192 | { | 192 | { |
193 | return QMessageBox::critical(this, tr("ObexFTP error"), msg); | 193 | return QMessageBox::critical(this, tr("ObexFTP error"), msg); |
194 | } | 194 | } |
195 | 195 | ||
196 | int ObexFtpDialog::errBox(const char* msg) | 196 | int ObexFtpDialog::errBox(const char* msg) |
197 | { | 197 | { |
198 | return QMessageBox::critical(this, tr("ObexFTP error"), tr(msg)); | 198 | return QMessageBox::critical(this, tr("ObexFTP error"), tr(msg)); |
199 | } | 199 | } |
200 | 200 | ||
201 | //Text in the status bar | 201 | //Text in the status bar |
202 | void ObexFtpDialog::status(QCString msg) | 202 | void ObexFtpDialog::status(QCString msg) |
203 | { | 203 | { |
204 | statusBar->setText(msg); | 204 | statusBar->setText(msg); |
205 | statusBar->repaint(); | 205 | statusBar->repaint(); |
206 | } | 206 | } |
207 | 207 | ||
208 | void ObexFtpDialog::status(QString msg) | 208 | void ObexFtpDialog::status(QString msg) |
209 | { | 209 | { |
210 | statusBar->setText(msg); | 210 | statusBar->setText(msg); |
211 | statusBar->repaint(); | 211 | statusBar->repaint(); |
212 | } | 212 | } |
213 | 213 | ||
214 | void ObexFtpDialog::status(const char* msg) | 214 | void ObexFtpDialog::status(const char* msg) |
215 | { | 215 | { |
216 | statusBar->setText(msg); | 216 | statusBar->setText(msg); |
217 | statusBar->repaint(); | 217 | statusBar->repaint(); |
218 | } | 218 | } |
219 | 219 | ||
220 | /* | 220 | /* |
221 | * Change directory with item under the cursor | 221 | * Change directory with item under the cursor |
222 | */ | 222 | */ |
223 | void ObexFtpDialog::slotCd(QListViewItem* item) | 223 | void ObexFtpDialog::slotCd(QListViewItem* item) |
224 | { | 224 | { |
225 | FileListItem* file = (FileListItem*)item; | 225 | FileListItem* file = (FileListItem*)item; |
226 | int idx; | 226 | int idx; |
227 | if (file == NULL) | 227 | if (file == NULL) |
228 | return; | 228 | return; |
229 | odebug << "Item " << file->text(0) << " clicked" << oendl; | 229 | odebug << "Item " << file->text(0) << " clicked" << oendl; |
230 | if (file->gettype() == IS_DIR) { | 230 | if (file->gettype() == IS_DIR) { |
231 | if (file->text(0) == "../") { | 231 | if (file->text(0) == "../") { |
232 | if (curdir.right(1) == "/") | 232 | if (curdir.right(1) == "/") |
233 | curdir.remove(curdir.length() - 1, 1); | 233 | curdir.remove(curdir.length() - 1, 1); |
234 | idx = curdir.findRev('/'); | 234 | idx = curdir.findRev('/'); |
235 | if (idx >= 0) | 235 | if (idx >= 0) |
236 | curdir.remove(idx, curdir.length() - idx); | 236 | curdir.remove(idx, curdir.length() - idx); |
237 | else | 237 | else |
238 | curdir = ""; | 238 | curdir = ""; |
239 | } | 239 | } |
240 | else { | 240 | else { |
241 | if (curdir != "" && curdir.right(1) != "/") | 241 | if (curdir != "" && curdir.right(1) != "/") |
242 | curdir += "/"; | 242 | curdir += "/"; |
243 | curdir += file->text(0); | 243 | curdir += file->text(0); |
244 | } | 244 | } |
245 | odebug << "Browse " << curdir << oendl; | 245 | odebug << "Browse " << curdir << oendl; |
246 | if (obexftp_setpath(client, curdir, 0) < 0) | 246 | if (obexftp_setpath(client, QFile::encodeName(curdir), 0) < 0) |
247 | log(tr("CD failed: ") + tr(strerror(errno))); | 247 | log(tr("CD failed: ") + tr(strerror(errno))); |
248 | doBrowse(); | 248 | doBrowse(); |
249 | } | 249 | } |
250 | } | 250 | } |
251 | 251 | ||
252 | /* | 252 | /* |
253 | * Copy file from a remote device to the local device | 253 | * Copy file from a remote device to the local device |
254 | */ | 254 | */ |
255 | void ObexFtpDialog::getFile() | 255 | void ObexFtpDialog::getFile() |
256 | { | 256 | { |
257 | FileListItem* file = (FileListItem*)fileList->selectedItem(); | 257 | FileListItem* file = (FileListItem*)fileList->selectedItem(); |
258 | int result; | 258 | int result; |
259 | if (file == NULL) | 259 | if (file == NULL) |
260 | return; | 260 | return; |
261 | file2get = "/"; | 261 | file2get = "/"; |
262 | local = localCurdir; | 262 | local = localCurdir; |
263 | if (local == "") { | 263 | if (local == "") { |
264 | errBox("Select a destination first"); | 264 | errBox("Select a destination first"); |
265 | return; | 265 | return; |
266 | } | 266 | } |
267 | if (local.right(1) != "/") | 267 | if (local.right(1) != "/") |
268 | local += "/"; | 268 | local += "/"; |
269 | if (file->gettype() == IS_FILE) { | 269 | if (file->gettype() == IS_FILE) { |
270 | if (client == NULL) { | 270 | if (client == NULL) { |
271 | errBox("No connection established"); | 271 | errBox("No connection established"); |
272 | return; | 272 | return; |
273 | } | 273 | } |
274 | file2get += curdir; | 274 | file2get += curdir; |
275 | if (curdir != "" && curdir.right(1) != "/") | 275 | if (curdir != "" && curdir.right(1) != "/") |
276 | file2get += "/"; | 276 | file2get += "/"; |
277 | file2get += file->text(0); | 277 | file2get += file->text(0); |
278 | local += file->text(0); | 278 | local += file->text(0); |
279 | odebug << "Copy " << file2get << " to " << local << oendl; | 279 | odebug << "Copy " << file2get << " to " << local << oendl; |
280 | progressStatus = 0; | 280 | progressStatus = 0; |
281 | fileProgress->setTotalSteps(file->getsize() / 1024); | 281 | fileProgress->setTotalSteps(file->getsize() / 1024); |
282 | fileProgress->reset(); | 282 | fileProgress->reset(); |
283 | status(tr("Receiving file ") + file2get); | 283 | status(tr("Receiving file ") + file2get); |
284 | result = obexftp_get(client, local, file2get); | 284 | result = obexftp_get(client, local, file2get); |
285 | if (result < 0) { | 285 | if (result < 0) { |
286 | log(file2get + QString(" receive ERROR:\n") + tr(strerror(errno))); | 286 | log(file2get + QString(" receive ERROR:\n") + tr(strerror(errno))); |
287 | errBox(file2get + QString(" receive ERROR")); | 287 | errBox(file2get + QString(" receive ERROR")); |
288 | status(file2get + QString(" receive ERROR")); | 288 | status(file2get + QString(" receive ERROR")); |
289 | } | 289 | } |
290 | else { | 290 | else { |
291 | log(file2get + QString(" received")); | 291 | log(file2get + QString(" received")); |
292 | status(file2get + QString(" received")); | 292 | status(file2get + QString(" received")); |
293 | destFile->reread(); | 293 | destFile->reread(); |
294 | } | 294 | } |
295 | } | 295 | } |
296 | } | 296 | } |
297 | 297 | ||
298 | /* | 298 | /* |
299 | * Copy file from the local device to a remote device | 299 | * Copy file from the local device to a remote device |
300 | */ | 300 | */ |
301 | void ObexFtpDialog::putFile() | 301 | void ObexFtpDialog::putFile() |
302 | { | 302 | { |
303 | int result; //OPeration result | 303 | int result; //OPeration result |
304 | int idx; //Index of a symbol in the string | 304 | int idx; //Index of a symbol in the string |
305 | struct stat localFStat; //Local file information | 305 | struct stat localFStat; //Local file information |
306 | 306 | ||
307 | if (client == NULL) { | 307 | if (client == NULL) { |
308 | errBox("No connection established"); | 308 | errBox("No connection established"); |
309 | return; | 309 | return; |
310 | } | 310 | } |
311 | local = destFile->selectedName(); | 311 | local = destFile->selectedName(); |
312 | if (local == "") { | 312 | if (local == "") { |
313 | errBox("No file slected"); | 313 | errBox("No file slected"); |
314 | return; | 314 | return; |
315 | } | 315 | } |
316 | result = stat(local, &localFStat); | 316 | result = stat(local, &localFStat); |
317 | if (result < 0) { | 317 | if (result < 0) { |
318 | errBox(tr("Wrong file selected ") + local + tr(" ") + | 318 | errBox(tr("Wrong file selected ") + local + tr(" ") + |
319 | tr(strerror(errno))); | 319 | tr(strerror(errno))); |
320 | return; | 320 | return; |
321 | } | 321 | } |
322 | idx = local.findRev('/'); | 322 | idx = local.findRev('/'); |
323 | if (idx > 0) { | 323 | if (idx > 0) { |
324 | file2get = local.right(local.length() - idx - 1); | 324 | file2get = local.right(local.length() - idx - 1); |
325 | } | 325 | } |
326 | else | 326 | else |
327 | file2get = local; | 327 | file2get = local; |
328 | 328 | ||
329 | odebug << "Copy " << local << " to " << file2get << oendl; | 329 | odebug << "Copy " << local << " to " << file2get << oendl; |
330 | progressStatus = 0; | 330 | progressStatus = 0; |
331 | fileProgress->setTotalSteps(localFStat.st_size / 1024); | 331 | fileProgress->setTotalSteps(localFStat.st_size / 1024); |
332 | fileProgress->reset(); | 332 | fileProgress->reset(); |
333 | status(tr("Sending file ") + local); | 333 | status(tr("Sending file ") + local); |
334 | result = obexftp_put_file(client, local, file2get); | 334 | result = obexftp_put_file(client, local, file2get); |
335 | if (result < 0) { | 335 | if (result < 0) { |
336 | log(local + QString(" send ERROR:\n") + tr(strerror(errno))); | 336 | log(local + QString(" send ERROR:\n") + tr(strerror(errno))); |
337 | errBox(local + QString(" send ERROR")); | 337 | errBox(local + QString(" send ERROR")); |
338 | status(local + QString(" send ERROR")); | 338 | status(local + QString(" send ERROR")); |
339 | } | 339 | } |
340 | else { | 340 | else { |
341 | doBrowse(); | 341 | doBrowse(); |
342 | log(local + QString(" sent")); | 342 | log(local + QString(" sent")); |
343 | status(local + QString(" sent")); | 343 | status(local + QString(" sent")); |
344 | } | 344 | } |
345 | } | 345 | } |
346 | 346 | ||
347 | /* | 347 | /* |
348 | * Delete file on a remote device | 348 | * Delete file on a remote device |
349 | */ | 349 | */ |
350 | void ObexFtpDialog::delFile() | 350 | void ObexFtpDialog::delFile() |
351 | { | 351 | { |
352 | FileListItem* file = (FileListItem*)fileList->selectedItem(); | 352 | FileListItem* file = (FileListItem*)fileList->selectedItem(); |
353 | int result; | 353 | int result; |
354 | if (file == NULL) | 354 | if (file == NULL) |
355 | return; | 355 | return; |
356 | file2get = "/"; | 356 | file2get = "/"; |
357 | if (file->gettype() == IS_FILE) { | 357 | if (file->gettype() == IS_FILE) { |
358 | if (client == NULL) { | 358 | if (client == NULL) { |
359 | errBox("No connection established"); | 359 | errBox("No connection established"); |
360 | return; | 360 | return; |
361 | } | 361 | } |
362 | file2get += curdir; | 362 | file2get += curdir; |
363 | if (curdir != "" && curdir.right(1) != "/") | 363 | if (curdir != "" && curdir.right(1) != "/") |
364 | file2get += "/"; | 364 | file2get += "/"; |
365 | file2get += file->text(0); | 365 | file2get += file->text(0); |
366 | } | 366 | } |
367 | result = QMessageBox::warning(this, tr("Remove File"), | 367 | result = QMessageBox::warning(this, tr("Remove File"), |
368 | tr("Do you want to remove\n") + file2get, "Yes", "No"); | 368 | tr("Do you want to remove\n") + file2get, "Yes", "No"); |
369 | if (result != 0) | 369 | if (result != 0) |
370 | return; | 370 | return; |
371 | odebug << "Remove " << file2get << oendl; | 371 | odebug << "Remove " << file2get << oendl; |
372 | result = obexftp_del(client, file2get); | 372 | result = obexftp_del(client, file2get); |
373 | if (result < 0) { | 373 | if (result < 0) { |
374 | log(file2get + QString(" remove ERROR\n") + tr(strerror(errno))); | 374 | log(file2get + QString(" remove ERROR\n") + tr(strerror(errno))); |
375 | errBox(file2get + QString(" remove ERROR")); | 375 | errBox(file2get + QString(" remove ERROR")); |
376 | status(file2get + QString(" remove ERROR")); | 376 | status(file2get + QString(" remove ERROR")); |
377 | } | 377 | } |
378 | else { | 378 | else { |
379 | doBrowse(); | 379 | doBrowse(); |
380 | log(file2get + QString(" removed")); | 380 | log(file2get + QString(" removed")); |
381 | status(file2get + QString(" removed")); | 381 | status(file2get + QString(" removed")); |
382 | } | 382 | } |
383 | } | 383 | } |
384 | 384 | ||
385 | /* connect with given uuid. re-connect every time */ | 385 | /* connect with given uuid. re-connect every time */ |
386 | int ObexFtpDialog::cli_connect_uuid(const uint8_t *uuid, int uuid_len, | 386 | int ObexFtpDialog::cli_connect_uuid(const uint8_t *uuid, int uuid_len, |
387 | bool reconnect) | 387 | bool reconnect) |
388 | { | 388 | { |
389 | int retry; | 389 | int retry; |
390 | if (client != NULL) { | 390 | if (client != NULL) { |
391 | if (reconnect) { | 391 | if (reconnect) { |
392 | obexftp_disconnect(client); | 392 | obexftp_disconnect(client); |
393 | obexftp_close(client); | 393 | obexftp_close(client); |
394 | sleep(3); | 394 | sleep(3); |
395 | } | 395 | } |
396 | else | 396 | else |
397 | return TRUE; | 397 | return TRUE; |
398 | } | 398 | } |
399 | /* Open */ | 399 | /* Open */ |
400 | client = obexftp_open (transport, NULL, info_cb, this); | 400 | client = obexftp_open (transport, NULL, info_cb, this); |
401 | if(client == NULL) { | 401 | if(client == NULL) { |
402 | errBox("Error opening obexftp-client"); | 402 | errBox("Error opening obexftp-client"); |
403 | return FALSE; | 403 | return FALSE; |
404 | } | 404 | } |
405 | if (!use_conn) | 405 | if (!use_conn) |
406 | client->quirks &= ~OBEXFTP_CONN_HEADER; | 406 | client->quirks &= ~OBEXFTP_CONN_HEADER; |
407 | if (!use_path) | 407 | if (!use_path) |
408 | client->quirks &= ~OBEXFTP_SPLIT_SETPATH; | 408 | client->quirks &= ~OBEXFTP_SPLIT_SETPATH; |
409 | for (retry = 0; retry < nRetries; retry++) { | 409 | for (retry = 0; retry < nRetries; retry++) { |
410 | /* Connect */ | 410 | /* Connect */ |
411 | switch (transport) { | 411 | switch (transport) { |
412 | case OBEX_TRANS_IRDA: | 412 | case OBEX_TRANS_IRDA: |
413 | if (obexftp_connect_uuid(client, NULL, 0, uuid, uuid_len) >= 0) | 413 | if (obexftp_connect_uuid(client, NULL, 0, uuid, uuid_len) >= 0) |
414 | return TRUE; | 414 | return TRUE; |
415 | break; | 415 | break; |
416 | case OBEX_TRANS_BLUETOOTH: | 416 | case OBEX_TRANS_BLUETOOTH: |
417 | if (obexftp_connect_uuid(client, m_device, m_port, | 417 | if (obexftp_connect_uuid(client, m_device, m_port, |
418 | uuid, uuid_len) >= 0) | 418 | uuid, uuid_len) >= 0) |
419 | return TRUE; | 419 | return TRUE; |
420 | break; | 420 | break; |
421 | default: | 421 | default: |
422 | errBox("Transport type unknown"); | 422 | errBox("Transport type unknown"); |
423 | return FALSE; | 423 | return FALSE; |
424 | } | 424 | } |
425 | log(tr("Still trying to connect")); | 425 | log(tr("Still trying to connect")); |
426 | } | 426 | } |
427 | client = NULL; | 427 | client = NULL; |
428 | 428 | ||
429 | return FALSE; | 429 | return FALSE; |
430 | } | 430 | } |
431 | 431 | ||
432 | /* | 432 | /* |
433 | * Put a message to the log window | 433 | * Put a message to the log window |
434 | */ | 434 | */ |
435 | void ObexFtpDialog::log(QString str) | 435 | void ObexFtpDialog::log(QString str) |
436 | { | 436 | { |
437 | browseLog->append(str); | 437 | browseLog->append(str); |
438 | } | 438 | } |
diff --git a/noncore/net/opietooth/manager/obexpopup.cpp b/noncore/net/opietooth/manager/obexpopup.cpp index d1d1b4a..759a452 100644 --- a/noncore/net/opietooth/manager/obexpopup.cpp +++ b/noncore/net/opietooth/manager/obexpopup.cpp | |||
@@ -1,49 +1,47 @@ | |||
1 | 1 | ||
2 | #include "obexdialog.h" | 2 | #include "obexdialog.h" |
3 | #include "obexpopup.h" | 3 | #include "obexpopup.h" |
4 | 4 | ||
5 | /* OPIE */ | 5 | /* OPIE */ |
6 | #include <qpe/qpeapplication.h> | 6 | #include <qpe/qpeapplication.h> |
7 | #include <opie2/odebug.h> | 7 | #include <opie2/odebug.h> |
8 | using namespace Opie::Core; | 8 | using namespace Opie::Core; |
9 | 9 | ||
10 | /* QT */ | 10 | /* QT */ |
11 | #include <qtimer.h> | 11 | #include <qtimer.h> |
12 | 12 | ||
13 | using namespace OpieTooth; | 13 | using namespace OpieTooth; |
14 | 14 | ||
15 | /* | 15 | /* |
16 | * c'tor init the QAction | 16 | * c'tor init the QAction |
17 | */ | 17 | */ |
18 | ObexPopup::ObexPopup(const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item) | 18 | ObexPopup::ObexPopup(const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item) |
19 | : QPopupMenu(), m_service(service) | 19 | : QPopupMenu(), m_service(service) |
20 | { | 20 | { |
21 | owarn << "ObexPopup c'tor" << oendl; | 21 | odebug << "ObexPopup c'tor" << oendl; |
22 | 22 | ||
23 | m_item = item; | 23 | m_item = item; |
24 | /* connect action */ | 24 | /* connect action */ |
25 | m_push = new QAction( ); // so it's get deleted | 25 | m_push = new QAction( ); // so it's get deleted |
26 | m_push->setText("Push file"); | 26 | m_push->setText("Push file"); |
27 | m_push->addTo( this ); | 27 | m_push->addTo( this ); |
28 | connect(m_push, SIGNAL(activated()), SLOT(slotPush())); | 28 | connect(m_push, SIGNAL(activated()), SLOT(slotPush())); |
29 | } | 29 | } |
30 | 30 | ||
31 | 31 | ||
32 | ObexPopup::~ObexPopup() | 32 | ObexPopup::~ObexPopup() |
33 | { | 33 | { |
34 | delete m_push; | 34 | delete m_push; |
35 | } | 35 | } |
36 | 36 | ||
37 | 37 | ||
38 | void ObexPopup::slotPush() | 38 | void ObexPopup::slotPush() |
39 | { | 39 | { |
40 | QString device = m_item->mac(); | 40 | QString device = m_item->mac(); |
41 | int port = m_service.protocolDescriptorList().last().port(); | 41 | int port = m_service.protocolDescriptorList().last().port(); |
42 | device += "@"; | 42 | odebug << "push something to " << device << " " << port << oendl; |
43 | device += QString::number(port); | 43 | ObexDialog obexDialog(device, port); |
44 | owarn << "push something to " << device << oendl; | ||
45 | ObexDialog obexDialog(device); | ||
46 | QPEApplication::execDialog( &obexDialog ); | 44 | QPEApplication::execDialog( &obexDialog ); |
47 | } | 45 | } |
48 | 46 | ||
49 | 47 | ||