vcpkg/toolsrc/src/StatusParagraphs.cpp

69 lines
2.3 KiB
C++
Raw Normal View History

2017-01-28 04:49:09 +08:00
#include "pch.h"
2016-09-19 11:50:08 +08:00
#include "StatusParagraphs.h"
#include "vcpkg_Checks.h"
namespace vcpkg
{
StatusParagraphs::StatusParagraphs() = default;
StatusParagraphs::StatusParagraphs(std::vector<std::unique_ptr<StatusParagraph>>&& ps)
: paragraphs(std::move(ps))
{
};
2017-04-04 06:02:45 +08:00
StatusParagraphs::const_iterator StatusParagraphs::find(const std::string& name, const Triplet& target_triplet) const
2016-09-19 11:50:08 +08:00
{
2016-10-05 06:10:04 +08:00
return std::find_if(begin(), end(), [&](const std::unique_ptr<StatusParagraph>& pgh)
2016-09-19 11:50:08 +08:00
{
2017-04-04 05:45:00 +08:00
const PackageSpec& spec = pgh->package.spec;
return spec.name() == name && spec.target_triplet() == target_triplet;
2016-09-19 11:50:08 +08:00
});
}
2017-04-04 06:02:45 +08:00
StatusParagraphs::iterator StatusParagraphs::find(const std::string& name, const Triplet& target_triplet)
2016-09-19 11:50:08 +08:00
{
2016-10-05 06:10:04 +08:00
return std::find_if(begin(), end(), [&](const std::unique_ptr<StatusParagraph>& pgh)
2016-09-19 11:50:08 +08:00
{
2017-04-04 05:45:00 +08:00
const PackageSpec& spec = pgh->package.spec;
return spec.name() == name && spec.target_triplet() == target_triplet;
2016-09-19 11:50:08 +08:00
});
}
2017-04-04 06:02:45 +08:00
StatusParagraphs::const_iterator StatusParagraphs::find_installed(const std::string& name, const Triplet& target_triplet) const
2016-09-19 11:50:08 +08:00
{
const const_iterator it = find(name, target_triplet);
if (it != end() && (*it)->want == Want::INSTALL)
2016-09-19 11:50:08 +08:00
{
return it;
}
return end();
}
StatusParagraphs::iterator StatusParagraphs::insert(std::unique_ptr<StatusParagraph> pgh)
{
Checks::check_exit(VCPKG_LINE_INFO, pgh != nullptr, "Inserted null paragraph");
2017-04-04 05:45:00 +08:00
const PackageSpec& spec = pgh->package.spec;
auto ptr = find(spec.name(), spec.target_triplet());
2016-09-19 11:50:08 +08:00
if (ptr == end())
{
paragraphs.push_back(std::move(pgh));
return paragraphs.rbegin();
}
// consume data from provided pgh.
**ptr = std::move(*pgh);
return ptr;
2016-09-19 11:50:08 +08:00
}
std::ostream& vcpkg::operator<<(std::ostream& os, const StatusParagraphs& l)
{
for (auto& pgh : l.paragraphs)
{
os << *pgh;
os << "\n";
}
return os;
}
}