2009-09-18 12:51:15 +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
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "trkoptions.h"
|
2009-10-08 17:23:27 +02:00
|
|
|
#include <utils/synchronousprocess.h>
|
2009-09-18 12:51:15 +02:00
|
|
|
|
|
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
#include <QtCore/QFileInfo>
|
2009-10-08 17:23:27 +02:00
|
|
|
#include <QtCore/QCoreApplication>
|
2009-09-18 12:51:15 +02:00
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
# define SERIALPORT_ROOT "COM"
|
|
|
|
|
enum { firstSerialPort = 1, lastSerialPort = 12 };
|
|
|
|
|
enum { modeDefault = Debugger::Internal::TrkOptions::Serial };
|
|
|
|
|
static const char *serialPortDefaultC = SERIALPORT_ROOT"1";
|
|
|
|
|
static const char *gdbDefaultC = "symgdb";
|
|
|
|
|
#else
|
|
|
|
|
# define SERIALPORT_ROOT "/dev/ttyS"
|
|
|
|
|
enum { firstSerialPort = 0, lastSerialPort = 3 };
|
|
|
|
|
enum { modeDefault = Debugger::Internal::TrkOptions::BlueTooth };
|
|
|
|
|
static const char *serialPortDefaultC = SERIALPORT_ROOT"0";
|
|
|
|
|
static const char *gdbDefaultC = "symgdb";
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static const char *settingsGroupC = "S60Debugger";
|
|
|
|
|
static const char *serialPortKeyC = "Port";
|
|
|
|
|
static const char *modeKeyC = "Mode";
|
|
|
|
|
static const char *blueToothDeviceKeyC = "BlueToothDevice";
|
|
|
|
|
static const char *blueToothDeviceDefaultC = "/dev/rfcomm0";
|
|
|
|
|
static const char *gdbKeyC = "gdb";
|
|
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
TrkOptions::TrkOptions() :
|
|
|
|
|
mode(modeDefault),
|
|
|
|
|
serialPort(QLatin1String(serialPortDefaultC)),
|
|
|
|
|
blueToothDevice(QLatin1String(blueToothDeviceDefaultC)),
|
2009-10-09 14:20:14 +02:00
|
|
|
gdb(QLatin1String(gdbDefaultC))
|
2009-09-18 12:51:15 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrkOptions::fromSettings(const QSettings *s)
|
|
|
|
|
{
|
|
|
|
|
const QString keyRoot = QLatin1String(settingsGroupC) + QLatin1Char('/');
|
|
|
|
|
mode = s->value(keyRoot + QLatin1String(modeKeyC), modeDefault).toInt();
|
|
|
|
|
serialPort = s->value(keyRoot + QLatin1String(serialPortKeyC), QLatin1String(serialPortDefaultC)).toString();
|
|
|
|
|
gdb = s->value(keyRoot + QLatin1String(gdbKeyC),QLatin1String(gdbDefaultC)).toString();
|
|
|
|
|
blueToothDevice = s->value(keyRoot + QLatin1String(blueToothDeviceKeyC), QLatin1String(blueToothDeviceDefaultC)).toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrkOptions::toSettings(QSettings *s) const
|
|
|
|
|
{
|
|
|
|
|
s->beginGroup(QLatin1String(settingsGroupC));
|
|
|
|
|
s->setValue(QLatin1String(modeKeyC), mode);
|
|
|
|
|
s->setValue(QLatin1String(serialPortKeyC), serialPort);
|
|
|
|
|
s->setValue(QLatin1String(blueToothDeviceKeyC), blueToothDevice);
|
|
|
|
|
s->setValue(QLatin1String(gdbKeyC), gdb);
|
|
|
|
|
s->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-08 17:23:27 +02:00
|
|
|
bool TrkOptions::check(QString *errorMessage) const
|
|
|
|
|
{
|
|
|
|
|
if (gdb.isEmpty()) {
|
|
|
|
|
*errorMessage = QCoreApplication::translate("TrkOptions", "No Symbian gdb executable specified.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
const QString expanded = Utils::SynchronousProcess::locateBinary(gdb);
|
|
|
|
|
if (expanded.isEmpty()) {
|
|
|
|
|
*errorMessage = QCoreApplication::translate("TrkOptions", "The Symbian gdb executable '%1' could not be found in the search path.").arg(gdb);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-18 12:51:15 +02:00
|
|
|
bool TrkOptions::equals(const TrkOptions &o) const
|
|
|
|
|
{
|
|
|
|
|
return mode == o.mode
|
|
|
|
|
&& serialPort == o.serialPort
|
|
|
|
|
&& blueToothDevice == o.blueToothDevice
|
2009-10-09 14:20:14 +02:00
|
|
|
&& gdb == o.gdb;
|
2009-09-18 12:51:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList TrkOptions::serialPorts()
|
|
|
|
|
{
|
|
|
|
|
QStringList rc;
|
|
|
|
|
const QString root = QLatin1String(SERIALPORT_ROOT);
|
|
|
|
|
for (int p = firstSerialPort; p != lastSerialPort; p++)
|
|
|
|
|
rc.push_back(root + QString::number(p));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList TrkOptions::blueToothDevices()
|
|
|
|
|
{
|
|
|
|
|
QStringList rc;
|
|
|
|
|
rc.push_back(QLatin1String(blueToothDeviceDefaultC));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|