1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
/*
* disklist.cpp
*
* $Id: disklist.cpp,v 1.36.2.1 2004/11/14 11:15:03 mcamen Exp $
*
* Copyright (c) 1999 Michael Kropfberger <michael.kropfberger@gmx.net>
*
* Requires the Qt widget libraries, available at no cost at
* http://www.troll.no/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include <math.h>
#include <stdlib.h>
#include <kdebug.h>
#include <kapplication.h>
#include "disklist.h"
#define BLANK ' '
#define DELIMITER '#'
#define FULL_PERCENT 95.0
/***************************************************************************
* constructor
**/
DiskList::DiskList(QObject *parent, const char *name)
: QObject(parent,name)
{
kdDebug() << k_funcinfo << endl;
updatesDisabled = false;
if (NO_FS_TYPE) {
kdDebug() << "df gives no FS_TYPE" << endl;
}
disks = new Disks;
disks->setAutoDelete(TRUE);
// BackgroundProcesses ****************************************
dfProc = new KProcess(); Q_CHECK_PTR(dfProc);
connect( dfProc, SIGNAL(receivedStdout(KProcess *, char *, int) ),
this, SLOT (receivedDFStdErrOut(KProcess *, char *, int)) );
connect(dfProc,SIGNAL(processExited(KProcess *) ),
this, SLOT(dfDone() ) );
readingDFStdErrOut=FALSE;
config = kapp->config();
loadSettings();
}
/***************************************************************************
* destructor
**/
DiskList::~DiskList()
{
kdDebug() << k_funcinfo << endl;
}
/**
Updated need to be disabled sometimes to avoid pulling the DiskEntry out from the popupmenu handler
*/
void DiskList::setUpdatesDisabled(bool disable)
{
updatesDisabled = disable;
}
/***************************************************************************
* saves the KConfig for special mount/umount scripts
**/
void DiskList::applySettings()
{
kdDebug() << k_funcinfo << endl;
QString oldgroup=config->group();
config->setGroup("DiskList");
QString key;
DiskEntry *disk;
for (disk=disks->first();disk!=0;disk=disks->next()) {
key.sprintf("Mount%s%s%s%s",SEPARATOR,disk->deviceName().latin1()
,SEPARATOR,disk->mountPoint().latin1());
config->writePathEntry(key,disk->mountCommand());
key.sprintf("Umount%s%s%s%s",SEPARATOR,disk->deviceName().latin1()
,SEPARATOR,disk->mountPoint().latin1());
config->writePathEntry(key,disk->umountCommand());
key.sprintf("Icon%s%s%s%s",SEPARATOR,disk->deviceName().latin1()
,SEPARATOR,disk->mountPoint().latin1());
config->writePathEntry(key,disk->realIconName());
}
config->sync();
config->setGroup(oldgroup);
}
/***************************************************************************
* reads the KConfig for special mount/umount scripts
**/
void DiskList::loadSettings()
{
kdDebug() << k_funcinfo << endl;
config->setGroup("DiskList");
QString key;
DiskEntry *disk;
for (disk=disks->first();disk!=0;disk=disks->next()) {
key.sprintf("Mount%s%s%s%s",SEPARATOR,disk->deviceName().latin1()
,SEPARATOR,disk->mountPoint().latin1());
disk->setMountCommand(config->readPathEntry(key));
key.sprintf("Umount%s%s%s%s",SEPARATOR,disk->deviceName().latin1()
,SEPARATOR,disk->mountPoint().latin1());
disk->setUmountCommand(config->readPathEntry(key));
key.sprintf("Icon%s%s%s%s",SEPARATOR,disk->deviceName().latin1()
,SEPARATOR,disk->mountPoint().latin1());
QString icon=config->readPathEntry(key);
if (!icon.isEmpty()) disk->setIconName(icon);
}
}
static QString expandEscapes(const QString& s) {
QString rc;
for (unsigned int i = 0; i < s.length(); i++) {
if (s[i] == '\\') {
i++;
switch(s[i]) {
case '\\': // backslash '\'
rc += '\\';
break;
case '0': // octal 0nn
rc += static_cast<char>(s.mid(i,3).toInt(0, 8));
i += 2;
break;
default:
// give up and not process anything else because I'm too lazy
// to implement other escapes
rc += '\\';
rc += s[i];
break;
}
} else {
rc += s[i];
}
}
return rc;
}
/***************************************************************************
* tries to figure out the possibly mounted fs
**/
int DiskList::readFSTAB()
{
kdDebug() << k_funcinfo << endl;
if (readingDFStdErrOut || dfProc->isRunning()) return -1;
QFile f(FSTAB);
if ( f.open(IO_ReadOnly) ) {
QTextStream t (&f);
QString s;
DiskEntry *disk;
//disks->clear(); // ############
while (! t.eof()) {
s=t.readLine();
s=s.simplifyWhiteSpace();
if ( (!s.isEmpty() ) && (s.find(DELIMITER)!=0) ) {
// not empty or commented out by '#'
// kdDebug() << "GOT: [" << s << "]" << endl;
disk = new DiskEntry();// Q_CHECK_PTR(disk);
disk->setMounted(FALSE);
disk->setDeviceName(expandEscapes(s.left(s.find(BLANK))));
s=s.remove(0,s.find(BLANK)+1 );
// kdDebug() << " deviceName: [" << disk->deviceName() << "]" << endl;
#ifdef _OS_SOLARIS_
//device to fsck
s=s.remove(0,s.find(BLANK)+1 );
#endif
disk->setMountPoint(expandEscapes(s.left(s.find(BLANK))));
s=s.remove(0,s.find(BLANK)+1 );
//kdDebug() << " MountPoint: [" << disk->mountPoint() << "]" << endl;
//kdDebug() << " Icon: [" << disk->iconName() << "]" << endl;
disk->setFsType(s.left(s.find(BLANK)) );
s=s.remove(0,s.find(BLANK)+1 );
//kdDebug() << " FS-Type: [" << disk->fsType() << "]" << endl;
disk->setMountOptions(s.left(s.find(BLANK)) );
s=s.remove(0,s.find(BLANK)+1 );
//kdDebug() << " Mount-Options: [" << disk->mountOptions() << "]" << endl;
if ( (disk->deviceName() != "none")
&& (disk->fsType() != "swap")
&& (disk->fsType() != "sysfs")
&& (disk->mountPoint() != "/dev/swap")
&& (disk->mountPoint() != "/dev/pts")
&& (disk->mountPoint() != "/dev/shm")
&& (disk->mountPoint().find("/proc") == -1 ) )
replaceDeviceEntry(disk);
else
delete disk;
} //if not empty
} //while
f.close();
} //if f.open
loadSettings(); //to get the mountCommands
// kdDebug() << "DiskList::readFSTAB DONE" << endl;
return 1;
}
/***************************************************************************
* is called, when the df-command writes on StdOut or StdErr
**/
void DiskList::receivedDFStdErrOut(KProcess *, char *data, int len )
{
kdDebug() << k_funcinfo << endl;
/* ATTENTION: StdERR no longer connected to this...
* Do we really need StdErr?? on HP-UX there was eg. a line
* df: /home_tu1/ijzerman/floppy: Stale NFS file handle
* but this shouldn't cause a real problem
*/
QString tmp = QString::fromLatin1(data, len);
dfStringErrOut.append(tmp);
}
/***************************************************************************
* reads the df-commands results
**/
int DiskList::readDF()
{
kdDebug() << k_funcinfo << endl;
if (readingDFStdErrOut || dfProc->isRunning()) return -1;
setenv("LANG", "en_US", 1);
setenv("LC_ALL", "en_US", 1);
setenv("LC_MESSAGES", "en_US", 1);
setenv("LC_TYPE", "en_US", 1);
setenv("LANGUAGE", "en_US", 1);
dfStringErrOut=""; // yet no data received
dfProc->clearArguments();
(*dfProc) << "env" << "LC_ALL=POSIX" << DF_COMMAND << DF_ARGS;
if (!dfProc->start( KProcess::NotifyOnExit, KProcess::AllOutput ))
qFatal(i18n("could not execute [%s]").local8Bit().data(), DF_COMMAND);
return 1;
}
/***************************************************************************
* is called, when the df-command has finished
**/
void DiskList::dfDone()
{
kdDebug() << k_funcinfo << endl;
if (updatesDisabled)
return; //Don't touch the data for now..
readingDFStdErrOut=TRUE;
for ( DiskEntry *disk=disks->first(); disk != 0; disk=disks->next() )
disk->setMounted(FALSE); // set all devs unmounted
QTextStream t (dfStringErrOut, IO_ReadOnly);
QString s=t.readLine();
if ( ( s.isEmpty() ) || ( s.left(10) != "Filesystem" ) )
qFatal("Error running df command... got [%s]",s.latin1());
while ( !t.atEnd() ) {
QString u,v;
DiskEntry *disk;
s=t.readLine();
s=s.simplifyWhiteSpace();
if ( !s.isEmpty() ) {
disk = new DiskEntry(); Q_CHECK_PTR(disk);
if (s.find(BLANK)<0) // devicename was too long, rest in next line
if ( !t.eof() ) { // just appends the next line
v=t.readLine();
s=s.append(v.latin1() );
s=s.simplifyWhiteSpace();
//kdDebug() << "SPECIAL GOT: [" << s << "]" << endl;
}//if silly linefeed
//kdDebug() << "EFFECTIVELY GOT " << s.length() << " chars: [" << s << "]" << endl;
disk->setDeviceName(s.left(s.find(BLANK)) );
s=s.remove(0,s.find(BLANK)+1 );
//kdDebug() << " DeviceName: [" << disk->deviceName() << "]" << endl;
if (NO_FS_TYPE) {
//kdDebug() << "THERE IS NO FS_TYPE_FIELD!" << endl;
disk->setFsType("?");
} else {
disk->setFsType(s.left(s.find(BLANK)) );
s=s.remove(0,s.find(BLANK)+1 );
};
//kdDebug() << " FS-Type: [" << disk->fsType() << "]" << endl;
//kdDebug() << " Icon: [" << disk->iconName() << "]" << endl;
u=s.left(s.find(BLANK));
disk->setKBSize(u.toInt() );
s=s.remove(0,s.find(BLANK)+1 );
//kdDebug() << " Size: [" << disk->kBSize() << "]" << endl;
u=s.left(s.find(BLANK));
disk->setKBUsed(u.toInt() );
s=s.remove(0,s.find(BLANK)+1 );
//kdDebug() << " Used: [" << disk->kBUsed() << "]" << endl;
u=s.left(s.find(BLANK));
disk->setKBAvail(u.toInt() );
s=s.remove(0,s.find(BLANK)+1 );
//kdDebug() << " Avail: [" << disk->kBAvail() << "]" << endl;
s=s.remove(0,s.find(BLANK)+1 ); // delete the capacity 94%
disk->setMountPoint(s);
//kdDebug() << " MountPoint: [" << disk->mountPoint() << "]" << endl;
if ( (disk->kBSize() > 0)
&& (disk->deviceName() != "none")
&& (disk->fsType() != "swap")
&& (disk->fsType() != "sysfs")
&& (disk->mountPoint() != "/dev/swap")
&& (disk->mountPoint() != "/dev/pts")
&& (disk->mountPoint() != "/dev/shm")
&& (disk->mountPoint().find("/proc") == -1 ) ) {
disk->setMounted(TRUE); // its now mounted (df lists only mounted)
replaceDeviceEntry(disk);
} else
delete disk;
}//if not header
}//while further lines available
readingDFStdErrOut=FALSE;
loadSettings(); //to get the mountCommands
emit readDFDone();
}
void DiskList::deleteAllMountedAt(const QString &mountpoint)
{
kdDebug() << k_funcinfo << endl;
for ( DiskEntry *item = disks->first(); item; )
{
if (item->mountPoint() == mountpoint ) {
kdDebug() << "delete " << item->deviceName() << endl;
disks->remove(item);
item = disks->current();
} else
item = disks->next();
}
}
/***************************************************************************
* updates or creates a new DiskEntry in the KDFList and TabListBox
**/
void DiskList::replaceDeviceEntry(DiskEntry *disk)
{
//kdDebug() << k_funcinfo << disk->deviceRealName() << " " << disk->realMountPoint() << endl;
//
// The 'disks' may already already contain the 'disk'. If it do
// we will replace some data. Otherwise 'disk' will be added to the list
//
//
// 1999-27-11 Espen Sand:
// I can't get find() to work. The Disks::compareItems(..) is
// never called.
//
//int pos=disks->find(disk);
QString deviceRealName = disk->deviceRealName();
QString realMountPoint = disk->realMountPoint();
int pos = -1;
for( u_int i=0; i<disks->count(); i++ )
{
DiskEntry *item = disks->at(i);
int res = deviceRealName.compare( item->deviceRealName() );
if( res == 0 )
{
res = realMountPoint.compare( item->realMountPoint() );
}
if( res == 0 )
{
pos = i;
break;
}
}
if ((pos == -1) && (disk->mounted()) )
// no matching entry found for mounted disk
if ((disk->fsType() == "?") || (disk->fsType() == "cachefs")) {
//search for fitting cachefs-entry in static /etc/vfstab-data
DiskEntry* olddisk = disks->first();
while (olddisk != 0) {
int p;
// cachefs deviceNames have no / behind the host-column
// eg. /cache/cache/.cfs_mnt_points/srv:_home_jesus
// ^ ^
QString odiskName = olddisk->deviceName();
int ci=odiskName.find(':'); // goto host-column
while ((ci =odiskName.find('/',ci)) > 0) {
odiskName.replace(ci,1,"_");
}//while
// check if there is something that is exactly the tail
// eg. [srv:/tmp3] is exact tail of [/cache/.cfs_mnt_points/srv:_tmp3]
if ( ( (p=disk->deviceName().findRev(odiskName
,disk->deviceName().length()) )
!= -1)
&& (p + odiskName.length()
== disk->deviceName().length()) )
{
pos = disks->at(); //store the actual position
disk->setDeviceName(olddisk->deviceName());
olddisk=0;
} else
olddisk=disks->next();
}// while
}// if fsType == "?" or "cachefs"
#ifdef NO_FS_TYPE
if (pos != -1) {
DiskEntry * olddisk = disks->at(pos);
if (olddisk)
disk->setFsType(olddisk->fsType());
}
#endif
if (pos != -1) { // replace
DiskEntry * olddisk = disks->at(pos);
if ( (-1!=olddisk->mountOptions().find("user")) &&
(-1==disk->mountOptions().find("user")) ) {
// add "user" option to new diskEntry
QString s=disk->mountOptions();
if (s.length()>0) s.append(",");
s.append("user");
disk->setMountOptions(s);
}
disk->setMountCommand(olddisk->mountCommand());
disk->setUmountCommand(olddisk->umountCommand());
// Same device name, but maybe one is a symlink and the other is its target
// Keep the shorter one then, /dev/hda1 looks better than /dev/ide/host0/bus0/target0/lun0/part1
if ( disk->deviceName().length() > olddisk->deviceName().length() )
disk->setDeviceName(olddisk->deviceName());
//FStab after an older DF ... needed for critFull
//so the DF-KBUsed survive a FStab lookup...
//but also an unmounted disk may then have a kbused set...
if ( (olddisk->mounted()) && (!disk->mounted()) ) {
disk->setKBSize(olddisk->kBSize());
disk->setKBUsed(olddisk->kBUsed());
disk->setKBAvail(olddisk->kBAvail());
}
if ( (olddisk->percentFull() != -1) &&
(olddisk->percentFull() < FULL_PERCENT) &&
(disk->percentFull() >= FULL_PERCENT) ) {
kdDebug() << "Device " << disk->deviceName()
<< " is critFull! " << olddisk->percentFull()
<< "--" << disk->percentFull() << endl;
emit criticallyFull(disk);
}
disks->remove(pos); // really deletes old one
disks->insert(pos,disk);
} else {
disks->append(disk);
}//if
}
#include "disklist.moc"
|