2016-09-19 11:50:08 +08:00
|
|
|
#include "SourceParagraph.h"
|
|
|
|
#include "vcpkglib_helpers.h"
|
2016-11-04 06:43:09 +08:00
|
|
|
#include "vcpkg_System.h"
|
|
|
|
#include "vcpkg_Maps.h"
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2016-11-03 11:26:52 +08:00
|
|
|
namespace vcpkg
|
|
|
|
{
|
|
|
|
//
|
|
|
|
namespace SourceParagraphRequiredField
|
|
|
|
{
|
|
|
|
static const std::string SOURCE = "Source";
|
|
|
|
static const std::string VERSION = "Version";
|
|
|
|
}
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2016-11-04 05:34:52 +08:00
|
|
|
namespace SourceParagraphOptionalField
|
2016-11-03 11:26:52 +08:00
|
|
|
{
|
|
|
|
static const std::string DESCRIPTION = "Description";
|
|
|
|
static const std::string MAINTAINER = "Maintainer";
|
|
|
|
static const std::string BUILD_DEPENDS = "Build-Depends";
|
|
|
|
}
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2016-11-04 09:52:44 +08:00
|
|
|
static const std::vector<std::string>& get_list_of_valid_fields()
|
2016-11-03 11:26:52 +08:00
|
|
|
{
|
2016-11-04 05:34:52 +08:00
|
|
|
static const std::vector<std::string> valid_fields =
|
2016-11-03 11:26:52 +08:00
|
|
|
{
|
|
|
|
SourceParagraphRequiredField::SOURCE,
|
|
|
|
SourceParagraphRequiredField::VERSION,
|
|
|
|
|
2016-11-04 05:34:52 +08:00
|
|
|
SourceParagraphOptionalField::DESCRIPTION,
|
|
|
|
SourceParagraphOptionalField::MAINTAINER,
|
|
|
|
SourceParagraphOptionalField::BUILD_DEPENDS
|
2016-11-03 11:26:52 +08:00
|
|
|
};
|
|
|
|
|
2016-11-04 05:34:52 +08:00
|
|
|
return valid_fields;
|
2016-11-03 11:26:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SourceParagraph::SourceParagraph() = default;
|
|
|
|
|
|
|
|
SourceParagraph::SourceParagraph(std::unordered_map<std::string, std::string> fields)
|
|
|
|
{
|
2016-11-04 06:53:15 +08:00
|
|
|
this->name = details::remove_required_field(&fields, SourceParagraphRequiredField::SOURCE);
|
|
|
|
this->version = details::remove_required_field(&fields, SourceParagraphRequiredField::VERSION);
|
|
|
|
this->description = details::remove_optional_field(&fields, SourceParagraphOptionalField::DESCRIPTION);
|
|
|
|
this->maintainer = details::remove_optional_field(&fields, SourceParagraphOptionalField::MAINTAINER);
|
2016-11-03 11:26:52 +08:00
|
|
|
|
2016-11-04 06:53:15 +08:00
|
|
|
std::string deps = details::remove_optional_field(&fields, SourceParagraphOptionalField::BUILD_DEPENDS);
|
|
|
|
this->depends = details::parse_depends(deps);
|
2016-11-03 11:26:52 +08:00
|
|
|
|
2016-11-04 06:43:09 +08:00
|
|
|
if (!fields.empty())
|
|
|
|
{
|
|
|
|
const std::vector<std::string> remaining_fields = Maps::extract_keys(fields);
|
|
|
|
const std::vector<std::string>& valid_fields = get_list_of_valid_fields();
|
|
|
|
|
|
|
|
const std::string remaining_fields_as_string = Strings::join(remaining_fields, "\n ");
|
|
|
|
const std::string valid_fields_as_string = Strings::join(valid_fields, "\n ");
|
|
|
|
|
|
|
|
System::println(System::color::error, "Error: There are invalid fields in the Source Paragraph of %s", this->name);
|
|
|
|
System::println("The following fields were not expected:\n\n %s\n\n", remaining_fields_as_string);
|
|
|
|
System::println("This is the list of valid fields (case-sensitive): \n\n %s\n", valid_fields_as_string);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2016-11-03 11:26:52 +08:00
|
|
|
}
|
2016-09-19 11:50:08 +08:00
|
|
|
}
|