2017-04-10 12:57:49 -07:00
|
|
|
#include "pch.h"
|
|
|
|
#include "vcpkg_Commands.h"
|
|
|
|
#include "vcpkglib.h"
|
|
|
|
#include "vcpkg_System.h"
|
|
|
|
#include "vcpkg_Dependencies.h"
|
|
|
|
#include "vcpkg_Input.h"
|
|
|
|
#include "vcpkg_Util.h"
|
|
|
|
#include "Paragraphs.h"
|
|
|
|
|
|
|
|
namespace vcpkg::Commands::Export
|
|
|
|
{
|
2017-04-17 18:36:35 -07:00
|
|
|
using Install::InstallDir;
|
2017-04-10 12:57:49 -07:00
|
|
|
using Dependencies::ExportPlanAction;
|
|
|
|
using Dependencies::RequestType;
|
|
|
|
using Dependencies::ExportPlanType;
|
|
|
|
|
2017-04-18 15:31:10 -07:00
|
|
|
static void print_plan(const std::map<ExportPlanType, std::vector<const ExportPlanAction*>>& group_by_plan_type)
|
2017-04-10 12:57:49 -07:00
|
|
|
{
|
|
|
|
static constexpr std::array<ExportPlanType, 2> order = { ExportPlanType::ALREADY_BUILT, ExportPlanType::PORT_AVAILABLE_BUT_NOT_BUILT };
|
|
|
|
|
|
|
|
for (const ExportPlanType plan_type : order)
|
|
|
|
{
|
|
|
|
auto it = group_by_plan_type.find(plan_type);
|
|
|
|
if (it == group_by_plan_type.cend())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const ExportPlanAction*> cont = it->second;
|
|
|
|
std::sort(cont.begin(), cont.end(), &ExportPlanAction::compare_by_name);
|
|
|
|
const std::string as_string = Strings::join("\n", cont, [](const ExportPlanAction* p)
|
|
|
|
{
|
|
|
|
return Dependencies::to_output_string(p->request_type, p->spec.to_string());
|
|
|
|
});
|
|
|
|
|
|
|
|
switch (plan_type)
|
|
|
|
{
|
|
|
|
case ExportPlanType::ALREADY_BUILT:
|
|
|
|
System::println("The following packages are already built and will be exported:\n%s", as_string);
|
|
|
|
continue;
|
|
|
|
case ExportPlanType::PORT_AVAILABLE_BUT_NOT_BUILT:
|
|
|
|
System::println("The following packages need to be built:\n%s", as_string);
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
Checks::unreachable(VCPKG_LINE_INFO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths, const Triplet& default_triplet)
|
|
|
|
{
|
|
|
|
static const std::string OPTION_DRY_RUN = "--dry-run";
|
|
|
|
// input sanitization
|
|
|
|
static const std::string example = Commands::Help::create_example_string("export zlib zlib:x64-windows curl boost");
|
|
|
|
args.check_min_arg_count(1, example);
|
|
|
|
|
|
|
|
const std::vector<PackageSpec> specs = Util::fmap(args.command_arguments, [&](auto&& arg)
|
|
|
|
{
|
|
|
|
return Input::check_and_get_package_spec(arg, default_triplet, example);
|
|
|
|
});
|
|
|
|
for (auto&& spec : specs)
|
|
|
|
Input::check_triplet(spec.triplet(), paths);
|
|
|
|
|
|
|
|
const std::unordered_set<std::string> options = args.check_and_get_optional_command_arguments({ OPTION_DRY_RUN });
|
|
|
|
const bool dryRun = options.find(OPTION_DRY_RUN) != options.cend();
|
|
|
|
|
|
|
|
// create the plan
|
|
|
|
StatusParagraphs status_db = database_load_check(paths);
|
|
|
|
std::vector<ExportPlanAction> export_plan = Dependencies::create_export_plan(paths, specs, status_db);
|
|
|
|
Checks::check_exit(VCPKG_LINE_INFO, !export_plan.empty(), "Export plan cannot be empty");
|
|
|
|
|
2017-04-18 15:31:10 -07:00
|
|
|
std::map<ExportPlanType, std::vector<const ExportPlanAction*>> group_by_plan_type;
|
|
|
|
Util::group_by(export_plan, &group_by_plan_type, [](const ExportPlanAction& p) { return p.plan_type; });
|
|
|
|
print_plan(group_by_plan_type);
|
2017-04-10 12:57:49 -07:00
|
|
|
|
2017-04-19 14:41:54 -07:00
|
|
|
const bool has_non_user_requested_packages = Util::find_if(export_plan, [](const ExportPlanAction& package)-> bool
|
|
|
|
{
|
|
|
|
return package.request_type != RequestType::USER_REQUESTED;
|
|
|
|
}) != export_plan.cend();
|
2017-04-10 12:57:49 -07:00
|
|
|
|
|
|
|
if (has_non_user_requested_packages)
|
|
|
|
{
|
|
|
|
System::println(System::Color::warning, "Additional packages (*) need to be exported to complete this operation.");
|
|
|
|
}
|
|
|
|
|
2017-04-18 16:03:43 -07:00
|
|
|
auto it = group_by_plan_type.find(ExportPlanType::PORT_AVAILABLE_BUT_NOT_BUILT);
|
|
|
|
if (it != group_by_plan_type.cend() && !it->second.empty())
|
|
|
|
{
|
|
|
|
System::println(System::Color::error, "There are packages that have not been built.");
|
|
|
|
auto s = Strings::join(" ", specs, [](const PackageSpec& spec) { return spec.to_string(); });
|
|
|
|
System::println("To build them, run:\n"
|
|
|
|
" vcpkg install %s", s);
|
|
|
|
Checks::exit_fail(VCPKG_LINE_INFO);
|
|
|
|
}
|
|
|
|
|
2017-04-10 12:57:49 -07:00
|
|
|
if (dryRun)
|
|
|
|
{
|
|
|
|
Checks::exit_success(VCPKG_LINE_INFO);
|
|
|
|
}
|
|
|
|
|
2017-04-17 18:36:35 -07:00
|
|
|
Files::Filesystem& fs = paths.get_filesystem();
|
|
|
|
const fs::path output = paths.root / "exported";
|
|
|
|
std::error_code ec;
|
|
|
|
fs.remove_all(output, ec);
|
2017-04-18 15:31:10 -07:00
|
|
|
fs.create_directory(output, ec);
|
2017-04-17 18:36:35 -07:00
|
|
|
|
|
|
|
// execute the plan
|
|
|
|
for (const ExportPlanAction& action : export_plan)
|
|
|
|
{
|
2017-04-18 16:03:43 -07:00
|
|
|
if (action.plan_type != ExportPlanType::ALREADY_BUILT)
|
|
|
|
{
|
|
|
|
Checks::unreachable(VCPKG_LINE_INFO);
|
|
|
|
}
|
|
|
|
|
2017-04-17 18:36:35 -07:00
|
|
|
const std::string display_name = action.spec.to_string();
|
|
|
|
System::println("Exporting package %s... ", display_name);
|
|
|
|
|
|
|
|
const BinaryParagraph& binary_paragraph = action.any_paragraph.binary_paragraph.value_or_exit(VCPKG_LINE_INFO);
|
|
|
|
const InstallDir dirs = InstallDir::from_destination_root(
|
|
|
|
output,
|
|
|
|
action.spec.triplet().to_string(),
|
|
|
|
output / "vcpkg" / "info" / (binary_paragraph.fullstem() + ".list"));
|
|
|
|
|
|
|
|
Install::install_files_and_write_listfile(paths.get_filesystem(), paths.package_dir(action.spec), dirs);
|
|
|
|
System::println(System::Color::success, "Exporting package %s... done", display_name);
|
|
|
|
}
|
|
|
|
|
2017-04-10 12:57:49 -07:00
|
|
|
Checks::exit_success(VCPKG_LINE_INFO);
|
|
|
|
}
|
|
|
|
}
|