2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-04-29 16:52:31 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-04-29 16:52:31 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-04-29 16:52:31 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2010-04-29 16:52:31 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-04-29 16:52:31 +02:00
|
|
|
|
|
|
|
|
#include "buildconfigurationmodel.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
#include "buildconfiguration.h"
|
|
|
|
|
|
2014-06-16 18:25:52 +04:00
|
|
|
#include <utils/algorithm.h>
|
|
|
|
|
|
2010-04-29 16:52:31 +02:00
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
/*!
|
|
|
|
|
\class ProjectExplorer::BuildConfigurationModel
|
2013-06-05 14:29:24 +02:00
|
|
|
\brief The BuildConfigurationModel class is a model to represent the build
|
|
|
|
|
configurations of a target.
|
2011-04-14 12:58:14 +02:00
|
|
|
|
2013-09-10 17:16:10 +02:00
|
|
|
To be used in the dropdown lists of comboboxes.
|
|
|
|
|
Automatically adjusts itself to added and removed BuildConfigurations.
|
2011-04-14 12:58:14 +02:00
|
|
|
Very similar to the Run Configuration Model.
|
2013-06-05 14:29:24 +02:00
|
|
|
|
2011-04-14 12:58:14 +02:00
|
|
|
TODO might it possible to share code without making the code a complete mess.
|
|
|
|
|
*/
|
2010-04-29 16:52:31 +02:00
|
|
|
|
|
|
|
|
class BuildConfigurationComparer
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
bool operator()(BuildConfiguration *a, BuildConfiguration *b)
|
|
|
|
|
{
|
|
|
|
|
return a->displayName() < b->displayName();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
BuildConfigurationModel::BuildConfigurationModel(Target *target, QObject *parent)
|
|
|
|
|
: QAbstractListModel(parent),
|
|
|
|
|
m_target(target)
|
|
|
|
|
{
|
|
|
|
|
m_buildConfigurations = m_target->buildConfigurations();
|
2014-06-16 18:25:52 +04:00
|
|
|
Utils::sort(m_buildConfigurations, BuildConfigurationComparer());
|
2010-04-29 16:52:31 +02:00
|
|
|
|
2016-01-29 16:38:37 +02:00
|
|
|
connect(target, &Target::addedBuildConfiguration,
|
|
|
|
|
this, &BuildConfigurationModel::addedBuildConfiguration);
|
|
|
|
|
connect(target, &Target::removedBuildConfiguration,
|
|
|
|
|
this, &BuildConfigurationModel::removedBuildConfiguration);
|
2010-04-29 16:52:31 +02:00
|
|
|
|
|
|
|
|
foreach (BuildConfiguration *bc, m_buildConfigurations)
|
2016-01-29 16:38:37 +02:00
|
|
|
connect(bc, &ProjectConfiguration::displayNameChanged,
|
|
|
|
|
this, &BuildConfigurationModel::displayNameChanged);
|
2010-04-29 16:52:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int BuildConfigurationModel::rowCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
|
|
|
|
return parent.isValid() ? 0 : m_buildConfigurations.size();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int BuildConfigurationModel::columnCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
|
|
|
|
return parent.isValid() ? 0 : 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildConfigurationModel::displayNameChanged()
|
|
|
|
|
{
|
2016-04-13 15:52:14 +02:00
|
|
|
auto rc = qobject_cast<BuildConfiguration *>(sender());
|
2010-04-29 16:52:31 +02:00
|
|
|
if (!rc)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
BuildConfigurationComparer compare;
|
|
|
|
|
// Find the old position
|
|
|
|
|
int oldPos = m_buildConfigurations.indexOf(rc);
|
|
|
|
|
|
|
|
|
|
if (oldPos >= 1 && compare(m_buildConfigurations.at(oldPos), m_buildConfigurations.at(oldPos - 1))) {
|
|
|
|
|
// We need to move up
|
|
|
|
|
int newPos = oldPos - 1;
|
|
|
|
|
while (newPos >= 0 && compare(m_buildConfigurations.at(oldPos), m_buildConfigurations.at(newPos))) {
|
|
|
|
|
--newPos;
|
|
|
|
|
}
|
|
|
|
|
++newPos;
|
|
|
|
|
|
|
|
|
|
beginMoveRows(QModelIndex(), oldPos, oldPos, QModelIndex(), newPos);
|
|
|
|
|
m_buildConfigurations.insert(newPos, rc);
|
|
|
|
|
m_buildConfigurations.removeAt(oldPos + 1);
|
|
|
|
|
endMoveRows();
|
|
|
|
|
// Not only did we move, we also changed...
|
|
|
|
|
emit dataChanged(index(newPos, 0), index(newPos,0));
|
|
|
|
|
} else if (oldPos < m_buildConfigurations.size() - 1
|
|
|
|
|
&& compare(m_buildConfigurations.at(oldPos + 1), m_buildConfigurations.at(oldPos))) {
|
|
|
|
|
// We need to move down
|
|
|
|
|
int newPos = oldPos + 1;
|
|
|
|
|
while (newPos < m_buildConfigurations.size()
|
|
|
|
|
&& compare(m_buildConfigurations.at(newPos), m_buildConfigurations.at(oldPos))) {
|
|
|
|
|
++newPos;
|
|
|
|
|
}
|
|
|
|
|
beginMoveRows(QModelIndex(), oldPos, oldPos, QModelIndex(), newPos);
|
|
|
|
|
m_buildConfigurations.insert(newPos, rc);
|
|
|
|
|
m_buildConfigurations.removeAt(oldPos);
|
|
|
|
|
endMoveRows();
|
|
|
|
|
|
|
|
|
|
// We need to subtract one since removing at the old place moves the newIndex down
|
|
|
|
|
emit dataChanged(index(newPos - 1, 0), index(newPos - 1, 0));
|
|
|
|
|
} else {
|
|
|
|
|
emit dataChanged(index(oldPos, 0), index(oldPos, 0));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant BuildConfigurationModel::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
|
|
|
|
if (role == Qt::DisplayRole) {
|
|
|
|
|
const int row = index.row();
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (row < m_buildConfigurations.size())
|
2010-04-29 16:52:31 +02:00
|
|
|
return m_buildConfigurations.at(row)->displayName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildConfiguration *BuildConfigurationModel::buildConfigurationAt(int i)
|
|
|
|
|
{
|
|
|
|
|
if (i > m_buildConfigurations.size() || i < 0)
|
|
|
|
|
return 0;
|
|
|
|
|
return m_buildConfigurations.at(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildConfiguration *BuildConfigurationModel::buildConfigurationFor(const QModelIndex &idx)
|
|
|
|
|
{
|
|
|
|
|
if (idx.row() > m_buildConfigurations.size() || idx.row() < 0)
|
|
|
|
|
return 0;
|
|
|
|
|
return m_buildConfigurations.at(idx.row());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QModelIndex BuildConfigurationModel::indexFor(BuildConfiguration *rc)
|
|
|
|
|
{
|
|
|
|
|
int idx = m_buildConfigurations.indexOf(rc);
|
|
|
|
|
if (idx == -1)
|
|
|
|
|
return QModelIndex();
|
|
|
|
|
return index(idx, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-13 22:37:28 +03:00
|
|
|
void BuildConfigurationModel::addedBuildConfiguration(BuildConfiguration *bc)
|
2010-04-29 16:52:31 +02:00
|
|
|
{
|
|
|
|
|
// Find the right place to insert
|
|
|
|
|
BuildConfigurationComparer compare;
|
|
|
|
|
int i = 0;
|
|
|
|
|
for (; i < m_buildConfigurations.size(); ++i) {
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (compare(bc, m_buildConfigurations.at(i)))
|
2010-04-29 16:52:31 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
beginInsertRows(QModelIndex(), i, i);
|
|
|
|
|
m_buildConfigurations.insert(i, bc);
|
|
|
|
|
endInsertRows();
|
|
|
|
|
|
|
|
|
|
|
2016-01-29 16:38:37 +02:00
|
|
|
connect(bc, &ProjectConfiguration::displayNameChanged,
|
|
|
|
|
this, &BuildConfigurationModel::displayNameChanged);
|
2010-04-29 16:52:31 +02:00
|
|
|
}
|
|
|
|
|
|
2014-10-13 22:37:28 +03:00
|
|
|
void BuildConfigurationModel::removedBuildConfiguration(BuildConfiguration *bc)
|
2010-04-29 16:52:31 +02:00
|
|
|
{
|
|
|
|
|
int i = m_buildConfigurations.indexOf(bc);
|
|
|
|
|
beginRemoveRows(QModelIndex(), i, i);
|
|
|
|
|
m_buildConfigurations.removeAt(i);
|
|
|
|
|
endRemoveRows();
|
|
|
|
|
}
|