summaryrefslogtreecommitdiff
path: root/src/hir/item_path.hpp
blob: 091a45c93e81692159ae709ec51921fbd1bd63c5 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
 * MRustC - Rust Compiler
 * - By John Hodge (Mutabah/thePowersGang)
 *
 * hir/item-path.hpp
 * - Printable path to an item in the HIR
 */
#pragma once

namespace HIR {

class ItemPath
{
public:
    const ItemPath* parent = nullptr;
    const ::HIR::TypeRef* ty = nullptr;
    const ::HIR::SimplePath* trait = nullptr;
    const ::HIR::PathParams* trait_params = nullptr;
    const char* name = nullptr;
    const char* crate_name = nullptr;
    const ::HIR::Path*  wrapped = nullptr;

    ItemPath(const char* crate): crate_name(crate) {}
    ItemPath(const ::std::string& crate): crate_name(crate.c_str()) {}
    ItemPath(const RcString& crate): crate_name(crate.c_str()) {}
    ItemPath(const ItemPath& p, const char* n):
        parent(&p),
        name(n)
    {}
    ItemPath(const ::HIR::Path& p):
        wrapped(&p)
    {
    }
    ItemPath(const ::HIR::TypeRef& type):
        ty(&type)
    {}
    ItemPath(const ::HIR::TypeRef& type, const ::HIR::SimplePath& path, const ::HIR::PathParams& params):
        ty(&type),
        trait(&path),
        trait_params(&params)
    {}
    ItemPath(const ::HIR::SimplePath& path):
        trait(&path)
    {}

    const ::HIR::SimplePath* trait_path() const { return trait; }
    const ::HIR::PathParams* trait_args() const { return trait_params; }

    ::HIR::SimplePath get_simple_path() const {
        if( wrapped ) {
            assert(wrapped->m_data.is_Generic());
            return wrapped->m_data.as_Generic().m_path;
        }
        else if( trait && !name ) {
            return trait->clone();
        }
        else if( parent ) {
            assert(name);
            return parent->get_simple_path() + RcString::new_interned(name);
        }
        else {
            assert(!name);
            assert(crate_name);
            return ::HIR::SimplePath(RcString::new_interned(crate_name));
        }
    }
    ::HIR::Path get_full_path() const {
        if( wrapped ) {
            return wrapped->clone();
        }
        assert(parent);
        assert(name);

        // If the parent has a name, or the parent is the crate root.
        if( parent->name || !parent->ty ) {
            return get_simple_path();
        }
        else if( parent->trait ) {
            assert(parent->ty);
            assert(parent->trait_params);
            return ::HIR::Path( parent->ty->clone(), ::HIR::GenericPath(parent->trait->clone(), parent->trait_params->clone()), RcString::new_interned(name) );
        }
        else {
            assert(parent->ty);
            return ::HIR::Path( parent->ty->clone(), RcString::new_interned(name) );
        }
    }
    const char* get_name() const {
        return name ? name : "";
    }

    const ItemPath& get_top_ip() const {
        if( this->parent )
            return this->parent->get_top_ip();
        return *this;
    }
    ItemPath operator+(const ::std::string& name) const {
        return ItemPath(*this, name.c_str());
    }
    ItemPath operator+(const RcString& name) const {
        return ItemPath(*this, name.c_str());
    }

    bool operator==(const ::HIR::SimplePath& sp) const {
        if( sp.m_crate_name != "" )  return false;

        unsigned int i = sp.m_components.size();
        const auto* n = this;
        while( n && i -- )
        {
            if( !n->name )
                return false;
            if( n->name != sp.m_components[i] )
                return false;
            n = n->parent;
        }
        if( i > 0 || n->name )
            return false;
        return true;
    }

    friend ::std::ostream& operator<<(::std::ostream& os, const ItemPath& x) {
        if( x.wrapped ) {
            return os << *x.wrapped;
        }
        if( x.parent ) {
            os << *x.parent;
        }
        if( x.name ) {
            os << "::" << x.name;
        }
        else if( x.ty ) {
            os << "<" << *x.ty;
            if( x.trait ) {
                os << " as " << *x.trait;
                if( x.trait_params ) {
                    os << *x.trait_params;
                }
            }
            os << ">";
        }
        else if( x.trait ) {
            os << "<* as " << *x.trait << ">";
        }
        else if( x.crate_name ) {
            os << "::\"" << x.crate_name << "\"";
        }
        return os;
    }
};

}