2009-07-24 16:19:14 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2009-07-24 16:19:14 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2009-07-29 19:22:49 +02:00
|
|
|
#include "launcher.h"
|
2009-08-17 11:47:17 +02:00
|
|
|
#include "trkutils.h"
|
2009-08-20 15:58:20 +02:00
|
|
|
#include "trkdevice.h"
|
2009-07-24 16:19:14 +02:00
|
|
|
|
2009-08-17 11:47:17 +02:00
|
|
|
#include <QtCore/QTimer>
|
|
|
|
|
#include <QtCore/QDateTime>
|
|
|
|
|
#include <QtCore/QVariant>
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QQueue>
|
|
|
|
|
#include <QtCore/QFile>
|
2009-09-28 13:53:43 +02:00
|
|
|
#include <QtCore/QScopedPointer>
|
2009-08-17 11:47:17 +02:00
|
|
|
|
|
|
|
|
namespace trk {
|
|
|
|
|
|
|
|
|
|
struct LauncherPrivate {
|
2009-08-26 17:35:36 +02:00
|
|
|
struct CopyState {
|
|
|
|
|
QString sourceFileName;
|
|
|
|
|
QString destinationFileName;
|
|
|
|
|
uint copyFileHandle;
|
2009-09-28 13:53:43 +02:00
|
|
|
QScopedPointer<QByteArray> data;
|
2009-08-26 17:35:36 +02:00
|
|
|
int position;
|
|
|
|
|
};
|
|
|
|
|
|
2009-08-17 11:47:17 +02:00
|
|
|
LauncherPrivate();
|
2009-09-17 09:48:56 +02:00
|
|
|
TrkDevice m_device;
|
2009-08-17 11:47:17 +02:00
|
|
|
QString m_trkServerName;
|
|
|
|
|
QByteArray m_trkReadBuffer;
|
|
|
|
|
|
|
|
|
|
void logMessage(const QString &msg);
|
|
|
|
|
// Debuggee state
|
|
|
|
|
Session m_session; // global-ish data (process id, target information)
|
|
|
|
|
|
2009-08-26 17:35:36 +02:00
|
|
|
CopyState m_copyState;
|
2009-08-17 11:47:17 +02:00
|
|
|
QString m_fileName;
|
|
|
|
|
QString m_installFileName;
|
2009-08-18 13:48:03 +02:00
|
|
|
int m_verbose;
|
2009-08-17 11:47:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
LauncherPrivate::LauncherPrivate() :
|
2009-08-18 13:48:03 +02:00
|
|
|
m_verbose(0)
|
2009-08-17 11:47:17 +02:00
|
|
|
{
|
|
|
|
|
}
|
2009-07-24 16:19:14 +02:00
|
|
|
|
2009-08-17 11:47:17 +02:00
|
|
|
Launcher::Launcher() :
|
|
|
|
|
d(new LauncherPrivate)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
2009-08-21 16:34:06 +02:00
|
|
|
connect(&d->m_device, SIGNAL(messageReceived(trk::TrkResult)), this, SLOT(handleResult(trk::TrkResult)));
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
Launcher::~Launcher()
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
|
|
|
|
logMessage("Shutting down.\n");
|
2009-08-17 11:47:17 +02:00
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Launcher::setTrkServerName(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
d->m_trkServerName = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Launcher::setFileName(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
d->m_fileName = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Launcher::setCopyFileName(const QString &srcName, const QString &dstName)
|
|
|
|
|
{
|
2009-08-26 17:35:36 +02:00
|
|
|
d->m_copyState.sourceFileName = srcName;
|
|
|
|
|
d->m_copyState.destinationFileName = dstName;
|
2009-08-17 11:47:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Launcher::setInstallFileName(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
d->m_installFileName = name;
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-20 11:30:10 +02:00
|
|
|
void Launcher::setSerialFrame(bool b)
|
|
|
|
|
{
|
2009-08-20 15:58:20 +02:00
|
|
|
d->m_device.setSerialFrame(b);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Launcher::serialFrame() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_device.serialFrame();
|
2009-08-20 11:30:10 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
bool Launcher::startServer(QString *errorMessage)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
2009-08-18 13:48:03 +02:00
|
|
|
if (d->m_verbose) {
|
|
|
|
|
const QString msg = QString::fromLatin1("Port=%1 Executable=%2 Package=%3 Remote Package=%4 Install file=%5")
|
2009-08-26 17:35:36 +02:00
|
|
|
.arg(d->m_trkServerName, d->m_fileName, d->m_copyState.sourceFileName, d->m_copyState.destinationFileName, d->m_installFileName);
|
2009-08-18 13:48:03 +02:00
|
|
|
logMessage(msg);
|
|
|
|
|
}
|
2009-08-20 15:58:20 +02:00
|
|
|
if (!d->m_device.open(d->m_trkServerName, errorMessage))
|
2009-07-24 16:19:14 +02:00
|
|
|
return false;
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkInitialPing();
|
|
|
|
|
d->m_device.sendTrkMessage(TrkConnect); // Connect
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkSupported, TrkCallback(this, &Launcher::handleSupportMask));
|
|
|
|
|
d->m_device.sendTrkMessage(TrkCpuType, TrkCallback(this, &Launcher::handleCpuType));
|
|
|
|
|
d->m_device.sendTrkMessage(TrkVersions, TrkCallback(this, &Launcher::handleTrkVersion));
|
2009-08-18 13:48:03 +02:00
|
|
|
if (d->m_fileName.isEmpty())
|
|
|
|
|
return true;
|
2009-08-26 17:35:36 +02:00
|
|
|
if (!d->m_copyState.sourceFileName.isEmpty() && !d->m_copyState.destinationFileName.isEmpty())
|
2009-07-29 17:17:17 +02:00
|
|
|
copyFileToRemote();
|
|
|
|
|
else
|
|
|
|
|
installAndRun();
|
2009-07-24 16:19:14 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-18 13:48:03 +02:00
|
|
|
void Launcher::setVerbose(int v)
|
|
|
|
|
{
|
|
|
|
|
d->m_verbose = v;
|
2009-09-22 17:19:56 +02:00
|
|
|
d->m_device.setVerbose(v);
|
2009-08-18 13:48:03 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::installAndRun()
|
2009-07-29 17:17:17 +02:00
|
|
|
{
|
2009-08-17 11:47:17 +02:00
|
|
|
if (!d->m_installFileName.isEmpty()) {
|
|
|
|
|
installRemotePackageSilently(d->m_installFileName);
|
2009-07-29 17:17:17 +02:00
|
|
|
} else {
|
|
|
|
|
startInferiorIfNeeded();
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::logMessage(const QString &msg)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
2009-08-18 13:48:03 +02:00
|
|
|
if (d->m_verbose)
|
2009-08-21 16:34:06 +02:00
|
|
|
qDebug() << "LAUNCHER: " << qPrintable(msg);
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::waitForTrkFinished(const TrkResult &result)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
2009-07-29 19:22:49 +02:00
|
|
|
Q_UNUSED(result)
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkPing, TrkCallback(this, &Launcher::handleWaitForFinished));
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::terminate()
|
2009-07-30 10:18:16 +02:00
|
|
|
{
|
2009-08-26 17:35:36 +02:00
|
|
|
//TODO handle case where application has not been started
|
2009-07-30 10:18:16 +02:00
|
|
|
QByteArray ba;
|
|
|
|
|
appendShort(&ba, 0x0000, TargetByteOrder);
|
2009-08-17 11:47:17 +02:00
|
|
|
appendInt(&ba, d->m_session.pid, TargetByteOrder);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkDeleteItem, TrkCallback(this, &Launcher::waitForTrkFinished), ba);
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleResult(const TrkResult &result)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
|
|
|
|
QByteArray prefix = "READ BUF: ";
|
|
|
|
|
QByteArray str = result.toString().toUtf8();
|
2009-08-04 17:59:07 +02:00
|
|
|
if (result.isDebugOutput) { // handle application output
|
|
|
|
|
logMessage("APPLICATION OUTPUT: " + result.data);
|
|
|
|
|
emit applicationOutputReceived(result.data);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-07-24 16:19:14 +02:00
|
|
|
switch (result.code) {
|
2009-08-21 10:29:48 +02:00
|
|
|
case TrkNotifyAck:
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyNak: { // NAK
|
2009-07-24 16:19:14 +02:00
|
|
|
logMessage(prefix + "NAK: " + str);
|
|
|
|
|
//logMessage(prefix << "TOKEN: " << result.token);
|
|
|
|
|
logMessage(prefix + "ERROR: " + errorMessage(result.data.at(0)));
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyStopped: { // Notified Stopped
|
2009-07-24 16:19:14 +02:00
|
|
|
logMessage(prefix + "NOTE: STOPPED " + str);
|
|
|
|
|
// 90 01 78 6a 40 40 00 00 07 23 00 00 07 24 00 00
|
|
|
|
|
//const char *data = result.data.data();
|
|
|
|
|
// uint addr = extractInt(data); //code address: 4 bytes; code base address for the library
|
|
|
|
|
// uint pid = extractInt(data + 4); // ProcessID: 4 bytes;
|
|
|
|
|
// uint tid = extractInt(data + 8); // ThreadID: 4 bytes
|
|
|
|
|
//logMessage(prefix << " ADDR: " << addr << " PID: " << pid << " TID: " << tid);
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkAck(result.token);
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyException: { // Notify Exception (obsolete)
|
2009-07-24 16:19:14 +02:00
|
|
|
logMessage(prefix + "NOTE: EXCEPTION " + str);
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkAck(result.token);
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyInternalError: { //
|
2009-07-24 16:19:14 +02:00
|
|
|
logMessage(prefix + "NOTE: INTERNAL ERROR: " + str);
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkAck(result.token);
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// target->host OS notification
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyCreated: { // Notify Created
|
2009-07-24 16:19:14 +02:00
|
|
|
/*
|
|
|
|
|
const char *data = result.data.data();
|
|
|
|
|
byte error = result.data.at(0);
|
|
|
|
|
byte type = result.data.at(1); // type: 1 byte; for dll item, this value is 2.
|
|
|
|
|
uint pid = extractInt(data + 2); // ProcessID: 4 bytes;
|
|
|
|
|
uint tid = extractInt(data + 6); //threadID: 4 bytes
|
|
|
|
|
uint codeseg = extractInt(data + 10); //code address: 4 bytes; code base address for the library
|
|
|
|
|
uint dataseg = extractInt(data + 14); //data address: 4 bytes; data base address for the library
|
|
|
|
|
uint len = extractShort(data + 18); //length: 2 bytes; length of the library name string to follow
|
|
|
|
|
QByteArray name = result.data.mid(20, len); // name: library name
|
|
|
|
|
|
|
|
|
|
logMessage(prefix + "NOTE: LIBRARY LOAD: " + str);
|
|
|
|
|
logMessage(prefix + "TOKEN: " + result.token);
|
|
|
|
|
logMessage(prefix + "ERROR: " + int(error));
|
|
|
|
|
logMessage(prefix + "TYPE: " + int(type));
|
|
|
|
|
logMessage(prefix + "PID: " + pid);
|
|
|
|
|
logMessage(prefix + "TID: " + tid);
|
|
|
|
|
logMessage(prefix + "CODE: " + codeseg);
|
|
|
|
|
logMessage(prefix + "DATA: " + dataseg);
|
|
|
|
|
logMessage(prefix + "LEN: " + len);
|
|
|
|
|
logMessage(prefix + "NAME: " + name);
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
QByteArray ba;
|
2009-08-17 11:47:17 +02:00
|
|
|
appendInt(&ba, d->m_session.pid);
|
|
|
|
|
appendInt(&ba, d->m_session.tid);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkContinue, TrkCallback(), ba, "CONTINUE");
|
2009-08-21 10:29:48 +02:00
|
|
|
//d->m_device.sendTrkAck(result.token)
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyDeleted: { // NotifyDeleted
|
2009-08-20 15:58:20 +02:00
|
|
|
const ushort itemType = (unsigned char)result.data.at(1);
|
|
|
|
|
const ushort len = result.data.size() > 12 ? extractShort(result.data.data() + 10) : ushort(0);
|
2009-08-21 16:34:06 +02:00
|
|
|
const QString name = len ? QString::fromAscii(result.data.mid(12, len)) : QString();
|
2009-08-20 15:58:20 +02:00
|
|
|
logMessage(QString::fromLatin1("%1 %2 UNLOAD: %3").
|
|
|
|
|
arg(QString::fromAscii(prefix)).arg(itemType ? QLatin1String("LIB") : QLatin1String("PROCESS")).
|
|
|
|
|
arg(name));
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkAck(result.token);
|
2009-07-29 18:51:58 +02:00
|
|
|
if (itemType == 0) { // process
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkDisconnect, TrkCallback(this, &Launcher::waitForTrkFinished));
|
2009-07-29 18:51:58 +02:00
|
|
|
}
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyProcessorStarted: { // NotifyProcessorStarted
|
2009-07-24 16:19:14 +02:00
|
|
|
logMessage(prefix + "NOTE: PROCESSOR STARTED: " + str);
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkAck(result.token);
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyProcessorStandBy: { // NotifyProcessorStandby
|
2009-07-24 16:19:14 +02:00
|
|
|
logMessage(prefix + "NOTE: PROCESSOR STANDBY: " + str);
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkAck(result.token);
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2009-07-28 15:46:46 +02:00
|
|
|
case TrkNotifyProcessorReset: { // NotifyProcessorReset
|
2009-07-24 16:19:14 +02:00
|
|
|
logMessage(prefix + "NOTE: PROCESSOR RESET: " + str);
|
2009-08-21 10:29:48 +02:00
|
|
|
d->m_device.sendTrkAck(result.token);
|
2009-07-24 16:19:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default: {
|
|
|
|
|
logMessage(prefix + "INVALID: " + str);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-18 13:48:03 +02:00
|
|
|
void Launcher::handleTrkVersion(const TrkResult &result)
|
|
|
|
|
{
|
2009-09-28 15:05:53 +02:00
|
|
|
if (result.errorCode() || result.data.size() < 5)
|
2009-08-18 13:48:03 +02:00
|
|
|
return;
|
|
|
|
|
const int trkMajor = result.data.at(1);
|
|
|
|
|
const int trkMinor = result.data.at(2);
|
|
|
|
|
const int protocolMajor = result.data.at(3);
|
|
|
|
|
const int protocolMinor = result.data.at(4);
|
|
|
|
|
// Ping mode: Log & Terminate
|
|
|
|
|
if (d->m_fileName.isEmpty()) {
|
|
|
|
|
QString msg;
|
|
|
|
|
QTextStream(&msg) << "CPU: " << d->m_session.cpuMajor << '.' << d->m_session.cpuMinor << ' '
|
|
|
|
|
<< (d->m_session.bigEndian ? "big endian" : "little endian")
|
|
|
|
|
<< " type size: " << d->m_session.defaultTypeSize
|
|
|
|
|
<< " float size: " << d->m_session.fpTypeSize
|
|
|
|
|
<< " Trk: v" << trkMajor << '.' << trkMinor << " Protocol: " << protocolMajor << '.' << protocolMinor;
|
|
|
|
|
qWarning("%s", qPrintable(msg));
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkPing, TrkCallback(this, &Launcher::waitForTrkFinished));
|
2009-08-18 13:48:03 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleFileCreation(const TrkResult &result)
|
2009-07-29 17:17:17 +02:00
|
|
|
{
|
|
|
|
|
// we don't do any error handling yet, which is bad
|
|
|
|
|
const char *data = result.data.data();
|
2009-08-26 17:35:36 +02:00
|
|
|
d->m_copyState.copyFileHandle = extractInt(data + 2);
|
|
|
|
|
QFile file(d->m_copyState.sourceFileName);
|
2009-07-29 17:17:17 +02:00
|
|
|
file.open(QIODevice::ReadOnly);
|
2009-09-28 13:53:43 +02:00
|
|
|
d->m_copyState.data.reset(new QByteArray(file.readAll()));
|
2009-08-26 17:35:36 +02:00
|
|
|
d->m_copyState.position = 0;
|
2009-07-29 17:17:17 +02:00
|
|
|
file.close();
|
2009-08-26 17:35:36 +02:00
|
|
|
continueCopying();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Launcher::handleCopy(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(result)
|
|
|
|
|
|
|
|
|
|
continueCopying();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Launcher::continueCopying()
|
|
|
|
|
{
|
|
|
|
|
static const int BLOCKSIZE = 1024;
|
|
|
|
|
int size = d->m_copyState.data->length();
|
|
|
|
|
if (size == 0)
|
|
|
|
|
emit copyProgress(100);
|
|
|
|
|
else {
|
|
|
|
|
int percent = qMin((d->m_copyState.position*100)/size, 100);
|
|
|
|
|
emit copyProgress(percent);
|
|
|
|
|
}
|
|
|
|
|
if (d->m_copyState.position < size) {
|
2009-07-29 17:17:17 +02:00
|
|
|
QByteArray ba;
|
2009-08-26 17:35:36 +02:00
|
|
|
appendInt(&ba, d->m_copyState.copyFileHandle, TargetByteOrder);
|
|
|
|
|
appendString(&ba, d->m_copyState.data->mid(d->m_copyState.position, BLOCKSIZE), TargetByteOrder, false);
|
|
|
|
|
d->m_copyState.position += BLOCKSIZE;
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkWriteFile, TrkCallback(this, &Launcher::handleCopy), ba);
|
2009-08-26 17:35:36 +02:00
|
|
|
} else {
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendInt(&ba, d->m_copyState.copyFileHandle, TargetByteOrder);
|
|
|
|
|
appendInt(&ba, QDateTime::currentDateTime().toTime_t(), TargetByteOrder);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkCloseFile, TrkCallback(this, &Launcher::handleFileCreated), ba);
|
2009-09-28 13:53:43 +02:00
|
|
|
d->m_copyState.data.reset();
|
2009-07-29 17:17:17 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleFileCreated(const TrkResult &result)
|
2009-07-29 17:17:17 +02:00
|
|
|
{
|
|
|
|
|
Q_UNUSED(result)
|
|
|
|
|
installAndRun();
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleCpuType(const TrkResult &result)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
|
|
|
|
logMessage("HANDLE CPU TYPE: " + result.toString());
|
2009-09-28 15:05:53 +02:00
|
|
|
if(result.errorCode() || result.data.size() < 7)
|
|
|
|
|
return;
|
2009-07-24 16:19:14 +02:00
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 03 00 04 00 00 04 00 00 00]
|
2009-08-18 13:48:03 +02:00
|
|
|
d->m_session.cpuMajor = result.data.at(1);
|
|
|
|
|
d->m_session.cpuMinor = result.data.at(2);
|
|
|
|
|
d->m_session.bigEndian = result.data.at(3);
|
|
|
|
|
d->m_session.defaultTypeSize = result.data.at(4);
|
|
|
|
|
d->m_session.fpTypeSize = result.data.at(5);
|
|
|
|
|
d->m_session.extended1TypeSize = result.data.at(6);
|
2009-08-17 11:47:17 +02:00
|
|
|
//d->m_session.extended2TypeSize = result.data[6];
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleCreateProcess(const TrkResult &result)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
2009-09-28 10:57:03 +02:00
|
|
|
if (result.errorCode()) {
|
|
|
|
|
emit canNotRun(errorMessage(result.errorCode()));
|
|
|
|
|
emit finished();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-07-24 16:19:14 +02:00
|
|
|
// 40 00 00]
|
|
|
|
|
//logMessage(" RESULT: " + result.toString());
|
|
|
|
|
// [80 08 00 00 00 01 B5 00 00 01 B6 78 67 40 00 00 40 00 00]
|
|
|
|
|
const char *data = result.data.data();
|
2009-08-17 11:47:17 +02:00
|
|
|
d->m_session.pid = extractInt(data + 1);
|
|
|
|
|
d->m_session.tid = extractInt(data + 5);
|
|
|
|
|
d->m_session.codeseg = extractInt(data + 9);
|
|
|
|
|
d->m_session.dataseg = extractInt(data + 13);
|
2009-08-18 13:48:03 +02:00
|
|
|
if (d->m_verbose) {
|
|
|
|
|
const QString msg = QString::fromLatin1("Process id: %1 Thread id: %2 code: 0x%3 data: 0x%4").
|
|
|
|
|
arg(d->m_session.pid).arg(d->m_session.tid).arg(d->m_session.codeseg, 0, 16).
|
|
|
|
|
arg(d->m_session.dataseg, 0 ,16);
|
|
|
|
|
logMessage(msg);
|
|
|
|
|
}
|
2009-08-17 11:47:17 +02:00
|
|
|
emit applicationRunning(d->m_session.pid);
|
2009-07-24 16:19:14 +02:00
|
|
|
QByteArray ba;
|
2009-08-17 11:47:17 +02:00
|
|
|
appendInt(&ba, d->m_session.pid);
|
|
|
|
|
appendInt(&ba, d->m_session.tid);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkContinue, TrkCallback(), ba, "CONTINUE");
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleWaitForFinished(const TrkResult &result)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
|
|
|
|
logMessage(" FINISHED: " + stringFromArray(result.data));
|
2009-07-29 19:22:49 +02:00
|
|
|
emit finished();
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleSupportMask(const TrkResult &result)
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
2009-09-28 15:05:53 +02:00
|
|
|
if (result.errorCode() || result.data.size() < 32)
|
|
|
|
|
return;
|
2009-09-21 16:53:50 +02:00
|
|
|
const char *data = result.data.data() + 1;
|
|
|
|
|
|
2009-07-24 16:19:14 +02:00
|
|
|
QByteArray str;
|
|
|
|
|
for (int i = 0; i < 32; ++i) {
|
|
|
|
|
//str.append(" [" + formatByte(data[i]) + "]: ");
|
|
|
|
|
for (int j = 0; j < 8; ++j)
|
|
|
|
|
if (data[i] & (1 << j))
|
2009-09-21 16:53:50 +02:00
|
|
|
str.append(QByteArray::number(i * 8 + j, 16) + " ");
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
|
|
|
|
logMessage("SUPPORTED: " + str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::cleanUp()
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x41 Delete Item
|
|
|
|
|
// Sub Cmd: Delete Process
|
|
|
|
|
//ProcessID: 0x0000071F (1823)
|
|
|
|
|
// [41 24 00 00 00 00 07 1F]
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0x00);
|
|
|
|
|
appendByte(&ba, 0x00);
|
2009-08-17 11:47:17 +02:00
|
|
|
appendInt(&ba, d->m_session.pid);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkDeleteItem, TrkCallback(), ba, "Delete process");
|
2009-07-24 16:19:14 +02:00
|
|
|
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 24 00]
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x1C Clear Break
|
|
|
|
|
// [1C 25 00 00 00 0A 78 6A 43 40]
|
|
|
|
|
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0xA1 Notify Deleted
|
|
|
|
|
// [A1 09 00 00 00 00 00 00 00 00 07 1F]
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 09 00]
|
|
|
|
|
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 25 00]
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x1C Clear Break
|
|
|
|
|
// [1C 26 00 00 00 0B 78 6A 43 70]
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 26 00]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x02 Disconnect
|
|
|
|
|
// [02 27]
|
2009-09-11 15:34:41 +02:00
|
|
|
// sendTrkMessage(0x02, TrkCallback(this, &Launcher::handleDisconnect));
|
2009-07-24 16:19:14 +02:00
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::copyFileToRemote()
|
2009-07-29 17:17:17 +02:00
|
|
|
{
|
2009-07-30 10:32:50 +02:00
|
|
|
emit copyingStarted();
|
2009-07-29 17:17:17 +02:00
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0x10);
|
2009-08-26 17:35:36 +02:00
|
|
|
appendString(&ba, d->m_copyState.destinationFileName.toLocal8Bit(), TargetByteOrder, false);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkOpenFile, TrkCallback(this, &Launcher::handleFileCreation), ba);
|
2009-07-29 17:17:17 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::installRemotePackageSilently(const QString &fileName)
|
2009-07-29 17:17:17 +02:00
|
|
|
{
|
2009-07-30 10:32:50 +02:00
|
|
|
emit installingStarted();
|
2009-07-29 17:17:17 +02:00
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 'C');
|
|
|
|
|
appendString(&ba, fileName.toLocal8Bit(), TargetByteOrder, false);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkInstallFile, TrkCallback(this, &Launcher::handleInstallPackageFinished), ba);
|
2009-07-30 10:32:50 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::handleInstallPackageFinished(const TrkResult &)
|
2009-07-30 10:32:50 +02:00
|
|
|
{
|
|
|
|
|
startInferiorIfNeeded();
|
2009-07-29 17:17:17 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-14 14:29:19 +02:00
|
|
|
void Launcher::startInferiorIfNeeded()
|
2009-07-24 16:19:14 +02:00
|
|
|
{
|
2009-07-30 10:32:50 +02:00
|
|
|
emit startingApplication();
|
2009-08-17 11:47:17 +02:00
|
|
|
if (d->m_session.pid != 0) {
|
2009-07-30 10:32:50 +02:00
|
|
|
logMessage("Process already 'started'");
|
2009-07-24 16:19:14 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// It's not started yet
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0); // ?
|
|
|
|
|
appendByte(&ba, 0); // ?
|
|
|
|
|
appendByte(&ba, 0); // ?
|
2009-08-17 11:47:17 +02:00
|
|
|
appendString(&ba, d->m_fileName.toLocal8Bit(), TargetByteOrder);
|
2009-09-11 15:34:41 +02:00
|
|
|
d->m_device.sendTrkMessage(TrkCreateItem, TrkCallback(this, &Launcher::handleCreateProcess), ba); // Create Item
|
2009-07-24 16:19:14 +02:00
|
|
|
}
|
2009-08-17 11:47:17 +02:00
|
|
|
|
|
|
|
|
}
|