summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp
index 1663af2..9293c6f 100644
--- a/core/applets/cardmon/cardmon.cpp
+++ b/core/applets/cardmon/cardmon.cpp
@@ -1,315 +1,315 @@
1/* 1/*
2 * cardmon.cpp 2 * cardmon.cpp
3 * 3 *
4 * --------------------- 4 * ---------------------
5 * 5 *
6 * copyright : (c) 2002 by Maximilian Reiss 6 * copyright : (c) 2002 by Maximilian Reiss
7 * email : max.reiss@gmx.de 7 * email : max.reiss@gmx.de
8 * based on two apps by Devin Butterfield 8 * based on two apps by Devin Butterfield
9 */ 9 */
10/*************************************************************************** 10/***************************************************************************
11 * * 11 * *
12 * This program is free software; you can redistribute it and/or modify * 12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by * 13 * it under the terms of the GNU General Public License as published by *
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 19
20#include "cardmon.h" 20#include "cardmon.h"
21 21
22#include <qpe/resource.h> 22#include <qpe/resource.h>
23 23
24#include <opie/odevice.h> 24#include <opie/odevice.h>
25 25
26#include <qcopchannel_qws.h> 26#include <qcopchannel_qws.h>
27#include <qpainter.h> 27#include <qpainter.h>
28#include <qmessagebox.h> 28#include <qmessagebox.h>
29#include <qfile.h> 29#include <qfile.h>
30#include <qtextstream.h> 30#include <qtextstream.h>
31#include <qtimer.h> 31#include <qtimer.h>
32 32
33#include <stdio.h> 33#include <stdio.h>
34#include <unistd.h> 34#include <unistd.h>
35#include <stdlib.h> 35#include <stdlib.h>
36#include <string.h> 36#include <string.h>
37#include <fcntl.h> 37#include <fcntl.h>
38#include <qsound.h> 38#include <qsound.h>
39 39
40#if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 40#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
41#include <sys/vfs.h> 41#include <sys/vfs.h>
42#include <mntent.h> 42#include <mntent.h>
43#endif 43#endif
44 44
45using namespace Opie; 45using namespace Opie;
46 46
47CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ), 47CardMonitor::CardMonitor( QWidget *parent ) : QWidget( parent ),
48 pm( Resource::loadPixmap( "cardmon/pcmcia" ) ) { 48 pm( Resource::loadPixmap( "cardmon/pcmcia" ) ) {
49 49
50 QCopChannel* pcmciaChannel = new QCopChannel( "QPE/Card", this ); 50 QCopChannel* pcmciaChannel = new QCopChannel( "QPE/Card", this );
51 connect( pcmciaChannel, SIGNAL( received( const QCString &, const QByteArray &) ), 51 connect( pcmciaChannel, SIGNAL( received( const QCString &, const QByteArray &) ),
52 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) ); 52 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) );
53 53
54 QCopChannel* sdChannel = new QCopChannel( "QPE/Card", this ); 54 QCopChannel* sdChannel = new QCopChannel( "QPE/Card", this );
55 connect( sdChannel, SIGNAL( received( const QCString &, const QByteArray &) ), 55 connect( sdChannel, SIGNAL( received( const QCString &, const QByteArray &) ),
56 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) ); 56 this, SLOT( cardMessage( const QCString &, const QByteArray &) ) );
57 57
58 cardInPcmcia0 = FALSE; 58 cardInPcmcia0 = FALSE;
59 cardInPcmcia1 = FALSE; 59 cardInPcmcia1 = FALSE;
60 cardInSd = FALSE; 60 cardInSd = FALSE;
61 61
62 setFixedSize( pm.size() ); 62 setFixedSize( pm.size() );
63 getStatusPcmcia( TRUE ); 63 getStatusPcmcia( TRUE );
64 getStatusSd( TRUE ); 64 getStatusSd( TRUE );
65 repaint( FALSE ); 65 repaint( FALSE );
66 popupMenu = 0; 66 popupMenu = 0;
67} 67}
68 68
69CardMonitor::~CardMonitor() { 69CardMonitor::~CardMonitor() {
70 if( popupMenu ) { 70 if( popupMenu ) {
71 delete popupMenu; 71 delete popupMenu;
72 } 72 }
73} 73}
74 74
75void CardMonitor::popUp( QString message, QString icon ) { 75void CardMonitor::popUp( QString message, QString icon ) {
76 if ( ! popupMenu ) { 76 if ( ! popupMenu ) {
77 popupMenu = new QPopupMenu(); 77 popupMenu = new QPopupMenu(this);
78 } 78 }
79 79
80 popupMenu->clear(); 80 popupMenu->clear();
81 if( icon.isEmpty() ) { 81 if( icon.isEmpty() ) {
82 popupMenu->insertItem( message, 0 ); 82 popupMenu->insertItem( message, 0 );
83 } else { 83 } else {
84 popupMenu->insertItem( QIconSet ( Resource::loadPixmap ( icon ) ), message, 0 ); 84 popupMenu->insertItem( QIconSet ( Resource::loadPixmap ( icon ) ), message, 0 );
85 } 85 }
86 86
87 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); 87 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) );
88 QSize s = popupMenu->sizeHint (); 88 QSize s = popupMenu->sizeHint ();
89 popupMenu->popup( QPoint ( 89 popupMenu->popup( QPoint (
90 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), 90 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ),
91 p. y ( ) - s. height ( ) ), 0); 91 p. y ( ) - s. height ( ) ), 0);
92 92
93 QTimer::singleShot( 2000, this, SLOT(popupTimeout() ) ); 93 QTimer::singleShot( 2000, this, SLOT(popupTimeout() ) );
94} 94}
95 95
96void CardMonitor::popupTimeout() { 96void CardMonitor::popupTimeout() {
97 popupMenu->hide(); 97 popupMenu->hide();
98} 98}
99 99
100void CardMonitor::mousePressEvent( QMouseEvent * ) { 100void CardMonitor::mousePressEvent( QMouseEvent * ) {
101 QPopupMenu *menu = new QPopupMenu(); 101 QPopupMenu *menu = new QPopupMenu(this);
102 QString cmd; 102 QString cmd;
103 int err=0; 103 int err=0;
104 104
105 if ( cardInSd ) { 105 if ( cardInSd ) {
106 menu->insertItem( tr("Eject SD/MMC card"), 0 ); 106 menu->insertItem( tr("Eject SD/MMC card"), 0 );
107 } 107 }
108 108
109 if ( cardInPcmcia0 ) { 109 if ( cardInPcmcia0 ) {
110 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia0Type ) ), 110 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia0Type ) ),
111 tr( "Eject card 0: %1" ).arg(cardInPcmcia0Name ), 1 ); 111 tr( "Eject card 0: %1" ).arg(cardInPcmcia0Name ), 1 );
112 } 112 }
113 113
114 if ( cardInPcmcia1 ) { 114 if ( cardInPcmcia1 ) {
115 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia1Type ) ), 115 menu->insertItem( QIconSet ( Resource::loadPixmap ( "cardmon/" + cardInPcmcia1Type ) ),
116 tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 ); 116 tr( "Eject card 1: %1" ).arg( cardInPcmcia1Name ), 2 );
117 } 117 }
118 118
119 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); 119 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) );
120 QSize s = menu->sizeHint (); 120 QSize s = menu->sizeHint ();
121 int opt = menu->exec( QPoint ( 121 int opt = menu->exec( QPoint (
122 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), 122 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ),
123 p. y ( ) - s. height ( ) ), 0); 123 p. y ( ) - s. height ( ) ), 0);
124 124
125 if ( opt == 1 ) { 125 if ( opt == 1 ) {
126 cmd = "/sbin/cardctl eject 0"; 126 cmd = "/sbin/cardctl eject 0";
127 err = system( ( const char * ) cmd ); 127 err = system( ( const char * ) cmd );
128 if ( ( err == 127 ) || ( err < 0 ) ) { 128 if ( ( err == 127 ) || ( err < 0 ) ) {
129 qDebug( "Could not execute `/sbin/cardctl eject 0'! err=%d", err ); 129 qDebug( "Could not execute `/sbin/cardctl eject 0'! err=%d", err );
130 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 130 popUp( tr( "CF/PCMCIA card eject failed!" ) );
131 } 131 }
132 } else if ( opt == 0 ) { 132 } else if ( opt == 0 ) {
133 if ( ODevice::inst()->system() == System_Familiar ) { 133 if ( ODevice::inst()->system() == System_Familiar ) {
134 cmd = "umount /dev/mmc/part1"; 134 cmd = "umount /dev/mmc/part1";
135 err = system( ( const char *) cmd ); 135 err = system( ( const char *) cmd );
136 if ( ( err != 0 ) ) { 136 if ( ( err != 0 ) ) {
137 popUp( tr("SD/MMC card eject failed!") ); 137 popUp( tr("SD/MMC card eject failed!") );
138 } 138 }
139 } else { 139 } else {
140 cmd = "/etc/sdcontrol compeject"; 140 cmd = "/etc/sdcontrol compeject";
141 err = system( ( const char *) cmd ); 141 err = system( ( const char *) cmd );
142 if ( ( err != 0 ) ) { 142 if ( ( err != 0 ) ) {
143 qDebug( "Could not execute `/etc/sdcontrol comeject'! err=%d", err ); 143 qDebug( "Could not execute `/etc/sdcontrol comeject'! err=%d", err );
144 popUp( tr("SD/MMC card eject failed!") ); 144 popUp( tr("SD/MMC card eject failed!") );
145 } 145 }
146 } 146 }
147 } else if ( opt == 2 ) { 147 } else if ( opt == 2 ) {
148 cmd = "/sbin/cardctl eject 1"; 148 cmd = "/sbin/cardctl eject 1";
149 err = system( ( const char *) cmd ); 149 err = system( ( const char *) cmd );
150 if ( ( err == 127 ) || ( err < 0 ) ) { 150 if ( ( err == 127 ) || ( err < 0 ) ) {
151 qDebug( "Could not execute `/sbin/cardctl eject 1'! err=%d", err ); 151 qDebug( "Could not execute `/sbin/cardctl eject 1'! err=%d", err );
152 popUp( tr( "CF/PCMCIA card eject failed!" ) ); 152 popUp( tr( "CF/PCMCIA card eject failed!" ) );
153 } 153 }
154 } 154 }
155 delete menu; 155 delete menu;
156} 156}
157 157
158 158
159void CardMonitor::cardMessage( const QCString &msg, const QByteArray & ) { 159void CardMonitor::cardMessage( const QCString &msg, const QByteArray & ) {
160 if ( msg == "stabChanged()" ) { 160 if ( msg == "stabChanged()" ) {
161 // qDebug("Pcmcia: stabchanged"); 161 // qDebug("Pcmcia: stabchanged");
162 getStatusPcmcia(); 162 getStatusPcmcia();
163 } else if ( msg == "mtabChanged()" ) { 163 } else if ( msg == "mtabChanged()" ) {
164 qDebug("CARDMONAPPLET: mtabchanged"); 164 qDebug("CARDMONAPPLET: mtabchanged");
165 getStatusSd(); 165 getStatusSd();
166 } 166 }
167} 167}
168 168
169bool CardMonitor::getStatusPcmcia( int showPopUp ) { 169bool CardMonitor::getStatusPcmcia( int showPopUp ) {
170 170
171 bool cardWas0 = cardInPcmcia0; // remember last state 171 bool cardWas0 = cardInPcmcia0; // remember last state
172 bool cardWas1 = cardInPcmcia1; 172 bool cardWas1 = cardInPcmcia1;
173 173
174 QString fileName; 174 QString fileName;
175 175
176 // one of these 3 files should exist 176 // one of these 3 files should exist
177 if ( QFile::exists( "/var/run/stab" ) ) { 177 if ( QFile::exists( "/var/run/stab" ) ) {
178 fileName = "/var/run/stab"; 178 fileName = "/var/run/stab";
179 } else if (QFile::exists( "/var/state/pcmcia/stab" ) ) { 179 } else if (QFile::exists( "/var/state/pcmcia/stab" ) ) {
180 fileName = "/var/state/pcmcia/stab"; 180 fileName = "/var/state/pcmcia/stab";
181 } else { 181 } else {
182 fileName = "/var/lib/pcmcia/stab"; 182 fileName = "/var/lib/pcmcia/stab";
183 } 183 }
184 184
185 QFile f( fileName ); 185 QFile f( fileName );
186 186
187 if ( f.open( IO_ReadOnly ) ) { 187 if ( f.open( IO_ReadOnly ) ) {
188 QStringList list; 188 QStringList list;
189 QTextStream stream ( &f ); 189 QTextStream stream ( &f );
190 QString streamIn; 190 QString streamIn;
191 streamIn = stream.read(); 191 streamIn = stream.read();
192 list = QStringList::split( "\n", streamIn ); 192 list = QStringList::split( "\n", streamIn );
193 for( QStringList::Iterator line=list.begin(); line!=list.end(); line++ ) { 193 for( QStringList::Iterator line=list.begin(); line!=list.end(); line++ ) {
194 if( (*line).startsWith( "Socket 0:" ) ){ 194 if( (*line).startsWith( "Socket 0:" ) ){
195 if( (*line).startsWith( "Socket 0: empty" ) && cardInPcmcia0 ){ 195 if( (*line).startsWith( "Socket 0: empty" ) && cardInPcmcia0 ){
196 cardInPcmcia0 = FALSE; 196 cardInPcmcia0 = FALSE;
197 } else if ( !(*line).startsWith( "Socket 0: empty" ) && !cardInPcmcia0 ){ 197 } else if ( !(*line).startsWith( "Socket 0: empty" ) && !cardInPcmcia0 ){
198 cardInPcmcia0Name = (*line).mid( ( (*line).find( ':' ) + 1 ), (*line).length() - 9 ); 198 cardInPcmcia0Name = (*line).mid( ( (*line).find( ':' ) + 1 ), (*line).length() - 9 );
199 cardInPcmcia0Name.stripWhiteSpace(); 199 cardInPcmcia0Name.stripWhiteSpace();
200 cardInPcmcia0 = TRUE; 200 cardInPcmcia0 = TRUE;
201 show(); 201 show();
202 line++; 202 line++;
203 int pos=(*line).find('\t' ) + 1; 203 int pos=(*line).find('\t' ) + 1;
204 cardInPcmcia0Type = (*line).mid( pos, (*line).find( "\t" , pos) - pos ); 204 cardInPcmcia0Type = (*line).mid( pos, (*line).find( "\t" , pos) - pos );
205 } 205 }
206 } else if( (*line).startsWith( "Socket 1:" ) ){ 206 } else if( (*line).startsWith( "Socket 1:" ) ){
207 if( (*line).startsWith( "Socket 1: empty" ) && cardInPcmcia1 ) { 207 if( (*line).startsWith( "Socket 1: empty" ) && cardInPcmcia1 ) {
208 cardInPcmcia1 = FALSE; 208 cardInPcmcia1 = FALSE;
209 } else if ( !(*line).startsWith( "Socket 1: empty" ) && !cardInPcmcia1 ) { 209 } else if ( !(*line).startsWith( "Socket 1: empty" ) && !cardInPcmcia1 ) {
210 cardInPcmcia1Name = (*line).mid(((*line).find(':') + 1), (*line).length() - 9 ); 210 cardInPcmcia1Name = (*line).mid(((*line).find(':') + 1), (*line).length() - 9 );
211 cardInPcmcia1Name.stripWhiteSpace(); 211 cardInPcmcia1Name.stripWhiteSpace();
212 cardInPcmcia1 = TRUE; 212 cardInPcmcia1 = TRUE;
213 show(); 213 show();
214 line++; 214 line++;
215 int pos=(*line).find('\t') + 1; 215 int pos=(*line).find('\t') + 1;
216 cardInPcmcia1Type = (*line).mid( pos, (*line).find("\t", pos) - pos ); 216 cardInPcmcia1Type = (*line).mid( pos, (*line).find("\t", pos) - pos );
217 } 217 }
218 } 218 }
219 } 219 }
220 f.close(); 220 f.close();
221 221
222 if( !showPopUp && (cardWas0 != cardInPcmcia0 || cardWas1 != cardInPcmcia1) ) { 222 if( !showPopUp && (cardWas0 != cardInPcmcia0 || cardWas1 != cardInPcmcia1) ) {
223 QString text = QString::null; 223 QString text = QString::null;
224 QString what = QString::null; 224 QString what = QString::null;
225 if(cardWas0 != cardInPcmcia0) { 225 if(cardWas0 != cardInPcmcia0) {
226 if(cardInPcmcia0) { 226 if(cardInPcmcia0) {
227 text += tr( "New card: " ); 227 text += tr( "New card: " );
228 what="on"; 228 what="on";
229 } else { 229 } else {
230 text += tr( "Ejected: " ); 230 text += tr( "Ejected: " );
231 what="off"; 231 what="off";
232 } 232 }
233 text += cardInPcmcia0Name; 233 text += cardInPcmcia0Name;
234 popUp( text, "cardmon/" + cardInPcmcia0Type ); 234 popUp( text, "cardmon/" + cardInPcmcia0Type );
235 } 235 }
236 236
237 if( cardWas1 != cardInPcmcia1) { 237 if( cardWas1 != cardInPcmcia1) {
238 if( cardInPcmcia1) { 238 if( cardInPcmcia1) {
239 text += tr( "New card: " ); 239 text += tr( "New card: " );
240 what = "on"; 240 what = "on";
241 } else { 241 } else {
242 text += tr( "Ejected: " ); 242 text += tr( "Ejected: " );
243 what = "off"; 243 what = "off";
244 } 244 }
245 text += cardInPcmcia1Name; 245 text += cardInPcmcia1Name;
246 popUp( text, "cardmon/" + cardInPcmcia1Type ); 246 popUp( text, "cardmon/" + cardInPcmcia1Type );
247 } 247 }
248 QSound::play( Resource::findSound( "cardmon/card" + what) ); 248 QSound::play( Resource::findSound( "cardmon/card" + what) );
249 } 249 }
250 } else { 250 } else {
251 // no file found 251 // no file found
252 qDebug( "no file found" ); 252 qDebug( "no file found" );
253 cardInPcmcia0 = FALSE; 253 cardInPcmcia0 = FALSE;
254 cardInPcmcia1 = FALSE; 254 cardInPcmcia1 = FALSE;
255 } 255 }
256 return ( (cardWas0 == cardInPcmcia0 && cardWas1 == cardInPcmcia1 ) ? FALSE : TRUE ); 256 return ( (cardWas0 == cardInPcmcia0 && cardWas1 == cardInPcmcia1 ) ? FALSE : TRUE );
257} 257}
258 258
259 259
260bool CardMonitor::getStatusSd( int showPopUp ) { 260bool CardMonitor::getStatusSd( int showPopUp ) {
261 261
262 bool cardWas = cardInSd; // remember last state 262 bool cardWas = cardInSd; // remember last state
263 cardInSd = FALSE; 263 cardInSd = FALSE;
264 264
265#if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 265#if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
266 struct mntent *me; 266 struct mntent *me;
267 FILE *mntfp = setmntent( "/etc/mtab", "r" ); 267 FILE *mntfp = setmntent( "/etc/mtab", "r" );
268 268
269 if ( mntfp ) { 269 if ( mntfp ) {
270 while ( ( me = getmntent( mntfp ) ) != 0 ) { 270 while ( ( me = getmntent( mntfp ) ) != 0 ) {
271 QString fs = me->mnt_fsname; 271 QString fs = me->mnt_fsname;
272 //qDebug( fs ); 272 //qDebug( fs );
273 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd" || fs.left( 9 ) == "/dev/mmcd" ) { 273 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd" || fs.left( 9 ) == "/dev/mmcd" ) {
274 cardInSd = TRUE; 274 cardInSd = TRUE;
275 show(); 275 show();
276 } 276 }
277// else { 277// else {
278// cardInSd = FALSE; 278// cardInSd = FALSE;
279// } 279// }
280 } 280 }
281 endmntent( mntfp ); 281 endmntent( mntfp );
282 } 282 }
283 283
284 if( !showPopUp && cardWas != cardInSd ) { 284 if( !showPopUp && cardWas != cardInSd ) {
285 QString text = QString::null; 285 QString text = QString::null;
286 QString what = QString::null; 286 QString what = QString::null;
287 if( cardInSd ) { 287 if( cardInSd ) {
288 text += "SD Inserted"; 288 text += "SD Inserted";
289 what = "on"; 289 what = "on";
290 } else { 290 } else {
291 text += "SD Removed"; 291 text += "SD Removed";
292 what = "off"; 292 what = "off";
293 } 293 }
294 //qDebug("TEXT: " + text ); 294 //qDebug("TEXT: " + text );
295 QSound::play( Resource::findSound( "cardmon/card" + what ) ); 295 QSound::play( Resource::findSound( "cardmon/card" + what ) );
296 popUp( text, "cardmon/ide" ); // XX add SD pic 296 popUp( text, "cardmon/ide" ); // XX add SD pic
297 } 297 }
298#else 298#else
299#error "Not on Linux" 299#error "Not on Linux"
300#endif 300#endif
301 return ( ( cardWas == cardInSd) ? FALSE : TRUE ); 301 return ( ( cardWas == cardInSd) ? FALSE : TRUE );
302} 302}
303 303
304void CardMonitor::paintEvent( QPaintEvent * ) { 304void CardMonitor::paintEvent( QPaintEvent * ) {
305 305
306 QPainter p( this ); 306 QPainter p( this );
307 307
308 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) { 308 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) {
309 p.drawPixmap( 0, 0, pm ); 309 p.drawPixmap( 0, 0, pm );
310 show(); 310 show();
311 } else { 311 } else {
312 p.eraseRect( rect() ); 312 p.eraseRect( rect() );
313 hide(); 313 hide();
314 } 314 }
315} 315}