2016-11-08 08:06:36 +08:00
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 07:45:56 +08:00
|
|
|
#include "BinaryParagraph.h"
|
2017-04-04 07:29:11 +08:00
|
|
|
#include "VcpkgPaths.h"
|
2017-04-04 07:13:46 +08:00
|
|
|
#include "VersionT.h"
|
2017-04-28 08:56:06 +08:00
|
|
|
#include "filesystem_fs.h"
|
|
|
|
#include "vcpkg_expected.h"
|
|
|
|
#include <map>
|
2016-11-08 08:06:36 +08:00
|
|
|
|
2017-01-06 06:25:50 +08:00
|
|
|
namespace vcpkg::Paragraphs
|
2016-11-08 08:06:36 +08:00
|
|
|
{
|
2017-04-01 18:30:52 +08:00
|
|
|
using ParagraphDataMap = std::unordered_map<std::string, std::string>;
|
|
|
|
|
2017-04-09 11:19:35 +08:00
|
|
|
Expected<ParagraphDataMap> get_single_paragraph(const Files::Filesystem& fs, const fs::path& control_path);
|
|
|
|
Expected<std::vector<ParagraphDataMap>> get_paragraphs(const Files::Filesystem& fs, const fs::path& control_path);
|
2017-04-04 07:26:54 +08:00
|
|
|
Expected<ParagraphDataMap> parse_single_paragraph(const std::string& str);
|
|
|
|
Expected<std::vector<ParagraphDataMap>> parse_paragraphs(const std::string& str);
|
2017-02-28 07:45:56 +08:00
|
|
|
|
2017-06-06 06:58:47 +08:00
|
|
|
ExpectedT<SourceParagraph, ParseControlErrorInfo> try_load_port(const Files::Filesystem& fs,
|
|
|
|
const fs::path& control_path);
|
2017-02-28 07:45:56 +08:00
|
|
|
|
2017-04-04 07:29:11 +08:00
|
|
|
Expected<BinaryParagraph> try_load_cached_package(const VcpkgPaths& paths, const PackageSpec& spec);
|
2017-02-28 07:45:56 +08:00
|
|
|
|
2017-06-08 15:36:17 +08:00
|
|
|
struct LoadResults
|
|
|
|
{
|
|
|
|
std::vector<SourceParagraph> paragraphs;
|
|
|
|
std::vector<ParseControlErrorInfo> errors;
|
|
|
|
};
|
|
|
|
|
|
|
|
LoadResults try_load_all_ports(const Files::Filesystem& fs, const fs::path& ports_dir);
|
|
|
|
|
2017-04-09 11:19:35 +08:00
|
|
|
std::vector<SourceParagraph> load_all_ports(const Files::Filesystem& fs, const fs::path& ports_dir);
|
2017-02-28 08:14:36 +08:00
|
|
|
|
2017-04-29 03:38:13 +08:00
|
|
|
std::map<std::string, VersionT> extract_port_names_and_versions(
|
|
|
|
const std::vector<SourceParagraph>& source_paragraphs);
|
2017-01-06 06:25:50 +08:00
|
|
|
}
|