forked from qt-creator/qt-creator
... or Target. This patch moves build system from conceptually "one per project" to "one per target (i.e. per project-and-kit)" or "per BuildConfigurations" for targets where the builds differ significantly. Building requires usually items from the kit (Qt version, compiler, ...) so a target-agnostic build is practically almost always wrong. Moving the build system to the target also has the potential to solve issues caused by switching targets while parsing, that used Project::activeTarget() regularly, with potentially different results before and after the switch. This patch might create performance/size regressions when several targets are set up per project as the build system implementation's internal data are duplicated in this case. The idea is to fix that by sharing per-project pieces again in the project implementation once these problems occur. Change-Id: I87f640ce418b93175b5029124eaa55f3b8721dca Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
164 lines
5.1 KiB
C++
164 lines
5.1 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** 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 The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "androidextralibrarylistmodel.h"
|
|
|
|
#include <android/androidconstants.h>
|
|
#include <android/androidmanager.h>
|
|
|
|
#include <projectexplorer/project.h>
|
|
#include <projectexplorer/projectnodes.h>
|
|
#include <projectexplorer/runconfiguration.h>
|
|
#include <projectexplorer/target.h>
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
namespace Android {
|
|
|
|
AndroidExtraLibraryListModel::AndroidExtraLibraryListModel(ProjectExplorer::Target *target,
|
|
QObject *parent)
|
|
: QAbstractItemModel(parent),
|
|
m_target(target)
|
|
{
|
|
updateModel();
|
|
|
|
connect(target, &Target::parsingStarted,
|
|
this, &AndroidExtraLibraryListModel::updateModel);
|
|
connect(target, &Target::parsingFinished,
|
|
this, &AndroidExtraLibraryListModel::updateModel);
|
|
connect(target, &Target::activeRunConfigurationChanged,
|
|
this, &AndroidExtraLibraryListModel::updateModel);
|
|
}
|
|
|
|
QModelIndex AndroidExtraLibraryListModel::index(int row, int column, const QModelIndex &) const
|
|
{
|
|
return createIndex(row, column);
|
|
}
|
|
|
|
QModelIndex AndroidExtraLibraryListModel::parent(const QModelIndex &) const
|
|
{
|
|
return QModelIndex();
|
|
}
|
|
|
|
int AndroidExtraLibraryListModel::rowCount(const QModelIndex &) const
|
|
{
|
|
return m_entries.size();
|
|
}
|
|
|
|
int AndroidExtraLibraryListModel::columnCount(const QModelIndex &) const
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
QVariant AndroidExtraLibraryListModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
Q_ASSERT(index.row() >= 0 && index.row() < m_entries.size());
|
|
if (role == Qt::DisplayRole)
|
|
return QDir::cleanPath(m_entries.at(index.row()));
|
|
return {};
|
|
}
|
|
|
|
void AndroidExtraLibraryListModel::updateModel()
|
|
{
|
|
RunConfiguration *rc = m_target->activeRunConfiguration();
|
|
QTC_ASSERT(rc, return);
|
|
|
|
const ProjectNode *node = m_target->project()->findNodeForBuildKey(rc->buildKey());
|
|
QTC_ASSERT(node, return);
|
|
|
|
if (node->parseInProgress()) {
|
|
emit enabledChanged(false);
|
|
return;
|
|
}
|
|
|
|
bool enabled;
|
|
beginResetModel();
|
|
if (node->validParse()) {
|
|
m_entries = node->data(Constants::AndroidExtraLibs).toStringList();
|
|
enabled = true;
|
|
} else {
|
|
// parsing error
|
|
m_entries.clear();
|
|
enabled = false;
|
|
}
|
|
endResetModel();
|
|
|
|
emit enabledChanged(enabled);
|
|
}
|
|
|
|
void AndroidExtraLibraryListModel::addEntries(const QStringList &list)
|
|
{
|
|
RunConfiguration *rc = m_target->activeRunConfiguration();
|
|
QTC_ASSERT(rc, return);
|
|
|
|
const ProjectNode *node = m_target->project()->findNodeForBuildKey(rc->buildKey());
|
|
QTC_ASSERT(node, return);
|
|
|
|
beginInsertRows(QModelIndex(), m_entries.size(), m_entries.size() + list.size());
|
|
|
|
const QDir dir = node->filePath().toFileInfo().absoluteDir();
|
|
for (const QString &path : list)
|
|
m_entries += "$$PWD/" + dir.relativeFilePath(path);
|
|
|
|
node->setData(Constants::AndroidExtraLibs, m_entries);
|
|
endInsertRows();
|
|
}
|
|
|
|
bool greaterModelIndexByRow(const QModelIndex &a, const QModelIndex &b)
|
|
{
|
|
return a.row() > b.row();
|
|
}
|
|
|
|
void AndroidExtraLibraryListModel::removeEntries(QModelIndexList list)
|
|
{
|
|
if (list.isEmpty())
|
|
return;
|
|
|
|
std::sort(list.begin(), list.end(), greaterModelIndexByRow);
|
|
|
|
int i = 0;
|
|
while (i < list.size()) {
|
|
int lastRow = list.at(i++).row();
|
|
int firstRow = lastRow;
|
|
while (i < list.size() && firstRow - list.at(i).row() <= 1)
|
|
firstRow = list.at(i++).row();
|
|
|
|
beginRemoveRows(QModelIndex(), firstRow, lastRow);
|
|
int count = lastRow - firstRow + 1;
|
|
while (count-- > 0)
|
|
m_entries.removeAt(firstRow);
|
|
endRemoveRows();
|
|
}
|
|
|
|
RunConfiguration *rc = m_target->activeRunConfiguration();
|
|
QTC_ASSERT(rc, return);
|
|
const ProjectNode *node = m_target->project()->findNodeForBuildKey(rc->buildKey());
|
|
QTC_ASSERT(node, return);
|
|
node->setData(Constants::AndroidExtraLibs, m_entries);
|
|
}
|
|
|
|
} // Android
|