vcpkg/toolsrc/include/Paragraphs.h

27 lines
990 B
C
Raw Normal View History

2016-11-07 16:06:36 -08:00
#pragma once
2016-11-29 18:08:53 -08:00
#include "filesystem_fs.h"
#include <map>
2017-03-31 16:33:10 -07:00
#include "vcpkg_expected.h"
#include "BinaryParagraph.h"
2017-04-03 16:29:11 -07:00
#include "VcpkgPaths.h"
2017-04-03 16:13:46 -07:00
#include "VersionT.h"
2016-11-07 16:06:36 -08:00
2017-01-05 14:25:50 -08:00
namespace vcpkg::Paragraphs
2016-11-07 16:06:36 -08:00
{
using ParagraphDataMap = std::unordered_map<std::string, std::string>;
2017-04-03 16:26:54 -07:00
Expected<ParagraphDataMap> get_single_paragraph(const fs::path& control_path);
Expected<std::vector<ParagraphDataMap>> get_paragraphs(const fs::path& control_path);
Expected<ParagraphDataMap> parse_single_paragraph(const std::string& str);
Expected<std::vector<ParagraphDataMap>> parse_paragraphs(const std::string& str);
2017-04-03 16:26:54 -07:00
Expected<SourceParagraph> try_load_port(const fs::path& control_path);
2017-04-03 16:29:11 -07:00
Expected<BinaryParagraph> try_load_cached_package(const VcpkgPaths& paths, const PackageSpec& spec);
std::vector<SourceParagraph> load_all_ports(const fs::path& ports_dir);
2017-04-03 16:13:46 -07:00
std::map<std::string, VersionT> extract_port_names_and_versions(const std::vector<SourceParagraph>& source_paragraphs);
2017-01-05 14:25:50 -08:00
}