/**************************************************************************** ** ** Copyright (C) 2012 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 "deploymentsettingsassistant.h" #include "deploymentinfo.h" #include "deployablefile.h" #include "deployablefilesperprofile.h" #include "profilesupdatedialog.h" #include "remotelinuxdeployconfiguration.h" #include #include #include #include #include #include #include #include #include #include using namespace Qt4ProjectManager; namespace RemoteLinux { namespace Internal { namespace { enum ProFileUpdateSetting { UpdateProFile, DontUpdateProFile }; typedef QHash UpdateSettingsMap; } // anonymous namespace class DeploymentSettingsAssistantInternal { public: DeploymentSettingsAssistantInternal(DeploymentInfo *deploymentInfo) : deploymentInfo(deploymentInfo) { } DeploymentInfo * const deploymentInfo; UpdateSettingsMap updateSettings; }; } // namespace Internal using namespace Internal; DeploymentSettingsAssistant::DeploymentSettingsAssistant(DeploymentInfo *deploymentInfo, ProjectExplorer::Project *parent) : QObject(parent), d(new DeploymentSettingsAssistantInternal(deploymentInfo)) { connect(d->deploymentInfo, SIGNAL(modelReset()), SLOT(handleDeploymentInfoUpdated())); } DeploymentSettingsAssistant::~DeploymentSettingsAssistant() { delete d; } bool DeploymentSettingsAssistant::addDeployableToProFile(const QString &qmakeScope, const DeployableFilesPerProFile *proFileInfo, const QString &variableName, const DeployableFile &deployable) { const QString filesLine = variableName + QLatin1String(".files = ") + QDir(proFileInfo->projectDir()).relativeFilePath(deployable.localFilePath); const QString pathLine = variableName + QLatin1String(".path = ") + deployable.remoteDir; const QString installsLine = QLatin1String("INSTALLS += ") + variableName; return addLinesToProFile(qmakeScope, proFileInfo, QStringList() << filesLine << pathLine << installsLine); } bool DeploymentSettingsAssistant::addLinesToProFile(const QString &qmakeScope, const DeployableFilesPerProFile *proFileInfo, const QStringList &lines) { Core::FileChangeBlocker update(proFileInfo->proFilePath()); const QString separator = QLatin1String("\n "); const QString proFileString = QLatin1Char('\n') + qmakeScope + QLatin1String(" {") + separator + lines.join(separator) + QLatin1String("\n}\n"); Utils::FileSaver saver(proFileInfo->proFilePath(), QIODevice::Append); saver.write(proFileString.toLocal8Bit()); return saver.finalize(Core::ICore::mainWindow()); } void DeploymentSettingsAssistant::handleDeploymentInfoUpdated() { ProjectExplorer::Project *project = static_cast(parent()); QStringList scopes; QStringList pathes; foreach (ProjectExplorer::Target *target, project->targets()) { foreach (ProjectExplorer::DeployConfiguration *dc, target->deployConfigurations()) { RemoteLinuxDeployConfiguration *rldc = qobject_cast(dc); if (!rldc) continue; const QString scope = rldc->qmakeScope(); if (!scopes.contains(scope)) { scopes.append(scope); pathes.append(rldc->installPrefix()); } } } if (scopes.isEmpty()) return; QList proFilesToAskAbout; QList proFilesToUpdate; for (int i = 0; i < d->deploymentInfo->modelCount(); ++i) { DeployableFilesPerProFile * const proFileInfo = d->deploymentInfo->modelAt(i); if (proFileInfo->projectType() != AuxTemplate && !proFileInfo->hasTargetPath()) { const UpdateSettingsMap::ConstIterator it = d->updateSettings.find(proFileInfo->proFilePath()); if (it == d->updateSettings.constEnd()) proFilesToAskAbout << proFileInfo; else if (it.value() == UpdateProFile) proFilesToUpdate << proFileInfo; } } if (!proFilesToAskAbout.isEmpty()) { ProFilesUpdateDialog dialog(proFilesToAskAbout); dialog.exec(); const QList &settings = dialog.getUpdateSettings(); foreach (const ProFilesUpdateDialog::UpdateSetting &setting, settings) { const ProFileUpdateSetting updateSetting = setting.second ? UpdateProFile : DontUpdateProFile; d->updateSettings.insert(setting.first->proFilePath(), updateSetting); if (updateSetting == UpdateProFile) proFilesToUpdate << setting.first; } } foreach (const DeployableFilesPerProFile * const proFileInfo, proFilesToUpdate) { const QString remoteDirSuffix = QLatin1String(proFileInfo->projectType() == LibraryTemplate ? "/lib" : "/bin"); for (int i = 0; i < scopes.count(); ++i) { const QString remoteDir = QLatin1String("target.path = ") + pathes.at(i) + QLatin1Char('/') + proFileInfo->projectName() + remoteDirSuffix; const QStringList deployInfo = QStringList() << remoteDir << QLatin1String("INSTALLS += target"); addLinesToProFile(scopes.at(i), proFileInfo, deployInfo); } } } } // namespace RemoteLinux