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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
use std::{fmt, sync::Arc};
use crate::{Ident, Namespace};
use sway_types::{span::Span, Spanned};
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct CallPathTree {
pub call_path: CallPath,
pub children: Vec<CallPathTree>,
}
#[derive(Debug, Clone, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct CallPath<T = Ident> {
pub prefixes: Vec<Ident>,
pub suffix: T,
pub(crate) is_absolute: bool,
}
impl std::convert::From<Ident> for CallPath {
fn from(other: Ident) -> Self {
CallPath {
prefixes: vec![],
suffix: other,
is_absolute: false,
}
}
}
impl<T> fmt::Display for CallPath<T>
where
T: fmt::Display,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let mut buf = String::new();
for prefix in self.prefixes.iter() {
buf.push_str(prefix.as_str());
buf.push_str("::");
}
buf.push_str(&self.suffix.to_string());
write!(f, "{buf}")
}
}
impl<T: Spanned> Spanned for CallPath<T> {
fn span(&self) -> Span {
if self.prefixes.is_empty() {
self.suffix.span()
} else {
let mut prefixes_spans = self
.prefixes
.iter()
.map(|x| x.span())
.filter(|x| {
Arc::ptr_eq(x.src(), self.suffix.span().src())
&& x.path() == self.suffix.span().path()
})
.peekable();
if prefixes_spans.peek().is_some() {
Span::join(Span::join_all(prefixes_spans), self.suffix.span())
} else {
self.suffix.span()
}
}
}
}
impl CallPath {
pub fn rshift(&self) -> CallPath {
if self.prefixes.is_empty() {
self.clone()
} else {
CallPath {
prefixes: self.prefixes[0..self.prefixes.len() - 1].to_vec(),
suffix: self.prefixes.last().unwrap().clone(),
is_absolute: self.is_absolute,
}
}
}
pub fn as_vec_string(&self) -> Vec<String> {
self.prefixes
.iter()
.map(|p| p.to_string())
.chain(std::iter::once(self.suffix.to_string()))
.collect::<Vec<_>>()
}
pub fn to_fullpath(&self, namespace: &mut Namespace) -> CallPath {
if self.is_absolute {
return self.clone();
}
if self.prefixes.is_empty() {
let mut synonym_prefixes = vec![];
let mut submodule_name_in_synonym_prefixes = false;
if let Some(use_synonym) = namespace.use_synonyms.get(&self.suffix) {
synonym_prefixes = use_synonym.0.clone();
let submodule = namespace.submodule(&[use_synonym.0[0].clone()]);
if let Some(submodule) = submodule {
if let Some(submodule_name) = submodule.name.clone() {
submodule_name_in_synonym_prefixes =
submodule_name.as_str() == synonym_prefixes[0].as_str();
}
}
}
let mut prefixes: Vec<Ident> = vec![];
if synonym_prefixes.is_empty() || !submodule_name_in_synonym_prefixes {
if let Some(pkg_name) = &namespace.root().module.name {
prefixes.push(pkg_name.clone());
}
for mod_path in namespace.mod_path() {
prefixes.push(mod_path.clone());
}
}
prefixes.extend(synonym_prefixes);
CallPath {
prefixes,
suffix: self.suffix.clone(),
is_absolute: true,
}
} else if let Some(m) = namespace.submodule(&[self.prefixes[0].clone()]) {
if m.is_external {
self.clone()
} else {
let mut prefixes: Vec<Ident> = vec![];
if let Some(pkg_name) = &namespace.root().module.name {
prefixes.push(pkg_name.clone());
}
for mod_path in namespace.mod_path() {
prefixes.push(mod_path.clone());
}
prefixes.extend(self.prefixes.clone());
CallPath {
prefixes,
suffix: self.suffix.clone(),
is_absolute: true,
}
}
} else {
self.clone()
}
}
}