Skip to content

Commit 256df5e

Browse files
committed
rustdoc: incorporate stability index throughout
This commit hooks rustdoc into the stability index infrastructure in two ways: 1. It looks up stability levels via the index, rather than by manual attributes. 2. It adds stability level information throughout rustdoc output, rather than just at the top header. In particular, a stability color (with mouseover text) appears next to essentially every item that appears in rustdoc's HTML output. Along the way, the stability index code has been lightly refactored.
1 parent 5cef124 commit 256df5e

File tree

12 files changed

+282
-172
lines changed

12 files changed

+282
-172
lines changed

src/librustc/lint/builtin.rs

+3-8
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use middle::def::*;
3030
use middle::trans::adt; // for `adt::is_ffi_safe`
3131
use middle::typeck::astconv::ast_ty_to_ty;
3232
use middle::typeck::infer;
33-
use middle::{typeck, ty, def, pat_util};
33+
use middle::{typeck, ty, def, pat_util, stability};
3434
use util::ppaux::{ty_to_str};
3535
use util::nodemap::NodeSet;
3636
use lint::{Context, LintPass, LintArray};
@@ -1426,11 +1426,7 @@ impl LintPass for Stability {
14261426
Some(method) => {
14271427
match method.origin {
14281428
typeck::MethodStatic(def_id) => {
1429-
// If this implements a trait method, get def_id
1430-
// of the method inside trait definition.
1431-
// Otherwise, use the current def_id (which refers
1432-
// to the method inside impl).
1433-
ty::trait_method_of_method(cx.tcx, def_id).unwrap_or(def_id)
1429+
def_id
14341430
}
14351431
typeck::MethodParam(typeck::MethodParam {
14361432
trait_id: trait_id,
@@ -1454,8 +1450,7 @@ impl LintPass for Stability {
14541450
// check anything for crate-local usage.
14551451
if ast_util::is_local(id) { return }
14561452

1457-
let stability = cx.tcx.stability.borrow_mut().lookup(&cx.tcx.sess.cstore, id);
1458-
1453+
let stability = stability::lookup(cx.tcx, id);
14591454
let (lint, label) = match stability {
14601455
// no stability attributes == Unstable
14611456
None => (UNSTABLE, "unmarked"),

src/librustc/metadata/encoder.rs

+11-7
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ use middle::ty::{node_id_to_type, lookup_item_type};
2424
use middle::astencode;
2525
use middle::ty;
2626
use middle::typeck;
27+
use middle::stability;
2728
use middle;
2829
use util::nodemap::{NodeMap, NodeSet};
2930

@@ -328,7 +329,7 @@ fn encode_enum_variant_info(ecx: &EncodeContext,
328329
encode_visibility(ebml_w, variant.node.vis);
329330
encode_attributes(ebml_w, variant.node.attrs.as_slice());
330331

331-
let stab = ecx.tcx.stability.borrow().lookup_local(variant.node.id);
332+
let stab = stability::lookup(ecx.tcx, ast_util::local_def(variant.node.id));
332333
encode_stability(ebml_w, stab);
333334

334335
match variant.node.kind {
@@ -592,7 +593,9 @@ fn encode_info_for_mod(ecx: &EncodeContext,
592593

593594
encode_path(ebml_w, path.clone());
594595
encode_visibility(ebml_w, vis);
595-
encode_stability(ebml_w, ecx.tcx.stability.borrow().lookup_local(id));
596+
597+
let stab = stability::lookup(ecx.tcx, ast_util::local_def(id));
598+
encode_stability(ebml_w, stab);
596599

597600
// Encode the reexports of this module, if this module is public.
598601
if vis == Public {
@@ -722,7 +725,8 @@ fn encode_info_for_struct_ctor(ecx: &EncodeContext,
722725
encode_symbol(ecx, ebml_w, ctor_id);
723726
}
724727

725-
encode_stability(ebml_w, ecx.tcx.stability.borrow().lookup_local(ctor_id));
728+
let stab = stability::lookup(ecx.tcx, ast_util::local_def(ctor_id));
729+
encode_stability(ebml_w, stab);
726730

727731
// indicate that this is a tuple struct ctor, because downstream users will normally want
728732
// the tuple struct definition, but without this there is no way for them to tell that
@@ -768,7 +772,7 @@ fn encode_info_for_method(ecx: &EncodeContext,
768772
encode_method_ty_fields(ecx, ebml_w, m);
769773
encode_parent_item(ebml_w, local_def(parent_id));
770774

771-
let stab = ecx.tcx.stability.borrow().lookup_local(m.def_id.node);
775+
let stab = stability::lookup(ecx.tcx, m.def_id);
772776
encode_stability(ebml_w, stab);
773777

774778
// The type for methods gets encoded twice, which is unfortunate.
@@ -915,10 +919,10 @@ fn encode_info_for_item(ecx: &EncodeContext,
915919
}
916920

917921
debug!("encoding info for item at {}",
918-
ecx.tcx.sess.codemap().span_to_str(item.span));
922+
tcx.sess.codemap().span_to_str(item.span));
919923

920924
let def_id = local_def(item.id);
921-
let stab = tcx.stability.borrow().lookup_local(item.id);
925+
let stab = stability::lookup(tcx, ast_util::local_def(item.id));
922926

923927
match item.node {
924928
ItemStatic(_, m, _) => {
@@ -1206,7 +1210,7 @@ fn encode_info_for_item(ecx: &EncodeContext,
12061210
encode_method_ty_fields(ecx, ebml_w, &*method_ty);
12071211
encode_parent_item(ebml_w, def_id);
12081212

1209-
let stab = tcx.stability.borrow().lookup_local(method_def_id.node);
1213+
let stab = stability::lookup(tcx, method_def_id);
12101214
encode_stability(ebml_w, stab);
12111215

12121216
let elem = ast_map::PathName(method_ty.ident.name);

src/librustc/middle/stability.rs

+18-14
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ use syntax::ast::{Generics, StructDef, Ident};
2020
use syntax::ast_util::is_local;
2121
use syntax::attr::Stability;
2222
use syntax::visit::{FnKind, FkMethod, Visitor};
23-
use metadata::{cstore, csearch};
23+
use middle::ty;
24+
use metadata::csearch;
2425

2526
/// A stability index, giving the stability level for items and methods.
2627
pub struct Index {
@@ -105,21 +106,24 @@ impl Index {
105106
attr::find_stability(krate.attrs.as_slice()));
106107
annotator.index
107108
}
109+
}
108110

109-
/// Lookup the stability for a node, loading external crate
110-
/// metadata as necessary.
111-
pub fn lookup(&mut self, cstore: &cstore::CStore, id: DefId) -> Option<Stability> {
112-
if is_local(id) {
113-
self.lookup_local(id.node)
114-
} else {
115-
let stab = csearch::get_stability(cstore, id);
116-
self.extern_cache.insert(id, stab.clone());
111+
/// Lookup the stability for a node, loading external crate
112+
/// metadata as necessary.
113+
pub fn lookup(tcx: &ty::ctxt, id: DefId) -> Option<Stability> {
114+
// is this definition the implementation of a trait method?
115+
match ty::trait_method_of_method(tcx, id) {
116+
Some(trait_method_id) if trait_method_id != id => {
117+
lookup(tcx, trait_method_id)
118+
}
119+
_ if is_local(id) => {
120+
tcx.stability.borrow().local.find_copy(&id.node)
121+
}
122+
_ => {
123+
let stab = csearch::get_stability(&tcx.sess.cstore, id);
124+
let mut index = tcx.stability.borrow_mut();
125+
(*index).extern_cache.insert(id, stab.clone());
117126
stab
118127
}
119128
}
120-
121-
/// Lookup the stability for a local node without loading any external crates
122-
pub fn lookup_local(&self, id: NodeId) -> Option<Stability> {
123-
self.local.find_copy(&id)
124-
}
125129
}

src/librustdoc/clean/inline.rs

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ use rustc::metadata::csearch;
1818
use rustc::metadata::decoder;
1919
use rustc::middle::def;
2020
use rustc::middle::ty;
21+
use rustc::middle::stability;
2122

2223
use core;
2324
use doctree;
@@ -102,6 +103,7 @@ fn try_inline_def(cx: &core::DocContext,
102103
attrs: load_attrs(tcx, did),
103104
inner: inner,
104105
visibility: Some(ast::Public),
106+
stability: stability::lookup(tcx, did).clean(),
105107
def_id: did,
106108
});
107109
Some(ret)
@@ -317,6 +319,7 @@ fn build_impl(cx: &core::DocContext,
317319
name: None,
318320
attrs: attrs,
319321
visibility: Some(ast::Inherited),
322+
stability: stability::lookup(tcx, did).clean(),
320323
def_id: did,
321324
})
322325
}

0 commit comments

Comments
 (0)