mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
65 lines
2.1 KiB
C++
65 lines
2.1 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. 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(bool reinit)
|
|
{
|
|
this->clear();
|
|
const QMap<QString, CApplicationInfo> otherVersions = reinit ?
|
|
CDirectoryUtils::currentApplicationDataDirectoryMapWithoutCurrentVersion() :
|
|
CDirectoryUtils::applicationDataDirectoryMapWithoutCurrentVersion();
|
|
|
|
for (const CApplicationInfo &info : otherVersions)
|
|
{
|
|
this->push_back(info);
|
|
}
|
|
return this->size();
|
|
}
|
|
|
|
CApplicationInfoList CApplicationInfoList::fromOtherSwiftVersionsFromDataDirectories(bool reinit)
|
|
{
|
|
CApplicationInfoList il;
|
|
il.otherSwiftVersionsFromDataDirectories(reinit);
|
|
return il;
|
|
}
|
|
} // ns
|