forked from qt-creator/qt-creator
Trk: Make it run on Windows.
Add options page with overrideable device. Correct wiring of the rfcomm process.
This commit is contained in:
133
src/plugins/debugger/gdb/trkoptions.cpp
Normal file
133
src/plugins/debugger/gdb/trkoptions.cpp
Normal file
@@ -0,0 +1,133 @@
|
||||
/**************************************************************************
|
||||
**
|
||||
** 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"
|
||||
|
||||
#include <QtCore/QSettings>
|
||||
#include <QtCore/QFileInfo>
|
||||
|
||||
#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";
|
||||
static const char *cygwinKeyC = "Cygwin";
|
||||
|
||||
static inline QString cygwinDefault()
|
||||
{
|
||||
#ifdef Q_OS_WIN
|
||||
// Some smartness to check for Cygwin
|
||||
static bool firstTime = true;
|
||||
static QString rc = QLatin1String("C:/cygwin");
|
||||
if (firstTime) {
|
||||
if (!QFileInfo(rc).isDir())
|
||||
rc.clear();
|
||||
firstTime = false;
|
||||
}
|
||||
return rc;
|
||||
#else
|
||||
return QString();
|
||||
#endif
|
||||
}
|
||||
|
||||
namespace Debugger {
|
||||
namespace Internal {
|
||||
|
||||
TrkOptions::TrkOptions() :
|
||||
mode(modeDefault),
|
||||
serialPort(QLatin1String(serialPortDefaultC)),
|
||||
blueToothDevice(QLatin1String(blueToothDeviceDefaultC)),
|
||||
gdb(QLatin1String(gdbDefaultC)),
|
||||
cygwin(cygwinDefault())
|
||||
{
|
||||
}
|
||||
|
||||
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();
|
||||
cygwin = s->value(keyRoot + QLatin1String(cygwinKeyC), cygwinDefault()).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->setValue(QLatin1String(cygwinKeyC), cygwin);
|
||||
s->endGroup();
|
||||
}
|
||||
|
||||
bool TrkOptions::equals(const TrkOptions &o) const
|
||||
{
|
||||
return mode == o.mode
|
||||
&& serialPort == o.serialPort
|
||||
&& blueToothDevice == o.blueToothDevice
|
||||
&& gdb == o.gdb
|
||||
&& cygwin == o.cygwin;
|
||||
}
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user