You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
4.7 KiB
144 lines
4.7 KiB
/*
|
|
gnupgviewer.cpp
|
|
|
|
This file is part of libkleopatra's test suite.
|
|
Copyright (c) 2004 Klarälvdalens Datakonsult AB
|
|
|
|
Libkleopatra 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.
|
|
|
|
Libkleopatra 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
|
|
|
|
In addition, as a special exception, the copyright holders give
|
|
permission to link the code of this program with any edition of
|
|
the Qt library by Trolltech AS, Norway (or with modified versions
|
|
of Qt that use the same license as Qt), and distribute linked
|
|
combinations including the two. You must obey the GNU General
|
|
Public License in all respects for all of the code used other than
|
|
Qt. If you modify this file, you may extend this exception to
|
|
your version of the file, but you are not obligated to do so. If
|
|
you do not wish to do so, delete this exception statement from
|
|
your version.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include "gnupgviewer.h"
|
|
|
|
#include <backends/qgpgme/gnupgprocessbase.h>
|
|
|
|
#include <kapplication.h>
|
|
#include <kaboutdata.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kmessagebox.h>
|
|
#include <kdebug.h>
|
|
|
|
#include <tqstringlist.h>
|
|
|
|
GnuPGViewer::GnuPGViewer( TQWidget * parent, const char * name )
|
|
: TQTextEdit( parent, name ), mProcess( 0 )
|
|
{
|
|
setTextFormat( LogText );
|
|
setMaxLogLines( 10000 );
|
|
}
|
|
|
|
GnuPGViewer::~GnuPGViewer() {
|
|
if ( mProcess )
|
|
mProcess->kill();
|
|
}
|
|
|
|
void GnuPGViewer::setProcess( Kleo::GnuPGProcessBase * process ) {
|
|
if ( !process )
|
|
return;
|
|
mProcess = process;
|
|
connect( mProcess, TQT_SIGNAL(processExited(KProcess*)),
|
|
TQT_SLOT(slotProcessExited(KProcess*)) );
|
|
connect( mProcess, TQT_SIGNAL(receivedStdout(KProcess*,char*,int)),
|
|
TQT_SLOT(slotStdout(KProcess*,char*,int)) );
|
|
connect( mProcess, TQT_SIGNAL(receivedStderr(KProcess*,char*,int)),
|
|
TQT_SLOT(slotStderr(KProcess*,char*,int)) );
|
|
connect( mProcess, TQT_SIGNAL(status(Kleo::GnuPGProcessBase*,const TQString&,const TQStringList&)),
|
|
TQT_SLOT(slotStatus(Kleo::GnuPGProcessBase*,const TQString&,const TQStringList&)) );
|
|
}
|
|
|
|
static TQStringList split( char * buffer, int buflen, TQString & old ) {
|
|
// when done right, this would need to use TQTextCodec...
|
|
const TQString str = old + TQString::fromLocal8Bit( buffer, buflen );
|
|
TQStringList l = TQStringList::split( '\n', str, true );
|
|
if ( l.empty() )
|
|
return l;
|
|
if ( str.endsWith( "\n" ) ) {
|
|
old = TQString::null;
|
|
} else {
|
|
old = l.back();
|
|
l.pop_back();
|
|
}
|
|
return l;
|
|
}
|
|
|
|
static TQString escape( TQString str ) {
|
|
return str.replace( '&', "&" ).replace( '<', "<" ).replace( '>', ">" );
|
|
}
|
|
|
|
void GnuPGViewer::slotStdout( KProcess *, char * buffer, int buflen ) {
|
|
const TQStringList l = split( buffer, buflen, mLastStdout );
|
|
for ( TQStringList::const_iterator it = l.begin() ; it != l.end() ; ++it )
|
|
append( "stdout: " + escape( *it ) );
|
|
}
|
|
|
|
void GnuPGViewer::slotStderr( KProcess *, char * buffer, int buflen ) {
|
|
const TQStringList l = split( buffer, buflen, mLastStderr );
|
|
for ( TQStringList::const_iterator it = l.begin() ; it != l.end() ; ++it )
|
|
append( "<b>stderr: " + escape( *it ) + "</b>" );
|
|
}
|
|
void GnuPGViewer::slotStatus( Kleo::GnuPGProcessBase *, const TQString & type, const TQStringList & args ) {
|
|
append( "<b><font color=\"red\">status: " + escape( type + ' ' + args.join( " " ) ) + "</font></b>" );
|
|
}
|
|
void GnuPGViewer::slotProcessExited( KProcess * proc ) {
|
|
if ( !proc )
|
|
return;
|
|
if ( proc->normalExit() )
|
|
append( TQString( "<b>Process exit: return code %1</b>" ).arg ( proc->exitStatus() ) );
|
|
else
|
|
append( "<b>Process exit: killed</b>" );
|
|
}
|
|
|
|
int main( int argc, char** argv ) {
|
|
if ( argc < 3 ) {
|
|
kdDebug() << "Need at least two arguments" << endl;
|
|
return 1;
|
|
}
|
|
KAboutData aboutData( "test_gnupgprocessbase", "GnuPGProcessBase Test", "0.1" );
|
|
KCmdLineArgs::init( &aboutData );
|
|
KApplication app;
|
|
|
|
Kleo::GnuPGProcessBase gpg;
|
|
for ( int i = 1 ; i < argc ; ++i )
|
|
gpg << argv[i];
|
|
|
|
gpg.setUseStatusFD( true );
|
|
|
|
GnuPGViewer * gv = new GnuPGViewer();
|
|
gv->setProcess( &gpg );
|
|
|
|
app.setMainWidget( gv );
|
|
gv->show();
|
|
|
|
gpg.start( KProcess::NotifyOnExit, KProcess::AllOutput );
|
|
|
|
return app.exec();
|
|
}
|
|
|
|
#include "gnupgviewer.moc"
|