aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/triplet.h
blob: f9d1e9483ae5e8faaec7b5492449a9451e4b8f48 (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
#pragma once

#include <string>

namespace vcpkg
{
    struct triplet
    {
        static const triplet X86_WINDOWS;
        static const triplet X64_WINDOWS;
        static const triplet X86_UWP;
        static const triplet X64_UWP;
        static const triplet ARM_UWP;

        std::string value;

        std::string architecture() const;

        std::string system() const;
    };

    bool operator==(const triplet& left, const triplet& right);

    bool operator!=(const triplet& left, const triplet& right);

    std::string to_string(const triplet& spec);

    std::string to_printf_arg(const triplet& spec);

    std::ostream& operator<<(std::ostream& os, const triplet& spec);
}

namespace std
{
    template <>
    struct hash<vcpkg::triplet>
    {
        size_t operator()(const vcpkg::triplet& t) const
        {
            std::hash<std::string> hasher;
            size_t hash = 17;
            hash = hash * 31 + hasher(t.value);
            return hash;
        }
    };

    template <>
    struct equal_to<vcpkg::triplet>
    {
        bool operator()(const vcpkg::triplet& left, const vcpkg::triplet& right) const
        {
            return left == right;
        }
    };
} // namespace std