ProjectExplorer: Add deploymentdata.cpp

We will add more code to the DeploymentData class, and we don't want it
all to be inline.

Change-Id: I5d51d5d44078e6a38262925be21d447ebd8f629e
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Kandeler
2018-11-14 09:18:57 +01:00
parent 54efabd6e9
commit 2cac5c0f0c
4 changed files with 77 additions and 39 deletions

View File

@@ -0,0 +1,68 @@
/****************************************************************************
**
** Copyright (C) 2018 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 "deploymentdata.h"
#include <utils/algorithm.h>
namespace ProjectExplorer {
void DeploymentData::setLocalInstallRoot(const Utils::FileName &installRoot)
{
m_localInstallRoot = installRoot;
}
void DeploymentData::addFile(const DeployableFile &file)
{
for (int i = 0; i < m_files.size(); ++i) {
if (m_files.at(i).localFilePath() == file.localFilePath()) {
m_files[i] = file;
return;
}
}
m_files << file;
}
void DeploymentData::addFile(const QString &localFilePath, const QString &remoteDirectory,
DeployableFile::Type type)
{
addFile(DeployableFile(localFilePath, remoteDirectory, type));
}
DeployableFile DeploymentData::deployableForLocalFile(const QString &localFilePath) const
{
return Utils::findOrDefault(m_files, [&localFilePath](const DeployableFile &d) {
return d.localFilePath().toString() == localFilePath;
});
}
bool DeploymentData::operator==(const DeploymentData &other) const
{
return m_files.toSet() == other.m_files.toSet()
&& m_localInstallRoot == other.m_localInstallRoot;
}
} // namespace ProjectExplorer