aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/BinaryParagraph.cpp
blob: 48d04f6867dbee243d8b369b3381b69368b3a10d (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
82
#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) :
        version(required_field(fields, "Version")),
        description(optional_field(fields, "Description")),
        maintainer(optional_field(fields, "Maintainer"))
    {
        const std::string name = required_field(fields, "Package");
        const triplet target_triplet = triplet::from_canonical_name(required_field(fields, "Architecture"));
        this->spec = package_spec::from_name_and_triplet(name, target_triplet).get_or_throw();

        {
            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->spec = package_spec::from_name_and_triplet(spgh.name, target_triplet).get_or_throw();
        this->version = spgh.version;
        this->description = spgh.description;
        this->maintainer = spgh.maintainer;
        this->depends = spgh.depends;
    }

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

    std::string BinaryParagraph::dir() const
    {
        return this->spec.dir();
    }

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

    std::ostream& operator<<(std::ostream& os, const BinaryParagraph& p)
    {
        os << "Package: " << p.spec.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.spec.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;
    }
}