author | llornkcor <llornkcor> | 2002-04-25 18:34:01 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-25 18:34:01 (UTC) |
commit | c06667cd62b945a05edce621aab34358ee0e964f (patch) (side-by-side diff) | |
tree | 4de8f106fa0cc376e211d213d8f674b4ea0a3353 | |
parent | a4e419f939f4f4237b56e117edaa7dc0d93dd396 (diff) | |
download | opie-c06667cd62b945a05edce621aab34358ee0e964f.zip opie-c06667cd62b945a05edce621aab34358ee0e964f.tar.gz opie-c06667cd62b945a05edce621aab34358ee0e964f.tar.bz2 |
hook up fsck
-rw-r--r-- | noncore/tools/formatter/formatter.cpp | 131 | ||||
-rw-r--r-- | noncore/tools/formatter/formatter.h | 4 |
2 files changed, 108 insertions, 27 deletions
diff --git a/noncore/tools/formatter/formatter.cpp b/noncore/tools/formatter/formatter.cpp index 0dd42c8..983459c 100644 --- a/noncore/tools/formatter/formatter.cpp +++ b/noncore/tools/formatter/formatter.cpp @@ -300,4 +300,4 @@ void FormatterApp::doFormat() { // outDlg->close(); -// if(outDlg) -// delete outDlg; +// if(outDlg) +// delete outDlg; } @@ -326,10 +326,8 @@ void FormatterApp::fillCombos() { } - deviceComboBox->insertItem(disk); +// deviceComboBox->insertItem(disk); } - parsetab(); + parsetab("/etc/mtab"); +// parsetab("/etc/fstab"); fileSystemsCombo->insertStringList( fsList,-1); -// for(int i = 0; i < fileSystemsCombo->count(); i++) { -// if( fsType == fileSystemsCombo->text(i)) -// fileSystemsCombo->setCurrentItem(i); -// } + deviceComboBox->insertStringList( deviceList,-1); storageComboSelected(0); @@ -409,3 +407,3 @@ void FormatterApp::editFstab() { -void FormatterApp::parsetab() { +void FormatterApp::parsetab(const QString &fileName) { @@ -414,3 +412,4 @@ void FormatterApp::parsetab() { struct mntent *me; - FILE *mntfp = setmntent( "/etc/mtab", "r" ); +// if(fileName == "/etc/mtab") { + FILE *mntfp = setmntent( fileName.latin1(), "r" ); if ( mntfp ) { @@ -422,4 +421,7 @@ void FormatterApp::parsetab() { & filesystemType.find("proc",0,TRUE) == -1 - & filesystemType.find("cramfs",0,TRUE) == -1) + & filesystemType.find("cramfs",0,TRUE) == -1 + & filesystemType.find("auto",0,TRUE) == -1) fsList << filesystemType; + deviceList << deviceName; + qDebug(deviceName+"::"+filesystemType); fileSystemTypeList << deviceName+"::"+filesystemType; @@ -429,3 +431,3 @@ void FormatterApp::parsetab() { endmntent( mntfp ); - +// } else if(fileName == "/etc/fstab") { // QFile f("/etc/fstab"); @@ -435,12 +437,19 @@ void FormatterApp::parsetab() { // while (! t.eof()) { -// s=t.readLine(); -// s=s.simplifyWhiteSpace(); -// if ( (!s.isEmpty() ) && (s.find(" ")!=0) ) { -// s=s.remove(0,s.find(BLANK)+1 ); // devicename -// s=s.remove(0,s.find(BLANK)+1 ); // mountpoint -// s=s.remove(0,s.find(BLANK)+1 ); // fs -// } +// s=t.readLine(); +// s=s.simplifyWhiteSpace(); +// if ( (!s.isEmpty() ) && (s.find(" ")!=0) ) { +// // = me->mnt_fsname; +// QString filesystemType = me->mnt_type; +// QString deviceName = s.left(0,s.find(BLANK) ); +// s=s.remove(0,s.find(BLANK)+1 ); // devicename + +// s=s.remove(0,s.find(BLANK)+1 ); // mountpoint +// QStringt mountPoint= s.left(0,s.find(BLANK) ); +// s=s.remove(0,s.find(BLANK)+1 ); // fs +// QString filesystemType= s.left(0,s.find(BLANK) ); +// } // } -// } -// f.close(); +// } +// f.close(); +// } } @@ -449,3 +458,3 @@ QString FormatterApp::getFileSystemType(const QString ¤tText) { - parsetab(); //why did TT forget filesystem type? + parsetab("/etc/mtab"); //why did TT forget filesystem type? @@ -463,3 +472,14 @@ bool FormatterApp::doFsck() { - QString selectedDevice = deviceComboBox->currentText(); + Output *outDlg; + QString selectedDevice; +#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) // lets test on something cheap + selectedDevice = deviceComboBox->currentText(); +#else +// currentText = diskDevice = "/dev/fd0"; + QString umountS = "umount -v /floppy 2>&1"; + QString remountS = "mount -v /floppy 2>&1"; + selectedDevice ="/dev/fd0"; + +#endif + QString fsType = getFileSystemType((const QString &)selectedDevice); @@ -469,6 +489,66 @@ bool FormatterApp::doFsck() { if(fsType == "ext2") cmd = "e2fsck -cpvy "; - cmd += selectedDevice; + cmd += selectedDevice + " 2>&1"; + outDlg = new Output(this, tr("Formatter Output"),FALSE); + outDlg->showMaximized(); + outDlg->show(); + qApp->processEvents(); + FILE *fp; + char line[130]; + outDlg->OutputEdit->append( tr("Trying to umount.")); + outDlg->OutputEdit->setCursorPosition(outDlg->OutputEdit->numLines() + 1,0,FALSE); - return FALSE; + sleep(1); +// qDebug("Command is "+umountS); + fp = popen( (const char *) umountS, "r"); +// qDebug("%d", fp); + if ( !fp ) { + qDebug("Could not execute '" + umountS + "'!\n" +(QString)strerror(errno)); + QMessageBox::warning( this, tr("Formatter"), tr("umount failed!"), tr("&OK") ); + pclose(fp); + return false; + } else { +// outDlg->OutputEdit->append( currentText + tr("\nhas been successfully umounted.")); +// outDlg->OutputEdit->setCursorPosition(outDlg->OutputEdit->numLines() + 1,0,FALSE); + while ( fgets( line, sizeof line, fp)) { + if( ((QString)line).find("busy",0,TRUE) != -1) { + qDebug("Could not find '" + umountS); + QMessageBox::warning( this, tr("Formatter"), tr("Could not umount.\nDevice is busy!"), tr("&OK") ); + pclose(fp); + return false; + } else { + QString lineStr = line; + lineStr=lineStr.left(lineStr.length()-1); + outDlg->OutputEdit->append(lineStr); + outDlg->OutputEdit->setCursorPosition(outDlg->OutputEdit->numLines() + 1,0,FALSE); + } + } + } + pclose(fp); +///////////////////////////////////// + fp = popen( (const char *) cmd, "r"); + while ( fgets( line, sizeof line, fp)) { + if( ((QString)line).find("No such device",0,TRUE) != -1) { + qDebug("No such device '" + umountS); + QMessageBox::warning( this, tr("Formatter"), tr("No such device!"), tr("&OK") ); + pclose(fp); +// outDlg->OutputEdit->append("No such device"); +// outDlg->OutputEdit->setCursorPosition(outDlg->OutputEdit->numLines() + 1,0,FALSE); + return false; + } else { + QString lineStr = line; + lineStr=lineStr.left(lineStr.length()-1); + outDlg->OutputEdit->append(lineStr); + outDlg->OutputEdit->setCursorPosition(outDlg->OutputEdit->numLines() + 1,0,FALSE); + } + } + outDlg->OutputEdit->append(tr("You can now close the output window.")); + outDlg->OutputEdit->setCursorPosition(outDlg->OutputEdit->numLines() + 1,0,FALSE); +// outDlg->OutputEdit->append( currentText + tr("\nhas been successfully formatted.")); +// outDlg->OutputEdit->setCursorPosition(outDlg->OutputEdit->numLines() + 1,0,FALSE); + pclose(fp); + +///////////////////////////////////////// + + return true; } @@ -476,2 +556,3 @@ bool FormatterApp::doFsck() { bool FormatterApp::doFsckCheck() { + return FALSE; diff --git a/noncore/tools/formatter/formatter.h b/noncore/tools/formatter/formatter.h index 871054d..960a68a 100644 --- a/noncore/tools/formatter/formatter.h +++ b/noncore/tools/formatter/formatter.h @@ -41,3 +41,3 @@ public: QLineEdit* mountPointLineEdit; - QStringList fileSystemTypeList, fsList; + QStringList fileSystemTypeList, fsList, deviceList; protected: @@ -47,3 +47,3 @@ protected: void fillCombos(); - void parsetab(); + void parsetab(const QString &); bool doFdisk(); |