summaryrefslogtreecommitdiffstats
path: root/src/libs/kdtools
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2013-05-27 16:02:37 +0200
committerKarsten Heimrich <karsten.heimrich@digia.com>2013-05-27 16:13:29 +0200
commit82d7347ab9da7ea7e7575d2816bcdd6e7854f6cc (patch)
tree2f1ccffd3c31b126eeba3a9ff584af8fffe44f06 /src/libs/kdtools
parent95dc8d8930934714e453d167f5eeaec8c8587c13 (diff)
Remove unused files.
Change-Id: I420f461caae6cd45257edb3fab44c211659608c9 Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
Diffstat (limited to 'src/libs/kdtools')
-rw-r--r--src/libs/kdtools/kdupdatersignatureverificationrunnable.cpp137
-rw-r--r--src/libs/kdtools/kdupdatersignatureverificationrunnable.h92
2 files changed, 0 insertions, 229 deletions
diff --git a/src/libs/kdtools/kdupdatersignatureverificationrunnable.cpp b/src/libs/kdtools/kdupdatersignatureverificationrunnable.cpp
deleted file mode 100644
index 1e00ca43f..000000000
--- a/src/libs/kdtools/kdupdatersignatureverificationrunnable.cpp
+++ /dev/null
@@ -1,137 +0,0 @@
-/****************************************************************************
-** Copyright (C) 2001-2010 Klaralvdalens Datakonsult AB. All rights reserved.
-**
-** This file is part of the KD Tools library.
-**
-** Licensees holding valid commercial KD Tools licenses may use this file in
-** accordance with the KD Tools Commercial License Agreement provided with
-** the Software.
-**
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU Lesser General Public License version 2 and version 3 as published by the
-** Free Software Foundation and appearing in the file LICENSE.LGPL included.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-** Contact info@kdab.com if any conditions of this licensing are not
-** clear to you.
-**
-**********************************************************************/
-
-#include "kdupdatersignatureverificationrunnable.h"
-#include "kdupdatersignatureverifier.h"
-#include "kdupdatersignatureverificationresult.h"
-
-#include <QByteArray>
-#include <QIODevice>
-#include <QMetaObject>
-#include <QObject>
-#include <QPointer>
-#include <QThreadPool>
-#include <QVariant>
-#include <QVector>
-
-#include <cassert>
-
-using namespace KDUpdater;
-
-class Runnable::Private {
-public:
- QVector<QObject*> receivers;
- QVector<QByteArray> methods;
-};
-
-Runnable::Runnable() : QRunnable(), d( new Private ) {
-}
-
-Runnable::~Runnable() {
- delete d;
-}
-
-
-void Runnable::addResultListener( QObject* receiver, const char* method ) {
- d->receivers.push_back( receiver );
- d->methods.push_back( QByteArray( method ) );
-}
-
-void Runnable::emitResult( const QGenericArgument& arg0,
- const QGenericArgument& arg1,
- const QGenericArgument& arg2,
- const QGenericArgument& arg3,
- const QGenericArgument& arg4,
- const QGenericArgument& arg5,
- const QGenericArgument& arg6,
- const QGenericArgument& arg7,
- const QGenericArgument& arg8,
- const QGenericArgument& arg9 ) {
- assert( d->receivers.size() == d->methods.size() );
- for ( int i = 0; i < d->receivers.size(); ++i ) {
- QMetaObject::invokeMethod( d->receivers[i],
- d->methods[i].constData(),
- Qt::QueuedConnection,
- arg0,
- arg1,
- arg2,
- arg3,
- arg4,
- arg5,
- arg6,
- arg7,
- arg8,
- arg9 );
- }
-}
-
-class SignatureVerificationRunnable::Private {
-public:
- Private() : verifier( 0 ) {}
- const SignatureVerifier* verifier;
- QPointer<QIODevice> device;
- QByteArray signature;
-};
-
-SignatureVerificationRunnable::SignatureVerificationRunnable() : Runnable(), d( new Private ) {
-}
-
-SignatureVerificationRunnable::~SignatureVerificationRunnable() {
- delete d;
-}
-
-const SignatureVerifier* SignatureVerificationRunnable::verifier() const {
- return d->verifier;
-}
-
-void SignatureVerificationRunnable::setVerifier( const SignatureVerifier* verifier ) {
- delete d->verifier;
- d->verifier = verifier ? verifier->clone() : 0;
-}
-
-QByteArray SignatureVerificationRunnable::signature() const {
- return d->signature;
-}
-
-void SignatureVerificationRunnable::setSignature( const QByteArray& sig ) {
- d->signature = sig;
-}
-
-QIODevice* SignatureVerificationRunnable::data() const {
- return d->device;
-}
-
-void SignatureVerificationRunnable::setData( QIODevice* device ) {
- d->device = device;
-}
-
-
-void SignatureVerificationRunnable::run() {
- QThreadPool::globalInstance()->releaseThread();
- const SignatureVerificationResult result = d->verifier->verify( d->device->readAll(), d->signature );
- QThreadPool::globalInstance()->reserveThread();
- delete d->verifier;
- delete d->device;
- emitResult( Q_ARG( KDUpdater::SignatureVerificationResult, result ) );
-}
-
-
diff --git a/src/libs/kdtools/kdupdatersignatureverificationrunnable.h b/src/libs/kdtools/kdupdatersignatureverificationrunnable.h
deleted file mode 100644
index 901689253..000000000
--- a/src/libs/kdtools/kdupdatersignatureverificationrunnable.h
+++ /dev/null
@@ -1,92 +0,0 @@
-/****************************************************************************
-** Copyright (C) 2001-2010 Klaralvdalens Datakonsult AB. All rights reserved.
-**
-** This file is part of the KD Tools library.
-**
-** Licensees holding valid commercial KD Tools licenses may use this file in
-** accordance with the KD Tools Commercial License Agreement provided with
-** the Software.
-**
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU Lesser General Public License version 2 and version 3 as published by the
-** Free Software Foundation and appearing in the file LICENSE.LGPL included.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-** Contact info@kdab.com if any conditions of this licensing are not
-** clear to you.
-**
-**********************************************************************/
-
-#ifndef KDUPDATERSIGNATUREVERIFICATIONJOB_H
-#define KDUPDATERSIGNATUREVERIFICATIONJOB_H
-
-#include <kdtoolsglobal.h>
-
-#include <QtCore/QGenericArgument>
-#include <QtCore/QRunnable>
-
-QT_BEGIN_NAMESPACE
-class QByteArray;
-class QIODevice;
-class QObject;
-template <typename T> class QVector;
-QT_END_NAMESPACE
-
-namespace KDUpdater {
-
-class SignatureVerifier;
-class SignatureVerificationResult;
-
-class Runnable : public QRunnable
-{
-public:
- Runnable();
- ~Runnable();
-
- void addResultListener(QObject *receiver, const char *method);
-
-protected:
- void emitResult(const QGenericArgument &arg0 = QGenericArgument(0),
- const QGenericArgument &arg1 = QGenericArgument(),
- const QGenericArgument &arg2 = QGenericArgument(),
- const QGenericArgument &arg3 = QGenericArgument(),
- const QGenericArgument &arg4 = QGenericArgument(),
- const QGenericArgument &arg5 = QGenericArgument(),
- const QGenericArgument &arg6 = QGenericArgument(),
- const QGenericArgument &arg7 = QGenericArgument(),
- const QGenericArgument &arg8 = QGenericArgument(),
- const QGenericArgument &arg9 = QGenericArgument());
-
-private:
- class Private;
- Private *d;
-};
-
-class SignatureVerificationRunnable : public Runnable
-{
-public:
- explicit SignatureVerificationRunnable();
- ~SignatureVerificationRunnable();
-
- const SignatureVerifier *verifier() const;
- void setVerifier(const SignatureVerifier *verifier);
-
- QByteArray signature() const;
- void setSignature(const QByteArray &sig);
-
- QIODevice *data() const;
- void setData(QIODevice *device);
-
- void run();
-
-private:
- class Private;
- Private *d;
-};
-
-} // namespace KDUpdater
-
-#endif // KDUPDATERSIGNATUREVERIFICATIONJOB_H