2016-09-23 14:28:50 +08:00
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
2017-04-04 05:45:00 +08:00
|
|
|
#include "PackageSpec.h"
|
2016-09-23 14:28:50 +08:00
|
|
|
#include "StatusParagraphs.h"
|
2017-04-04 07:29:11 +08:00
|
|
|
#include "VcpkgPaths.h"
|
2017-01-31 08:14:48 +08:00
|
|
|
#include "vcpkg_optional.h"
|
2016-09-23 14:28:50 +08:00
|
|
|
|
2017-01-06 06:14:11 +08:00
|
|
|
namespace vcpkg::Dependencies
|
2016-09-23 14:28:50 +08:00
|
|
|
{
|
2017-04-04 07:21:46 +08:00
|
|
|
enum class RequestType
|
2017-01-31 05:57:43 +08:00
|
|
|
{
|
2017-01-31 09:52:53 +08:00
|
|
|
UNKNOWN,
|
2017-01-31 05:57:43 +08:00
|
|
|
USER_REQUESTED,
|
|
|
|
AUTO_SELECTED
|
|
|
|
};
|
|
|
|
|
2017-04-07 09:57:17 +08:00
|
|
|
std::string to_output_string(RequestType request_type, const CStringView s);
|
|
|
|
|
2017-04-13 12:37:55 +08:00
|
|
|
struct AnyParagraph
|
|
|
|
{
|
|
|
|
std::vector<PackageSpec> dependencies(const Triplet& triplet) const;
|
|
|
|
|
|
|
|
Optional<StatusParagraph> status_paragraph;
|
|
|
|
Optional<BinaryParagraph> binary_paragraph;
|
|
|
|
Optional<SourceParagraph> source_paragraph;
|
|
|
|
};
|
|
|
|
|
2017-04-04 07:22:32 +08:00
|
|
|
enum class InstallPlanType
|
2016-11-16 03:56:46 +08:00
|
|
|
{
|
2017-01-31 09:52:53 +08:00
|
|
|
UNKNOWN,
|
2016-11-16 03:56:46 +08:00
|
|
|
BUILD_AND_INSTALL,
|
|
|
|
INSTALL,
|
|
|
|
ALREADY_INSTALLED
|
|
|
|
};
|
2016-09-23 14:28:50 +08:00
|
|
|
|
2017-04-04 07:22:51 +08:00
|
|
|
struct InstallPlanAction
|
2016-11-16 03:56:46 +08:00
|
|
|
{
|
2017-04-13 12:28:49 +08:00
|
|
|
static bool compare_by_name(const InstallPlanAction* left, const InstallPlanAction* right);
|
|
|
|
|
2017-04-04 07:22:51 +08:00
|
|
|
InstallPlanAction();
|
2017-04-14 08:19:26 +08:00
|
|
|
InstallPlanAction(const PackageSpec& spec, const AnyParagraph& any_paragraph, const RequestType& request_type);
|
2017-04-04 07:22:51 +08:00
|
|
|
InstallPlanAction(const InstallPlanAction&) = delete;
|
|
|
|
InstallPlanAction(InstallPlanAction&&) = default;
|
|
|
|
InstallPlanAction& operator=(const InstallPlanAction&) = delete;
|
|
|
|
InstallPlanAction& operator=(InstallPlanAction&&) = default;
|
2017-01-31 09:52:53 +08:00
|
|
|
|
2017-04-13 12:28:49 +08:00
|
|
|
PackageSpec spec;
|
|
|
|
AnyParagraph any_paragraph;
|
2017-04-04 07:22:32 +08:00
|
|
|
InstallPlanType plan_type;
|
2017-04-08 04:03:11 +08:00
|
|
|
RequestType request_type;
|
2016-11-16 03:56:46 +08:00
|
|
|
};
|
|
|
|
|
2017-04-04 07:23:46 +08:00
|
|
|
enum class RemovePlanType
|
2017-01-27 06:25:36 +08:00
|
|
|
{
|
2017-01-31 09:52:53 +08:00
|
|
|
UNKNOWN,
|
2017-01-27 06:25:36 +08:00
|
|
|
NOT_INSTALLED,
|
2017-01-31 05:57:43 +08:00
|
|
|
REMOVE
|
2017-01-27 06:25:36 +08:00
|
|
|
};
|
|
|
|
|
2017-04-04 07:24:18 +08:00
|
|
|
struct RemovePlanAction
|
2017-01-27 09:53:45 +08:00
|
|
|
{
|
2017-04-13 12:37:55 +08:00
|
|
|
static bool compare_by_name(const RemovePlanAction* left, const RemovePlanAction* right);
|
|
|
|
|
2017-04-04 07:24:18 +08:00
|
|
|
RemovePlanAction();
|
2017-04-13 12:37:55 +08:00
|
|
|
RemovePlanAction(const PackageSpec& spec, const RemovePlanType& plan_type, const RequestType& request_type);
|
2017-04-04 07:24:18 +08:00
|
|
|
RemovePlanAction(const RemovePlanAction&) = delete;
|
|
|
|
RemovePlanAction(RemovePlanAction&&) = default;
|
|
|
|
RemovePlanAction& operator=(const RemovePlanAction&) = delete;
|
|
|
|
RemovePlanAction& operator=(RemovePlanAction&&) = default;
|
2017-01-31 09:52:53 +08:00
|
|
|
|
2017-04-13 12:37:55 +08:00
|
|
|
PackageSpec spec;
|
2017-04-04 07:23:46 +08:00
|
|
|
RemovePlanType plan_type;
|
2017-04-04 07:21:46 +08:00
|
|
|
RequestType request_type;
|
2017-01-27 09:53:45 +08:00
|
|
|
};
|
|
|
|
|
2017-04-13 12:28:49 +08:00
|
|
|
std::vector<InstallPlanAction> create_install_plan(const VcpkgPaths& paths, const std::vector<PackageSpec>& specs, const StatusParagraphs& status_db);
|
2017-01-27 09:53:45 +08:00
|
|
|
|
2017-04-13 12:37:55 +08:00
|
|
|
std::vector<RemovePlanAction> create_remove_plan(const std::vector<PackageSpec>& specs, const StatusParagraphs& status_db);
|
2017-01-06 06:14:11 +08:00
|
|
|
}
|