/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (info@qt.nokia.com) ** ** GNU Lesser General Public License Usage ** ** 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, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at info@qt.nokia.com. ** **************************************************************************/ #include "deploymentinfo.h" #include "deployablefile.h" #include "deployablefilesperprofile.h" #include #include #include #include #include #include using namespace Qt4ProjectManager; namespace RemoteLinux { namespace Internal { class DeploymentInfoPrivate { public: DeploymentInfoPrivate(const Qt4BaseTarget *target) : target(target) {} QList listModels; const Qt4ProjectManager::Qt4BaseTarget * const target; QTimer updateTimer; }; } // namespace Internal using namespace Internal; DeploymentInfo::DeploymentInfo(const Qt4BaseTarget *target) : m_d(new DeploymentInfoPrivate(target)) { Qt4Project * const pro = m_d->target->qt4Project(); connect(pro, SIGNAL(proFileUpdated(Qt4ProjectManager::Qt4ProFileNode*,bool,bool)), SLOT(startTimer(Qt4ProjectManager::Qt4ProFileNode*,bool,bool))); m_d->updateTimer.setInterval(1500); m_d->updateTimer.setSingleShot(true); connect(&m_d->updateTimer, SIGNAL(timeout()), this, SLOT(createModels())); createModels(); } DeploymentInfo::~DeploymentInfo() { delete m_d; } void DeploymentInfo::startTimer(Qt4ProjectManager::Qt4ProFileNode*, bool success, bool parseInProgress) { Q_UNUSED(success) if (!parseInProgress) m_d->updateTimer.start(); } void DeploymentInfo::createModels() { if (m_d->target->project()->activeTarget() != m_d->target) return; const Qt4BuildConfiguration *bc = m_d->target->activeQt4BuildConfiguration(); if (!bc || !bc->qtVersion() || !bc->qtVersion()->isValid()) { beginResetModel(); qDeleteAll(m_d->listModels); m_d->listModels.clear(); endResetModel(); return; } const Qt4ProFileNode *const rootNode = m_d->target->qt4Project()->rootQt4ProjectNode(); if (!rootNode || rootNode->parseInProgress()) // Can be null right after project creation by wizard. return; m_d->updateTimer.stop(); disconnect(m_d->target->qt4Project(), SIGNAL(proFileUpdated(Qt4ProjectManager::Qt4ProFileNode*,bool,bool)), this, SLOT(startTimer(Qt4ProjectManager::Qt4ProFileNode*,bool,bool))); beginResetModel(); qDeleteAll(m_d->listModels); m_d->listModels.clear(); createModels(rootNode); endResetModel(); connect(m_d->target->qt4Project(), SIGNAL(proFileUpdated(Qt4ProjectManager::Qt4ProFileNode*,bool,bool)), this, SLOT(startTimer(Qt4ProjectManager::Qt4ProFileNode*,bool,bool))); } void DeploymentInfo::createModels(const Qt4ProFileNode *proFileNode) { switch (proFileNode->projectType()) { case ApplicationTemplate: case LibraryTemplate: case AuxTemplate: m_d->listModels << new DeployableFilesPerProFile(proFileNode, this); break; case SubDirsTemplate: { const QList &subProjects = proFileNode->subProjectNodesExact(); foreach (const ProjectExplorer::ProjectNode * const subProject, subProjects) { const Qt4ProFileNode * const qt4SubProject = qobject_cast(subProject); if (qt4SubProject && !qt4SubProject->path().endsWith(QLatin1String(".pri"))) createModels(qt4SubProject); } } default: break; } } void DeploymentInfo::setUnmodified() { foreach (DeployableFilesPerProFile * const model, m_d->listModels) model->setUnModified(); } bool DeploymentInfo::isModified() const { foreach (const DeployableFilesPerProFile * const model, m_d->listModels) { if (model->isModified()) return true; } return false; } int DeploymentInfo::deployableCount() const { int count = 0; foreach (const DeployableFilesPerProFile * const model, m_d->listModels) count += model->rowCount(); return count; } DeployableFile DeploymentInfo::deployableAt(int i) const { foreach (const DeployableFilesPerProFile * const model, m_d->listModels) { Q_ASSERT(i >= 0); if (i < model->rowCount()) return model->deployableAt(i); i -= model->rowCount(); } Q_ASSERT(!"Invalid deployable number"); return DeployableFile(QString(), QString()); } QString DeploymentInfo::remoteExecutableFilePath(const QString &localExecutableFilePath) const { foreach (const DeployableFilesPerProFile * const model, m_d->listModels) { if (model->localExecutableFilePath() == localExecutableFilePath) return model->remoteExecutableFilePath(); } return QString(); } int DeploymentInfo::rowCount(const QModelIndex &parent) const { return parent.isValid() ? 0 : modelCount(); } QVariant DeploymentInfo::data(const QModelIndex &index, int role) const { if (!index.isValid() || index.row() < 0 || index.row() >= modelCount() || index.column() != 0) return QVariant(); const DeployableFilesPerProFile * const model = m_d->listModels.at(index.row()); if (role == Qt::ForegroundRole && model->projectType() != AuxTemplate && !model->hasTargetPath()) { QBrush brush; brush.setColor(Qt::red); return brush; } if (role == Qt::DisplayRole) return QFileInfo(model->proFilePath()).fileName(); return QVariant(); } int DeploymentInfo::modelCount() const { return m_d->listModels.count(); } DeployableFilesPerProFile *DeploymentInfo::modelAt(int i) const { return m_d->listModels.at(i); } } // namespace RemoteLinux