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 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
|
/*
This file is part of the KFloppy program, part of the KDE project
Copyright (C) 2002 Adriaan de Groot <groot@kde.org>
Copyright (C) 2004, 2005 Nicolas GOUTTE <goutte@kde.org>
Copyright (C) 2015, 2016 Wolfgang Bauer <wbauer@tmo.at>
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, version 2.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "format.h"
#include <unistd.h>
#include <stdlib.h>
#include <QTimer>
#include <QRegExp>
#include <QStandardPaths>
#include "qplatformdefs.h"
#include <KLocalizedString>
#include <KProcess>
static QStringList extPath = QStringList();
/* static */ QString findExecutable(const QString &e)
{
if (extPath.isEmpty())
{
QStringList path = QString::fromLocal8Bit(qgetenv("PATH")).split(QStringLiteral( ":" ));
path.append(QStringLiteral( "/usr/sbin" ));
path.append(QStringLiteral( "/sbin" ));
extPath = path;
}
return QStandardPaths::findExecutable(e, extPath);
}
KFAction::KFAction(QObject *parent) :
QObject(parent)
{
DEBUGSETUP;
}
KFAction::~KFAction()
{
DEBUGSETUP;
quit();
}
/* slot */ void KFAction::quit()
{
DEBUGSETUP;
}
/* slot */ void KFAction::exec()
{
DEBUGSETUP;
}
class KFActionQueue_p
{
public:
QList<KFAction*> list;
} ;
KFActionQueue::KFActionQueue(QObject *parent) :
KFAction(parent),
d(new KFActionQueue_p)
{
DEBUGSETUP;
}
KFActionQueue::~KFActionQueue()
{
DEBUGSETUP;
qDeleteAll(d->list);
d->list.clear();
delete d;
}
void KFActionQueue::queue(KFAction *p)
{
DEBUGSETUP;
d->list.append(p);
DEBUGS(p->objectName());
}
/* virtual */ void KFActionQueue::exec()
{
DEBUGSETUP;
actionDone(nullptr,true);
}
/* slot */ void KFActionQueue::actionDone(KFAction *p,bool success)
{
DEBUGSETUP;
if (p)
{
if (!d->list.isEmpty() && d->list.first()==p)
{
d->list.removeFirst();
delete p;
}
else
{
DEBUGS( "Strange pointer received.");
Q_EMIT done(this,false);
return;
}
}
else
{
DEBUGS("Starting action queue.");
}
if (!success)
{
DEBUGS("Action failed.");
Q_EMIT done(this,false);
return;
}
KFAction *next = d->list.isEmpty() ? nullptr : d->list.first();
if (!next)
{
Q_EMIT done(this,true);
}
else
{
qCDebug(KFLOPPY_LOG) << "Running action " << next->objectName() ;
QObject::connect(next,&KFAction::done,
this,&KFActionQueue::actionDone);
// Propagate signals
QObject::connect(next,&KFAction::status,
this,&KFAction::status);
QTimer::singleShot(0,next,&KFAction::exec);
}
}
// Here we have names of devices. The variable
// names are basically the linux device names,
// replace with whatever your OS needs instead.
//
//
#ifdef ANY_LINUX
const char * const fd0H1440[] = { "/dev/fd0u1440", "/dev/floppy/0u1440", "/dev/fd0h1440", "/dev/fd0H1440", "/dev/fd0", nullptr } ;
const char * const fd0D720[] = { "/dev/fd0u720", "/dev/floppy/0u720", "/dev/fd0D720", "/dev/fd0h720", "/dev/fd0", nullptr };
const char * const fd0h1200[] = { "/dev/fd0h1200", "/dev/floppy/0h1200", "/dev/fd0", nullptr };
const char * const fd0h360[] = { "/dev/fd0u360", "/dev/floppy/0u360", "/dev/fd0h360", "/dev/fd0d360", "/dev/fd0", nullptr };
const char * const fd1H1440[] = { "/dev/fd1u1440", "/dev/floppy/1u1440","/dev/fd1h1440", "/dev/fd1H1440", "/dev/fd1", nullptr } ;
const char * const fd1D720[] = { "/dev/fd1u720", "/dev/floppy/1u720", "/dev/fd1D720", "/dev/fd1h720", "/dev/fd1", nullptr };
const char * const fd1h1200[] = { "/dev/fd1h1200", "/dev/floppy/1h1200", "/dev/fd1", nullptr };
const char * const fd1h360[] = { "/dev/fd1u360", "/dev/floppy/1u360","/dev/fd1h360", "/dev/fd1d360", "/dev/fd1", nullptr };
const char * const fd0auto[] = { "/dev/fd0", nullptr };
const char * const fd1auto[] = { "/dev/fd1", nullptr };
#endif
#ifdef ANY_BSD
const char * const fd0[] = { "/dev/fd0", nullptr } ;
const char * const fd1[] = { "/dev/fd1", nullptr } ;
#endif
// Next we have a table of device names and characteristics.
// These are ordered according to 2*densityIndex+deviceIndex,
// ie. primary (0) 1440K (0) is first, then secondary (1) 1440K is
// second, down to secondary (1) 360k (4) in position 3*2+1=7.
//
//
// Note that the data originally contained in KFloppy was
// patently false, so most of this is fake. I guess no one ever
// formatted a 5.25" floppy.
//
// The flags field is unused in this implementation.
//
//
const fdinfo fdtable[] =
{
#ifdef ANY_LINUX
// device drv blks trk flg
{ fd0H1440, 0, 1440, 80, 0 },
{ fd1H1440, 1, 1440, 80, 0 },
{ fd0D720, 0, 720, 80, 0 },
{ fd1D720, 1, 720, 80, 0 },
{ fd0h1200, 0, 1200, 80, 0 },
{ fd1h1200, 1, 1200, 80, 0 },
{ fd0h360, 0, 360, 40, 0 },
{ fd1h360, 1, 360, 40, 0 },
{ fd0auto, 0, 0, 80, 0 },
{ fd1auto, 1, 0, 80, 0 },
#endif
#ifdef ANY_BSD
// Instead of the number of tracks, which is
// unneeded, we record the
// number of F's printed during an fdformat
{ fd0, 0, 1440, 40, 0 },
{ fd1, 1, 1440, 40, 0 },
{ fd0, 0, 720, 40, 0 },
{ fd1, 1, 720, 40, 0 },
{ fd0, 0, 1200, 40, 0},
{ fd1, 1, 1200, 40, 0},
{ fd0, 0, 360, 40, 0},
{ fd1, 1, 360, 40, 0},
#endif
{ nullptr, 0, 0, 0, 0 }
} ;
FloppyAction::FloppyAction(QObject *p) :
KFAction(p),
deviceInfo(nullptr),
theProcess(nullptr)
{
DEBUGSETUP;
}
void FloppyAction::quit()
{
DEBUGSETUP;
delete theProcess;
theProcess=nullptr;
KFAction::quit();
}
bool FloppyAction::configureDevice( const QString& newDeviceName )
{
deviceInfo = nullptr; // We have not any idea what the device is
deviceName = newDeviceName;
return true; // No problem!
}
bool FloppyAction::configureDevice(int drive,int density)
{
DEBUGSETUP;
const char *devicename = nullptr;
deviceInfo=nullptr;
deviceName.clear();
if ((drive<0) || (drive>1))
{
Q_EMIT status(i18n("Unexpected drive number %1.", drive),-1);
return false;
}
const fdinfo *deviceinfo = fdtable;
for ( ; deviceinfo && (deviceinfo->devices) ; deviceinfo++)
{
if (deviceinfo->blocks != density)
continue;
}
if (!deviceinfo)
{
Q_EMIT status(i18n("Unexpected density number %1.", density),-1);
return false;
}
deviceinfo = fdtable;
for ( ; deviceinfo && (deviceinfo->devices) ; deviceinfo++)
{
if (deviceinfo->blocks != density)
continue;
if (deviceinfo->drive == drive)
break;
}
if (!deviceinfo || !deviceinfo->devices)
{
Q_EMIT status(i18n("Cannot find a device for drive %1 and density %2.",
drive, density),-1);
return false;
}
for (const char* const* devices=deviceinfo->devices ;
*devices ; devices++)
{
if (QT_ACCESS(*devices,W_OK)>=0)
{
qCDebug(KFLOPPY_LOG) << "Found device " << *devices ;
devicename=*devices;
break;
}
}
if (!devicename)
{
const QString str = i18n(
"Cannot access %1\nMake sure that the device exists and that "
"you have write permission to it.",QLatin1String( deviceinfo->devices[0] ));
Q_EMIT status(str,-1);
return false;
}
deviceName = QLatin1String( devicename );
deviceInfo = deviceinfo;
return true;
}
void FloppyAction::readStdOut()
{
processStdOut( QString::fromUtf8(theProcess->readAllStandardOutput()) );
}
void FloppyAction::readStdErr()
{
processStdOut( QString::fromUtf8(theProcess->readAllStandardError()) );
}
void FloppyAction::processDone(int exitCode, QProcess::ExitStatus exitStatus)
{
DEBUGSETUP;
if (exitStatus == QProcess::NormalExit)
{
if (exitCode == 0)
{
Q_EMIT status(QString(),100);
Q_EMIT done(this,true);
}
else
{
Q_EMIT status(i18n("The program %1 terminated with an error.", theProcessName),100);
Q_EMIT done(this,false);
}
}
else
{
Q_EMIT status(i18n("The program %1 terminated abnormally.", theProcessName),100);
Q_EMIT done(this,false);
}
}
void FloppyAction::processStdOut(const QString &s)
{
qCDebug(KFLOPPY_LOG) << "stdout:" << s;
}
void FloppyAction::processStdErr(const QString &s)
{
processStdOut(s);
}
bool FloppyAction::startProcess()
{
DEBUGSETUP;
connect(theProcess, SIGNAL(finished(int,QProcess::ExitStatus)),
this, SLOT(processDone(int,QProcess::ExitStatus)));
connect(theProcess, &QProcess::readyReadStandardOutput,
this, &FloppyAction::readStdOut);
connect(theProcess, &QProcess::readyReadStandardError,
this, &FloppyAction::readStdErr);
theProcess->setEnv( QStringLiteral( "LC_ALL" ), QStringLiteral( "C" ) ); // We need the untranslated output of the tool
theProcess->setOutputChannelMode(KProcess::SeparateChannels);
theProcess->start();
return (theProcess->exitStatus() == QProcess::NormalExit);
}
/* static */ QString FDFormat::fdformatName = QString();
FDFormat::FDFormat(QObject *p) :
FloppyAction(p),
doVerify(true)
{
DEBUGSETUP;
theProcessName = QStringLiteral("fdformat");
setObjectName( QStringLiteral("FDFormat" ));
}
/* static */ bool FDFormat::runtimeCheck()
{
fdformatName = findExecutable(QStringLiteral( "fdformat" ));
return (!fdformatName.isEmpty());
}
bool FDFormat::configure(bool v)
{
doVerify=v;
return true;
}
/* virtual */ void FDFormat::exec()
{
DEBUGSETUP;
if ( !deviceInfo || deviceName.isEmpty() )
{
Q_EMIT status( i18n("Internal error: device not correctly defined."), -1 );
Q_EMIT done(this,false);
return;
}
if (fdformatName.isEmpty())
{
Q_EMIT status(i18n("Cannot find fdformat."),-1);
Q_EMIT done(this,false);
return;
}
delete theProcess;
theProcess = new KProcess;
formatTrackCount=0;
*theProcess << fdformatName ;
// Common to Linux and BSD, others may differ
if (!doVerify)
{
*theProcess << QStringLiteral( "-n" );
}
#ifdef ANY_BSD
*theProcess
<< QStringLiteral( "-y" )
<< QStringLiteral( "-f" )
<< QString::number(deviceInfo->blocks) ;
#elif defined(ANY_LINUX)
// No Linux-specific flags
#endif
// Common to Linux and BSD, others may differ
*theProcess << deviceName;
if (!startProcess())
{
Q_EMIT status(i18n("Could not start fdformat."),-1);
Q_EMIT done(this,false);
}
// Now depend on fdformat running and producing output.
}
// Parse some output from the fdformat process. Lots of
// #ifdefs here to account for variations in the basic
// fdformat. Uses gotos to branch to whatever error message we
// need, since the messages can be standardized across OSsen.
//
//
void FDFormat::processStdOut(const QString &s)
{
DEBUGSETUP;
#ifdef ANY_BSD
if (s[0]==QLatin1Char('F'))
{
formatTrackCount++;
Q_EMIT status(QString(),
formatTrackCount * 100 / deviceInfo->tracks);
}
else if (s[0]==QLatin1Char('E'))
{
Q_EMIT status(i18n("Error formatting track %1.", formatTrackCount),-1);
}
else
{
if (s.contains(QLatin1String( "ioctl(FD_FORM)" )))
{
Q_EMIT status (i18n(
"Cannot access floppy or floppy drive.\n"
"Please insert a floppy and make sure that you "
"have selected a valid floppy drive."),-1);
return;
}
if (s.indexOf(QLatin1String( "/dev/" ))>=0)
{
Q_EMIT status(s,-1);
return;
}
DEBUGS(s);
}
#elif defined(ANY_LINUX)
DEBUGS(s);
QRegExp regexp( QStringLiteral( "([0-9]+)" ) );
if ( s.startsWith( QLatin1String( "bad data at cyl" ) ) || s.contains( QLatin1String( "Problem reading cylinder" ) ) )
{
if ( regexp.indexIn( s ) > -1 )
{
const int track = regexp.cap(1).toInt();
Q_EMIT status(i18n("Low-level formatting error at track %1.", track), -1);
}
else
{
// This error should not happen
Q_EMIT status(i18n("Low-level formatting error: %1", s), -1);
}
return;
}
else if (s.contains(QLatin1String( "ioctl(FDFMTBEG)" )))
{
Q_EMIT status (i18n(
"Cannot access floppy or floppy drive.\n"
"Please insert a floppy and make sure that you "
"have selected a valid floppy drive."),-1);
return;
}
else if (s.contains(QLatin1String( "busy" ))) // "Device or resource busy"
{
Q_EMIT status(i18n("Device busy.\nPerhaps you need to unmount the floppy first."),-1);
return;
}
// Be careful to leave "iotcl" as last before checking numbers
else if (s.contains(QLatin1String( "ioctl" )))
{
Q_EMIT status(i18n("Low-level format error: %1", s),-1);
return;
}
// Check for numbers at last (as /dev/fd0u1440 has numbers too)
else if ( regexp.indexIn(s) > -1 )
{
// Normal track number (formatting or verifying)
const int p = regexp.cap(1).toInt();
if ((p>=0) && (p<deviceInfo->tracks))
{
Q_EMIT status(QString(),
p * 100 / deviceInfo->tracks);
}
}
#endif
return;
}
/* static */ QString DDZeroOut::m_ddName = QString();
DDZeroOut::DDZeroOut(QObject *p) :
FloppyAction(p)
{
qCDebug(KFLOPPY_LOG) << k_funcinfo ;
theProcessName = QStringLiteral("dd");
setObjectName( QStringLiteral("DD" ));
}
/* static */ bool DDZeroOut::runtimeCheck()
{
m_ddName = findExecutable(QStringLiteral( "dd" ));
return (!m_ddName.isEmpty());
}
/* virtual */ void DDZeroOut::exec()
{
qCDebug(KFLOPPY_LOG) << k_funcinfo ;
if ( deviceName.isEmpty() )
{
Q_EMIT status( i18n("Internal error: device not correctly defined."), -1 );
Q_EMIT done( this, false );
return;
}
if ( m_ddName.isEmpty() )
{
Q_EMIT status( i18n("Cannot find dd."), -1 );
Q_EMIT done( this, false );
return;
}
delete theProcess;
theProcess = new KProcess;
*theProcess << m_ddName ;
*theProcess << QStringLiteral( "if=/dev/zero" ) ;
*theProcess << QStringLiteral( "of=" )+deviceName;
if ( !startProcess() )
{
Q_EMIT status( i18n("Could not start dd."), -1 );
Q_EMIT done( this, false );
}
}
void DDZeroOut::processDone(int exitCode, QProcess::ExitStatus exitStatus)
{
Q_UNUSED(exitCode);
Q_UNUSED(exitStatus);
qCDebug(KFLOPPY_LOG) << k_funcinfo ;
/**
* As we do not give a number of blocks to dd(1), it will stop
* with the error "No space left on device"
*
* ### TODO: really check if the exit is not on an other error and then abort the formatting
*/
Q_EMIT status(QString(),100);
Q_EMIT done(this,true);
}
/* static */ QString FATFilesystem::newfs_fat = QString();
FATFilesystem::FATFilesystem(QObject *parent) :
FloppyAction(parent)
{
DEBUGSETUP;
runtimeCheck();
theProcessName=newfs_fat;
setObjectName( QStringLiteral("FATFilesystem" ));
}
/* static */ bool FATFilesystem::runtimeCheck()
{
DEBUGSETUP;
#ifdef ANY_BSD
newfs_fat = findExecutable(QStringLiteral( "newfs_msdos" ));
#elif defined(ANY_LINUX)
newfs_fat = findExecutable(QStringLiteral( "mkdosfs" ));
#else
return false;
#endif
return !newfs_fat.isEmpty();
}
bool FATFilesystem::configure(bool v,bool l,const QString &lbl)
{
doVerify=v;
doLabel=l;
if (l)
label=lbl.simplified();
else
label.clear();
return true;
}
void FATFilesystem::exec()
{
DEBUGSETUP;
if (
#ifdef ANY_BSD // BSD needs the deviceInfo for the block count
!deviceInfo ||
#endif
deviceName.isEmpty())
{
Q_EMIT status( i18n("Internal error: device not correctly defined."), -1 );
Q_EMIT done(this,false);
return;
}
if (newfs_fat.isEmpty())
{
Q_EMIT status(i18n("Cannot find a program to create FAT filesystems."),-1);
Q_EMIT done(this,false);
return;
}
delete theProcess;
KProcess *p = theProcess = new KProcess;
*p << newfs_fat;
#ifdef ANY_BSD
*p << QStringLiteral( "-f" ) << QString::number(deviceInfo->blocks);
if (doLabel)
{
*p << QStringLiteral( "-L" ) << label ;
}
#else
#ifdef ANY_LINUX
if (doLabel)
{
*p << QStringLiteral( "-n" ) << label ;
}
if (doVerify)
{
*p << QStringLiteral( "-c" );
}
#endif
#endif
*p << deviceName ;
if (!startProcess())
{
Q_EMIT status(i18n("Cannot start FAT format program."),-1);
Q_EMIT done(this,false);
}
}
void FATFilesystem::processStdOut(const QString &s)
{
#ifdef ANY_BSD
// ### TODO: do some checks
#elif defined(ANY_LINUX)
qCDebug(KFLOPPY_LOG) << s ;
if (s.contains(QLatin1String( "mounted" ))) // "/dev/fd0 contains a mounted filesystem"
{
Q_EMIT status(i18n("Floppy is mounted.\nYou need to unmount the floppy first."),-1);
return;
}
else if (s.contains(QLatin1String( "busy" ))) // "Device or resource busy"
{
Q_EMIT status(i18n("Device busy.\nPerhaps you need to unmount the floppy first."),-1);
return;
}
else if (s.contains( QLatin1String( "denied" ))) // "Permission denied"
{
Q_EMIT status( s, -1 );
return;
}
# if 0
else if ( s.find( "mkdosfs" ) != -1 ) // DEBUG: get the program header and show it!
{
Q_EMIT status( s, -1 );
return;
}
# endif
#endif
}
#ifdef ANY_BSD
/* static */ QString UFSFilesystem::newfs = QString();
UFSFilesystem::UFSFilesystem(QObject *parent) :
FloppyAction(parent)
{
DEBUGSETUP;
runtimeCheck();
theProcessName=newfs;
setObjectName( QStringLiteral("UFSFilesystem" ));
}
/* static */ bool UFSFilesystem::runtimeCheck()
{
DEBUGSETUP;
newfs = findExecutable(QStringLiteral( "newfs" ));
return !newfs.isEmpty();
}
void UFSFilesystem::exec()
{
DEBUGSETUP;
if ( deviceName.isEmpty() )
{
Q_EMIT status( i18n("Internal error: device not correctly defined."), -1 );
Q_EMIT done(this,false);
return;
}
if (newfs.isEmpty())
{
Q_EMIT status(i18nc("BSD", "Cannot find a program to create UFS filesystems."),-1);
Q_EMIT done(this,false);
return;
}
delete theProcess;
KProcess *p = theProcess = new KProcess;
*p << newfs;
// ### TODO: is it still needed? (FreeBSD 5.3's man page says: "For backward compatibility.")
if ( deviceInfo )
*p << QStringLiteral("-T") << QStringLiteral("fd%1").arg(deviceInfo->blocks);
*p << deviceName;
if (!startProcess())
{
Q_EMIT status(i18nc("BSD", "Cannot start UFS format program."),-1);
Q_EMIT done(this,false);
}
}
#endif
/* static */ QString Ext2Filesystem::newfs = QString();
Ext2Filesystem::Ext2Filesystem(QObject *parent) :
FloppyAction(parent)
{
DEBUGSETUP;
runtimeCheck();
theProcessName=QStringLiteral( "mke2fs" );
setObjectName( QStringLiteral("Ext2Filesystem" ));
}
/* static */ bool Ext2Filesystem::runtimeCheck()
{
DEBUGSETUP;
newfs = findExecutable(QStringLiteral( "mke2fs" ));
return !newfs.isEmpty();
}
bool Ext2Filesystem::configure(bool v,bool l,const QString &lbl)
{
doVerify=v;
doLabel=l;
if (l)
{
label=lbl.trimmed();
}
else
{
label.clear();
}
return true;
}
void Ext2Filesystem::exec()
{
DEBUGSETUP;
if (
#ifdef ANY_BSD // BSD needs the deviceInfo for the block count
!deviceInfo ||
#endif
deviceName.isEmpty() )
{
Q_EMIT status( i18n("Internal error: device not correctly defined."), -1 );
Q_EMIT done(this,false);
return;
}
if (newfs.isEmpty())
{
Q_EMIT status(i18n("Cannot find a program to create ext2 filesystems."),-1);
Q_EMIT done(this,false);
return;
}
delete theProcess;
KProcess *p = theProcess = new KProcess;
*p << newfs;
*p << QStringLiteral("-q");
if (doVerify) *p << QStringLiteral( "-c" ) ;
if (doLabel) *p << QStringLiteral( "-L" ) << label ;
*p << deviceName ;
if (!startProcess())
{
Q_EMIT status(i18n("Cannot start ext2 format program."),-1);
Q_EMIT done(this,false);
}
}
void Ext2Filesystem::processStdOut(const QString &s)
{
#ifdef ANY_BSD
// ### TODO: do some checks
#elif defined(ANY_LINUX)
qCDebug(KFLOPPY_LOG) << s ;
if (s.contains(QLatin1String( "mounted" ))) // "/dev/fd0 is mounted; will not make a filesystem here!"
{
Q_EMIT status(i18n("Floppy is mounted.\nYou need to unmount the floppy first."),-1);
return;
}
else if (s.contains(QLatin1String( "busy" ))) // "Device or resource busy"
{
Q_EMIT status(i18n("Device busy.\nPerhaps you need to unmount the floppy first."),-1);
return;
}
else if (s.contains( QLatin1String( "denied" ))) // "Permission denied"
{
Q_EMIT status( s, -1 );
return;
}
#endif
}
#ifdef ANY_LINUX
/* static */ QString MinixFilesystem::newfs = QString();
MinixFilesystem::MinixFilesystem(QObject *parent) :
FloppyAction(parent)
{
DEBUGSETUP;
runtimeCheck();
theProcessName=QStringLiteral( "mkfs.minix" );
setObjectName( QStringLiteral("Minix2Filesystem" ));
}
/* static */ bool MinixFilesystem::runtimeCheck()
{
DEBUGSETUP;
newfs = findExecutable(QStringLiteral( "mkfs.minix" ));
return !newfs.isEmpty();
}
bool MinixFilesystem::configure(bool v,bool l,const QString &lbl)
{
doVerify=v;
doLabel=l;
if (l)
{
label=lbl.trimmed();
}
else
{
label.clear();
}
return true;
}
void MinixFilesystem::exec()
{
DEBUGSETUP;
if ( deviceName.isEmpty() )
{
Q_EMIT status( i18n("Internal error: device not correctly defined."), -1 );
Q_EMIT done(this,false);
return;
}
if (newfs.isEmpty())
{
Q_EMIT status(i18n("Cannot find a program to create Minix filesystems."),-1);
Q_EMIT done(this,false);
return;
}
delete theProcess;
KProcess *p = theProcess = new KProcess;
*p << newfs;
// Labeling is not possible
if (doVerify) *p << QStringLiteral( "-c" ) ;
*p << deviceName ;
if (!startProcess())
{
Q_EMIT status(i18n("Cannot start Minix format program."),-1);
Q_EMIT done(this,false);
}
}
void MinixFilesystem::processStdOut(const QString &s)
{
qCDebug(KFLOPPY_LOG) << s ;
if (s.contains(QLatin1String( "mounted" ))) // "mkfs.minix: /dev/fd0 is mounted; will not make a filesystem here!"
{
Q_EMIT status(i18n("Floppy is mounted.\nYou need to unmount the floppy first."),-1);
return;
}
else if (s.contains(QLatin1String( "busy" ))) // "Device or resource busy"
{
Q_EMIT status(i18n("Device busy.\nPerhaps you need to unmount the floppy first."),-1);
return;
}
else if (s.contains( QLatin1String( "denied" ))) // "Permission denied"
{
Q_EMIT status( s, -1 );
return;
}
}
#endif
|