2013-01-25 16:49:22 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "androidgdbserverkitinformation.h"
|
|
|
|
|
#include "androidconstants.h"
|
|
|
|
|
#include "androidtoolchain.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/pathchooser.h>
|
2013-02-08 14:09:04 +01:00
|
|
|
#include <utils/elidinglabel.h>
|
2013-01-25 16:49:22 +01:00
|
|
|
|
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
#include <QFormLayout>
|
|
|
|
|
|
2013-08-08 19:15:23 +03:00
|
|
|
#include <qtsupport/baseqtversion.h>
|
|
|
|
|
#include <qtsupport/qtkitinformation.h>
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
2013-01-25 16:49:22 +01:00
|
|
|
|
2013-08-08 19:15:23 +03:00
|
|
|
static const char ANDROID_GDBSERVER_INFORMATION[] = "Android.GdbServer.Information";
|
2013-01-25 16:49:22 +01:00
|
|
|
|
|
|
|
|
AndroidGdbServerKitInformation::AndroidGdbServerKitInformation()
|
|
|
|
|
{
|
2013-08-28 18:57:25 +02:00
|
|
|
setDataId(ANDROID_GDBSERVER_INFORMATION);
|
|
|
|
|
setPriority(27999); // Just one less than Debugger!
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
QVariant AndroidGdbServerKitInformation::defaultValue(Kit *kit) const
|
2013-01-25 16:49:22 +01:00
|
|
|
{
|
|
|
|
|
return autoDetect(kit).toString();
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
QList<Task> AndroidGdbServerKitInformation::validate(const Kit *) const
|
2013-01-25 16:49:22 +01:00
|
|
|
{
|
2013-08-29 13:14:19 +02:00
|
|
|
return QList<Task>();
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
KitInformation::ItemList AndroidGdbServerKitInformation::toUserOutput(const Kit *kit) const
|
2013-01-25 16:49:22 +01:00
|
|
|
{
|
2013-08-29 13:14:19 +02:00
|
|
|
return KitInformation::ItemList()
|
2013-02-12 15:34:00 +01:00
|
|
|
<< qMakePair(tr("GDB server"), AndroidGdbServerKitInformation::gdbServer(kit).toUserOutput());
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
KitConfigWidget *AndroidGdbServerKitInformation::createConfigWidget(Kit *kit) const
|
2013-01-25 16:49:22 +01:00
|
|
|
{
|
2013-05-06 17:11:33 +02:00
|
|
|
return new AndroidGdbServerKitInformationWidget(kit, isSticky(kit));
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
bool AndroidGdbServerKitInformation::isAndroidKit(const Kit *kit)
|
2013-08-08 19:15:23 +03:00
|
|
|
{
|
|
|
|
|
QtSupport::BaseQtVersion *qt = QtSupport::QtKitInformation::qtVersion(kit);
|
2013-08-29 13:14:19 +02:00
|
|
|
ToolChain *tc = ToolChainKitInformation::toolChain(kit);
|
2013-08-08 19:15:23 +03:00
|
|
|
if (qt && tc)
|
2013-09-03 15:37:41 +02:00
|
|
|
return qt->type() == QLatin1String(Constants::ANDROIDQT)
|
|
|
|
|
&& tc->type() == QLatin1String(Constants::ANDROID_TOOLCHAIN_TYPE);
|
2013-08-08 19:15:23 +03:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
FileName AndroidGdbServerKitInformation::gdbServer(const Kit *kit)
|
2013-01-25 16:49:22 +01:00
|
|
|
{
|
2013-08-29 13:14:19 +02:00
|
|
|
return FileName::fromString(kit->value(ANDROID_GDBSERVER_INFORMATION).toString());
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
void AndroidGdbServerKitInformation::setGdbSever(Kit *kit, const FileName &gdbServerCommand)
|
2013-01-25 16:49:22 +01:00
|
|
|
{
|
2013-08-29 13:14:19 +02:00
|
|
|
kit->setValue(ANDROID_GDBSERVER_INFORMATION, gdbServerCommand.toString());
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
FileName AndroidGdbServerKitInformation::autoDetect(Kit *kit)
|
2013-01-25 16:49:22 +01:00
|
|
|
{
|
2013-08-29 13:14:19 +02:00
|
|
|
ToolChain *tc = ToolChainKitInformation::toolChain(kit);
|
2013-02-14 17:30:54 +01:00
|
|
|
if (!tc || tc->type() != QLatin1String(Constants::ANDROID_TOOLCHAIN_TYPE))
|
2013-08-29 13:14:19 +02:00
|
|
|
return FileName();
|
2013-01-25 16:49:22 +01:00
|
|
|
AndroidToolChain *atc = static_cast<AndroidToolChain *>(tc);
|
|
|
|
|
return atc->suggestedGdbServer();
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-02 15:38:31 +02:00
|
|
|
void AndroidGdbServerKitInformation::setSticky(Kit *k, bool b)
|
2013-07-24 16:22:37 +02:00
|
|
|
{
|
2013-09-02 15:38:31 +02:00
|
|
|
k->setSticky(ANDROID_GDBSERVER_INFORMATION, b);
|
2013-07-24 16:22:37 +02:00
|
|
|
}
|
|
|
|
|
|
2013-01-25 16:49:22 +01:00
|
|
|
///////////////
|
|
|
|
|
// AndroidGdbServerKitInformationWidget
|
|
|
|
|
///////////////
|
|
|
|
|
|
|
|
|
|
|
2013-08-29 13:14:19 +02:00
|
|
|
AndroidGdbServerKitInformationWidget::AndroidGdbServerKitInformationWidget(Kit *kit, bool sticky)
|
|
|
|
|
: KitConfigWidget(kit, sticky),
|
|
|
|
|
m_label(new ElidingLabel),
|
2013-01-25 16:49:22 +01:00
|
|
|
m_button(new QPushButton(tr("Manage...")))
|
|
|
|
|
{
|
|
|
|
|
// ToolButton with Menu, defaulting to 'Autodetect'.
|
|
|
|
|
QMenu *buttonMenu = new QMenu(m_button);
|
|
|
|
|
QAction *autoDetectAction = buttonMenu->addAction(tr("Auto-detect"));
|
|
|
|
|
connect(autoDetectAction, SIGNAL(triggered()), this, SLOT(autoDetectDebugger()));
|
|
|
|
|
QAction *changeAction = buttonMenu->addAction(tr("Edit..."));
|
|
|
|
|
connect(changeAction, SIGNAL(triggered()), this, SLOT(showDialog()));
|
|
|
|
|
m_button->setMenu(buttonMenu);
|
|
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AndroidGdbServerKitInformationWidget::displayName() const
|
|
|
|
|
{
|
2013-02-12 15:34:00 +01:00
|
|
|
return tr("Android GDB server");
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AndroidGdbServerKitInformationWidget::toolTip() const
|
|
|
|
|
{
|
2013-02-12 15:34:00 +01:00
|
|
|
return tr("The GDB server to use for this kit.");
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidGdbServerKitInformationWidget::makeReadOnly()
|
|
|
|
|
{
|
|
|
|
|
m_button->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidGdbServerKitInformationWidget::refresh()
|
|
|
|
|
{
|
|
|
|
|
m_label->setText(AndroidGdbServerKitInformation::gdbServer(m_kit).toString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AndroidGdbServerKitInformationWidget::visibleInKit()
|
|
|
|
|
{
|
2013-08-29 13:14:19 +02:00
|
|
|
return DeviceKitInformation::deviceId(m_kit) == Constants::ANDROID_DEVICE_ID;
|
2013-01-25 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *AndroidGdbServerKitInformationWidget::mainWidget() const
|
|
|
|
|
{
|
|
|
|
|
return m_label;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *AndroidGdbServerKitInformationWidget::buttonWidget() const
|
|
|
|
|
{
|
|
|
|
|
return m_button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidGdbServerKitInformationWidget::autoDetectDebugger()
|
|
|
|
|
{
|
|
|
|
|
AndroidGdbServerKitInformation::setGdbSever(m_kit, AndroidGdbServerKitInformation::autoDetect(m_kit));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidGdbServerKitInformationWidget::showDialog()
|
|
|
|
|
{
|
|
|
|
|
QDialog dialog;
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(&dialog);
|
|
|
|
|
QFormLayout *formLayout = new QFormLayout;
|
|
|
|
|
formLayout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow);
|
|
|
|
|
|
|
|
|
|
QLabel *binaryLabel = new QLabel(tr("&Binary:"));
|
2013-08-29 13:14:19 +02:00
|
|
|
PathChooser *chooser = new PathChooser;
|
|
|
|
|
chooser->setExpectedKind(PathChooser::ExistingCommand);
|
2013-01-25 16:49:22 +01:00
|
|
|
chooser->setPath(AndroidGdbServerKitInformation::gdbServer(m_kit).toString());
|
|
|
|
|
binaryLabel->setBuddy(chooser);
|
|
|
|
|
formLayout->addRow(binaryLabel, chooser);
|
|
|
|
|
layout->addLayout(formLayout);
|
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, &dialog);
|
|
|
|
|
connect(buttonBox, SIGNAL(accepted()), &dialog, SLOT(accept()));
|
|
|
|
|
connect(buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject()));
|
|
|
|
|
layout->addWidget(buttonBox);
|
|
|
|
|
|
2013-02-12 15:34:00 +01:00
|
|
|
dialog.setWindowTitle(tr("GDB Server for \"%1\"").arg(m_kit->displayName()));
|
2013-01-25 16:49:22 +01:00
|
|
|
|
|
|
|
|
if (dialog.exec() == QDialog::Accepted)
|
|
|
|
|
AndroidGdbServerKitInformation::setGdbSever(m_kit, chooser->fileName());
|
|
|
|
|
}
|
2013-08-29 13:14:19 +02:00
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Android
|