kde-playground/kdepim/kleopatra/commands/selftestcommand.cpp
2015-04-14 21:49:29 +00:00

278 lines
7.6 KiB
C++

/* -*- mode: c++; c-basic-offset:4 -*-
commands/selftestcommand.cpp
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2008 Klarälvdalens Datakonsult AB
Kleopatra 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.
Kleopatra 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.
*/
#include <config-kleopatra.h>
#include "selftestcommand.h"
#include "command_p.h"
#include <dialogs/selftestdialog.h>
#ifdef Q_OS_WIN
# include <selftest/registrycheck.h>
#endif
#include <selftest/enginecheck.h>
#include <selftest/gpgconfcheck.h>
#ifdef HAVE_KLEOPATRACLIENT_LIBRARY
# include <selftest/uiservercheck.h>
#endif
#include <selftest/gpgagentcheck.h>
#include <selftest/libkleopatrarccheck.h>
#include <kleo/stl_util.h>
#include <KLocalizedString>
#include <KGlobal>
#include <KConfigGroup>
#include <KSplashScreen>
#include <KSharedConfig>
#include <boost/shared_ptr.hpp>
#include <boost/mem_fn.hpp>
#include <vector>
using namespace Kleo;
using namespace Kleo::Commands;
using namespace Kleo::Dialogs;
using namespace boost;
static const char * const components[] = {
0, // gpgconf
"gpg",
"gpg-agent",
"scdaemon",
"gpgsm",
"dirmngr",
};
static const unsigned int numComponents = sizeof components / sizeof *components;
class SelfTestCommand::Private : Command::Private {
friend class ::Kleo::Commands::SelfTestCommand;
SelfTestCommand * q_func() const { return static_cast<SelfTestCommand*>( q ); }
public:
explicit Private( SelfTestCommand * qq, KeyListController * c );
~Private();
private:
void init();
void ensureDialogCreated() {
if ( dialog )
return;
dialog = new SelfTestDialog;
applyWindowID( dialog );
dialog->setAttribute( Qt::WA_DeleteOnClose );
connect( dialog, SIGNAL(updateRequested()),
q_func(), SLOT(slotUpdateRequested()) );
connect( dialog, SIGNAL(accepted()),
q_func(), SLOT(slotDialogAccepted()) );
connect( dialog, SIGNAL(rejected()),
q_func(), SLOT(slotDialogRejected()) );
dialog->setRunAtStartUp( runAtStartUp() );
dialog->setAutomaticMode( automatic );
}
void ensureDialogShown() {
ensureDialogCreated();
if ( dialog->isVisible() )
dialog->raise();
else
dialog->show();
#ifndef QT_NO_SPLASHSCREEN
if ( splash )
splash->finish( dialog );
#endif // QT_NO_SPLASHSCREEN
}
bool runAtStartUp() const {
const KConfigGroup config( KGlobal::config(), "Self-Test" );
return config.readEntry( "run-at-startup", true );
}
void setRunAtStartUp( bool on ) {
KConfigGroup config( KGlobal::config(), "Self-Test" );
config.writeEntry( "run-at-startup", on );
}
void runTests() {
std::vector< shared_ptr<Kleo::SelfTest> > tests;
#if defined(Q_OS_WIN)
//emit q->info( i18n("Checking Windows Registry...") );
tests.push_back( makeGpgProgramRegistryCheckSelfTest() );
#endif
//emit q->info( i18n("Checking gpg installation...") );
tests.push_back( makeGpgEngineCheckSelfTest() );
//emit q->info( i18n("Checking gpgsm installation...") );
tests.push_back( makeGpgSmEngineCheckSelfTest() );
//emit q->info( i18n("Checking gpgconf installation...") );
tests.push_back( makeGpgConfEngineCheckSelfTest() );
for ( unsigned int i = 0 ; i < numComponents ; ++i ) {
//emit q->info( i18n("Checking %1 configuration...", components[i]) );
tests.push_back( makeGpgConfCheckConfigurationSelfTest( components[i] ) );
}
#if defined( HAVE_KLEOPATRACLIENT_LIBRARY )
//emit q->info( i18n("Checking Ui Server connectivity...") );
tests.push_back( makeUiServerConnectivitySelfTest() );
#endif
#ifndef Q_OS_WIN
tests.push_back( makeGpgAgentConnectivitySelfTest() );
#endif
tests.push_back( makeLibKleopatraRcSelfTest() );
if ( !dialog && kdtools::none_of( tests, mem_fn( &Kleo::SelfTest::failed ) ) ) {
finished();
return;
}
ensureDialogCreated();
dialog->clear();
dialog->addSelfTests( tests );
ensureDialogShown();
}
private:
void slotDialogAccepted() {
setRunAtStartUp( dialog->runAtStartUp() );
finished();
}
void slotDialogRejected() {
if ( automatic ) {
canceled = true;
Command::Private::canceled();
} else {
slotDialogAccepted();
}
}
void slotUpdateRequested() {
runTests();
}
private:
#ifndef QT_NO_SPLASHSCREEN
QPointer<KSplashScreen> splash;
#endif // QT_NO_SPLASHSCREEN
QPointer<SelfTestDialog> dialog;
bool canceled;
bool automatic;
};
SelfTestCommand::Private * SelfTestCommand::d_func() { return static_cast<Private*>( d.get() ); }
const SelfTestCommand::Private * SelfTestCommand::d_func() const { return static_cast<const Private*>( d.get() ); }
#define d d_func()
#define q q_func()
SelfTestCommand::Private::Private( SelfTestCommand * qq, KeyListController * c )
: Command::Private( qq, c ),
#ifndef QT_NO_SPLASHSCREEN
splash(),
#endif // QT_NO_SPLASHSCREEN
dialog(),
canceled( false ),
automatic( false )
{
}
SelfTestCommand::Private::~Private() {
}
SelfTestCommand::SelfTestCommand( KeyListController * c )
: Command( new Private( this, c ) )
{
d->init();
}
SelfTestCommand::SelfTestCommand( QAbstractItemView * v, KeyListController * c )
: Command( v, new Private( this, c ) )
{
d->init();
}
void SelfTestCommand::Private::init() {
}
SelfTestCommand::~SelfTestCommand() {}
void SelfTestCommand::setAutomaticMode( bool on ) {
d->automatic = on;
if ( d->dialog )
d->dialog->setAutomaticMode( on );
}
void SelfTestCommand::setSplashScreen( KSplashScreen * splash ) {
#ifndef QT_NO_SPLASHSCREEN
d->splash = splash;
#else
Q_UNUSED( splash );
#endif // QT_NO_SPLASHSCREEN
}
bool SelfTestCommand::isCanceled() const {
return d->canceled;
}
void SelfTestCommand::doStart() {
if ( d->automatic ) {
if ( !d->runAtStartUp() ) {
d->finished();
return;
}
} else {
d->ensureDialogCreated();
}
d->runTests();
}
void SelfTestCommand::doCancel() {
d->canceled = true;
if ( d->dialog )
d->dialog->close();
d->dialog = 0;
}
#undef d
#undef q
#include "moc_selftestcommand.cpp"