2016-09-22 23:28:50 -07:00
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "package_spec.h"
|
|
|
|
#include "StatusParagraphs.h"
|
|
|
|
#include "vcpkg_paths.h"
|
|
|
|
|
2017-01-05 14:14:11 -08:00
|
|
|
namespace vcpkg::Dependencies
|
2016-09-22 23:28:50 -07:00
|
|
|
{
|
2016-11-15 11:56:46 -08:00
|
|
|
enum class install_plan_type
|
2016-11-15 11:56:46 -08:00
|
|
|
{
|
|
|
|
BUILD_AND_INSTALL,
|
|
|
|
INSTALL,
|
|
|
|
ALREADY_INSTALLED
|
|
|
|
};
|
2016-09-22 23:28:50 -07:00
|
|
|
|
2016-11-15 11:56:46 -08:00
|
|
|
struct install_plan_action
|
|
|
|
{
|
2016-11-15 11:56:46 -08:00
|
|
|
install_plan_type type;
|
2016-11-15 11:56:46 -08:00
|
|
|
std::unique_ptr<BinaryParagraph> bpgh;
|
|
|
|
std::unique_ptr<SourceParagraph> spgh;
|
|
|
|
};
|
2016-11-07 16:38:49 -08:00
|
|
|
|
2016-11-15 11:56:46 -08:00
|
|
|
struct package_spec_with_install_plan
|
|
|
|
{
|
|
|
|
package_spec spec;
|
2016-11-15 11:56:46 -08:00
|
|
|
install_plan_action plan;
|
2016-11-15 11:56:46 -08:00
|
|
|
};
|
|
|
|
|
2017-01-26 14:25:36 -08:00
|
|
|
enum class remove_plan_type
|
|
|
|
{
|
|
|
|
NOT_INSTALLED,
|
|
|
|
DEPENDENCIES_NOT_SATISFIED,
|
2017-01-26 17:53:45 -08:00
|
|
|
REMOVE,
|
|
|
|
REMOVE_USER_REQUESTED
|
2017-01-26 14:25:36 -08:00
|
|
|
};
|
|
|
|
|
2017-01-26 17:53:45 -08:00
|
|
|
struct remove_plan_action
|
|
|
|
{
|
|
|
|
remove_plan_type type;
|
|
|
|
std::unique_ptr<BinaryParagraph> bpgh;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct package_spec_with_remove_plan
|
|
|
|
{
|
|
|
|
package_spec spec;
|
|
|
|
remove_plan_action plan;
|
|
|
|
};
|
2017-01-26 14:25:36 -08:00
|
|
|
|
2016-11-15 11:56:46 -08:00
|
|
|
std::vector<package_spec_with_install_plan> create_install_plan(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
|
2017-01-26 17:53:45 -08:00
|
|
|
|
|
|
|
std::vector<package_spec_with_remove_plan> create_remove_plan(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
|
2017-01-05 14:14:11 -08:00
|
|
|
}
|