vcpkg/toolsrc/include/Paragraphs.h

22 lines
766 B
C
Raw Normal View History

2016-11-08 08:06:36 +08:00
#pragma once
2016-11-30 10:08:53 +08:00
#include "filesystem_fs.h"
#include <map>
#include "expected.h"
#include "BinaryParagraph.h"
#include "vcpkg_paths.h"
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
{
std::vector<std::unordered_map<std::string, std::string>> get_paragraphs(const fs::path& control_path);
std::vector<std::unordered_map<std::string, std::string>> parse_paragraphs(const std::string& str);
expected<SourceParagraph> try_load_port(const fs::path& control_path);
expected<BinaryParagraph> try_load_cached_package(const vcpkg_paths& paths, const package_spec& spec);
std::vector<SourceParagraph> load_all_ports(const fs::path& ports_dir);
std::map<std::string, std::string> extract_port_names_and_versions(const std::vector<SourceParagraph>& source_paragraphs);
2017-01-06 06:25:50 +08:00
}