aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/BinaryParagraph.cpp
blob: 6d32ff13771453deb729e5a7869a87d0c90fbf6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "BinaryParagraph.h"
#include "vcpkglib_helpers.h"
#include "vcpkg_Checks.h"

using namespace vcpkg::details;

namespace vcpkg
{
    BinaryParagraph::BinaryParagraph() = default;

    BinaryParagraph::BinaryParagraph(const std::unordered_map<std::string, std::string>& fields) :
        name(required_field(fields, "Package")),
        version(required_field(fields, "Version")),
        description(optional_field(fields, "Description")),
        maintainer(optional_field(fields, "Maintainer")),
        target_triplet(triplet::from_canonical_name(required_field(fields, "Architecture")))
    {
        {
            std::string multi_arch = required_field(fields, "Multi-Arch");
            Checks::check_throw(multi_arch == "same", "Multi-Arch must be 'same' but was %s", multi_arch);
        }

        std::string deps = optional_field(fields, "Depends");
        if (!deps.empty())
        {
            this->depends.clear();
            this->depends = parse_depends(deps);
        }
    }

    BinaryParagraph::BinaryParagraph(const SourceParagraph& spgh, const triplet& target_triplet)
    {
        this->name = spgh.name;
        this->version = spgh.version;
        this->description = spgh.description;
        this->maintainer = spgh.maintainer;
        this->depends = spgh.depends;
        this->target_triplet = target_triplet;
    }

    std::string BinaryParagraph::displayname() const
    {
        return Strings::format("%s:%s", this->name, this->target_triplet);
    }

    std::string BinaryParagraph::dir() const
    {
        return Strings::format("%s_%s", this->name, this->target_triplet);
    }

    std::string BinaryParagraph::fullstem() const
    {
        return Strings::format("%s_%s_%s", this->name, this->version, this->target_triplet);
    }

    std::ostream& operator<<(std::ostream& os, const BinaryParagraph& p)
    {
        os << "Package: " << p.name << "\n";
        os << "Version: " << p.version << "\n";
        if (!p.depends.empty())
        {
            os << "Depends: " << p.depends.front();

            auto b = p.depends.begin() + 1;
            auto e = p.depends.end();
            for (; b != e; ++b)
            {
                os << ", " << *b;
            }

            os << "\n";
        }
        os << "Architecture: " << p.target_triplet << "\n";
        os << "Multi-Arch: same\n";
        if (!p.maintainer.empty())
            os << "Maintainer: " << p.maintainer << "\n";
        if (!p.description.empty())
            os << "Description: " << p.description << "\n";
        return os;
    }
}