aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/Paragraphs.h
blob: 79b66a67f7684cc6e6e6ad466310544de59010a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "filesystem_fs.h"
#include <map>
#include "expected.h"
#include "BinaryParagraph.h"
#include "vcpkg_paths.h"

namespace vcpkg::Paragraphs
{
    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);
}