summaryrefslogtreecommitdiffstats
path: root/libkgpgfile/kgpgfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkgpgfile/kgpgfile.cpp')
-rw-r--r--libkgpgfile/kgpgfile.cpp180
1 files changed, 89 insertions, 91 deletions
diff --git a/libkgpgfile/kgpgfile.cpp b/libkgpgfile/kgpgfile.cpp
index a7fc338..934c772 100644
--- a/libkgpgfile/kgpgfile.cpp
+++ b/libkgpgfile/kgpgfile.cpp
@@ -24,13 +24,11 @@
// ----------------------------------------------------------------------------
// QT Includes
-#include <qfile.h>
-#include <qdir.h>
-#include <qstring.h>
+#include <tqfile.h>
+#include <tqdir.h>
+#include <tqstring.h>
-#if QT_IS_VERSION(3,3,0)
-#include <qeventloop.h>
-#endif
+#include <tqeventloop.h>
// ----------------------------------------------------------------------------
@@ -53,7 +51,7 @@ class KGPGFileFactory : public KLibFactory
public:
KGPGFileFactory() : KLibFactory() {}
~KGPGFileFactory(){}
- QObject *createObject( QObject *, const char *, const char*, const QStringList & )
+ TQObject *createObject( TQObject *, const char *, const char*, const TQStringList & )
{
return new KGPGFile;
}
@@ -67,7 +65,7 @@ extern "C" {
}
#endif
-KGPGFile::KGPGFile(const QString& fn, const QString& homedir, const QString& options) :
+KGPGFile::KGPGFile(const TQString& fn, const TQString& homedir, const TQString& options) :
m_options(options),
m_homedir(homedir),
m_readRemain(0),
@@ -87,18 +85,18 @@ KGPGFile::~KGPGFile()
void KGPGFile::init(void)
{
setFlags(IO_Sequential);
- setStatus(IO_Ok);
+ setqStatus(IO_Ok);
setState(0);
}
-void KGPGFile::setName(const QString& fn)
+void KGPGFile::setName(const TQString& fn)
{
m_fn = fn;
if(fn[0] == '~') {
- m_fn = QDir::homeDirPath()+fn.mid(1);
+ m_fn = TQDir::homeDirPath()+fn.mid(1);
- } else if(QDir::isRelativePath(m_fn)) {
- QDir dir(fn);
+ } else if(TQDir::isRelativePath(m_fn)) {
+ TQDir dir(fn);
m_fn = dir.absPath();
}
// qDebug("setName: '%s'", m_fn.data());
@@ -109,17 +107,17 @@ void KGPGFile::flush(void)
// no functionality
}
-void KGPGFile::addRecipient(const QCString& recipient)
+void KGPGFile::addRecipient(const TQCString& recipient)
{
m_recipient << recipient;
}
bool KGPGFile::open(int mode)
{
- return open(mode, QString(), false);
+ return open(mode, TQString(), false);
}
-bool KGPGFile::open(int mode, const QString& cmdArgs, bool skipPasswd)
+bool KGPGFile::open(int mode, const TQString& cmdArgs, bool skipPasswd)
{
bool useOwnPassphrase = (getenv("GPG_AGENT_INFO") == 0);
@@ -151,46 +149,46 @@ bool KGPGFile::open(int mode, const QString& cmdArgs, bool skipPasswd)
return false;
}
- QStringList args;
+ TQStringList args;
if(cmdArgs.isEmpty()) {
- args << "--homedir" << QString("\"%1\"").arg(m_homedir)
+ args << "--homedir" << TQString("\"%1\"").tqarg(m_homedir)
<< "-q"
<< "--batch";
if(isWritable()) {
args << "-ea"
<< "-z" << "6"
- << "--comment" << QString("\"%1\"").arg(m_comment)
+ << "--comment" << TQString("\"%1\"").tqarg(m_comment)
<< "--trust-model=always"
- << "-o" << QString("\"%1\"").arg(m_fn);
- QValueList<QCString>::Iterator it;
+ << "-o" << TQString("\"%1\"").tqarg(m_fn);
+ TQValueList<TQCString>::Iterator it;
for(it = m_recipient.begin(); it != m_recipient.end(); ++it)
- args << "-r" << QString("\"%1\"").arg(*it);
+ args << "-r" << TQString("\"%1\"").tqarg(TQString(*it));
// some versions of GPG had trouble to replace a file
// so we delete it first
- QFile::remove(m_fn);
+ TQFile::remove(m_fn);
} else {
args << "-da";
if(useOwnPassphrase)
args << "--passphrase-fd" << "0";
else
args << "--use-agent";
- args << "--no-default-recipient" << QString("\"%1\"").arg(m_fn);
+ args << "--no-default-recipient" << TQString("\"%1\"").tqarg(m_fn);
}
} else {
- args = QStringList::split(" ", cmdArgs);
+ args = TQStringList::split(" ", cmdArgs);
}
- QCString pwd;
+ TQCString pwd;
if(isReadable() && useOwnPassphrase && !skipPasswd) {
KPasswordDialog dlg(KPasswordDialog::Password,false,0);
dlg.setPrompt(i18n("Enter passphrase"));
dlg.addLine(i18n("File"), m_fn);
dlg.adjustSize();
- if (dlg.exec() == QDialog::Rejected)
+ if (dlg.exec() == TQDialog::Rejected)
return false;
- pwd = QCString(dlg.password());
+ pwd = TQCString(dlg.password());
}
// qDebug("starting GPG process");
@@ -220,32 +218,32 @@ bool KGPGFile::open(int mode, const QString& cmdArgs, bool skipPasswd)
}
setState( IO_Open );
- ioIndex = 0;
+ tqat( 0 );
// qDebug("File open");
return true;
}
-bool KGPGFile::startProcess(const QStringList& args)
+bool KGPGFile::startProcess(const TQStringList& args)
{
// now start the KProcess with GPG
m_process = new KShellProcess();
*m_process << "gpg";
*m_process << args;
- // QString arglist = args.join(":");
+ // TQString arglist = args.join(":");
// qDebug("gpg '%s'", arglist.data());
- connect(m_process, SIGNAL(processExited(KProcess *)),
- this, SLOT(slotGPGExited(KProcess *)));
+ connect(m_process, TQT_SIGNAL(processExited(KProcess *)),
+ this, TQT_SLOT(slotGPGExited(KProcess *)));
- connect(m_process, SIGNAL(receivedStdout(KProcess*, char*, int)),
- this, SLOT(slotDataFromGPG(KProcess*, char*, int)));
+ connect(m_process, TQT_SIGNAL(receivedStdout(KProcess*, char*, int)),
+ this, TQT_SLOT(slotDataFromGPG(KProcess*, char*, int)));
- connect(m_process, SIGNAL(receivedStderr(KProcess*, char*, int)),
- this, SLOT(slotErrorFromGPG(KProcess*, char*, int)));
+ connect(m_process, TQT_SIGNAL(receivedStderr(KProcess*, char*, int)),
+ this, TQT_SLOT(slotErrorFromGPG(KProcess*, char*, int)));
- connect(m_process, SIGNAL(wroteStdin(KProcess *)),
- this, SLOT(slotSendDataToGPG(KProcess *)));
+ connect(m_process, TQT_SIGNAL(wroteStdin(KProcess *)),
+ this, TQT_SLOT(slotSendDataToGPG(KProcess *)));
if(!m_process->start(KProcess::NotifyOnExit, (KProcess::Communication)(KProcess::Stdin|KProcess::Stdout|KProcess::Stderr))) {
// qDebug("m_process->start failed");
@@ -255,7 +253,7 @@ bool KGPGFile::startProcess(const QStringList& args)
}
// let the process settle and see if it starts and survives ;-)
- kapp->processEvents(100);
+ kapp->tqprocessEvents(100);
return true;
}
@@ -275,7 +273,7 @@ void KGPGFile::close(void)
m_process->closeStdin();
// now wait for GPG to finish
m_needExitLoop = true;
- qApp->enter_loop();
+ tqApp->enter_loop();
} else
m_process->kill();
@@ -285,12 +283,12 @@ void KGPGFile::close(void)
m_process->closeStdout();
// now wait for GPG to finish
m_needExitLoop = true;
- qApp->enter_loop();
+ tqApp->enter_loop();
} else
m_process->kill();
}
}
- m_ungetchBuffer = QCString();
+ m_ungetchBuffer = TQCString();
setState(0);
m_recipient.clear();
// qDebug("File closed");
@@ -342,7 +340,7 @@ int KGPGFile::putch(int c)
return EOF;
}
-Q_LONG KGPGFile::writeBlock(const char *data, Q_ULONG maxlen)
+TQ_LONG KGPGFile::writeBlock(const char *data, TQ_ULONG maxlen)
{
if(!isOpen())
return EOF;
@@ -352,7 +350,7 @@ Q_LONG KGPGFile::writeBlock(const char *data, Q_ULONG maxlen)
return _writeBlock(data, maxlen);
}
-Q_LONG KGPGFile::_writeBlock(const char *data, Q_ULONG maxlen)
+TQ_LONG KGPGFile::_writeBlock(const char *data, TQ_ULONG maxlen)
{
if(!m_process)
return EOF;
@@ -362,7 +360,7 @@ Q_LONG KGPGFile::_writeBlock(const char *data, Q_ULONG maxlen)
if(m_process->writeStdin(data, maxlen)) {
// wait until the data has been written
m_needExitLoop = true;
- qApp->enter_loop();
+ tqApp->enter_loop();
if(!m_process)
return EOF;
return maxlen;
@@ -371,7 +369,7 @@ Q_LONG KGPGFile::_writeBlock(const char *data, Q_ULONG maxlen)
return EOF;
}
-Q_LONG KGPGFile::readBlock(char *data, Q_ULONG maxlen)
+TQ_LONG KGPGFile::readBlock(char *data, TQ_ULONG maxlen)
{
// char *oridata = data;
if(maxlen == 0)
@@ -382,7 +380,7 @@ Q_LONG KGPGFile::readBlock(char *data, Q_ULONG maxlen)
if(!isReadable())
return EOF;
- Q_ULONG nread = 0;
+ TQ_ULONG nread = 0;
if(!m_ungetchBuffer.isEmpty()) {
unsigned l = m_ungetchBuffer.length();
if(maxlen < l)
@@ -410,7 +408,7 @@ Q_LONG KGPGFile::readBlock(char *data, Q_ULONG maxlen)
if(m_readRemain) {
m_process->resume();
m_needExitLoop = true;
- qApp->enter_loop();
+ tqApp->enter_loop();
}
// if nothing has been read (maxlen-m_readRemain == 0) then we assume EOF
if((maxlen - m_readRemain) == 0) {
@@ -422,17 +420,17 @@ Q_LONG KGPGFile::readBlock(char *data, Q_ULONG maxlen)
return maxlen - m_readRemain;
}
-QByteArray KGPGFile::readAll(void)
+TQByteArray KGPGFile::readAll(void)
{
- // use a larger blocksize than in the QIODevice version
+ // use a larger blocksize than in the TQIODevice version
const int blocksize = 8192;
int nread = 0;
- QByteArray ba;
+ TQByteArray ba;
while ( !atEnd() ) {
ba.resize( nread + blocksize );
int r = readBlock( ba.data()+nread, blocksize );
if ( r < 0 )
- return QByteArray();
+ return TQByteArray();
nread += r;
}
ba.resize( nread );
@@ -446,7 +444,7 @@ void KGPGFile::slotGPGExited(KProcess* )
if(m_process->normalExit()) {
m_exitStatus = m_process->exitStatus();
if(m_exitStatus != 0)
- setStatus(IO_UnspecifiedError);
+ setqStatus(IO_UnspecifiedError);
} else {
m_exitStatus = -1;
}
@@ -456,7 +454,7 @@ void KGPGFile::slotGPGExited(KProcess* )
if(m_needExitLoop) {
m_needExitLoop = false;
- qApp->exit_loop();
+ tqApp->exit_loop();
}
}
@@ -486,7 +484,7 @@ void KGPGFile::slotDataFromGPG(KProcess* proc, char* buf, int len)
// wake up the recipient
if(m_needExitLoop) {
m_needExitLoop = false;
- qApp->exit_loop();
+ tqApp->exit_loop();
}
}
// qDebug("end slotDataFromGPG");
@@ -495,7 +493,7 @@ void KGPGFile::slotDataFromGPG(KProcess* proc, char* buf, int len)
void KGPGFile::slotErrorFromGPG(KProcess *, char *buf, int len)
{
// qDebug("Received %d bytes on stderr", len);
- QCString msg;
+ TQCString msg;
msg.setRawData(buf, len);
m_errmsg += msg;
msg.resetRawData(buf, len);
@@ -506,49 +504,49 @@ void KGPGFile::slotSendDataToGPG(KProcess *)
// qDebug("wrote stdin");
if(m_needExitLoop) {
m_needExitLoop = false;
- qApp->exit_loop();
+ tqApp->exit_loop();
}
}
bool KGPGFile::GPGAvailable(void)
{
- QString output;
+ TQString output;
char buffer[1024];
- Q_LONG len;
+ TQ_LONG len;
KGPGFile file;
file.open(IO_ReadOnly, "--version", true);
while((len = file.readBlock(buffer, sizeof(buffer)-1)) != EOF) {
buffer[len] = 0;
- output += QString(buffer);
+ output += TQString(buffer);
}
file.close();
return !output.isEmpty();
}
-bool KGPGFile::keyAvailable(const QString& name)
+bool KGPGFile::keyAvailable(const TQString& name)
{
- QStringList list;
+ TQStringList list;
publicKeyList(list, name);
return !list.isEmpty();
}
-void KGPGFile::publicKeyList(QStringList& list, const QString& pattern)
+void KGPGFile::publicKeyList(TQStringList& list, const TQString& pattern)
{
- QMap<QString, QString> map;
- QString output;
+ TQMap<TQString, TQString> map;
+ TQString output;
char buffer[1024];
- Q_LONG len;
+ TQ_LONG len;
list.clear();
KGPGFile file;
- QString args("--list-keys --with-colons");
+ TQString args("--list-keys --with-colons");
if(!pattern.isEmpty())
- args += QString(" %1").arg(pattern);
+ args += TQString(" %1").tqarg(pattern);
file.open(IO_ReadOnly, args, true);
while((len = file.readBlock(buffer, sizeof(buffer)-1)) != EOF) {
buffer[len] = 0;
- output += QString(buffer);
+ output += TQString(buffer);
}
file.close();
@@ -560,24 +558,24 @@ void KGPGFile::publicKeyList(QStringList& list, const QString& pattern)
uid:u::::2001-11-29::00A393737BC120C98A6402B921599F6D72058DD8::Thomas Baumgart <ipwizard@users.sourceforge.net>:
sub:u:1024:16:85968A70D1F83C2B:2001-06-23::::::e:
*/
- QStringList lines = QStringList::split("\n", output);
- QStringList::iterator it;
- QString currentKey;
+ TQStringList lines = TQStringList::split("\n", output);
+ TQStringList::iterator it;
+ TQString currentKey;
for(it = lines.begin(); it != lines.end(); ++it) {
// qDebug("Parsing: '%s'", (*it).data());
- QStringList fields = QStringList::split(":", (*it), true);
- QString val;
+ TQStringList fields = TQStringList::split(":", (*it), true);
+ TQString val;
if(fields[0] == "pub") {
- QDate expiration = QDate::fromString(fields[6], Qt::ISODate);
- if(expiration > QDate::currentDate()) {
+ TQDate expiration = TQDate::fromString(fields[6], Qt::ISODate);
+ if(expiration > TQDate::tqcurrentDate()) {
currentKey = fields[4];
- val = QString("%1:%2").arg(currentKey).arg(fields[9]);
+ val = TQString("%1:%2").tqarg(currentKey).tqarg(fields[9]);
map[val] = val;
} else {
qDebug("'%s' is expired", fields[9].data());
}
} else if(fields[0] == "uid") {
- val = QString("%1:%2").arg(currentKey).arg(fields[9]);
+ val = TQString("%1:%2").tqarg(currentKey).tqarg(fields[9]);
map[val] = val;
}
}
@@ -585,18 +583,18 @@ void KGPGFile::publicKeyList(QStringList& list, const QString& pattern)
}
-void KGPGFile::secretKeyList(QStringList& list)
+void KGPGFile::secretKeyList(TQStringList& list)
{
- QString output;
+ TQString output;
char buffer[1024];
- Q_LONG len;
+ TQ_LONG len;
list.clear();
KGPGFile file;
file.open(IO_ReadOnly, "--list-secret-keys --with-colons", true);
while((len = file.readBlock(buffer, sizeof(buffer)-1)) != EOF) {
buffer[len] = 0;
- output += QString(buffer);
+ output += TQString(buffer);
}
file.close();
@@ -608,17 +606,17 @@ void KGPGFile::secretKeyList(QStringList& list)
sec::1024:17:59B0F826D2B08440:2005-01-03:2010-01-02:::KMyMoney emergency data recovery <kmymoney-recover@users.sourceforge.net>:::
ssb::2048:16:B3DABDC48C0FE2F3:2005-01-03:::::::
*/
- QStringList lines = QStringList::split("\n", output);
- QStringList::iterator it;
- QString currentKey;
+ TQStringList lines = TQStringList::split("\n", output);
+ TQStringList::iterator it;
+ TQString currentKey;
for(it = lines.begin(); it != lines.end(); ++it) {
// qDebug("Parsing: '%s'", (*it).data());
- QStringList fields = QStringList::split(":", (*it), true);
+ TQStringList fields = TQStringList::split(":", (*it), true);
if(fields[0] == "sec") {
currentKey = fields[4];
- list << QString("%1:%2").arg(currentKey).arg(fields[9]);
+ list << TQString("%1:%2").tqarg(currentKey).tqarg(fields[9]);
} else if(fields[0] == "uid") {
- list << QString("%1:%2").arg(currentKey).arg(fields[9]);
+ list << TQString("%1:%2").tqarg(currentKey).tqarg(fields[9]);
}
}
}
@@ -660,7 +658,7 @@ void KGPGFile::secretKeyList(QStringList& list)
#if KMM_DEBUG
void KGPGFile::dumpBuffer(char *s, int len) const
{
- QString data, tmp, chars;
+ TQString data, tmp, chars;
unsigned long addr = 0x0;
while(1) {
@@ -671,7 +669,7 @@ void KGPGFile::dumpBuffer(char *s, int len) const
}
if(!(addr & 0x0f)) {
data = tmp.sprintf("%08lX", addr);
- chars = QString();
+ chars = TQString();
}
if(!(addr & 0x03)) {
data += " ";