mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 05:09:02 +08:00
ebf1fff6a7
Added (currently undocumented) --no-purge as workaround if required.
90 lines
3.4 KiB
C++
90 lines
3.4 KiB
C++
#include "pch.h"
|
|
#include "vcpkg_Commands.h"
|
|
#include "vcpkglib.h"
|
|
#include "vcpkg_System.h"
|
|
#include "vcpkg_Files.h"
|
|
#include "Paragraphs.h"
|
|
|
|
namespace vcpkg::Commands::Update
|
|
{
|
|
bool outdated_package::compare_by_name(const outdated_package& left, const outdated_package& right)
|
|
{
|
|
return left.spec.name() < right.spec.name();
|
|
}
|
|
|
|
std::vector<outdated_package> find_outdated_packages(const vcpkg_paths& paths, const StatusParagraphs& status_db)
|
|
{
|
|
const std::vector<SourceParagraph> source_paragraphs = Paragraphs::load_all_ports(paths.ports);
|
|
const std::map<std::string, version_t> src_names_to_versions = Paragraphs::extract_port_names_and_versions(source_paragraphs);
|
|
const std::vector<StatusParagraph*> installed_packages = get_installed_ports(status_db);
|
|
|
|
std::vector<outdated_package> output;
|
|
for (const StatusParagraph* pgh : installed_packages)
|
|
{
|
|
auto it = src_names_to_versions.find(pgh->package.spec.name());
|
|
if (it == src_names_to_versions.end())
|
|
{
|
|
// Package was not installed from portfile
|
|
continue;
|
|
}
|
|
if (it->second != pgh->package.version)
|
|
{
|
|
output.push_back({ pgh->package.spec, version_diff_t(pgh->package.version, it->second) });
|
|
}
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
void perform_and_exit(const vcpkg_cmd_arguments& args, const vcpkg_paths& paths)
|
|
{
|
|
args.check_exact_arg_count(0);
|
|
args.check_and_get_optional_command_arguments({});
|
|
System::println("Using local portfile versions. To update the local portfiles, use `git pull`.");
|
|
|
|
const StatusParagraphs status_db = database_load_check(paths);
|
|
|
|
const auto outdated_packages = SortedVector<outdated_package>(find_outdated_packages(paths, status_db),
|
|
&outdated_package::compare_by_name);
|
|
|
|
if (outdated_packages.empty())
|
|
{
|
|
System::println("No packages need updating.");
|
|
}
|
|
else
|
|
{
|
|
System::println("The following packages differ from their port versions:");
|
|
for (auto&& package : outdated_packages)
|
|
{
|
|
System::println(" %-32s %s", package.spec.display_name(), package.version_diff.toString());
|
|
}
|
|
System::println("\n"
|
|
"To update these packages, run\n"
|
|
" vcpkg remove --outdated\n"
|
|
" vcpkg install <pkgs>...");
|
|
}
|
|
|
|
auto version_file = Files::read_contents(paths.root / "toolsrc" / "VERSION.txt");
|
|
if (auto version_contents = version_file.get())
|
|
{
|
|
int maj1, min1, rev1;
|
|
auto num1 = sscanf_s(version_contents->c_str(), "\"%d.%d.%d\"", &maj1, &min1, &rev1);
|
|
|
|
int maj2, min2, rev2;
|
|
auto num2 = sscanf_s(Version::version().c_str(), "%d.%d.%d-", &maj2, &min2, &rev2);
|
|
|
|
if (num1 == 3 && num2 == 3)
|
|
{
|
|
if (maj1 != maj2 || min1 != min2 || rev1 != rev2)
|
|
{
|
|
System::println("Different source is available for vcpkg (%d.%d.%d -> %d.%d.%d). Use bootstrap-vcpkg.bat to update.",
|
|
maj2, min2, rev2,
|
|
maj1, min1, rev1);
|
|
}
|
|
}
|
|
}
|
|
|
|
Checks::exit_success(VCPKG_LINE_INFO);
|
|
}
|
|
}
|