summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp15
-rw-r--r--core/applets/cardmon/cardmon.h1
2 files changed, 6 insertions, 10 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp
index 48146ab..43ccce2 100644
--- a/core/applets/cardmon/cardmon.cpp
+++ b/core/applets/cardmon/cardmon.cpp
@@ -93,103 +93,98 @@ void CardMonitor::popUp( QString message, QString icon ) {
93 popupMenu->insertItem( QIconSet( Resource::loadPixmap( icon ) ), 93 popupMenu->insertItem( QIconSet( Resource::loadPixmap( icon ) ),
94 message, 0 ); 94 message, 0 );
95 } 95 }
96 96
97 QPoint p = mapToGlobal( QPoint( 0, 0 ) ); 97 QPoint p = mapToGlobal( QPoint( 0, 0 ) );
98 QSize s = popupMenu->sizeHint(); 98 QSize s = popupMenu->sizeHint();
99 popupMenu->popup( QPoint( p.x() + ( width() / 2 ) - ( s.width() / 2 ), 99 popupMenu->popup( QPoint( p.x() + ( width() / 2 ) - ( s.width() / 2 ),
100 p.y() - s.height() ), 0 ); 100 p.y() - s.height() ), 0 );
101 101
102 QTimer::singleShot( 2000, this, SLOT( popupTimeout() ) ); 102 QTimer::singleShot( 2000, this, SLOT( popupTimeout() ) );
103} 103}
104 104
105void CardMonitor::popupTimeout() { 105void CardMonitor::popupTimeout() {
106 popupMenu->hide(); 106 popupMenu->hide();
107} 107}
108 108
109void CardMonitor::mousePressEvent( QMouseEvent * ) { 109void CardMonitor::mousePressEvent( QMouseEvent * ) {
110 QPopupMenu * menu = new QPopupMenu( this ); 110 QPopupMenu * menu = new QPopupMenu( this );
111 QString cmd; 111 QString cmd;
112 112
113 if ( cardInSd ) { 113 if ( cardInSd ) {
114 menu->insertItem( QIconSet( Resource::loadPixmap( "cardmon/ide" ) ), 114 menu->insertItem( QIconSet( Resource::loadPixmap( "cardmon/ide" ) ),
115 tr( "Eject SD/MMC card" ), 0 ); 115 tr( "Eject SD/MMC card" ), 0 );
116 } 116 }
117 117
118 if ( cardInPcmcia0 ) { 118 if ( cardInPcmcia0 ) {
119 menu-> 119 menu->
120 insertItem( QIconSet 120 insertItem( QIconSet
121 ( Resource::loadPixmap( "cardmon/" + cardInPcmcia0Type ) ), 121 ( Resource::loadPixmap( "cardmon/" + cardInPcmcia0Type ) ),
122 tr( "Eject card 0: %1" ).arg( cardInPcmcia0Name ), 1 ); 122 tr( "Eject card 0: %1" ).arg( cardInPcmcia0Name ), 1 );
123 } 123 }
124 124
125 if ( cardInPcmcia1 ) { 125 if ( cardInPcmcia1 ) {
126 menu-> 126 menu->
127 insertItem( QIconSet 127 insertItem( QIconSet
128 ( Resource::loadPixmap( "cardmon/" + cardInPcmcia1Type ) ), 128 ( Resource::loadPixmap( "cardmon/" + cardInPcmcia1Type ) ),
129 tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 ); 129 tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 );
130 } 130 }
131 131
132 QPoint p = mapToGlobal( QPoint( 0, 0 ) ); 132 QPoint p = mapToGlobal( QPoint( 0, 0 ) );
133 QSize s = menu->sizeHint(); 133 QSize s = menu->sizeHint();
134 int opt = menu->exec( QPoint( p.x() + ( width() / 2 ) - ( s.width() / 2 ), 134 int opt = menu->exec( QPoint( p.x() + ( width() / 2 ) - ( s.width() / 2 ),
135 p.y() - s.height() ), 0 ); 135 p.y() - s.height() ), 0 );
136 136
137 if ( opt == 1 ) { 137 if ( opt == 1 ) {
138 m_commandOrig = 1; 138 m_commandOrig = 1;
139 execCommand("/sbin/cardctl eject 0"); 139 execCommand("/sbin/cardctl eject 0");
140 } else if ( opt == 0 ) { 140 } else if ( opt == 0 ) {
141 if ( ODevice::inst() ->system() == System_Familiar ) {
142 cmd = "umount /dev/mmc/part1";
143 } else {
144 cmd = "umount /dev/mmcda1";
145 }
146 m_commandOrig = 2; 141 m_commandOrig = 2;
147 execCommand( cmd ); 142 execCommand( QString("umount %1").arg(cardSdName));
148 } else if ( opt == 2 ) { 143 } else if ( opt == 2 ) {
149 m_commandOrig = 3; 144 m_commandOrig = 3;
150 execCommand( "/sbin/cardctl eject 1" ); 145 execCommand( "/sbin/cardctl eject 1" );
151 } 146 }
152 delete menu; 147 delete menu;
153} 148}
154 149
155 150
156void CardMonitor::cardMessage( const QCString & msg, const QByteArray & ) { 151void CardMonitor::cardMessage( const QCString & msg, const QByteArray & ) {
157 if ( msg == "stabChanged()" ) { 152 if ( msg == "stabChanged()" ) {
158 // odebug << "Pcmcia: stabchanged" << oendl; 153 // odebug << "Pcmcia: stabchanged" << oendl;
159 getStatusPcmcia(); 154 getStatusPcmcia();
160 } else if ( msg == "mtabChanged()" ) { 155 } else if ( msg == "mtabChanged()" ) {
161 // odebug << "CARDMONAPPLET: mtabchanged" << oendl; 156 // odebug << "CARDMONAPPLET: mtabchanged" << oendl;
162 getStatusSd(); 157 getStatusSd();
163 } 158 }
164} 159}
165 160
166bool CardMonitor::getStatusPcmcia( int showPopUp ) { 161bool CardMonitor::getStatusPcmcia( int showPopUp ) {
167 162
168 bool cardWas0 = cardInPcmcia0; // remember last state 163 bool cardWas0 = cardInPcmcia0; // remember last state
169 bool cardWas1 = cardInPcmcia1; 164 bool cardWas1 = cardInPcmcia1;
170 165
171 QString fileName; 166 QString fileName;
172 167
173 // one of these 3 files should exist 168 // one of these 3 files should exist
174 if ( QFile::exists( "/var/run/stab" ) ) { 169 if ( QFile::exists( "/var/run/stab" ) ) {
175 fileName = "/var/run/stab"; 170 fileName = "/var/run/stab";
176 } else if ( QFile::exists( "/var/state/pcmcia/stab" ) ) { 171 } else if ( QFile::exists( "/var/state/pcmcia/stab" ) ) {
177 fileName = "/var/state/pcmcia/stab"; 172 fileName = "/var/state/pcmcia/stab";
178 } else { 173 } else {
179 fileName = "/var/lib/pcmcia/stab"; 174 fileName = "/var/lib/pcmcia/stab";
180 } 175 }
181 176
182 QFile f( fileName ); 177 QFile f( fileName );
183 178
184 if ( f.open( IO_ReadOnly ) ) { 179 if ( f.open( IO_ReadOnly ) ) {
185 QStringList list; 180 QStringList list;
186 QTextStream stream( &f ); 181 QTextStream stream( &f );
187 QString streamIn; 182 QString streamIn;
188 streamIn = stream.read(); 183 streamIn = stream.read();
189 list = QStringList::split( "\n", streamIn ); 184 list = QStringList::split( "\n", streamIn );
190 for ( QStringList::Iterator line = list.begin(); line != list.end(); 185 for ( QStringList::Iterator line = list.begin(); line != list.end();
191 line++ ) { 186 line++ ) {
192 if ( ( *line ).startsWith( "Socket 0:" ) ) { 187 if ( ( *line ).startsWith( "Socket 0:" ) ) {
193 if ( ( *line ).startsWith( "Socket 0: empty" ) && cardInPcmcia0 ) { 188 if ( ( *line ).startsWith( "Socket 0: empty" ) && cardInPcmcia0 ) {
194 cardInPcmcia0 = FALSE; 189 cardInPcmcia0 = FALSE;
195 } else if ( !( *line ).startsWith( "Socket 0: empty" ) 190 } else if ( !( *line ).startsWith( "Socket 0: empty" )
@@ -237,144 +232,144 @@ bool CardMonitor::getStatusPcmcia( int showPopUp ) {
237 text += tr( "Ejected: " ); 232 text += tr( "Ejected: " );
238 what = "off"; 233 what = "off";
239 } 234 }
240 text += cardInPcmcia0Name; 235 text += cardInPcmcia0Name;
241 popUp( text, "cardmon/" + cardInPcmcia0Type ); 236 popUp( text, "cardmon/" + cardInPcmcia0Type );
242 } 237 }
243 238
244 if ( cardWas1 != cardInPcmcia1 ) { 239 if ( cardWas1 != cardInPcmcia1 ) {
245 if ( cardInPcmcia1 ) { 240 if ( cardInPcmcia1 ) {
246 text += tr( "New card: " ); 241 text += tr( "New card: " );
247 what = "on"; 242 what = "on";
248 } else { 243 } else {
249 text += tr( "Ejected: " ); 244 text += tr( "Ejected: " );
250 what = "off"; 245 what = "off";
251 } 246 }
252 text += cardInPcmcia1Name; 247 text += cardInPcmcia1Name;
253 popUp( text, "cardmon/" + cardInPcmcia1Type ); 248 popUp( text, "cardmon/" + cardInPcmcia1Type );
254 } 249 }
255 #ifndef QT_NO_SOUND 250 #ifndef QT_NO_SOUND
256 QSound::play( Resource::findSound( "cardmon/card" + what ) ); 251 QSound::play( Resource::findSound( "cardmon/card" + what ) );
257 #endif 252 #endif
258 253
259 } 254 }
260 } else { 255 } else {
261 // no file found 256 // no file found
262 odebug << "no file found" << oendl; 257 odebug << "no file found" << oendl;
263 cardInPcmcia0 = FALSE; 258 cardInPcmcia0 = FALSE;
264 cardInPcmcia1 = FALSE; 259 cardInPcmcia1 = FALSE;
265 } 260 }
266 repaint( FALSE ); 261 repaint( FALSE );
267 return ( ( cardWas0 == cardInPcmcia0 262 return ( ( cardWas0 == cardInPcmcia0
268 && cardWas1 == cardInPcmcia1 ) ? FALSE : TRUE ); 263 && cardWas1 == cardInPcmcia1 ) ? FALSE : TRUE );
269 264
270} 265}
271 266
272 267
273bool CardMonitor::getStatusSd( int showPopUp ) { 268bool CardMonitor::getStatusSd( int showPopUp ) {
274 269
275 bool cardWas = cardInSd; // remember last state 270 bool cardWas = cardInSd; // remember last state
276 cardInSd = FALSE; 271 cardInSd = FALSE;
277 272
278 #if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 273 #if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
279 274
280 struct mntent *me; 275 struct mntent *me;
281 FILE *mntfp = setmntent( "/etc/mtab", "r" ); 276 FILE *mntfp = setmntent( "/etc/mtab", "r" );
282 277
283 if ( mntfp ) { 278 if ( mntfp ) {
284 while ( ( me = getmntent( mntfp ) ) != 0 ) { 279 while ( ( me = getmntent( mntfp ) ) != 0 ) {
285 QString fs = me->mnt_fsname; 280 QString fs = QFile::decodeName( me->mnt_fsname );
286 //odebug << fs << oendl; 281 //odebug << fs << oendl;
287 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd" 282 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd"
288 || fs.left( 9 ) == "/dev/mmcd" ) { 283 || fs.left( 9 ) == "/dev/mmcd" ) {
289 cardInSd = TRUE; 284 cardInSd = TRUE;
285 cardSdName = fs;
290 show(); 286 show();
291 } 287 }
292 // else { 288 // else {
293 // cardInSd = FALSE; 289 // cardInSd = FALSE;
294 // } 290 // }
295 } 291 }
296 endmntent( mntfp ); 292 endmntent( mntfp );
297 } 293 }
298 294
299 if ( !showPopUp && cardWas != cardInSd ) { 295 if ( !showPopUp && cardWas != cardInSd ) {
300 QString text = QString::null; 296 QString text = QString::null;
301 QString what = QString::null; 297 QString what = QString::null;
302 if ( cardInSd ) { 298 if ( cardInSd ) {
303 text += "New card: SD/MMC"; 299 text += "New card: SD/MMC";
304 what = "on"; 300 what = "on";
305 } else { 301 } else {
306 text += "Ejected: SD/MMC"; 302 text += "Ejected: SD/MMC";
307 what = "off"; 303 what = "off";
308 } 304 }
309 //odebug << "TEXT: " + text << oendl; 305 //odebug << "TEXT: " + text << oendl;
310 #ifndef QT_NO_SOUND 306 #ifndef QT_NO_SOUND
311 QSound::play( Resource::findSound( "cardmon/card" + what ) ); 307 QSound::play( Resource::findSound( "cardmon/card" + what ) );
312 #endif 308 #endif
313 309
314 popUp( text, "cardmon/ide" ); // XX add SD pic 310 popUp( text, "cardmon/ide" ); // XX add SD pic
315 } 311 }
316 #else 312 #else
317 #error "Not on Linux" 313 #error "Not on Linux"
318 #endif 314 #endif
319 repaint( FALSE ); 315 repaint( FALSE );
320 return ( ( cardWas == cardInSd ) ? FALSE : TRUE ); 316 return ( ( cardWas == cardInSd ) ? FALSE : TRUE );
321} 317}
322 318
323void CardMonitor::paintEvent( QPaintEvent * ) { 319void CardMonitor::paintEvent( QPaintEvent * ) {
324 320
325 QPainter p( this ); 321 QPainter p( this );
326 322
327 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) { 323 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) {
328 p.drawPixmap( 0, 0, pm ); 324 p.drawPixmap( 0, 0, pm );
329 show(); 325 show();
330 } else { 326 } else {
331 //p.eraseRect(rect()); 327 //p.eraseRect(rect());
332 hide(); 328 hide();
333 } 329 }
334} 330}
335 331
336int CardMonitor::position() { 332int CardMonitor::position() {
337 return 7; 333 return 7;
338} 334}
339 335
340void CardMonitor::execCommand( const QString &command ) { 336void CardMonitor::execCommand( const QString &command ) {
337 delete m_process;
338 m_process = 0;
341 339
342 if ( m_process == 0 ) { 340 if ( m_process == 0 ) {
343 m_process = new OProcess(); 341 m_process = new OProcess();
344 QStringList strList = QStringList::split( " ", command ); 342 QStringList strList = QStringList::split( " ", command );
345 343
346 for ( QStringList::Iterator it = strList.begin(); it != strList.end(); ++it ) { 344 for ( QStringList::Iterator it = strList.begin(); it != strList.end(); ++it ) {
347 *m_process << *it; 345 *m_process << *it;
348 } 346 }
349 347
350 connect(m_process, SIGNAL( processExited(Opie::Core::OProcess*) ), 348 connect(m_process, SIGNAL( processExited(Opie::Core::OProcess*) ),
351 this, SLOT( slotExited(Opie::Core::OProcess* ) ) ); 349 this, SLOT( slotExited(Opie::Core::OProcess* ) ) );
352 350
353 if(!m_process->start(OProcess::NotifyOnExit, OProcess::AllOutput ) ) { 351 if(!m_process->start(OProcess::NotifyOnExit, OProcess::AllOutput ) ) {
354 delete m_process; 352 delete m_process;
355 m_process = 0; 353 m_process = 0;
356 } 354 }
357 } 355 }
358} 356}
359 357
360void CardMonitor::slotExited( OProcess* ) { 358void CardMonitor::slotExited( OProcess* ) {
361 359
362 if( m_process->normalExit() ) { 360 if( m_process->normalExit() ) {
363 int ret = m_process->exitStatus(); 361 int ret = m_process->exitStatus();
364 if( ret != 0 ) { 362 if( ret != 0 ) {
365 if ( m_commandOrig == 1 ) { 363 if ( m_commandOrig == 1 ) {
366 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 364 popUp( tr( "CF/PCMCIA card eject failed!" ) );
367 } else if ( m_commandOrig == 2 ) { 365 } else if ( m_commandOrig == 2 ) {
368 popUp( tr( "SD/MMC card eject failed!" ) ); 366 popUp( tr( "SD/MMC card eject failed!" ) );
369 } else if ( m_commandOrig == 3 ) { 367 } else if ( m_commandOrig == 3 ) {
370 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 368 popUp( tr( "CF/PCMCIA card eject failed!" ) );
371 } 369 }
372 } 370 }
373 } 371 }
374
375 delete m_process;
376 m_process = 0;
377} 372}
378 373
379EXPORT_OPIE_APPLET_v1( CardMonitor ) 374EXPORT_OPIE_APPLET_v1( CardMonitor )
380 375
diff --git a/core/applets/cardmon/cardmon.h b/core/applets/cardmon/cardmon.h
index 19d0394..b02c8b1 100644
--- a/core/applets/cardmon/cardmon.h
+++ b/core/applets/cardmon/cardmon.h
@@ -14,56 +14,57 @@
14 * the Free Software Foundation; either version 2 of the License, or * 14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. * 15 * (at your option) any later version. *
16 * * 16 * *
17 ***************************************************************************/ 17 ***************************************************************************/
18 18
19#ifndef CARDMON_H 19#ifndef CARDMON_H
20#define CARDMON_H 20#define CARDMON_H
21 21
22#include <qwidget.h> 22#include <qwidget.h>
23#include <qpixmap.h> 23#include <qpixmap.h>
24#include <qpopupmenu.h> 24#include <qpopupmenu.h>
25 25
26namespace Opie { 26namespace Opie {
27 namespace Core { 27 namespace Core {
28 class OProcess; 28 class OProcess;
29 } 29 }
30} 30}
31 31
32class CardMonitor : public QWidget { 32class CardMonitor : public QWidget {
33 Q_OBJECT 33 Q_OBJECT
34public: 34public:
35 CardMonitor( QWidget *parent = 0 ); 35 CardMonitor( QWidget *parent = 0 );
36 ~CardMonitor(); 36 ~CardMonitor();
37 bool getStatusPcmcia( int showPopUp = FALSE ); 37 bool getStatusPcmcia( int showPopUp = FALSE );
38 bool getStatusSd( int showPopUp = FALSE ); 38 bool getStatusSd( int showPopUp = FALSE );
39 static int position(); 39 static int position();
40private slots: 40private slots:
41 void cardMessage( const QCString &msg, const QByteArray & ); 41 void cardMessage( const QCString &msg, const QByteArray & );
42 void slotExited( Opie::Core::OProcess* proc ); 42 void slotExited( Opie::Core::OProcess* proc );
43 void popupTimeout(); 43 void popupTimeout();
44 44
45protected: 45protected:
46 void paintEvent( QPaintEvent* ); 46 void paintEvent( QPaintEvent* );
47 void mousePressEvent( QMouseEvent * ); 47 void mousePressEvent( QMouseEvent * );
48 48
49private: 49private:
50 void execCommand( const QString &command ); 50 void execCommand( const QString &command );
51 int m_commandOrig; 51 int m_commandOrig;
52 QPixmap pm; 52 QPixmap pm;
53 // pcmcia socket 0 53 // pcmcia socket 0
54 bool cardInPcmcia0; 54 bool cardInPcmcia0;
55 QString cardInPcmcia0Name; 55 QString cardInPcmcia0Name;
56 QString cardInPcmcia0Type; 56 QString cardInPcmcia0Type;
57 // pcmcia socket 1 57 // pcmcia socket 1
58 bool cardInPcmcia1; 58 bool cardInPcmcia1;
59 QString cardInPcmcia1Name; 59 QString cardInPcmcia1Name;
60 QString cardInPcmcia1Type; 60 QString cardInPcmcia1Type;
61 bool cardInSd; 61 bool cardInSd;
62 QString cardSdName; // the device which is mounted
62 void iconShow(); 63 void iconShow();
63 QPopupMenu *popupMenu; 64 QPopupMenu *popupMenu;
64 void popUp(QString message, QString icon = QString::null ); 65 void popUp(QString message, QString icon = QString::null );
65 Opie::Core::OProcess* m_process; 66 Opie::Core::OProcess* m_process;
66}; 67};
67 68
68#endif 69#endif
69 70