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
use util::nodemap::{NodeMap, DefIdMap};
use syntax::codemap::Span;
use syntax::{attr, visit};
use syntax::ast::{Attribute, Block, Crate, DefId, FnDecl, NodeId, Variant};
use syntax::ast::{Item, Required, Provided, TraitMethod, TypeMethod, Method};
use syntax::ast::{Generics, StructDef, Ident};
use syntax::ast_util::is_local;
use syntax::attr::Stability;
use syntax::visit::{FnKind, FkMethod, Visitor};
use metadata::{cstore, csearch};
pub struct Index {local: NodeMap<Stability>,extern_cache: DefIdMap<Option<Stability>>
}struct Annotator {
index: Index
}
impl Annotator {fn annotate(&mut self, id: NodeId, attrs: &[Attribute],
parent: Option<Stability>) -> Option<Stability> {
match attr::find_stability(attrs).or(parent) {
Some(stab) => {
self.index.local.insert(id, stab.clone());
Some(stab)
}
None => None
}
}
}
impl Visitor<Option<Stability>> for Annotator {
fn visit_item(&mut self, i: &Item, parent: Option<Stability>) {
let stab = self.annotate(i.id, i.attrs.as_slice(), parent);
visit::walk_item(self, i, stab)
}
fn visit_fn(&mut self, fk: &FnKind, fd: &FnDecl, b: &Block,
s: Span, _: NodeId, parent: Option<Stability>) {
let stab = match *fk {
FkMethod(_, _, meth) =>
self.annotate(meth.id, meth.attrs.as_slice(), parent),
_ => parent
};
visit::walk_fn(self, fk, fd, b, s, stab)
}
fn visit_trait_method(&mut self, t: &TraitMethod, parent: Option<Stability>) {
let stab = match *t {
Required(TypeMethod {attrs: ref attrs, id: id, ..}) =>
self.annotate(id, attrs.as_slice(), parent),Provided(method) => match *method {
Method {attrs: ref attrs, id: id, ..} =>
self.annotate(id, attrs.as_slice(), parent)
}
};
visit::walk_trait_method(self, t, stab)
}
fn visit_variant(&mut self, v: &Variant, g: &Generics, parent: Option<Stability>) {
let stab = self.annotate(v.node.id, v.node.attrs.as_slice(), parent);
visit::walk_variant(self, v, g, stab)
}
fn visit_struct_def(&mut self, s: &StructDef, _: Ident, _: &Generics,
_: NodeId, parent: Option<Stability>) {
s.ctor_id.map(|id| self.annotate(id, &[], parent.clone()));
visit::walk_struct_def(self, s, parent)
}
}
impl Index {
pub fn build(krate: &Crate) -> Index {
let mut annotator = Annotator {
index: Index {
local: NodeMap::new(),
extern_cache: DefIdMap::new()
}
};
visit::walk_crate(&mut annotator, krate,
attr::find_stability(krate.attrs.as_slice()));
annotator.index
}
pub fn lookup(&mut self, cstore: &cstore::CStore, id: DefId) -> Option<Stability> {
if is_local(id) {
self.lookup_local(id.node)
} else {
let stab = csearch::get_stability(cstore, id);
self.extern_cache.insert(id, stab.clone());
stab
}
}
pub fn lookup_local(&self, id: NodeId) -> Option<Stability> {
self.local.find_copy(&id)
}
}