mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-24 07:55:35 +08:00
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
/* Copyright (C) 2016
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "blackmisc/applicationinfolist.h"
|
|
#include "directoryutils.h"
|
|
#include "blackconfig/buildconfig.h"
|
|
|
|
using namespace BlackConfig;
|
|
|
|
namespace BlackMisc
|
|
{
|
|
CApplicationInfoList::CApplicationInfoList() {}
|
|
|
|
CApplicationInfoList::CApplicationInfoList(const CSequence<CApplicationInfo> &other) :
|
|
CSequence<CApplicationInfo>(other)
|
|
{}
|
|
|
|
bool CApplicationInfoList::containsApplication(CApplicationInfo::Application application) const
|
|
{
|
|
return this->contains(&CApplicationInfo::getApplication, application);
|
|
}
|
|
|
|
int CApplicationInfoList::removeApplication(CApplicationInfo::Application application)
|
|
{
|
|
return this->removeIf(&CApplicationInfo::getApplication, application);
|
|
}
|
|
|
|
QStringList CApplicationInfoList::processNames() const
|
|
{
|
|
QStringList names;
|
|
names.reserve(size());
|
|
for (const CApplicationInfo &info : *this)
|
|
{
|
|
names.append(info.getProcessInfo().processName());
|
|
}
|
|
return names;
|
|
}
|
|
|
|
int CApplicationInfoList::otherSwiftVersionsFromDataDirectories()
|
|
{
|
|
this->clear();
|
|
const QMap<QString, CApplicationInfo> otherVersions = CDirectoryUtils::applicationDataDirectoryMapWithoutCurrentVersion();
|
|
for (const QString &directory : otherVersions.keys())
|
|
{
|
|
CApplicationInfo info(otherVersions.value(directory));
|
|
this->push_back(info);
|
|
}
|
|
return this->size();
|
|
}
|
|
|
|
CApplicationInfoList CApplicationInfoList::fromOtherSwiftVersionsFromDataDirectories()
|
|
{
|
|
static CApplicationInfoList info = []
|
|
{
|
|
CApplicationInfoList il;
|
|
il.otherSwiftVersionsFromDataDirectories();
|
|
return il;
|
|
}();
|
|
return info;
|
|
}
|
|
} // ns
|