OSDN Git Service

Maemo: Remove C++ dumper support.
authorChristian Kandeler <christian.kandeler@nokia.com>
Thu, 21 Apr 2011 12:03:38 +0000 (14:03 +0200)
committerChristian Kandeler <christian.kandeler@nokia.com>
Thu, 21 Apr 2011 12:05:33 +0000 (14:05 +0200)
They haven't been maintained for a while now, so no need to
try to support them.

src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp
src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.h
src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp
src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.h

index a5c62da..e9d97fb 100644 (file)
@@ -38,7 +38,6 @@
 #include "maemousedportsgatherer.h"
 #include "qt4maemotarget.h"
 
-#include <utils/ssh/sftpchannel.h>
 #include <debugger/debuggerplugin.h>
 #include <debugger/debuggerstartparameters.h>
 #include <debugger/debuggerrunner.h>
@@ -72,9 +71,6 @@ RunControl *MaemoDebugSupport::createDebugRunControl(MaemoRunConfiguration *runC
         params.processArgs = runConfig->arguments();
         params.sysRoot = runConfig->sysRoot();
         params.toolChainAbi = runConfig->abi();
-        params.dumperLibrary = runConfig->dumperLib();
-        params.remoteDumperLib = uploadDir(devConf).toUtf8() + '/'
-            + QFileInfo(runConfig->dumperLib()).fileName().toUtf8();
         if (runConfig->useRemoteGdb()) {
             params.startMode = StartRemoteGdb;
             params.executable = runConfig->remoteExecutableFilePath();
@@ -127,7 +123,6 @@ MaemoDebugSupport::MaemoDebugSupport(MaemoRunConfiguration *runConfig,
       m_deviceConfig(m_runConfig->deviceConfig()),
       m_runner(new MaemoSshRunner(this, runConfig, true)),
       m_debuggingType(runConfig->debuggingType()),
-      m_dumperLib(runConfig->dumperLib()),
       m_userEnvChanges(runConfig->userEnvironmentChanges()),
       m_state(Inactive), m_gdbServerPort(-1), m_qmlPort(-1),
       m_useGdb(useGdb)
@@ -152,7 +147,7 @@ void MaemoDebugSupport::handleAdapterSetupRequested()
     ASSERT_STATE(Inactive);
 
     setState(StartingRunner);
-    showMessage(tr("Preparing remote side ..."), AppStuff);
+    showMessage(tr("Preparing remote side ...\n"), AppStuff);
     disconnect(m_runner, 0, this, 0);
     connect(m_runner, SIGNAL(error(QString)), this,
         SLOT(handleSshError(QString)));
@@ -190,121 +185,40 @@ void MaemoDebugSupport::startExecution()
             return;
     }
 
-    if (m_debuggingType != MaemoRunConfiguration::DebugQmlOnly
-            && !m_dumperLib.isEmpty()
-            && m_runConfig
-            && m_runConfig->deployStep()->currentlyNeedsDeployment(m_deviceConfig->sshParameters().host,
-                   MaemoDeployable(m_dumperLib, uploadDir(m_deviceConfig)))) {
-        setState(InitializingUploader);
-        m_uploader = m_runner->connection()->createSftpChannel();
-        connect(m_uploader.data(), SIGNAL(initialized()), this,
-                SLOT(handleSftpChannelInitialized()));
-        connect(m_uploader.data(), SIGNAL(initializationFailed(QString)), this,
-                SLOT(handleSftpChannelInitializationFailed(QString)));
-        connect(m_uploader.data(), SIGNAL(finished(Utils::SftpJobId, QString)),
-                this, SLOT(handleSftpJobFinished(Utils::SftpJobId, QString)));
-        m_uploader->initialize();
-    } else {
-        setState(DumpersUploaded);
-        startDebugging();
-    }
-}
-
-void MaemoDebugSupport::handleSftpChannelInitialized()
-{
-    if (m_state == Inactive)
+    if (useGdb()) {
+        handleAdapterSetupDone();
         return;
-
-    ASSERT_STATE(InitializingUploader);
-
-    const QString fileName = QFileInfo(m_dumperLib).fileName();
-    const QString remoteFilePath = uploadDir(m_deviceConfig)
-        + QLatin1Char('/') + fileName;
-    m_uploadJob = m_uploader->uploadFile(m_dumperLib, remoteFilePath,
-        SftpOverwriteExisting);
-    if (m_uploadJob == SftpInvalidJob) {
-        handleAdapterSetupFailed(tr("Upload failed: Could not open file '%1'")
-            .arg(m_dumperLib));
-    } else {
-        setState(UploadingDumpers);
-        showMessage(tr("Started uploading debugging helpers ('%1').")
-            .arg(m_dumperLib), AppStuff);
     }
-}
-
-void MaemoDebugSupport::handleSftpChannelInitializationFailed(const QString &error)
-{
-    if (m_state == Inactive)
-        return;
-    ASSERT_STATE(InitializingUploader);
-    handleAdapterSetupFailed(error);
-}
-
-void MaemoDebugSupport::handleSftpJobFinished(Utils::SftpJobId job,
-    const QString &error)
-{
-    if (m_state == Inactive)
-        return;
-
-    ASSERT_STATE(UploadingDumpers);
 
-    if (job != m_uploadJob) {
-        qWarning("Warning: Unknown debugging helpers upload job %d finished.", job);
-        return;
+    setState(StartingRemoteProcess);
+    m_gdbserverOutput.clear();
+    connect(m_runner, SIGNAL(remoteErrorOutput(QByteArray)), this,
+        SLOT(handleRemoteErrorOutput(QByteArray)));
+    connect(m_runner, SIGNAL(remoteOutput(QByteArray)), this,
+        SLOT(handleRemoteOutput(QByteArray)));
+    if (m_debuggingType == MaemoRunConfiguration::DebugQmlOnly) {
+        connect(m_runner, SIGNAL(remoteProcessStarted()),
+            SLOT(handleRemoteProcessStarted()));
     }
-
-    if (!error.isEmpty()) {
-        handleAdapterSetupFailed(tr("Could not upload debugging helpers: %1.")
-            .arg(error));
-    } else {
-        setState(DumpersUploaded);
-        if (m_runConfig) {
-            m_runConfig->deployStep()->setDeployed(m_deviceConfig->sshParameters().host,
-                MaemoDeployable(m_dumperLib, uploadDir(m_deviceConfig)));
-        }
-        showMessage(tr("Finished uploading debugging helpers."), AppStuff);
-        startDebugging();
+    const QString &remoteExe = m_runner->remoteExecutable();
+    const QString cmdPrefix = MaemoGlobal::remoteCommandPrefix(m_deviceConfig->osVersion(),
+        m_deviceConfig->sshParameters().userName, remoteExe);
+    const QString env = MaemoGlobal::remoteEnvironment(m_userEnvChanges);
+    QString args = m_runner->arguments();
+    if (m_debuggingType != MaemoRunConfiguration::DebugCppOnly) {
+        args += QString(QLatin1String(" -qmljsdebugger=port:%1,block"))
+            .arg(m_qmlPort);
     }
-    m_uploadJob = SftpInvalidJob;
-}
 
-void MaemoDebugSupport::startDebugging()
-{
-    ASSERT_STATE(DumpersUploaded);
-
-    if (useGdb()) {
-        handleAdapterSetupDone();
-    } else {
-        setState(StartingRemoteProcess);
-        m_gdbserverOutput.clear();
-        connect(m_runner, SIGNAL(remoteErrorOutput(QByteArray)), this,
-            SLOT(handleRemoteErrorOutput(QByteArray)));
-        connect(m_runner, SIGNAL(remoteOutput(QByteArray)), this,
-            SLOT(handleRemoteOutput(QByteArray)));
-        if (m_debuggingType == MaemoRunConfiguration::DebugQmlOnly) {
-            connect(m_runner, SIGNAL(remoteProcessStarted()),
-                SLOT(handleRemoteProcessStarted()));
-        }
-        const QString &remoteExe = m_runner->remoteExecutable();
-        const QString cmdPrefix = MaemoGlobal::remoteCommandPrefix(m_deviceConfig->osVersion(),
-            m_deviceConfig->sshParameters().userName, remoteExe);
-        const QString env = MaemoGlobal::remoteEnvironment(m_userEnvChanges);
-        QString args = m_runner->arguments();
-        if (m_debuggingType != MaemoRunConfiguration::DebugCppOnly) {
-            args += QString(QLatin1String(" -qmljsdebugger=port:%1,block"))
-                .arg(m_qmlPort);
-        }
-
-        const QString remoteCommandLine = m_debuggingType == MaemoRunConfiguration::DebugQmlOnly
-            ? QString::fromLocal8Bit("%1 %2 %3 %4").arg(cmdPrefix).arg(env)
-                .arg(remoteExe).arg(args)
-            : QString::fromLocal8Bit("%1 %2 gdbserver :%3 %4 %5")
-                .arg(cmdPrefix).arg(env).arg(m_gdbServerPort)
-                .arg(remoteExe).arg(args);
-        connect(m_runner, SIGNAL(remoteProcessFinished(qint64)),
-            SLOT(handleRemoteProcessFinished(qint64)));
-        m_runner->startExecution(remoteCommandLine.toUtf8());
-    }
+    const QString remoteCommandLine = m_debuggingType == MaemoRunConfiguration::DebugQmlOnly
+        ? QString::fromLocal8Bit("%1 %2 %3 %4").arg(cmdPrefix).arg(env)
+            .arg(remoteExe).arg(args)
+        : QString::fromLocal8Bit("%1 %2 gdbserver :%3 %4 %5")
+            .arg(cmdPrefix).arg(env).arg(m_gdbServerPort)
+            .arg(remoteExe).arg(args);
+    connect(m_runner, SIGNAL(remoteProcessFinished(qint64)),
+        SLOT(handleRemoteProcessFinished(qint64)));
+    m_runner->startExecution(remoteCommandLine.toUtf8());
 }
 
 void MaemoDebugSupport::handleRemoteProcessFinished(qint64 exitCode)
@@ -381,18 +295,8 @@ void MaemoDebugSupport::setState(State newState)
     if (m_state == newState)
         return;
     m_state = newState;
-    if (m_state == Inactive) {
-        if (m_uploader) {
-            disconnect(m_uploader.data(), 0, this, 0);
-            m_uploader->closeChannel();
-        }
+    if (m_state == Inactive)
         m_runner->stop();
-    }
-}
-
-QString MaemoDebugSupport::uploadDir(const MaemoDeviceConfig::ConstPtr &devConf)
-{
-    return MaemoGlobal::homeDirOnDevice(devConf->sshParameters().userName);
 }
 
 bool MaemoDebugSupport::useGdb() const
index 675487e..4aeb091 100644 (file)
 
 #include "maemorunconfiguration.h"
 
-#include <utils/ssh/sftpdefs.h>
 #include <utils/environment.h>
 
 #include <QtCore/QObject>
 #include <QtCore/QPointer>
 #include <QtCore/QSharedPointer>
 
-namespace Core { class SftpChannel; }
-
 namespace Debugger {
 class DebuggerEngine;
 }
-
 namespace ProjectExplorer { class RunControl; }
 
 namespace Qt4ProjectManager {
@@ -66,15 +62,10 @@ public:
         Debugger::DebuggerEngine *engine, bool useGdb);
     ~MaemoDebugSupport();
 
-    static QString uploadDir(const QSharedPointer<const MaemoDeviceConfig> &devConf);
-
 private slots:
     void handleAdapterSetupRequested();
     void handleSshError(const QString &error);
     void startExecution();
-    void handleSftpChannelInitialized();
-    void handleSftpChannelInitializationFailed(const QString &error);
-    void handleSftpJobFinished(Utils::SftpJobId job, const QString &error);
     void handleDebuggingFinished();
     void handleRemoteOutput(const QByteArray &output);
     void handleRemoteErrorOutput(const QByteArray &output);
@@ -84,28 +75,23 @@ private slots:
 
 private:
     enum State {
-        Inactive, StartingRunner, InitializingUploader, UploadingDumpers,
-        DumpersUploaded, StartingRemoteProcess, Debugging
+        Inactive, StartingRunner, StartingRemoteProcess, Debugging
     };
 
     void handleAdapterSetupFailed(const QString &error);
     void handleAdapterSetupDone();
-    void startDebugging();
     bool useGdb() const;
     void setState(State newState);
     bool setPort(int &port);
-
     void showMessage(const QString &msg, int channel);
+
     const QPointer<Debugger::DebuggerEngine> m_engine;
     const QPointer<MaemoRunConfiguration> m_runConfig;
     const QSharedPointer<const MaemoDeviceConfig> m_deviceConfig;
     MaemoSshRunner * const m_runner;
     const MaemoRunConfiguration::DebuggingType m_debuggingType;
-    const QString m_dumperLib;
     const QList<Utils::EnvironmentItem> m_userEnvChanges;
 
-    QSharedPointer<Utils::SftpChannel> m_uploader;
-    Utils::SftpJobId m_uploadJob;
     QByteArray m_gdbserverOutput;
     State m_state;
     int m_gdbServerPort;
index e521d15..2b7b13c 100644 (file)
@@ -259,13 +259,6 @@ const QString MaemoRunConfiguration::arguments() const
     return m_arguments;
 }
 
-const QString MaemoRunConfiguration::dumperLib() const
-{
-    Qt4BuildConfiguration *qt4bc(activeQt4BuildConfiguration());
-    return qt4bc->qtVersion()->gdbDebuggingHelperLibrary();
-}
-
-
 QString MaemoRunConfiguration::localDirToMountForRemoteGdb() const
 {
     const QString projectDir
index 9906612..d145364 100644 (file)
@@ -107,7 +107,6 @@ public:
     DebuggingType debuggingType() const;
 
     const QString gdbCmd() const;
-    const QString dumperLib() const;
     QString localDirToMountForRemoteGdb() const;
     QString remoteProjectSourcesMountPoint() const;