summaryrefslogtreecommitdiffstats
path: root/kioslave/floppy
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kioslave/floppy
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/floppy')
-rw-r--r--kioslave/floppy/kio_floppy.cpp146
-rw-r--r--kioslave/floppy/kio_floppy.h12
-rw-r--r--kioslave/floppy/program.cpp4
-rw-r--r--kioslave/floppy/program.h6
4 files changed, 84 insertions, 84 deletions
diff --git a/kioslave/floppy/kio_floppy.cpp b/kioslave/floppy/kio_floppy.cpp
index ef3d6e6f2..a0c68a9d2 100644
--- a/kioslave/floppy/kio_floppy.cpp
+++ b/kioslave/floppy/kio_floppy.cpp
@@ -36,9 +36,9 @@
#include <sys/time.h>
#include <sys/types.h>
-#include <qtextstream.h>
-#include <qcstring.h>
-#include <qfile.h>
+#include <tqtextstream.h>
+#include <tqcstring.h>
+#include <tqfile.h>
#include "kio_floppy.h"
@@ -67,12 +67,12 @@ int kdemain( int argc, char **argv )
return 0;
}
-void getDriveAndPath(const QString& path, QString& drive, QString& rest)
+void getDriveAndPath(const TQString& path, TQString& drive, TQString& rest)
{
- drive=QString::null;
- rest=QString::null;
- QStringList list=QStringList::split("/",path);
- for (QStringList::Iterator it=list.begin(); it!=list.end(); it++)
+ drive=TQString::null;
+ rest=TQString::null;
+ TQStringList list=TQStringList::split("/",path);
+ for (TQStringList::Iterator it=list.begin(); it!=list.end(); it++)
{
if (it==list.begin())
drive=(*it)+":";
@@ -81,7 +81,7 @@ void getDriveAndPath(const QString& path, QString& drive, QString& rest)
}
}
-FloppyProtocol::FloppyProtocol (const QCString &pool, const QCString &app )
+FloppyProtocol::FloppyProtocol (const TQCString &pool, const TQCString &app )
:SlaveBase( "floppy", pool, app )
,m_mtool(0)
,m_stdoutBuffer(0)
@@ -185,15 +185,15 @@ void FloppyProtocol::terminateBuffers()
//kdDebug(7101)<<"Floppy::terminateBuffers() ends"<<endl;
}
-bool FloppyProtocol::stopAfterError(const KURL& url, const QString& drive)
+bool FloppyProtocol::stopAfterError(const KURL& url, const TQString& drive)
{
if (m_stderrSize==0)
return true;
//m_stderrBuffer[m_stderrSize]='\0';
- QString outputString(m_stderrBuffer);
- QTextIStream output(&outputString);
- QString line=output.readLine();
+ TQString outputString(m_stderrBuffer);
+ TQTextIStream output(&outputString);
+ TQString line=output.readLine();
kdDebug(7101)<<"line: -"<<line<<"-"<<endl;
if (line.find("resource busy") > -1)
{
@@ -255,7 +255,7 @@ void FloppyProtocol::listDir( const KURL& _url)
{
kdDebug(7101)<<"Floppy::listDir() "<<_url.path()<<endl;
KURL url(_url);
- QString path(url.path());
+ TQString path(url.path());
if ((path.isEmpty()) || (path=="/"))
{
@@ -264,11 +264,11 @@ void FloppyProtocol::listDir( const KURL& _url)
finished();
return;
}
- QString drive;
- QString floppyPath;
+ TQString drive;
+ TQString floppyPath;
getDriveAndPath(path,drive,floppyPath);
- QStringList args;
+ TQStringList args;
args<<"mdir"<<"-a"<<(drive+floppyPath);
if (m_mtool!=0)
@@ -318,9 +318,9 @@ void FloppyProtocol::listDir( const KURL& _url)
if (errorOccured)
return;
- QString outputString(m_stdoutBuffer);
- QTextIStream output(&outputString);
- QString line;
+ TQString outputString(m_stdoutBuffer);
+ TQTextIStream output(&outputString);
+ TQString line;
int totalNumber(0);
int mode(0);
@@ -363,7 +363,7 @@ void FloppyProtocol::listDir( const KURL& _url)
//kdDebug(7101)<<"Floppy::listDir() ends"<<endl;
}
-void FloppyProtocol::errorMissingMToolsProgram(const QString& name)
+void FloppyProtocol::errorMissingMToolsProgram(const TQString& name)
{
error(KIO::ERR_SLAVE_DEFINED,i18n("Could not start program \"%1\".\nEnsure that the mtools package is installed correctly on your system.").arg(name));
}
@@ -392,14 +392,14 @@ void FloppyProtocol::createUDSEntry(const StatInfo& info, UDSEntry& entry)
entry.append( atom );
}
-StatInfo FloppyProtocol::createStatInfo(const QString line, bool makeStat, const QString& dirName)
+StatInfo FloppyProtocol::createStatInfo(const TQString line, bool makeStat, const TQString& dirName)
{
//kdDebug(7101)<<"Floppy::createUDSEntry()"<<endl;
- QString name;
- QString size;
+ TQString name;
+ TQString size;
bool isDir(false);
- QString day,month, year;
- QString hour, minute;
+ TQString day,month, year;
+ TQString hour, minute;
StatInfo info;
if (line.length()==41)
@@ -409,7 +409,7 @@ StatInfo FloppyProtocol::createStatInfo(const QString line, bool makeStat, const
if (nameLength>0)
{
name=line.mid(0,nameLength);
- QString ext=line.mid(9,3);
+ TQString ext=line.mid(9,3);
ext=ext.stripWhiteSpace();
if (!ext.isEmpty())
name+="."+ext;
@@ -470,7 +470,7 @@ StatInfo FloppyProtocol::createStatInfo(const QString line, bool makeStat, const
info.name=name;
info.size=size.toInt();
- QDateTime date(QDate(year.toInt(),month.toInt(),day.toInt()),QTime(hour.toInt(),minute.toInt()));
+ TQDateTime date(TQDate(year.toInt(),month.toInt(),day.toInt()),TQTime(hour.toInt(),minute.toInt()));
info.time=date.toTime_t();
if (isDir)
@@ -489,9 +489,9 @@ StatInfo FloppyProtocol::_stat(const KURL& url)
{
StatInfo info;
- QString path(url.path());
- QString drive;
- QString floppyPath;
+ TQString path(url.path());
+ TQString drive;
+ TQString floppyPath;
getDriveAndPath(path,drive,floppyPath);
if (floppyPath.isEmpty())
@@ -511,7 +511,7 @@ StatInfo FloppyProtocol::_stat(const KURL& url)
if (m_mtool!=0)
delete m_mtool;
- QStringList args;
+ TQStringList args;
args<<"mdir"<<"-a"<<(drive+floppyPath);
//kdDebug(7101)<<"Floppy::_stat(): create m_mtool"<<endl;
@@ -573,9 +573,9 @@ StatInfo FloppyProtocol::_stat(const KURL& url)
}
kdDebug(7101)<<"Floppy::_stat(): parse stuff"<<endl;
- QString outputString(m_stdoutBuffer);
- QTextIStream output(&outputString);
- QString line;
+ TQString outputString(m_stdoutBuffer);
+ TQTextIStream output(&outputString);
+ TQString line;
for (int lineNumber=0; !output.atEnd(); lineNumber++)
{
line=output.readLine();
@@ -593,16 +593,16 @@ StatInfo FloppyProtocol::_stat(const KURL& url)
int FloppyProtocol::freeSpace(const KURL& url)
{
- QString path(url.path());
- QString drive;
- QString floppyPath;
+ TQString path(url.path());
+ TQString drive;
+ TQString floppyPath;
getDriveAndPath(path,drive,floppyPath);
//kdDebug(7101)<<"Floppy::freeSpace(): delete m_mtool"<<endl;
if (m_mtool!=0)
delete m_mtool;
- QStringList args;
+ TQStringList args;
args<<"mdir"<<"-a"<<drive;
//kdDebug(7101)<<"Floppy::freeSpace(): create m_mtool"<<endl;
@@ -662,16 +662,16 @@ int FloppyProtocol::freeSpace(const KURL& url)
}
kdDebug(7101)<<"Floppy::freeSpace(): parse stuff"<<endl;
- QString outputString(m_stdoutBuffer);
- QTextIStream output(&outputString);
- QString line;
+ TQString outputString(m_stdoutBuffer);
+ TQTextIStream output(&outputString);
+ TQString line;
int lineNumber(0);
while (!output.atEnd())
{
line=output.readLine();
if (line.find("bytes free")==36)
{
- QString tmp=line.mid(24,3);
+ TQString tmp=line.mid(24,3);
tmp=tmp.stripWhiteSpace();
tmp+=line.mid(28,3);
tmp=tmp.stripWhiteSpace();
@@ -689,7 +689,7 @@ void FloppyProtocol::stat( const KURL & _url)
{
kdDebug(7101)<<"Floppy::stat() "<<_url.path()<<endl;
KURL url(_url);
- QString path(url.path());
+ TQString path(url.path());
if ((path.isEmpty()) || (path=="/"))
{
@@ -714,7 +714,7 @@ void FloppyProtocol::stat( const KURL & _url)
void FloppyProtocol::mkdir( const KURL& url, int)
{
kdDebug(7101)<<"FloppyProtocol::mkdir()"<<endl;
- QString path(url.path());
+ TQString path(url.path());
if ((path.isEmpty()) || (path=="/"))
{
@@ -724,8 +724,8 @@ void FloppyProtocol::mkdir( const KURL& url, int)
finished();
return;
}
- QString drive;
- QString floppyPath;
+ TQString drive;
+ TQString floppyPath;
getDriveAndPath(path,drive,floppyPath);
if (floppyPath.isEmpty())
{
@@ -735,7 +735,7 @@ void FloppyProtocol::mkdir( const KURL& url, int)
if (m_mtool!=0)
delete m_mtool;
//kdDebug(7101)<<"Floppy::stat(): create args"<<endl;
- QStringList args;
+ TQStringList args;
args<<"mmd"<<(drive+floppyPath);
kdDebug(7101)<<"Floppy::mkdir(): executing: mmd -"<<(drive+floppyPath)<<"-"<<endl;
@@ -786,7 +786,7 @@ void FloppyProtocol::mkdir( const KURL& url, int)
void FloppyProtocol::del( const KURL& url, bool isfile)
{
kdDebug(7101)<<"FloppyProtocol::del()"<<endl;
- QString path(url.path());
+ TQString path(url.path());
if ((path.isEmpty()) || (path=="/"))
{
@@ -796,8 +796,8 @@ void FloppyProtocol::del( const KURL& url, bool isfile)
finished();
return;
}
- QString drive;
- QString floppyPath;
+ TQString drive;
+ TQString floppyPath;
getDriveAndPath(path,drive,floppyPath);
if (floppyPath.isEmpty())
{
@@ -808,7 +808,7 @@ void FloppyProtocol::del( const KURL& url, bool isfile)
if (m_mtool!=0)
delete m_mtool;
//kdDebug(7101)<<"Floppy::stat(): create args"<<endl;
- QStringList args;
+ TQStringList args;
bool usingmdel;
@@ -823,14 +823,14 @@ void FloppyProtocol::del( const KURL& url, bool isfile)
usingmdel=false;
}
- kdDebug(7101)<<"Floppy::del(): executing: " << (usingmdel ? QString("mdel") : QString("mrd") ) << "-"<<(drive+floppyPath)<<"-"<<endl;
+ kdDebug(7101)<<"Floppy::del(): executing: " << (usingmdel ? TQString("mdel") : TQString("mrd") ) << "-"<<(drive+floppyPath)<<"-"<<endl;
m_mtool=new Program(args);
if (!m_mtool->start())
{
delete m_mtool;
m_mtool=0;
- errorMissingMToolsProgram(usingmdel ? QString("mdel") : QString("mrd"));
+ errorMissingMToolsProgram(usingmdel ? TQString("mdel") : TQString("mrd"));
return;
}
@@ -870,8 +870,8 @@ void FloppyProtocol::del( const KURL& url, bool isfile)
void FloppyProtocol::rename( const KURL &src, const KURL &dest, bool _overwrite )
{
- QString srcPath(src.path());
- QString destPath(dest.path());
+ TQString srcPath(src.path());
+ TQString destPath(dest.path());
kdDebug(7101)<<"Floppy::rename() -"<<srcPath<<"- to -"<<destPath<<"-"<<endl;
@@ -881,8 +881,8 @@ void FloppyProtocol::rename( const KURL &src, const KURL &dest, bool _overwrite
if ((destPath.isEmpty()) || (destPath=="/"))
destPath="/a/";
- QString srcDrive;
- QString srcFloppyPath;
+ TQString srcDrive;
+ TQString srcFloppyPath;
getDriveAndPath(srcPath,srcDrive,srcFloppyPath);
if (srcFloppyPath.isEmpty())
{
@@ -890,8 +890,8 @@ void FloppyProtocol::rename( const KURL &src, const KURL &dest, bool _overwrite
return;
}
- QString destDrive;
- QString destFloppyPath;
+ TQString destDrive;
+ TQString destFloppyPath;
getDriveAndPath(destPath,destDrive,destFloppyPath);
if (destFloppyPath.isEmpty())
{
@@ -902,7 +902,7 @@ void FloppyProtocol::rename( const KURL &src, const KURL &dest, bool _overwrite
if (m_mtool!=0)
delete m_mtool;
//kdDebug(7101)<<"Floppy::stat(): create args"<<endl;
- QStringList args;
+ TQStringList args;
if (_overwrite)
args<<"mren"<<"-o"<<(srcDrive+srcFloppyPath)<<(destDrive+destFloppyPath);
@@ -956,7 +956,7 @@ void FloppyProtocol::rename( const KURL &src, const KURL &dest, bool _overwrite
void FloppyProtocol::get( const KURL& url )
{
- QString path(url.path());
+ TQString path(url.path());
kdDebug(7101)<<"Floppy::get() -"<<path<<"-"<<endl;
if ((path.isEmpty()) || (path=="/"))
@@ -974,8 +974,8 @@ void FloppyProtocol::get( const KURL& url )
totalSize( info.size);
- QString drive;
- QString floppyPath;
+ TQString drive;
+ TQString floppyPath;
getDriveAndPath(path,drive,floppyPath);
if (floppyPath.isEmpty())
{
@@ -986,7 +986,7 @@ void FloppyProtocol::get( const KURL& url )
if (m_mtool!=0)
delete m_mtool;
//kdDebug(7101)<<"Floppy::stat(): create args"<<endl;
- QStringList args;
+ TQStringList args;
args<<"mcopy"<<(drive+floppyPath)<<"-";
kdDebug(7101)<<"Floppy::get(): executing: mcopy -"<<(drive+floppyPath)<<"-"<<endl;
@@ -1003,7 +1003,7 @@ void FloppyProtocol::get( const KURL& url )
clearBuffers();
int result;
int bytesRead(0);
- QByteArray array;
+ TQByteArray array;
bool loopFinished(false);
bool errorOccured(false);
do
@@ -1050,13 +1050,13 @@ void FloppyProtocol::get( const KURL& url )
return;
//kdDebug(7101)<<"Floppy::get(): finishing"<<endl;
- data( QByteArray() );
+ data( TQByteArray() );
finished();
}
void FloppyProtocol::put( const KURL& url, int , bool overwrite, bool )
{
- QString path(url.path());
+ TQString path(url.path());
kdDebug(7101)<<"Floppy::put() -"<<path<<"-"<<endl;
if ((path.isEmpty()) || (path=="/"))
@@ -1067,8 +1067,8 @@ void FloppyProtocol::put( const KURL& url, int , bool overwrite, bool )
finished();
return;
}
- QString drive;
- QString floppyPath;
+ TQString drive;
+ TQString floppyPath;
getDriveAndPath(path,drive,floppyPath);
if (floppyPath.isEmpty())
{
@@ -1082,7 +1082,7 @@ void FloppyProtocol::put( const KURL& url, int , bool overwrite, bool )
if (m_mtool!=0)
delete m_mtool;
//kdDebug(7101)<<"Floppy::stat(): create args"<<endl;
- QStringList args;
+ TQStringList args;
if (overwrite)
args<<"mcopy"<<"-o"<<"-"<<(drive+floppyPath);
else
@@ -1103,7 +1103,7 @@ void FloppyProtocol::put( const KURL& url, int , bool overwrite, bool )
clearBuffers();
int result(0);
int bytesRead(0);
- QByteArray array;
+ TQByteArray array;
//from file.cc
// Loop until we got 0 (end of data)
@@ -1129,7 +1129,7 @@ void FloppyProtocol::put( const KURL& url, int , bool overwrite, bool )
}
else
{
- QByteArray buffer;
+ TQByteArray buffer;
dataReq(); // Request for data
//kdDebug(7101)<<"Floppy::put(): after dataReq()"<<endl;
result = readData( buffer );
diff --git a/kioslave/floppy/kio_floppy.h b/kioslave/floppy/kio_floppy.h
index bfc003b9f..3cc58488f 100644
--- a/kioslave/floppy/kio_floppy.h
+++ b/kioslave/floppy/kio_floppy.h
@@ -25,12 +25,12 @@
#include "program.h"
-#include <qstring.h>
+#include <tqstring.h>
struct StatInfo
{
StatInfo():name(""),time(0),size(0),mode(0),freeSpace(0),isDir(false),isValid(false) {;}
- QString name;
+ TQString name;
time_t time;
int size;
int mode;
@@ -43,7 +43,7 @@ struct StatInfo
class FloppyProtocol : public KIO::SlaveBase
{
public:
- FloppyProtocol (const QCString &pool, const QCString &app );
+ FloppyProtocol (const TQCString &pool, const TQCString &app );
virtual ~FloppyProtocol();
virtual void listDir( const KURL& url);
@@ -59,13 +59,13 @@ class FloppyProtocol : public KIO::SlaveBase
int readStdout();
int readStderr();
- StatInfo createStatInfo(const QString line, bool makeStat=false, const QString& dirName="");
+ StatInfo createStatInfo(const TQString line, bool makeStat=false, const TQString& dirName="");
void createUDSEntry(const StatInfo& info, KIO::UDSEntry& entry);
StatInfo _stat(const KURL& _url);
int freeSpace(const KURL& url);
- bool stopAfterError(const KURL& url, const QString& drive);
- void errorMissingMToolsProgram(const QString& name);
+ bool stopAfterError(const KURL& url, const TQString& drive);
+ void errorMissingMToolsProgram(const TQString& name);
void clearBuffers();
void terminateBuffers();
diff --git a/kioslave/floppy/program.cpp b/kioslave/floppy/program.cpp
index 7cfd4989a..83080c233 100644
--- a/kioslave/floppy/program.cpp
+++ b/kioslave/floppy/program.cpp
@@ -31,7 +31,7 @@
#include <kdebug.h>
-Program::Program(const QStringList &args)
+Program::Program(const TQStringList &args)
:m_pid(0)
,mArgs(args)
,mStarted(false)
@@ -135,7 +135,7 @@ bool Program::start()
char **arglist=(char**)malloc((mArgs.count()+1)*sizeof(char*));
int c=0;
- for (QStringList::Iterator it=mArgs.begin(); it!=mArgs.end(); ++it)
+ for (TQStringList::Iterator it=mArgs.begin(); it!=mArgs.end(); ++it)
{
arglist[c]=(char*)malloc((*it).length()+1);
strcpy(arglist[c], (*it).latin1());
diff --git a/kioslave/floppy/program.h b/kioslave/floppy/program.h
index 29ea634ad..409603689 100644
--- a/kioslave/floppy/program.h
+++ b/kioslave/floppy/program.h
@@ -20,7 +20,7 @@
#ifndef PROGRAM_H
#define PROGRAM_H
-#include <qstringlist.h>
+#include <tqstringlist.h>
/**
* start programs and write to thieir stdin, stderr,
@@ -29,7 +29,7 @@
class Program
{
public:
- Program(const QStringList &args);
+ Program(const TQStringList &args);
~Program();
bool start();
bool isRunning();
@@ -45,7 +45,7 @@ protected:
int mStdin[2];
int mStderr[2];
int m_pid;
- QStringList mArgs;
+ TQStringList mArgs;
bool mStarted;
};