2013-09-12 21:10:51 -04:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
//! This module contains the "cleaned" pieces of the AST, and the functions
|
|
|
|
//! that clean them.
|
|
|
|
|
|
|
|
use syntax;
|
|
|
|
use syntax::ast;
|
2013-09-24 13:55:22 -07:00
|
|
|
use syntax::ast_util;
|
2013-09-26 12:53:06 -07:00
|
|
|
use syntax::attr;
|
2014-05-22 22:00:18 -07:00
|
|
|
use syntax::attr::{AttributeMethods, AttrMetaMethods};
|
2013-11-01 18:06:31 -07:00
|
|
|
use syntax::codemap::Pos;
|
2014-01-08 10:35:15 -08:00
|
|
|
use syntax::parse::token::InternedString;
|
|
|
|
use syntax::parse::token;
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2014-05-02 16:15:12 -07:00
|
|
|
use rustc::back::link;
|
|
|
|
use rustc::driver::driver;
|
2013-10-02 15:39:32 -07:00
|
|
|
use rustc::metadata::cstore;
|
|
|
|
use rustc::metadata::csearch;
|
|
|
|
use rustc::metadata::decoder;
|
2014-05-14 15:31:30 -04:00
|
|
|
use rustc::middle::def;
|
2014-05-13 11:35:42 -04:00
|
|
|
use rustc::middle::subst;
|
2014-05-31 18:53:13 -04:00
|
|
|
use rustc::middle::subst::VecPerParamSpace;
|
2014-05-03 02:08:58 -07:00
|
|
|
use rustc::middle::ty;
|
2014-06-26 11:37:39 -07:00
|
|
|
use rustc::middle::stability;
|
2013-10-02 15:39:32 -07:00
|
|
|
|
2014-05-23 00:42:33 -07:00
|
|
|
use std::rc::Rc;
|
2014-05-28 19:53:37 -07:00
|
|
|
use std::u32;
|
2014-06-11 19:33:52 -07:00
|
|
|
use std::gc::{Gc, GC};
|
2013-10-02 15:39:32 -07:00
|
|
|
|
2014-03-05 16:36:01 +02:00
|
|
|
use core;
|
2013-08-15 16:28:54 -04:00
|
|
|
use doctree;
|
|
|
|
use visit_ast;
|
|
|
|
|
2014-04-26 22:45:50 +09:00
|
|
|
/// A stable identifier to the particular version of JSON output.
|
|
|
|
/// Increment this when the `Crate` and related structures change.
|
2014-06-21 05:03:33 -07:00
|
|
|
pub static SCHEMA_VERSION: &'static str = "0.8.3";
|
2014-04-26 22:45:50 +09:00
|
|
|
|
2014-05-24 11:56:38 -07:00
|
|
|
mod inline;
|
|
|
|
|
2014-06-26 11:37:39 -07:00
|
|
|
// load the current DocContext from TLD
|
|
|
|
fn get_cx() -> Gc<core::DocContext> {
|
|
|
|
*super::ctxtkey.get().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
// extract the stability index for a node from TLD, if possible
|
|
|
|
fn get_stability(def_id: ast::DefId) -> Option<Stability> {
|
|
|
|
get_cx().tcx_opt().and_then(|tcx| stability::lookup(tcx, def_id))
|
|
|
|
.map(|stab| stab.clean())
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
pub trait Clean<T> {
|
|
|
|
fn clean(&self) -> T;
|
|
|
|
}
|
|
|
|
|
2014-02-28 17:46:09 -08:00
|
|
|
impl<T: Clean<U>, U> Clean<Vec<U>> for Vec<T> {
|
|
|
|
fn clean(&self) -> Vec<U> {
|
|
|
|
self.iter().map(|x| x.clean()).collect()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-31 18:53:13 -04:00
|
|
|
impl<T: Clean<U>, U> Clean<VecPerParamSpace<U>> for VecPerParamSpace<T> {
|
|
|
|
fn clean(&self) -> VecPerParamSpace<U> {
|
|
|
|
self.map(|x| x.clean())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-11 12:14:38 -07:00
|
|
|
impl<T: 'static + Clean<U>, U> Clean<U> for Gc<T> {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> U {
|
|
|
|
(**self).clean()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-23 00:42:33 -07:00
|
|
|
impl<T: Clean<U>, U> Clean<U> for Rc<T> {
|
|
|
|
fn clean(&self) -> U {
|
|
|
|
(**self).clean()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
impl<T: Clean<U>, U> Clean<Option<U>> for Option<T> {
|
|
|
|
fn clean(&self) -> Option<U> {
|
|
|
|
match self {
|
|
|
|
&None => None,
|
|
|
|
&Some(ref v) => Some(v.clean())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-20 01:52:37 +11:00
|
|
|
impl<T: Clean<U>, U> Clean<Vec<U>> for syntax::owned_slice::OwnedSlice<T> {
|
2014-02-28 17:46:09 -08:00
|
|
|
fn clean(&self) -> Vec<U> {
|
2014-03-20 01:52:37 +11:00
|
|
|
self.iter().map(|x| x.clean()).collect()
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Crate {
|
2014-05-22 16:57:53 -07:00
|
|
|
pub name: String,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub module: Option<Item>,
|
|
|
|
pub externs: Vec<(ast::CrateNum, ExternalCrate)>,
|
2014-05-28 19:53:37 -07:00
|
|
|
pub primitives: Vec<Primitive>,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-07 18:46:16 -08:00
|
|
|
impl<'a> Clean<Crate> for visit_ast::RustdocVisitor<'a> {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> Crate {
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
2013-10-02 15:39:32 -07:00
|
|
|
|
2014-03-05 15:28:08 -08:00
|
|
|
let mut externs = Vec::new();
|
2014-03-05 16:36:01 +02:00
|
|
|
cx.sess().cstore.iter_crate_data(|n, meta| {
|
2014-02-16 22:31:05 -08:00
|
|
|
externs.push((n, meta.clean()));
|
2013-11-21 15:42:55 -08:00
|
|
|
});
|
2014-06-03 17:55:30 -07:00
|
|
|
externs.sort_by(|&(a, _), &(b, _)| a.cmp(&b));
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2014-05-28 19:53:37 -07:00
|
|
|
// Figure out the name of this crate
|
2014-05-02 16:15:12 -07:00
|
|
|
let input = driver::FileInput(cx.src.clone());
|
2014-07-05 12:37:43 -07:00
|
|
|
let name = link::find_crate_name(None, self.attrs.as_slice(), &input);
|
2014-05-28 19:53:37 -07:00
|
|
|
|
2014-05-29 13:50:47 -07:00
|
|
|
// Clean the crate, translating the entire libsyntax AST to one that is
|
2014-05-28 19:53:37 -07:00
|
|
|
// understood by rustdoc.
|
|
|
|
let mut module = self.module.clean();
|
|
|
|
|
|
|
|
// Collect all inner modules which are tagged as implementations of
|
|
|
|
// primitives.
|
2014-05-29 13:50:47 -07:00
|
|
|
//
|
|
|
|
// Note that this loop only searches the top-level items of the crate,
|
|
|
|
// and this is intentional. If we were to search the entire crate for an
|
|
|
|
// item tagged with `#[doc(primitive)]` then we we would also have to
|
|
|
|
// search the entirety of external modules for items tagged
|
|
|
|
// `#[doc(primitive)]`, which is a pretty inefficient process (decoding
|
|
|
|
// all that metadata unconditionally).
|
|
|
|
//
|
|
|
|
// In order to keep the metadata load under control, the
|
|
|
|
// `#[doc(primitive)]` feature is explicitly designed to only allow the
|
|
|
|
// primitive tags to show up as the top level items in a crate.
|
|
|
|
//
|
|
|
|
// Also note that this does not attempt to deal with modules tagged
|
|
|
|
// duplicately for the same primitive. This is handled later on when
|
|
|
|
// rendering by delegating everything to a hash map.
|
2014-05-28 19:53:37 -07:00
|
|
|
let mut primitives = Vec::new();
|
|
|
|
{
|
|
|
|
let m = match module.inner {
|
|
|
|
ModuleItem(ref mut m) => m,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
let mut tmp = Vec::new();
|
2014-06-03 17:55:30 -07:00
|
|
|
for child in m.items.mut_iter() {
|
|
|
|
let inner = match child.inner {
|
|
|
|
ModuleItem(ref mut m) => m,
|
2014-05-28 19:53:37 -07:00
|
|
|
_ => continue,
|
2014-06-03 17:55:30 -07:00
|
|
|
};
|
2014-05-28 19:53:37 -07:00
|
|
|
let prim = match Primitive::find(child.attrs.as_slice()) {
|
|
|
|
Some(prim) => prim,
|
|
|
|
None => continue,
|
|
|
|
};
|
|
|
|
primitives.push(prim);
|
2014-06-03 17:55:30 -07:00
|
|
|
let mut i = Item {
|
2014-05-28 19:53:37 -07:00
|
|
|
source: Span::empty(),
|
|
|
|
name: Some(prim.to_url_str().to_string()),
|
2014-06-03 17:55:30 -07:00
|
|
|
attrs: Vec::new(),
|
|
|
|
visibility: None,
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: None,
|
2014-05-28 19:53:37 -07:00
|
|
|
def_id: ast_util::local_def(prim.to_node_id()),
|
|
|
|
inner: PrimitiveItem(prim),
|
2014-06-03 17:55:30 -07:00
|
|
|
};
|
|
|
|
// Push one copy to get indexed for the whole crate, and push a
|
|
|
|
// another copy in the proper location which will actually get
|
|
|
|
// documented. The first copy will also serve as a redirect to
|
|
|
|
// the other copy.
|
|
|
|
tmp.push(i.clone());
|
|
|
|
i.visibility = Some(ast::Public);
|
|
|
|
i.attrs = child.attrs.clone();
|
|
|
|
inner.items.push(i);
|
|
|
|
|
2014-05-28 19:53:37 -07:00
|
|
|
}
|
|
|
|
m.items.extend(tmp.move_iter());
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
Crate {
|
2014-06-06 13:21:18 -07:00
|
|
|
name: name.to_string(),
|
2014-05-28 19:53:37 -07:00
|
|
|
module: Some(module),
|
2013-10-02 15:39:32 -07:00
|
|
|
externs: externs,
|
2014-05-28 19:53:37 -07:00
|
|
|
primitives: primitives,
|
2013-10-02 15:39:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct ExternalCrate {
|
2014-05-22 16:57:53 -07:00
|
|
|
pub name: String,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub attrs: Vec<Attribute>,
|
2014-05-28 19:53:37 -07:00
|
|
|
pub primitives: Vec<Primitive>,
|
2013-10-02 15:39:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<ExternalCrate> for cstore::crate_metadata {
|
|
|
|
fn clean(&self) -> ExternalCrate {
|
2014-05-28 19:53:37 -07:00
|
|
|
let mut primitives = Vec::new();
|
2014-06-26 11:37:39 -07:00
|
|
|
get_cx().tcx_opt().map(|tcx| {
|
|
|
|
csearch::each_top_level_item_of_crate(&tcx.sess.cstore,
|
|
|
|
self.cnum,
|
|
|
|
|def, _, _| {
|
|
|
|
let did = match def {
|
|
|
|
decoder::DlDef(def::DefMod(did)) => did,
|
|
|
|
_ => return
|
|
|
|
};
|
|
|
|
let attrs = inline::load_attrs(tcx, did);
|
|
|
|
Primitive::find(attrs.as_slice()).map(|prim| primitives.push(prim));
|
|
|
|
})
|
|
|
|
});
|
2013-10-02 15:39:32 -07:00
|
|
|
ExternalCrate {
|
2014-05-25 03:17:19 -07:00
|
|
|
name: self.name.to_string(),
|
2014-05-28 19:53:37 -07:00
|
|
|
attrs: decoder::get_crate_attributes(self.data()).clean(),
|
|
|
|
primitives: primitives,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Anything with a source location and set of attributes and, optionally, a
|
|
|
|
/// name. That is, anything that can be documented. This doesn't correspond
|
|
|
|
/// directly to the AST's concept of an item; it's a strict superset.
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Item {
|
|
|
|
/// Stringified span
|
2014-03-28 10:27:24 -07:00
|
|
|
pub source: Span,
|
2013-08-15 16:28:54 -04:00
|
|
|
/// Not everything has a name. E.g., impls
|
2014-05-22 16:57:53 -07:00
|
|
|
pub name: Option<String>,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub attrs: Vec<Attribute> ,
|
|
|
|
pub inner: ItemEnum,
|
|
|
|
pub visibility: Option<Visibility>,
|
2014-05-03 02:08:58 -07:00
|
|
|
pub def_id: ast::DefId,
|
2014-06-26 11:37:39 -07:00
|
|
|
pub stability: Option<Stability>,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2013-09-18 22:18:38 -07:00
|
|
|
impl Item {
|
|
|
|
/// Finds the `doc` attribute as a List and returns the list of attributes
|
|
|
|
/// nested inside.
|
|
|
|
pub fn doc_list<'a>(&'a self) -> Option<&'a [Attribute]> {
|
|
|
|
for attr in self.attrs.iter() {
|
|
|
|
match *attr {
|
2014-05-12 13:44:59 -07:00
|
|
|
List(ref x, ref list) if "doc" == x.as_slice() => {
|
|
|
|
return Some(list.as_slice());
|
|
|
|
}
|
2013-09-18 22:18:38 -07:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Finds the `doc` attribute as a NameValue and returns the corresponding
|
|
|
|
/// value found.
|
|
|
|
pub fn doc_value<'a>(&'a self) -> Option<&'a str> {
|
|
|
|
for attr in self.attrs.iter() {
|
|
|
|
match *attr {
|
2014-05-12 13:44:59 -07:00
|
|
|
NameValue(ref x, ref v) if "doc" == x.as_slice() => {
|
|
|
|
return Some(v.as_slice());
|
|
|
|
}
|
2013-09-18 22:18:38 -07:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2014-04-29 03:59:48 +09:00
|
|
|
pub fn is_hidden_from_doc(&self) -> bool {
|
|
|
|
match self.doc_list() {
|
|
|
|
Some(ref l) => {
|
|
|
|
for innerattr in l.iter() {
|
|
|
|
match *innerattr {
|
2014-05-12 13:44:59 -07:00
|
|
|
Word(ref s) if "hidden" == s.as_slice() => {
|
|
|
|
return true
|
|
|
|
}
|
2014-04-29 03:59:48 +09:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-18 22:18:38 -07:00
|
|
|
pub fn is_mod(&self) -> bool {
|
2013-11-28 12:22:53 -08:00
|
|
|
match self.inner { ModuleItem(..) => true, _ => false }
|
2013-09-18 22:18:38 -07:00
|
|
|
}
|
|
|
|
pub fn is_trait(&self) -> bool {
|
2013-11-28 12:22:53 -08:00
|
|
|
match self.inner { TraitItem(..) => true, _ => false }
|
2013-09-18 22:18:38 -07:00
|
|
|
}
|
|
|
|
pub fn is_struct(&self) -> bool {
|
2013-11-28 12:22:53 -08:00
|
|
|
match self.inner { StructItem(..) => true, _ => false }
|
2013-09-18 22:18:38 -07:00
|
|
|
}
|
|
|
|
pub fn is_enum(&self) -> bool {
|
2013-11-28 12:22:53 -08:00
|
|
|
match self.inner { EnumItem(..) => true, _ => false }
|
2013-09-18 22:18:38 -07:00
|
|
|
}
|
|
|
|
pub fn is_fn(&self) -> bool {
|
2013-11-28 12:22:53 -08:00
|
|
|
match self.inner { FunctionItem(..) => true, _ => false }
|
2013-09-18 22:18:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum ItemEnum {
|
|
|
|
StructItem(Struct),
|
|
|
|
EnumItem(Enum),
|
|
|
|
FunctionItem(Function),
|
|
|
|
ModuleItem(Module),
|
|
|
|
TypedefItem(Typedef),
|
|
|
|
StaticItem(Static),
|
|
|
|
TraitItem(Trait),
|
|
|
|
ImplItem(Impl),
|
2014-03-16 19:12:00 -04:00
|
|
|
/// `use` and `extern crate`
|
2013-08-15 16:28:54 -04:00
|
|
|
ViewItemItem(ViewItem),
|
2014-03-16 19:12:00 -04:00
|
|
|
/// A method signature only. Used for required methods in traits (ie,
|
|
|
|
/// non-default-methods).
|
2013-08-15 16:28:54 -04:00
|
|
|
TyMethodItem(TyMethod),
|
2014-03-16 19:12:00 -04:00
|
|
|
/// A method with a body.
|
2013-08-15 16:28:54 -04:00
|
|
|
MethodItem(Method),
|
|
|
|
StructFieldItem(StructField),
|
|
|
|
VariantItem(Variant),
|
2014-03-16 19:12:00 -04:00
|
|
|
/// `fn`s from an extern block
|
2013-09-26 11:57:25 -07:00
|
|
|
ForeignFunctionItem(Function),
|
2014-03-16 19:12:00 -04:00
|
|
|
/// `static`s from an extern block
|
2013-09-26 11:57:25 -07:00
|
|
|
ForeignStaticItem(Static),
|
2014-02-16 21:40:26 -08:00
|
|
|
MacroItem(Macro),
|
2014-05-28 19:53:37 -07:00
|
|
|
PrimitiveItem(Primitive),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Module {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub items: Vec<Item>,
|
|
|
|
pub is_crate: bool,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Module {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
let name = if self.name.is_some() {
|
|
|
|
self.name.unwrap().clean()
|
|
|
|
} else {
|
2014-05-25 03:17:19 -07:00
|
|
|
"".to_string()
|
2013-08-15 16:28:54 -04:00
|
|
|
};
|
2014-03-05 15:28:08 -08:00
|
|
|
let mut foreigns = Vec::new();
|
2014-02-28 17:46:09 -08:00
|
|
|
for subforeigns in self.foreigns.clean().move_iter() {
|
|
|
|
for foreign in subforeigns.move_iter() {
|
|
|
|
foreigns.push(foreign)
|
|
|
|
}
|
|
|
|
}
|
2014-03-05 15:28:08 -08:00
|
|
|
let items: Vec<Vec<Item> > = vec!(
|
2014-02-28 17:46:09 -08:00
|
|
|
self.structs.clean().move_iter().collect(),
|
|
|
|
self.enums.clean().move_iter().collect(),
|
|
|
|
self.fns.clean().move_iter().collect(),
|
|
|
|
foreigns,
|
|
|
|
self.mods.clean().move_iter().collect(),
|
|
|
|
self.typedefs.clean().move_iter().collect(),
|
|
|
|
self.statics.clean().move_iter().collect(),
|
|
|
|
self.traits.clean().move_iter().collect(),
|
|
|
|
self.impls.clean().move_iter().collect(),
|
2014-05-22 22:00:18 -07:00
|
|
|
self.view_items.clean().move_iter()
|
|
|
|
.flat_map(|s| s.move_iter()).collect(),
|
2014-02-28 17:46:09 -08:00
|
|
|
self.macros.clean().move_iter().collect()
|
2014-03-05 15:28:08 -08:00
|
|
|
);
|
2014-04-27 05:08:36 +09:00
|
|
|
|
|
|
|
// determine if we should display the inner contents or
|
|
|
|
// the outer `mod` item for the source code.
|
|
|
|
let where = {
|
2014-04-28 20:36:08 -07:00
|
|
|
let ctxt = super::ctxtkey.get().unwrap();
|
2014-04-27 05:08:36 +09:00
|
|
|
let cm = ctxt.sess().codemap();
|
|
|
|
let outer = cm.lookup_char_pos(self.where_outer.lo);
|
|
|
|
let inner = cm.lookup_char_pos(self.where_inner.lo);
|
|
|
|
if outer.file.start_pos == inner.file.start_pos {
|
|
|
|
// mod foo { ... }
|
|
|
|
self.where_outer
|
|
|
|
} else {
|
|
|
|
// mod foo; (and a separate FileMap for the contents)
|
|
|
|
self.where_inner
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
Item {
|
|
|
|
name: Some(name),
|
|
|
|
attrs: self.attrs.clean(),
|
2014-04-27 05:08:36 +09:00
|
|
|
source: where.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: ModuleItem(Module {
|
2014-02-28 22:33:45 +01:00
|
|
|
is_crate: self.is_crate,
|
2014-03-05 15:28:08 -08:00
|
|
|
items: items.iter()
|
|
|
|
.flat_map(|x| x.iter().map(|x| (*x).clone()))
|
|
|
|
.collect(),
|
2013-08-15 16:28:54 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum Attribute {
|
2014-05-22 16:57:53 -07:00
|
|
|
Word(String),
|
|
|
|
List(String, Vec<Attribute> ),
|
|
|
|
NameValue(String, String)
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Attribute> for ast::MetaItem {
|
|
|
|
fn clean(&self) -> Attribute {
|
|
|
|
match self.node {
|
2014-05-25 03:17:19 -07:00
|
|
|
ast::MetaWord(ref s) => Word(s.get().to_string()),
|
2014-01-08 10:35:15 -08:00
|
|
|
ast::MetaList(ref s, ref l) => {
|
2014-05-25 03:17:19 -07:00
|
|
|
List(s.get().to_string(), l.clean().move_iter().collect())
|
2014-01-08 10:35:15 -08:00
|
|
|
}
|
|
|
|
ast::MetaNameValue(ref s, ref v) => {
|
2014-06-21 03:39:03 -07:00
|
|
|
NameValue(s.get().to_string(), lit_to_string(v))
|
2014-01-08 10:35:15 -08:00
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Attribute> for ast::Attribute {
|
|
|
|
fn clean(&self) -> Attribute {
|
2013-09-18 22:18:38 -07:00
|
|
|
self.desugar_doc().node.value.clean()
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 12:53:06 -07:00
|
|
|
// This is a rough approximation that gets us what we want.
|
2014-05-22 22:29:13 -07:00
|
|
|
impl attr::AttrMetaMethods for Attribute {
|
2014-01-08 10:35:15 -08:00
|
|
|
fn name(&self) -> InternedString {
|
2014-05-22 22:29:13 -07:00
|
|
|
match *self {
|
2014-01-08 10:35:15 -08:00
|
|
|
Word(ref n) | List(ref n, _) | NameValue(ref n, _) => {
|
2014-05-12 13:44:59 -07:00
|
|
|
token::intern_and_get_ident(n.as_slice())
|
2014-01-08 10:35:15 -08:00
|
|
|
}
|
2013-09-26 12:53:06 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-10 14:02:36 -08:00
|
|
|
fn value_str(&self) -> Option<InternedString> {
|
2014-05-22 22:29:13 -07:00
|
|
|
match *self {
|
2014-05-12 13:44:59 -07:00
|
|
|
NameValue(_, ref v) => {
|
|
|
|
Some(token::intern_and_get_ident(v.as_slice()))
|
|
|
|
}
|
2013-09-26 12:53:06 -07:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2014-05-16 10:15:33 -07:00
|
|
|
fn meta_item_list<'a>(&'a self) -> Option<&'a [Gc<ast::MetaItem>]> { None }
|
2013-09-26 12:53:06 -07:00
|
|
|
}
|
2014-05-23 00:42:33 -07:00
|
|
|
impl<'a> attr::AttrMetaMethods for &'a Attribute {
|
|
|
|
fn name(&self) -> InternedString { (**self).name() }
|
|
|
|
fn value_str(&self) -> Option<InternedString> { (**self).value_str() }
|
2014-05-16 10:15:33 -07:00
|
|
|
fn meta_item_list<'a>(&'a self) -> Option<&'a [Gc<ast::MetaItem>]> { None }
|
2014-05-23 00:42:33 -07:00
|
|
|
}
|
2013-09-26 12:53:06 -07:00
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct TyParam {
|
2014-05-22 16:57:53 -07:00
|
|
|
pub name: String,
|
2014-05-03 02:08:58 -07:00
|
|
|
pub did: ast::DefId,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub bounds: Vec<TyParamBound>,
|
2014-06-21 05:03:33 -07:00
|
|
|
pub default: Option<Type>
|
2014-03-28 10:27:24 -07:00
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
|
|
|
|
impl Clean<TyParam> for ast::TyParam {
|
|
|
|
fn clean(&self) -> TyParam {
|
|
|
|
TyParam {
|
|
|
|
name: self.ident.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
did: ast::DefId { krate: ast::LOCAL_CRATE, node: self.id },
|
2014-02-28 17:46:09 -08:00
|
|
|
bounds: self.bounds.clean().move_iter().collect(),
|
2014-06-21 05:03:33 -07:00
|
|
|
default: self.default.clean()
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-03 02:08:58 -07:00
|
|
|
impl Clean<TyParam> for ty::TypeParameterDef {
|
|
|
|
fn clean(&self) -> TyParam {
|
2014-06-26 11:37:39 -07:00
|
|
|
get_cx().external_typarams.borrow_mut().get_mut_ref()
|
|
|
|
.insert(self.def_id, self.ident.clean());
|
2014-05-03 02:08:58 -07:00
|
|
|
TyParam {
|
|
|
|
name: self.ident.clean(),
|
|
|
|
did: self.def_id,
|
|
|
|
bounds: self.bounds.clean(),
|
2014-06-21 05:03:33 -07:00
|
|
|
default: self.default.clean()
|
2014-05-03 02:08:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum TyParamBound {
|
|
|
|
RegionBound,
|
|
|
|
TraitBound(Type)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<TyParamBound> for ast::TyParamBound {
|
|
|
|
fn clean(&self) -> TyParamBound {
|
|
|
|
match *self {
|
2014-05-02 14:04:26 -04:00
|
|
|
ast::StaticRegionTyParamBound => RegionBound,
|
|
|
|
ast::OtherRegionTyParamBound(_) => RegionBound,
|
2014-06-01 18:41:46 -07:00
|
|
|
ast::UnboxedFnTyParamBound(_) => {
|
|
|
|
// FIXME(pcwalton): Wrong.
|
|
|
|
RegionBound
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
ast::TraitTyParamBound(ref t) => TraitBound(t.clean()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-13 11:35:42 -04:00
|
|
|
fn external_path(name: &str, substs: &subst::Substs) -> Path {
|
2014-07-04 16:39:28 +02:00
|
|
|
let lifetimes = substs.regions().get_slice(subst::TypeSpace)
|
2014-05-31 18:53:13 -04:00
|
|
|
.iter()
|
|
|
|
.filter_map(|v| v.clean())
|
|
|
|
.collect();
|
2014-07-04 16:39:28 +02:00
|
|
|
let types = Vec::from_slice(substs.types.get_slice(subst::TypeSpace));
|
|
|
|
let types = types.clean();
|
2014-05-03 02:08:58 -07:00
|
|
|
Path {
|
|
|
|
global: false,
|
|
|
|
segments: vec![PathSegment {
|
2014-05-25 03:17:19 -07:00
|
|
|
name: name.to_string(),
|
2014-05-31 18:53:13 -04:00
|
|
|
lifetimes: lifetimes,
|
|
|
|
types: types,
|
2014-05-28 23:14:08 -07:00
|
|
|
}],
|
2014-05-03 02:08:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<TyParamBound> for ty::BuiltinBound {
|
|
|
|
fn clean(&self) -> TyParamBound {
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
2014-05-03 02:08:58 -07:00
|
|
|
let tcx = match cx.maybe_typed {
|
|
|
|
core::Typed(ref tcx) => tcx,
|
|
|
|
core::NotTyped(_) => return RegionBound,
|
|
|
|
};
|
2014-05-13 11:35:42 -04:00
|
|
|
let empty = subst::Substs::empty();
|
2014-05-03 02:08:58 -07:00
|
|
|
let (did, path) = match *self {
|
|
|
|
ty::BoundStatic => return RegionBound,
|
|
|
|
ty::BoundSend =>
|
2014-05-28 23:14:08 -07:00
|
|
|
(tcx.lang_items.send_trait().unwrap(),
|
|
|
|
external_path("Send", &empty)),
|
2014-05-03 02:08:58 -07:00
|
|
|
ty::BoundSized =>
|
2014-05-28 23:14:08 -07:00
|
|
|
(tcx.lang_items.sized_trait().unwrap(),
|
|
|
|
external_path("Sized", &empty)),
|
2014-05-03 02:08:58 -07:00
|
|
|
ty::BoundCopy =>
|
2014-05-28 23:14:08 -07:00
|
|
|
(tcx.lang_items.copy_trait().unwrap(),
|
|
|
|
external_path("Copy", &empty)),
|
2014-05-03 02:08:58 -07:00
|
|
|
ty::BoundShare =>
|
2014-05-28 23:14:08 -07:00
|
|
|
(tcx.lang_items.share_trait().unwrap(),
|
|
|
|
external_path("Share", &empty)),
|
2014-05-03 02:08:58 -07:00
|
|
|
};
|
|
|
|
let fqn = csearch::get_item_path(tcx, did);
|
2014-06-21 03:39:03 -07:00
|
|
|
let fqn = fqn.move_iter().map(|i| i.to_string()).collect();
|
2014-05-03 02:08:58 -07:00
|
|
|
cx.external_paths.borrow_mut().get_mut_ref().insert(did,
|
|
|
|
(fqn, TypeTrait));
|
|
|
|
TraitBound(ResolvedPath {
|
|
|
|
path: path,
|
|
|
|
typarams: None,
|
|
|
|
did: did,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<TyParamBound> for ty::TraitRef {
|
|
|
|
fn clean(&self) -> TyParamBound {
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
2014-05-03 02:08:58 -07:00
|
|
|
let tcx = match cx.maybe_typed {
|
|
|
|
core::Typed(ref tcx) => tcx,
|
|
|
|
core::NotTyped(_) => return RegionBound,
|
|
|
|
};
|
|
|
|
let fqn = csearch::get_item_path(tcx, self.def_id);
|
2014-06-21 03:39:03 -07:00
|
|
|
let fqn = fqn.move_iter().map(|i| i.to_string())
|
2014-05-22 16:57:53 -07:00
|
|
|
.collect::<Vec<String>>();
|
2014-05-28 23:14:08 -07:00
|
|
|
let path = external_path(fqn.last().unwrap().as_slice(),
|
|
|
|
&self.substs);
|
2014-05-03 02:08:58 -07:00
|
|
|
cx.external_paths.borrow_mut().get_mut_ref().insert(self.def_id,
|
|
|
|
(fqn, TypeTrait));
|
|
|
|
TraitBound(ResolvedPath {
|
|
|
|
path: path,
|
|
|
|
typarams: None,
|
|
|
|
did: self.def_id,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Vec<TyParamBound>> for ty::ParamBounds {
|
|
|
|
fn clean(&self) -> Vec<TyParamBound> {
|
|
|
|
let mut v = Vec::new();
|
|
|
|
for b in self.builtin_bounds.iter() {
|
|
|
|
if b != ty::BoundSized {
|
|
|
|
v.push(b.clean());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for t in self.trait_bounds.iter() {
|
|
|
|
v.push(t.clean());
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-13 11:35:42 -04:00
|
|
|
impl Clean<Option<Vec<TyParamBound>>> for subst::Substs {
|
2014-05-03 02:08:58 -07:00
|
|
|
fn clean(&self) -> Option<Vec<TyParamBound>> {
|
|
|
|
let mut v = Vec::new();
|
2014-05-31 18:53:13 -04:00
|
|
|
v.extend(self.regions().iter().map(|_| RegionBound));
|
|
|
|
v.extend(self.types.iter().map(|t| TraitBound(t.clean())));
|
2014-05-03 02:08:58 -07:00
|
|
|
if v.len() > 0 {Some(v)} else {None}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-29 17:45:07 -07:00
|
|
|
#[deriving(Clone, Encodable, Decodable, PartialEq)]
|
2014-05-22 16:57:53 -07:00
|
|
|
pub struct Lifetime(String);
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2013-11-01 18:06:31 -07:00
|
|
|
impl Lifetime {
|
|
|
|
pub fn get_ref<'a>(&'a self) -> &'a str {
|
|
|
|
let Lifetime(ref s) = *self;
|
2014-05-12 13:44:59 -07:00
|
|
|
let s: &'a str = s.as_slice();
|
2013-11-01 18:06:31 -07:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
impl Clean<Lifetime> for ast::Lifetime {
|
|
|
|
fn clean(&self) -> Lifetime {
|
2014-05-25 03:17:19 -07:00
|
|
|
Lifetime(token::get_name(self.name).get().to_string())
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-03 02:08:58 -07:00
|
|
|
impl Clean<Lifetime> for ty::RegionParameterDef {
|
|
|
|
fn clean(&self) -> Lifetime {
|
2014-05-25 03:17:19 -07:00
|
|
|
Lifetime(token::get_name(self.name).get().to_string())
|
2014-05-03 02:08:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Option<Lifetime>> for ty::Region {
|
|
|
|
fn clean(&self) -> Option<Lifetime> {
|
|
|
|
match *self {
|
2014-06-15 14:59:01 +12:00
|
|
|
ty::ReStatic => Some(Lifetime("'static".to_string())),
|
2014-05-03 02:08:58 -07:00
|
|
|
ty::ReLateBound(_, ty::BrNamed(_, name)) =>
|
2014-05-25 03:17:19 -07:00
|
|
|
Some(Lifetime(token::get_name(name).get().to_string())),
|
2014-05-31 18:53:13 -04:00
|
|
|
ty::ReEarlyBound(_, _, _, name) => Some(Lifetime(name.clean())),
|
2014-05-03 02:08:58 -07:00
|
|
|
|
|
|
|
ty::ReLateBound(..) |
|
|
|
|
ty::ReFree(..) |
|
|
|
|
ty::ReScope(..) |
|
|
|
|
ty::ReInfer(..) |
|
|
|
|
ty::ReEmpty(..) => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
// maybe use a Generic enum and use ~[Generic]?
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Generics {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub lifetimes: Vec<Lifetime>,
|
|
|
|
pub type_params: Vec<TyParam>,
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
|
|
|
|
impl Clean<Generics> for ast::Generics {
|
|
|
|
fn clean(&self) -> Generics {
|
|
|
|
Generics {
|
2014-05-31 18:53:13 -04:00
|
|
|
lifetimes: self.lifetimes.clean(),
|
|
|
|
type_params: self.ty_params.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-03 02:08:58 -07:00
|
|
|
impl Clean<Generics> for ty::Generics {
|
|
|
|
fn clean(&self) -> Generics {
|
2014-05-31 18:53:13 -04:00
|
|
|
// In the type space, generics can come in one of multiple
|
|
|
|
// namespaces. This means that e.g. for fn items the type
|
|
|
|
// parameters will live in FnSpace, but for types the
|
|
|
|
// parameters will live in TypeSpace (trait definitions also
|
|
|
|
// define a parameter in SelfSpace). *Method* definitions are
|
|
|
|
// the one exception: they combine the TypeSpace parameters
|
|
|
|
// from the enclosing impl/trait with their own FnSpace
|
|
|
|
// parameters.
|
|
|
|
//
|
|
|
|
// In general, when we clean, we are trying to produce the
|
|
|
|
// "user-facing" generics. Hence we select the most specific
|
|
|
|
// namespace that is occupied, ignoring SelfSpace because it
|
|
|
|
// is implicit.
|
|
|
|
|
|
|
|
let space = {
|
2014-07-04 16:39:28 +02:00
|
|
|
if !self.types.is_empty_in(subst::FnSpace) ||
|
|
|
|
!self.regions.is_empty_in(subst::FnSpace)
|
2014-05-31 18:53:13 -04:00
|
|
|
{
|
|
|
|
subst::FnSpace
|
|
|
|
} else {
|
|
|
|
subst::TypeSpace
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-05-03 02:08:58 -07:00
|
|
|
Generics {
|
2014-07-04 16:39:28 +02:00
|
|
|
type_params: Vec::from_slice(self.types.get_slice(space)).clean(),
|
|
|
|
lifetimes: Vec::from_slice(self.regions.get_slice(space)).clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Method {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub generics: Generics,
|
|
|
|
pub self_: SelfTy,
|
2014-04-06 18:04:40 -07:00
|
|
|
pub fn_style: ast::FnStyle,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub decl: FnDecl,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<Item> for ast::Method {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> Item {
|
2014-01-27 14:18:36 +02:00
|
|
|
let inputs = match self.explicit_self.node {
|
|
|
|
ast::SelfStatic => self.decl.inputs.as_slice(),
|
|
|
|
_ => self.decl.inputs.slice_from(1)
|
|
|
|
};
|
|
|
|
let decl = FnDecl {
|
2014-02-13 06:41:34 +11:00
|
|
|
inputs: Arguments {
|
|
|
|
values: inputs.iter().map(|x| x.clean()).collect(),
|
|
|
|
},
|
2014-01-27 14:18:36 +02:00
|
|
|
output: (self.decl.output.clean()),
|
|
|
|
cf: self.decl.cf.clean(),
|
2014-03-05 15:28:08 -08:00
|
|
|
attrs: Vec::new()
|
2014-01-27 14:18:36 +02:00
|
|
|
};
|
2013-08-15 16:28:54 -04:00
|
|
|
Item {
|
|
|
|
name: Some(self.ident.clean()),
|
2014-02-28 17:46:09 -08:00
|
|
|
attrs: self.attrs.clean().move_iter().collect(),
|
2013-08-15 16:28:54 -04:00
|
|
|
source: self.span.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-09-24 13:55:22 -07:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: get_stability(ast_util::local_def(self.id)),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: MethodItem(Method {
|
|
|
|
generics: self.generics.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
self_: self.explicit_self.node.clean(),
|
2014-04-06 18:04:40 -07:00
|
|
|
fn_style: self.fn_style.clone(),
|
2014-01-27 14:18:36 +02:00
|
|
|
decl: decl,
|
2013-08-15 16:28:54 -04:00
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct TyMethod {
|
2014-04-06 18:04:40 -07:00
|
|
|
pub fn_style: ast::FnStyle,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub decl: FnDecl,
|
|
|
|
pub generics: Generics,
|
|
|
|
pub self_: SelfTy,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for ast::TypeMethod {
|
|
|
|
fn clean(&self) -> Item {
|
2014-01-27 14:18:36 +02:00
|
|
|
let inputs = match self.explicit_self.node {
|
|
|
|
ast::SelfStatic => self.decl.inputs.as_slice(),
|
|
|
|
_ => self.decl.inputs.slice_from(1)
|
|
|
|
};
|
|
|
|
let decl = FnDecl {
|
2014-02-13 06:41:34 +11:00
|
|
|
inputs: Arguments {
|
|
|
|
values: inputs.iter().map(|x| x.clean()).collect(),
|
|
|
|
},
|
2014-01-27 14:18:36 +02:00
|
|
|
output: (self.decl.output.clean()),
|
|
|
|
cf: self.decl.cf.clean(),
|
2014-03-05 15:28:08 -08:00
|
|
|
attrs: Vec::new()
|
2014-01-27 14:18:36 +02:00
|
|
|
};
|
2013-08-15 16:28:54 -04:00
|
|
|
Item {
|
|
|
|
name: Some(self.ident.clean()),
|
2014-02-28 17:46:09 -08:00
|
|
|
attrs: self.attrs.clean().move_iter().collect(),
|
2013-08-15 16:28:54 -04:00
|
|
|
source: self.span.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: None,
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: get_stability(ast_util::local_def(self.id)),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: TyMethodItem(TyMethod {
|
2014-04-06 18:04:40 -07:00
|
|
|
fn_style: self.fn_style.clone(),
|
2014-01-27 14:18:36 +02:00
|
|
|
decl: decl,
|
2014-05-03 02:08:58 -07:00
|
|
|
self_: self.explicit_self.node.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
generics: self.generics.clean(),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-29 17:45:07 -07:00
|
|
|
#[deriving(Clone, Encodable, Decodable, PartialEq)]
|
2013-08-15 16:28:54 -04:00
|
|
|
pub enum SelfTy {
|
|
|
|
SelfStatic,
|
|
|
|
SelfValue,
|
|
|
|
SelfBorrowed(Option<Lifetime>, Mutability),
|
|
|
|
SelfOwned,
|
|
|
|
}
|
|
|
|
|
2014-05-03 02:08:58 -07:00
|
|
|
impl Clean<SelfTy> for ast::ExplicitSelf_ {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> SelfTy {
|
2014-05-03 02:08:58 -07:00
|
|
|
match *self {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::SelfStatic => SelfStatic,
|
2014-07-06 15:10:57 -07:00
|
|
|
ast::SelfValue(_) => SelfValue,
|
|
|
|
ast::SelfUniq(_) => SelfOwned,
|
|
|
|
ast::SelfRegion(lt, mt, _) => SelfBorrowed(lt.clean(), mt.clean()),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Function {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub decl: FnDecl,
|
|
|
|
pub generics: Generics,
|
2014-04-06 18:04:40 -07:00
|
|
|
pub fn_style: ast::FnStyle,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Function {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: FunctionItem(Function {
|
|
|
|
decl: self.decl.clean(),
|
|
|
|
generics: self.generics.clean(),
|
2014-04-06 18:04:40 -07:00
|
|
|
fn_style: self.fn_style,
|
2013-08-15 16:28:54 -04:00
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct ClosureDecl {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub lifetimes: Vec<Lifetime>,
|
|
|
|
pub decl: FnDecl,
|
|
|
|
pub onceness: ast::Onceness,
|
2014-04-06 18:04:40 -07:00
|
|
|
pub fn_style: ast::FnStyle,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub bounds: Vec<TyParamBound>,
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<ClosureDecl> for ast::ClosureTy {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> ClosureDecl {
|
|
|
|
ClosureDecl {
|
2014-05-03 02:08:58 -07:00
|
|
|
lifetimes: self.lifetimes.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
decl: self.decl.clean(),
|
|
|
|
onceness: self.onceness,
|
2014-04-06 18:04:40 -07:00
|
|
|
fn_style: self.fn_style,
|
2013-08-15 16:28:54 -04:00
|
|
|
bounds: match self.bounds {
|
2014-02-28 17:46:09 -08:00
|
|
|
Some(ref x) => x.clean().move_iter().collect(),
|
2014-03-05 15:28:08 -08:00
|
|
|
None => Vec::new()
|
2013-08-15 16:28:54 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct FnDecl {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub inputs: Arguments,
|
|
|
|
pub output: Type,
|
|
|
|
pub cf: RetStyle,
|
|
|
|
pub attrs: Vec<Attribute>,
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2014-02-13 06:41:34 +11:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Arguments {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub values: Vec<Argument>,
|
2014-02-13 06:41:34 +11:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<FnDecl> for ast::FnDecl {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> FnDecl {
|
|
|
|
FnDecl {
|
2014-02-13 06:41:34 +11:00
|
|
|
inputs: Arguments {
|
|
|
|
values: self.inputs.iter().map(|x| x.clean()).collect(),
|
|
|
|
},
|
2013-08-15 16:28:54 -04:00
|
|
|
output: (self.output.clean()),
|
|
|
|
cf: self.cf.clean(),
|
2014-03-05 15:28:08 -08:00
|
|
|
attrs: Vec::new()
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-23 18:47:01 -07:00
|
|
|
impl<'a> Clean<FnDecl> for (ast::DefId, &'a ty::FnSig) {
|
2014-05-03 02:08:58 -07:00
|
|
|
fn clean(&self) -> FnDecl {
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
2014-05-23 18:47:01 -07:00
|
|
|
let (did, sig) = *self;
|
|
|
|
let mut names = if did.node != 0 {
|
2014-06-26 11:37:39 -07:00
|
|
|
csearch::get_method_arg_names(&cx.tcx().sess.cstore, did).move_iter()
|
2014-05-23 18:47:01 -07:00
|
|
|
} else {
|
|
|
|
Vec::new().move_iter()
|
|
|
|
}.peekable();
|
|
|
|
if names.peek().map(|s| s.as_slice()) == Some("self") {
|
|
|
|
let _ = names.next();
|
|
|
|
}
|
2014-05-03 02:08:58 -07:00
|
|
|
FnDecl {
|
2014-05-23 18:47:01 -07:00
|
|
|
output: sig.output.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
cf: Return,
|
2014-05-23 18:47:01 -07:00
|
|
|
attrs: Vec::new(),
|
2014-05-03 02:08:58 -07:00
|
|
|
inputs: Arguments {
|
2014-05-23 18:47:01 -07:00
|
|
|
values: sig.inputs.iter().map(|t| {
|
2014-05-03 02:08:58 -07:00
|
|
|
Argument {
|
|
|
|
type_: t.clean(),
|
|
|
|
id: 0,
|
2014-05-25 03:17:19 -07:00
|
|
|
name: names.next().unwrap_or("".to_string()),
|
2014-05-03 02:08:58 -07:00
|
|
|
}
|
|
|
|
}).collect(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Argument {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub type_: Type,
|
2014-05-22 16:57:53 -07:00
|
|
|
pub name: String,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub id: ast::NodeId,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<Argument> for ast::Arg {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> Argument {
|
|
|
|
Argument {
|
2014-05-16 10:15:33 -07:00
|
|
|
name: name_from_pat(&*self.pat),
|
2013-08-15 16:28:54 -04:00
|
|
|
type_: (self.ty.clean()),
|
|
|
|
id: self.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum RetStyle {
|
|
|
|
NoReturn,
|
|
|
|
Return
|
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<RetStyle> for ast::RetStyle {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> RetStyle {
|
|
|
|
match *self {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::Return => Return,
|
|
|
|
ast::NoReturn => NoReturn
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Trait {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub methods: Vec<TraitMethod>,
|
|
|
|
pub generics: Generics,
|
|
|
|
pub parents: Vec<Type>,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Trait {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: TraitItem(Trait {
|
|
|
|
methods: self.methods.clean(),
|
|
|
|
generics: self.generics.clean(),
|
|
|
|
parents: self.parents.clean(),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<Type> for ast::TraitRef {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> Type {
|
2013-09-24 13:53:09 -07:00
|
|
|
resolve_type(self.path.clean(), None, self.ref_id)
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum TraitMethod {
|
|
|
|
Required(Item),
|
|
|
|
Provided(Item),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TraitMethod {
|
2013-09-18 22:18:38 -07:00
|
|
|
pub fn is_req(&self) -> bool {
|
2013-08-15 16:28:54 -04:00
|
|
|
match self {
|
2013-11-28 12:22:53 -08:00
|
|
|
&Required(..) => true,
|
2013-08-15 16:28:54 -04:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
2013-09-18 22:18:38 -07:00
|
|
|
pub fn is_def(&self) -> bool {
|
2013-08-15 16:28:54 -04:00
|
|
|
match self {
|
2013-11-28 12:22:53 -08:00
|
|
|
&Provided(..) => true,
|
2013-08-15 16:28:54 -04:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
2013-09-18 22:18:38 -07:00
|
|
|
pub fn item<'a>(&'a self) -> &'a Item {
|
|
|
|
match *self {
|
|
|
|
Required(ref item) => item,
|
|
|
|
Provided(ref item) => item,
|
|
|
|
}
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<TraitMethod> for ast::TraitMethod {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> TraitMethod {
|
|
|
|
match self {
|
2014-01-09 15:05:33 +02:00
|
|
|
&ast::Required(ref t) => Required(t.clean()),
|
|
|
|
&ast::Provided(ref t) => Provided(t.clean()),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-02 00:09:44 -07:00
|
|
|
impl Clean<Item> for ty::Method {
|
|
|
|
fn clean(&self) -> Item {
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
2014-05-03 02:08:58 -07:00
|
|
|
let (self_, sig) = match self.explicit_self {
|
|
|
|
ast::SelfStatic => (ast::SelfStatic.clean(), self.fty.sig.clone()),
|
|
|
|
s => {
|
|
|
|
let sig = ty::FnSig {
|
|
|
|
inputs: Vec::from_slice(self.fty.sig.inputs.slice_from(1)),
|
|
|
|
..self.fty.sig.clone()
|
|
|
|
};
|
|
|
|
let s = match s {
|
|
|
|
ast::SelfRegion(..) => {
|
|
|
|
match ty::get(*self.fty.sig.inputs.get(0)).sty {
|
|
|
|
ty::ty_rptr(r, mt) => {
|
|
|
|
SelfBorrowed(r.clean(), mt.mutbl.clean())
|
|
|
|
}
|
|
|
|
_ => s.clean(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s => s.clean(),
|
|
|
|
};
|
|
|
|
(s, sig)
|
|
|
|
}
|
|
|
|
};
|
2014-05-23 17:13:44 -07:00
|
|
|
|
2014-06-02 00:09:44 -07:00
|
|
|
Item {
|
2014-05-03 02:08:58 -07:00
|
|
|
name: Some(self.ident.clean()),
|
|
|
|
visibility: Some(ast::Inherited),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: get_stability(self.def_id),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: self.def_id,
|
2014-06-26 11:37:39 -07:00
|
|
|
attrs: inline::load_attrs(cx.tcx(), self.def_id),
|
2014-05-23 00:42:33 -07:00
|
|
|
source: Span::empty(),
|
2014-05-03 02:08:58 -07:00
|
|
|
inner: TyMethodItem(TyMethod {
|
|
|
|
fn_style: self.fty.fn_style,
|
|
|
|
generics: self.generics.clean(),
|
|
|
|
self_: self_,
|
2014-05-23 18:47:01 -07:00
|
|
|
decl: (self.def_id, &sig).clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
})
|
2014-06-02 00:09:44 -07:00
|
|
|
}
|
2014-05-03 02:08:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
/// A representation of a Type suitable for hyperlinking purposes. Ideally one can get the original
|
|
|
|
/// type out of the AST/ty::ctxt given one of these, if more information is needed. Most importantly
|
|
|
|
/// it does not preserve mutability or boxes.
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum Type {
|
2014-01-09 15:05:33 +02:00
|
|
|
/// structs/enums/traits (anything that'd be an ast::TyPath)
|
2013-09-27 18:23:57 -07:00
|
|
|
ResolvedPath {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub path: Path,
|
|
|
|
pub typarams: Option<Vec<TyParamBound>>,
|
2014-05-09 13:52:17 -07:00
|
|
|
pub did: ast::DefId,
|
2013-09-27 18:23:57 -07:00
|
|
|
},
|
2013-08-15 16:28:54 -04:00
|
|
|
// I have no idea how to usefully use this.
|
|
|
|
TyParamBinder(ast::NodeId),
|
|
|
|
/// For parameterized types, so the consumer of the JSON don't go looking
|
|
|
|
/// for types which don't exist anywhere.
|
2014-05-03 02:08:58 -07:00
|
|
|
Generic(ast::DefId),
|
2013-08-15 16:28:54 -04:00
|
|
|
/// For references to self
|
2014-05-03 02:08:58 -07:00
|
|
|
Self(ast::DefId),
|
2013-08-15 16:28:54 -04:00
|
|
|
/// Primitives are just the fixed-size numeric types (plus int/uint/float), and char.
|
2014-05-28 19:53:37 -07:00
|
|
|
Primitive(Primitive),
|
2014-05-05 18:56:44 -07:00
|
|
|
Closure(Box<ClosureDecl>, Option<Lifetime>),
|
|
|
|
Proc(Box<ClosureDecl>),
|
2013-08-15 16:28:54 -04:00
|
|
|
/// extern "ABI" fn
|
2014-05-05 18:56:44 -07:00
|
|
|
BareFunction(Box<BareFunctionDecl>),
|
2014-04-19 22:24:52 -07:00
|
|
|
Tuple(Vec<Type>),
|
2014-05-05 18:56:44 -07:00
|
|
|
Vector(Box<Type>),
|
2014-05-22 16:57:53 -07:00
|
|
|
FixedVector(Box<Type>, String),
|
2014-01-09 22:25:09 +02:00
|
|
|
/// aka TyBot
|
2013-08-15 16:28:54 -04:00
|
|
|
Bottom,
|
2014-05-05 18:56:44 -07:00
|
|
|
Unique(Box<Type>),
|
|
|
|
Managed(Box<Type>),
|
|
|
|
RawPointer(Mutability, Box<Type>),
|
2014-03-28 10:27:24 -07:00
|
|
|
BorrowedRef {
|
|
|
|
pub lifetime: Option<Lifetime>,
|
|
|
|
pub mutability: Mutability,
|
2014-05-05 18:56:44 -07:00
|
|
|
pub type_: Box<Type>,
|
2014-03-28 10:27:24 -07:00
|
|
|
},
|
2013-08-15 16:28:54 -04:00
|
|
|
// region, raw, other boxes, mutable
|
|
|
|
}
|
|
|
|
|
2014-06-03 17:55:30 -07:00
|
|
|
#[deriving(Clone, Encodable, Decodable, PartialEq, Eq, Hash)]
|
2014-05-28 19:53:37 -07:00
|
|
|
pub enum Primitive {
|
|
|
|
Int, I8, I16, I32, I64,
|
|
|
|
Uint, U8, U16, U32, U64,
|
2014-06-24 16:34:46 -07:00
|
|
|
F32, F64,
|
2014-05-28 19:53:37 -07:00
|
|
|
Char,
|
|
|
|
Bool,
|
2014-07-02 10:20:39 +10:00
|
|
|
Unit,
|
2014-05-28 19:53:37 -07:00
|
|
|
Str,
|
|
|
|
Slice,
|
|
|
|
PrimitiveTuple,
|
|
|
|
}
|
|
|
|
|
2013-10-02 15:39:32 -07:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum TypeKind {
|
|
|
|
TypeEnum,
|
|
|
|
TypeFunction,
|
2014-05-09 13:52:17 -07:00
|
|
|
TypeModule,
|
|
|
|
TypeStatic,
|
|
|
|
TypeStruct,
|
|
|
|
TypeTrait,
|
|
|
|
TypeVariant,
|
2013-10-02 15:39:32 -07:00
|
|
|
}
|
|
|
|
|
2014-05-28 19:53:37 -07:00
|
|
|
impl Primitive {
|
|
|
|
fn from_str(s: &str) -> Option<Primitive> {
|
|
|
|
match s.as_slice() {
|
|
|
|
"int" => Some(Int),
|
|
|
|
"i8" => Some(I8),
|
|
|
|
"i16" => Some(I16),
|
|
|
|
"i32" => Some(I32),
|
|
|
|
"i64" => Some(I64),
|
|
|
|
"uint" => Some(Uint),
|
|
|
|
"u8" => Some(U8),
|
|
|
|
"u16" => Some(U16),
|
|
|
|
"u32" => Some(U32),
|
|
|
|
"u64" => Some(U64),
|
|
|
|
"bool" => Some(Bool),
|
2014-07-02 10:20:39 +10:00
|
|
|
"unit" => Some(Unit),
|
2014-05-28 19:53:37 -07:00
|
|
|
"char" => Some(Char),
|
|
|
|
"str" => Some(Str),
|
|
|
|
"f32" => Some(F32),
|
|
|
|
"f64" => Some(F64),
|
|
|
|
"slice" => Some(Slice),
|
|
|
|
"tuple" => Some(PrimitiveTuple),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn find(attrs: &[Attribute]) -> Option<Primitive> {
|
|
|
|
for attr in attrs.iter() {
|
|
|
|
let list = match *attr {
|
|
|
|
List(ref k, ref l) if k.as_slice() == "doc" => l,
|
|
|
|
_ => continue,
|
|
|
|
};
|
|
|
|
for sub_attr in list.iter() {
|
|
|
|
let value = match *sub_attr {
|
|
|
|
NameValue(ref k, ref v)
|
|
|
|
if k.as_slice() == "primitive" => v.as_slice(),
|
|
|
|
_ => continue,
|
|
|
|
};
|
|
|
|
match Primitive::from_str(value) {
|
|
|
|
Some(p) => return Some(p),
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return None
|
|
|
|
}
|
|
|
|
|
2014-06-21 03:39:03 -07:00
|
|
|
pub fn to_string(&self) -> &'static str {
|
2014-05-28 19:53:37 -07:00
|
|
|
match *self {
|
|
|
|
Int => "int",
|
|
|
|
I8 => "i8",
|
|
|
|
I16 => "i16",
|
|
|
|
I32 => "i32",
|
|
|
|
I64 => "i64",
|
|
|
|
Uint => "uint",
|
|
|
|
U8 => "u8",
|
|
|
|
U16 => "u16",
|
|
|
|
U32 => "u32",
|
|
|
|
U64 => "u64",
|
|
|
|
F32 => "f32",
|
|
|
|
F64 => "f64",
|
|
|
|
Str => "str",
|
|
|
|
Bool => "bool",
|
|
|
|
Char => "char",
|
2014-07-02 10:20:39 +10:00
|
|
|
Unit => "()",
|
2014-05-28 19:53:37 -07:00
|
|
|
Slice => "slice",
|
|
|
|
PrimitiveTuple => "tuple",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_url_str(&self) -> &'static str {
|
|
|
|
match *self {
|
2014-07-02 10:20:39 +10:00
|
|
|
Unit => "unit",
|
2014-06-21 03:39:03 -07:00
|
|
|
other => other.to_string(),
|
2014-05-28 19:53:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a rustdoc-specific node id for primitive types.
|
|
|
|
///
|
|
|
|
/// These node ids are generally never used by the AST itself.
|
|
|
|
pub fn to_node_id(&self) -> ast::NodeId {
|
|
|
|
u32::MAX - 1 - (*self as u32)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
impl Clean<Type> for ast::Ty {
|
|
|
|
fn clean(&self) -> Type {
|
|
|
|
use syntax::ast::*;
|
2013-09-24 13:53:09 -07:00
|
|
|
match self.node {
|
2014-07-02 10:20:39 +10:00
|
|
|
TyNil => Primitive(Unit),
|
2014-04-25 01:08:02 -07:00
|
|
|
TyPtr(ref m) => RawPointer(m.mutbl.clean(), box m.ty.clean()),
|
2014-01-09 22:25:09 +02:00
|
|
|
TyRptr(ref l, ref m) =>
|
2013-08-15 16:28:54 -04:00
|
|
|
BorrowedRef {lifetime: l.clean(), mutability: m.mutbl.clean(),
|
2014-04-25 01:08:02 -07:00
|
|
|
type_: box m.ty.clean()},
|
|
|
|
TyBox(ty) => Managed(box ty.clean()),
|
|
|
|
TyUniq(ty) => Unique(box ty.clean()),
|
|
|
|
TyVec(ty) => Vector(box ty.clean()),
|
|
|
|
TyFixedLengthVec(ty, ref e) => FixedVector(box ty.clean(),
|
2014-01-09 22:25:09 +02:00
|
|
|
e.span.to_src()),
|
|
|
|
TyTup(ref tys) => Tuple(tys.iter().map(|x| x.clean()).collect()),
|
2014-02-28 17:46:09 -08:00
|
|
|
TyPath(ref p, ref tpbs, id) => {
|
|
|
|
resolve_type(p.clean(),
|
|
|
|
tpbs.clean().map(|x| x.move_iter().collect()),
|
|
|
|
id)
|
|
|
|
}
|
2014-04-25 01:08:02 -07:00
|
|
|
TyClosure(ref c, region) => Closure(box c.clean(), region.clean()),
|
|
|
|
TyProc(ref c) => Proc(box c.clean()),
|
|
|
|
TyBareFn(ref barefn) => BareFunction(box barefn.clean()),
|
2014-06-11 12:14:38 -07:00
|
|
|
TyParen(ref ty) => ty.clean(),
|
2014-01-09 22:25:09 +02:00
|
|
|
TyBot => Bottom,
|
2013-10-21 13:08:31 -07:00
|
|
|
ref x => fail!("Unimplemented type {:?}", x),
|
2013-09-24 13:53:09 -07:00
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-03 02:08:58 -07:00
|
|
|
impl Clean<Type> for ty::t {
|
|
|
|
fn clean(&self) -> Type {
|
|
|
|
match ty::get(*self).sty {
|
|
|
|
ty::ty_bot => Bottom,
|
2014-07-02 10:20:39 +10:00
|
|
|
ty::ty_nil => Primitive(Unit),
|
2014-05-28 19:53:37 -07:00
|
|
|
ty::ty_bool => Primitive(Bool),
|
|
|
|
ty::ty_char => Primitive(Char),
|
|
|
|
ty::ty_int(ast::TyI) => Primitive(Int),
|
|
|
|
ty::ty_int(ast::TyI8) => Primitive(I8),
|
|
|
|
ty::ty_int(ast::TyI16) => Primitive(I16),
|
|
|
|
ty::ty_int(ast::TyI32) => Primitive(I32),
|
|
|
|
ty::ty_int(ast::TyI64) => Primitive(I64),
|
|
|
|
ty::ty_uint(ast::TyU) => Primitive(Uint),
|
|
|
|
ty::ty_uint(ast::TyU8) => Primitive(U8),
|
|
|
|
ty::ty_uint(ast::TyU16) => Primitive(U16),
|
|
|
|
ty::ty_uint(ast::TyU32) => Primitive(U32),
|
|
|
|
ty::ty_uint(ast::TyU64) => Primitive(U64),
|
|
|
|
ty::ty_float(ast::TyF32) => Primitive(F32),
|
|
|
|
ty::ty_float(ast::TyF64) => Primitive(F64),
|
|
|
|
ty::ty_str => Primitive(Str),
|
2014-05-03 02:08:58 -07:00
|
|
|
ty::ty_box(t) => Managed(box t.clean()),
|
|
|
|
ty::ty_uniq(t) => Unique(box t.clean()),
|
|
|
|
ty::ty_vec(mt, None) => Vector(box mt.ty.clean()),
|
|
|
|
ty::ty_vec(mt, Some(i)) => FixedVector(box mt.ty.clean(),
|
2014-05-27 20:44:58 -07:00
|
|
|
format!("{}", i)),
|
2014-05-03 02:08:58 -07:00
|
|
|
ty::ty_ptr(mt) => RawPointer(mt.mutbl.clean(), box mt.ty.clean()),
|
|
|
|
ty::ty_rptr(r, mt) => BorrowedRef {
|
|
|
|
lifetime: r.clean(),
|
|
|
|
mutability: mt.mutbl.clean(),
|
|
|
|
type_: box mt.ty.clean(),
|
|
|
|
},
|
|
|
|
ty::ty_bare_fn(ref fty) => BareFunction(box BareFunctionDecl {
|
|
|
|
fn_style: fty.fn_style,
|
|
|
|
generics: Generics {
|
|
|
|
lifetimes: Vec::new(), type_params: Vec::new()
|
|
|
|
},
|
2014-05-23 18:47:01 -07:00
|
|
|
decl: (ast_util::local_def(0), &fty.sig).clean(),
|
2014-06-21 03:39:03 -07:00
|
|
|
abi: fty.abi.to_string(),
|
2014-05-03 02:08:58 -07:00
|
|
|
}),
|
|
|
|
ty::ty_closure(ref fty) => {
|
|
|
|
let decl = box ClosureDecl {
|
|
|
|
lifetimes: Vec::new(), // FIXME: this looks wrong...
|
2014-05-23 18:47:01 -07:00
|
|
|
decl: (ast_util::local_def(0), &fty.sig).clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
onceness: fty.onceness,
|
|
|
|
fn_style: fty.fn_style,
|
|
|
|
bounds: fty.bounds.iter().map(|i| i.clean()).collect(),
|
|
|
|
};
|
|
|
|
match fty.store {
|
|
|
|
ty::UniqTraitStore => Proc(decl),
|
|
|
|
ty::RegionTraitStore(ref r, _) => Closure(decl, r.clean()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty::ty_struct(did, ref substs) |
|
|
|
|
ty::ty_enum(did, ref substs) |
|
|
|
|
ty::ty_trait(box ty::TyTrait { def_id: did, ref substs, .. }) => {
|
2014-06-26 11:37:39 -07:00
|
|
|
let fqn = csearch::get_item_path(get_cx().tcx(), did);
|
2014-05-22 16:57:53 -07:00
|
|
|
let fqn: Vec<String> = fqn.move_iter().map(|i| {
|
2014-06-21 03:39:03 -07:00
|
|
|
i.to_string()
|
2014-05-03 02:08:58 -07:00
|
|
|
}).collect();
|
|
|
|
let kind = match ty::get(*self).sty {
|
|
|
|
ty::ty_struct(..) => TypeStruct,
|
|
|
|
ty::ty_trait(..) => TypeTrait,
|
|
|
|
_ => TypeEnum,
|
|
|
|
};
|
2014-06-21 03:39:03 -07:00
|
|
|
let path = external_path(fqn.last().unwrap().to_string().as_slice(),
|
2014-05-28 19:53:37 -07:00
|
|
|
substs);
|
2014-06-26 11:37:39 -07:00
|
|
|
get_cx().external_paths.borrow_mut().get_mut_ref()
|
|
|
|
.insert(did, (fqn, kind));
|
2014-05-03 02:08:58 -07:00
|
|
|
ResolvedPath {
|
2014-05-28 19:53:37 -07:00
|
|
|
path: path,
|
2014-05-03 02:08:58 -07:00
|
|
|
typarams: None,
|
|
|
|
did: did,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty::ty_tup(ref t) => Tuple(t.iter().map(|t| t.clean()).collect()),
|
|
|
|
|
2014-05-31 18:53:13 -04:00
|
|
|
ty::ty_param(ref p) => {
|
|
|
|
if p.space == subst::SelfSpace {
|
|
|
|
Self(p.def_id)
|
|
|
|
} else {
|
|
|
|
Generic(p.def_id)
|
|
|
|
}
|
|
|
|
}
|
2014-05-03 02:08:58 -07:00
|
|
|
|
|
|
|
ty::ty_infer(..) => fail!("ty_infer"),
|
|
|
|
ty::ty_err => fail!("ty_err"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
2014-04-19 22:24:52 -07:00
|
|
|
pub enum StructField {
|
2014-04-29 03:59:48 +09:00
|
|
|
HiddenStructField, // inserted later by strip passes
|
2014-04-19 22:24:52 -07:00
|
|
|
TypedStructField(Type),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<Item> for ast::StructField {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> Item {
|
|
|
|
let (name, vis) = match self.node.kind {
|
2014-04-19 22:24:52 -07:00
|
|
|
ast::NamedField(id, vis) => (Some(id), vis),
|
|
|
|
ast::UnnamedField(vis) => (None, vis)
|
2013-08-15 16:28:54 -04:00
|
|
|
};
|
|
|
|
Item {
|
|
|
|
name: name.clean(),
|
2014-02-28 17:46:09 -08:00
|
|
|
attrs: self.node.attrs.clean().move_iter().collect(),
|
2013-08-15 16:28:54 -04:00
|
|
|
source: self.span.clean(),
|
2014-04-19 22:24:52 -07:00
|
|
|
visibility: Some(vis),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: get_stability(ast_util::local_def(self.node.id)),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.node.id),
|
2014-04-19 22:24:52 -07:00
|
|
|
inner: StructFieldItem(TypedStructField(self.node.ty.clean())),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-23 00:42:33 -07:00
|
|
|
impl Clean<Item> for ty::field_ty {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
use syntax::parse::token::special_idents::unnamed_field;
|
|
|
|
let name = if self.name == unnamed_field.name {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(self.name)
|
|
|
|
};
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
|
|
|
let ty = ty::lookup_item_type(cx.tcx(), self.id);
|
2014-05-23 00:42:33 -07:00
|
|
|
Item {
|
|
|
|
name: name.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
attrs: inline::load_attrs(cx.tcx(), self.id),
|
2014-05-23 00:42:33 -07:00
|
|
|
source: Span::empty(),
|
|
|
|
visibility: Some(self.vis),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: get_stability(self.id),
|
2014-05-23 00:42:33 -07:00
|
|
|
def_id: self.id,
|
|
|
|
inner: StructFieldItem(TypedStructField(ty.ty.clean())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
pub type Visibility = ast::Visibility;
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<Option<Visibility>> for ast::Visibility {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> Option<Visibility> {
|
|
|
|
Some(*self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Struct {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub struct_type: doctree::StructType,
|
|
|
|
pub generics: Generics,
|
|
|
|
pub fields: Vec<Item>,
|
|
|
|
pub fields_stripped: bool,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Struct {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: StructItem(Struct {
|
|
|
|
struct_type: self.struct_type,
|
|
|
|
generics: self.generics.clean(),
|
|
|
|
fields: self.fields.clean(),
|
2013-10-13 20:37:43 -07:00
|
|
|
fields_stripped: false,
|
2013-08-15 16:28:54 -04:00
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-06 16:35:12 +09:00
|
|
|
/// This is a more limited form of the standard Struct, different in that
|
2013-08-15 16:28:54 -04:00
|
|
|
/// it lacks the things most items have (name, id, parameterization). Found
|
|
|
|
/// only as a variant in an enum.
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct VariantStruct {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub struct_type: doctree::StructType,
|
|
|
|
pub fields: Vec<Item>,
|
|
|
|
pub fields_stripped: bool,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<VariantStruct> for syntax::ast::StructDef {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> VariantStruct {
|
|
|
|
VariantStruct {
|
|
|
|
struct_type: doctree::struct_type_from_def(self),
|
2014-02-28 17:46:09 -08:00
|
|
|
fields: self.fields.clean().move_iter().collect(),
|
2013-10-13 20:37:43 -07:00
|
|
|
fields_stripped: false,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Enum {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub variants: Vec<Item>,
|
|
|
|
pub generics: Generics,
|
|
|
|
pub variants_stripped: bool,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Enum {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: EnumItem(Enum {
|
|
|
|
variants: self.variants.clean(),
|
|
|
|
generics: self.generics.clean(),
|
2013-10-13 20:37:43 -07:00
|
|
|
variants_stripped: false,
|
2013-08-15 16:28:54 -04:00
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Variant {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub kind: VariantKind,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Variant {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: VariantItem(Variant {
|
|
|
|
kind: self.kind.clean(),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-23 16:14:54 -07:00
|
|
|
impl Clean<Item> for ty::VariantInfo {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
// use syntax::parse::token::special_idents::unnamed_field;
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
2014-05-23 16:14:54 -07:00
|
|
|
let kind = match self.arg_names.as_ref().map(|s| s.as_slice()) {
|
|
|
|
None | Some([]) if self.args.len() == 0 => CLikeVariant,
|
|
|
|
None | Some([]) => {
|
|
|
|
TupleVariant(self.args.iter().map(|t| t.clean()).collect())
|
|
|
|
}
|
|
|
|
Some(s) => {
|
|
|
|
StructVariant(VariantStruct {
|
|
|
|
struct_type: doctree::Plain,
|
|
|
|
fields_stripped: false,
|
|
|
|
fields: s.iter().zip(self.args.iter()).map(|(name, ty)| {
|
|
|
|
Item {
|
|
|
|
source: Span::empty(),
|
|
|
|
name: Some(name.clean()),
|
|
|
|
attrs: Vec::new(),
|
|
|
|
visibility: Some(ast::Public),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: get_stability(self.id),
|
2014-05-24 11:56:38 -07:00
|
|
|
// FIXME: this is not accurate, we need an id for
|
|
|
|
// the specific field but we're using the id
|
|
|
|
// for the whole variant. Nothing currently
|
|
|
|
// uses this so we should be good for now.
|
|
|
|
def_id: self.id,
|
2014-05-23 16:14:54 -07:00
|
|
|
inner: StructFieldItem(
|
|
|
|
TypedStructField(ty.clean())
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}).collect()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
2014-06-26 11:37:39 -07:00
|
|
|
attrs: inline::load_attrs(cx.tcx(), self.id),
|
2014-05-23 16:14:54 -07:00
|
|
|
source: Span::empty(),
|
|
|
|
visibility: Some(ast::Public),
|
|
|
|
def_id: self.id,
|
|
|
|
inner: VariantItem(Variant { kind: kind }),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: None,
|
2014-05-23 16:14:54 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum VariantKind {
|
|
|
|
CLikeVariant,
|
2014-04-19 22:24:52 -07:00
|
|
|
TupleVariant(Vec<Type>),
|
2013-08-15 16:28:54 -04:00
|
|
|
StructVariant(VariantStruct),
|
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<VariantKind> for ast::VariantKind {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> VariantKind {
|
|
|
|
match self {
|
2014-01-09 15:05:33 +02:00
|
|
|
&ast::TupleVariantKind(ref args) => {
|
2013-08-15 16:28:54 -04:00
|
|
|
if args.len() == 0 {
|
|
|
|
CLikeVariant
|
|
|
|
} else {
|
|
|
|
TupleVariant(args.iter().map(|x| x.ty.clean()).collect())
|
|
|
|
}
|
|
|
|
},
|
2014-01-09 15:05:33 +02:00
|
|
|
&ast::StructVariantKind(ref sd) => StructVariant(sd.clean()),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-27 15:12:23 -07:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Span {
|
2014-05-22 16:57:53 -07:00
|
|
|
pub filename: String,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub loline: uint,
|
|
|
|
pub locol: uint,
|
|
|
|
pub hiline: uint,
|
|
|
|
pub hicol: uint,
|
2013-09-27 15:12:23 -07:00
|
|
|
}
|
|
|
|
|
2014-05-23 00:42:33 -07:00
|
|
|
impl Span {
|
|
|
|
fn empty() -> Span {
|
|
|
|
Span {
|
2014-05-25 03:17:19 -07:00
|
|
|
filename: "".to_string(),
|
2014-05-23 00:42:33 -07:00
|
|
|
loline: 0, locol: 0,
|
|
|
|
hiline: 0, hicol: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-27 15:12:23 -07:00
|
|
|
impl Clean<Span> for syntax::codemap::Span {
|
|
|
|
fn clean(&self) -> Span {
|
2014-04-28 20:36:08 -07:00
|
|
|
let ctxt = super::ctxtkey.get().unwrap();
|
2014-04-23 23:29:38 -04:00
|
|
|
let cm = ctxt.sess().codemap();
|
2013-09-27 15:12:23 -07:00
|
|
|
let filename = cm.span_to_filename(*self);
|
|
|
|
let lo = cm.lookup_char_pos(self.lo);
|
|
|
|
let hi = cm.lookup_char_pos(self.hi);
|
|
|
|
Span {
|
2014-05-25 03:17:19 -07:00
|
|
|
filename: filename.to_string(),
|
2013-09-27 15:12:23 -07:00
|
|
|
loline: lo.line,
|
2013-11-01 18:06:31 -07:00
|
|
|
locol: lo.col.to_uint(),
|
2013-09-27 15:12:23 -07:00
|
|
|
hiline: hi.line,
|
2013-11-01 18:06:31 -07:00
|
|
|
hicol: hi.col.to_uint(),
|
2013-09-27 15:12:23 -07:00
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Path {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub global: bool,
|
|
|
|
pub segments: Vec<PathSegment>,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Path> for ast::Path {
|
|
|
|
fn clean(&self) -> Path {
|
|
|
|
Path {
|
2013-09-12 15:11:06 -04:00
|
|
|
global: self.global,
|
2014-02-28 17:46:09 -08:00
|
|
|
segments: self.segments.clean().move_iter().collect(),
|
2013-09-12 15:11:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct PathSegment {
|
2014-05-22 16:57:53 -07:00
|
|
|
pub name: String,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub lifetimes: Vec<Lifetime>,
|
|
|
|
pub types: Vec<Type>,
|
2013-09-12 15:11:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<PathSegment> for ast::PathSegment {
|
|
|
|
fn clean(&self) -> PathSegment {
|
|
|
|
PathSegment {
|
|
|
|
name: self.identifier.clean(),
|
2014-02-28 17:46:09 -08:00
|
|
|
lifetimes: self.lifetimes.clean().move_iter().collect(),
|
|
|
|
types: self.types.clean().move_iter().collect()
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-21 03:39:03 -07:00
|
|
|
fn path_to_string(p: &ast::Path) -> String {
|
2014-05-22 16:57:53 -07:00
|
|
|
let mut s = String::new();
|
2013-08-15 16:28:54 -04:00
|
|
|
let mut first = true;
|
2014-02-14 07:07:09 +02:00
|
|
|
for i in p.segments.iter().map(|x| token::get_ident(x.identifier)) {
|
2013-08-15 16:28:54 -04:00
|
|
|
if !first || p.global {
|
|
|
|
s.push_str("::");
|
|
|
|
} else {
|
|
|
|
first = false;
|
|
|
|
}
|
2014-02-02 02:53:26 +11:00
|
|
|
s.push_str(i.get());
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
2014-05-12 13:44:59 -07:00
|
|
|
s
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-05-22 16:57:53 -07:00
|
|
|
impl Clean<String> for ast::Ident {
|
|
|
|
fn clean(&self) -> String {
|
2014-05-25 03:17:19 -07:00
|
|
|
token::get_ident(*self).get().to_string()
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-24 11:56:38 -07:00
|
|
|
impl Clean<String> for ast::Name {
|
|
|
|
fn clean(&self) -> String {
|
2014-05-25 03:17:19 -07:00
|
|
|
token::get_name(*self).get().to_string()
|
2014-05-23 00:42:33 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Typedef {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub type_: Type,
|
|
|
|
pub generics: Generics,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Typedef {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id.clone()),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: TypedefItem(Typedef {
|
|
|
|
type_: self.ty.clean(),
|
|
|
|
generics: self.gen.clean(),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct BareFunctionDecl {
|
2014-04-06 18:04:40 -07:00
|
|
|
pub fn_style: ast::FnStyle,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub generics: Generics,
|
|
|
|
pub decl: FnDecl,
|
2014-05-22 16:57:53 -07:00
|
|
|
pub abi: String,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<BareFunctionDecl> for ast::BareFnTy {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> BareFunctionDecl {
|
|
|
|
BareFunctionDecl {
|
2014-04-06 18:04:40 -07:00
|
|
|
fn_style: self.fn_style,
|
2013-08-15 16:28:54 -04:00
|
|
|
generics: Generics {
|
2014-02-28 17:46:09 -08:00
|
|
|
lifetimes: self.lifetimes.clean().move_iter().collect(),
|
2014-03-05 15:28:08 -08:00
|
|
|
type_params: Vec::new(),
|
2013-08-15 16:28:54 -04:00
|
|
|
},
|
|
|
|
decl: self.decl.clean(),
|
2014-06-21 03:39:03 -07:00
|
|
|
abi: self.abi.to_string(),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Static {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub type_: Type,
|
|
|
|
pub mutability: Mutability,
|
2013-08-15 16:28:54 -04:00
|
|
|
/// It's useful to have the value of a static documented, but I have no
|
|
|
|
/// desire to represent expressions (that'd basically be all of the AST,
|
|
|
|
/// which is huge!). So, have a string.
|
2014-05-22 16:57:53 -07:00
|
|
|
pub expr: String,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Static {
|
|
|
|
fn clean(&self) -> Item {
|
2013-10-21 13:08:31 -07:00
|
|
|
debug!("claning static {}: {:?}", self.name.clean(), self);
|
2013-08-15 16:28:54 -04:00
|
|
|
Item {
|
|
|
|
name: Some(self.name.clean()),
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: StaticItem(Static {
|
|
|
|
type_: self.type_.clean(),
|
|
|
|
mutability: self.mutability.clean(),
|
|
|
|
expr: self.expr.span.to_src(),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-29 17:45:07 -07:00
|
|
|
#[deriving(Show, Clone, Encodable, Decodable, PartialEq)]
|
2013-08-15 16:28:54 -04:00
|
|
|
pub enum Mutability {
|
|
|
|
Mutable,
|
|
|
|
Immutable,
|
|
|
|
}
|
|
|
|
|
2013-09-05 10:14:35 -04:00
|
|
|
impl Clean<Mutability> for ast::Mutability {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> Mutability {
|
|
|
|
match self {
|
2013-09-05 10:14:35 -04:00
|
|
|
&ast::MutMutable => Mutable,
|
|
|
|
&ast::MutImmutable => Immutable,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Impl {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub generics: Generics,
|
|
|
|
pub trait_: Option<Type>,
|
|
|
|
pub for_: Type,
|
|
|
|
pub methods: Vec<Item>,
|
|
|
|
pub derived: bool,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-05-23 00:42:33 -07:00
|
|
|
fn detect_derived<M: AttrMetaMethods>(attrs: &[M]) -> bool {
|
2014-05-24 11:56:38 -07:00
|
|
|
attr::contains_name(attrs, "automatically_derived")
|
2014-05-23 00:42:33 -07:00
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
impl Clean<Item> for doctree::Impl {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
|
|
|
name: None,
|
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-08-15 16:28:54 -04:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2013-08-15 16:28:54 -04:00
|
|
|
inner: ImplItem(Impl {
|
|
|
|
generics: self.generics.clean(),
|
|
|
|
trait_: self.trait_.clean(),
|
|
|
|
for_: self.for_.clean(),
|
|
|
|
methods: self.methods.clean(),
|
2014-05-23 00:42:33 -07:00
|
|
|
derived: detect_derived(self.attrs.as_slice()),
|
2013-08-15 16:28:54 -04:00
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct ViewItem {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub inner: ViewItemInner,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-05-22 22:00:18 -07:00
|
|
|
impl Clean<Vec<Item>> for ast::ViewItem {
|
|
|
|
fn clean(&self) -> Vec<Item> {
|
2014-07-02 21:27:07 -04:00
|
|
|
// We consider inlining the documentation of `pub use` statements, but we
|
2014-05-24 11:56:38 -07:00
|
|
|
// forcefully don't inline if this is not public or if the
|
|
|
|
// #[doc(no_inline)] attribute is present.
|
2014-05-22 22:00:18 -07:00
|
|
|
let denied = self.vis != ast::Public || self.attrs.iter().any(|a| {
|
|
|
|
a.name().get() == "doc" && match a.meta_item_list() {
|
2014-05-24 11:56:38 -07:00
|
|
|
Some(l) => attr::contains_name(l, "no_inline"),
|
2014-05-22 22:00:18 -07:00
|
|
|
None => false,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
let convert = |node: &ast::ViewItem_| {
|
|
|
|
Item {
|
|
|
|
name: None,
|
|
|
|
attrs: self.attrs.clean().move_iter().collect(),
|
|
|
|
source: self.span.clean(),
|
|
|
|
def_id: ast_util::local_def(0),
|
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: None,
|
2014-05-22 22:00:18 -07:00
|
|
|
inner: ViewItemItem(ViewItem { inner: node.clean() }),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let mut ret = Vec::new();
|
|
|
|
match self.node {
|
|
|
|
ast::ViewItemUse(ref path) if !denied => {
|
|
|
|
match path.node {
|
|
|
|
ast::ViewPathGlob(..) => ret.push(convert(&self.node)),
|
|
|
|
ast::ViewPathList(ref a, ref list, ref b) => {
|
2014-05-24 11:56:38 -07:00
|
|
|
// Attempt to inline all reexported items, but be sure
|
|
|
|
// to keep any non-inlineable reexports so they can be
|
|
|
|
// listed in the documentation.
|
2014-05-22 22:00:18 -07:00
|
|
|
let remaining = list.iter().filter(|path| {
|
2014-05-24 11:56:38 -07:00
|
|
|
match inline::try_inline(path.node.id) {
|
2014-05-23 00:42:33 -07:00
|
|
|
Some(items) => {
|
|
|
|
ret.extend(items.move_iter()); false
|
|
|
|
}
|
2014-05-22 22:00:18 -07:00
|
|
|
None => true,
|
|
|
|
}
|
|
|
|
}).map(|a| a.clone()).collect::<Vec<ast::PathListIdent>>();
|
|
|
|
if remaining.len() > 0 {
|
|
|
|
let path = ast::ViewPathList(a.clone(),
|
|
|
|
remaining,
|
|
|
|
b.clone());
|
|
|
|
let path = syntax::codemap::dummy_spanned(path);
|
2014-05-16 10:15:33 -07:00
|
|
|
ret.push(convert(&ast::ViewItemUse(box(GC) path)));
|
2014-05-22 22:00:18 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::ViewPathSimple(_, _, id) => {
|
2014-05-24 11:56:38 -07:00
|
|
|
match inline::try_inline(id) {
|
2014-05-23 00:42:33 -07:00
|
|
|
Some(items) => ret.extend(items.move_iter()),
|
2014-05-22 22:00:18 -07:00
|
|
|
None => ret.push(convert(&self.node)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ref n => ret.push(convert(n)),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
2014-05-22 22:00:18 -07:00
|
|
|
return ret;
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum ViewItemInner {
|
2014-05-22 16:57:53 -07:00
|
|
|
ExternCrate(String, Option<String>, ast::NodeId),
|
2014-04-26 22:33:45 +09:00
|
|
|
Import(ViewPath)
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<ViewItemInner> for ast::ViewItem_ {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> ViewItemInner {
|
|
|
|
match self {
|
2014-03-07 15:57:45 +08:00
|
|
|
&ast::ViewItemExternCrate(ref i, ref p, ref id) => {
|
2014-01-21 10:08:10 -08:00
|
|
|
let string = match *p {
|
|
|
|
None => None,
|
2014-05-25 03:17:19 -07:00
|
|
|
Some((ref x, _)) => Some(x.get().to_string()),
|
2014-01-21 10:08:10 -08:00
|
|
|
};
|
2014-03-07 15:57:45 +08:00
|
|
|
ExternCrate(i.clean(), string, *id)
|
2014-01-21 10:08:10 -08:00
|
|
|
}
|
2014-02-28 17:46:09 -08:00
|
|
|
&ast::ViewItemUse(ref vp) => {
|
2014-04-26 22:33:45 +09:00
|
|
|
Import(vp.clean())
|
2014-02-28 17:46:09 -08:00
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub enum ViewPath {
|
2013-09-24 13:56:52 -07:00
|
|
|
// use str = source;
|
2014-05-22 16:57:53 -07:00
|
|
|
SimpleImport(String, ImportSource),
|
2013-09-24 13:56:52 -07:00
|
|
|
// use source::*;
|
|
|
|
GlobImport(ImportSource),
|
|
|
|
// use source::{a, b, c};
|
2014-05-09 13:52:17 -07:00
|
|
|
ImportList(ImportSource, Vec<ViewListIdent>),
|
2013-09-24 13:56:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct ImportSource {
|
2014-03-28 10:27:24 -07:00
|
|
|
pub path: Path,
|
|
|
|
pub did: Option<ast::DefId>,
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<ViewPath> for ast::ViewPath {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> ViewPath {
|
|
|
|
match self.node {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::ViewPathSimple(ref i, ref p, id) =>
|
2013-09-24 13:56:52 -07:00
|
|
|
SimpleImport(i.clean(), resolve_use_source(p.clean(), id)),
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::ViewPathGlob(ref p, id) =>
|
2013-09-24 13:56:52 -07:00
|
|
|
GlobImport(resolve_use_source(p.clean(), id)),
|
2014-02-28 17:46:09 -08:00
|
|
|
ast::ViewPathList(ref p, ref pl, id) => {
|
|
|
|
ImportList(resolve_use_source(p.clean(), id),
|
|
|
|
pl.clean().move_iter().collect())
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-24 13:56:52 -07:00
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct ViewListIdent {
|
2014-05-22 16:57:53 -07:00
|
|
|
pub name: String,
|
2014-03-28 10:27:24 -07:00
|
|
|
pub source: Option<ast::DefId>,
|
2013-09-24 13:56:52 -07:00
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<ViewListIdent> for ast::PathListIdent {
|
2013-08-15 16:28:54 -04:00
|
|
|
fn clean(&self) -> ViewListIdent {
|
2013-09-24 13:56:52 -07:00
|
|
|
ViewListIdent {
|
|
|
|
name: self.node.name.clean(),
|
|
|
|
source: resolve_def(self.node.id),
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-28 17:46:09 -08:00
|
|
|
impl Clean<Vec<Item>> for ast::ForeignMod {
|
|
|
|
fn clean(&self) -> Vec<Item> {
|
2013-09-26 11:57:25 -07:00
|
|
|
self.items.clean()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
impl Clean<Item> for ast::ForeignItem {
|
2013-09-26 11:57:25 -07:00
|
|
|
fn clean(&self) -> Item {
|
|
|
|
let inner = match self.node {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::ForeignItemFn(ref decl, ref generics) => {
|
2013-09-26 11:57:25 -07:00
|
|
|
ForeignFunctionItem(Function {
|
|
|
|
decl: decl.clean(),
|
|
|
|
generics: generics.clean(),
|
2014-05-14 16:33:15 -07:00
|
|
|
fn_style: ast::UnsafeFn,
|
2013-09-26 11:57:25 -07:00
|
|
|
})
|
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::ForeignItemStatic(ref ty, mutbl) => {
|
2013-09-26 11:57:25 -07:00
|
|
|
ForeignStaticItem(Static {
|
|
|
|
type_: ty.clean(),
|
|
|
|
mutability: if mutbl {Mutable} else {Immutable},
|
2014-05-25 03:17:19 -07:00
|
|
|
expr: "".to_string(),
|
2013-09-26 11:57:25 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Item {
|
|
|
|
name: Some(self.ident.clean()),
|
2014-02-28 17:46:09 -08:00
|
|
|
attrs: self.attrs.clean().move_iter().collect(),
|
2013-09-26 11:57:25 -07:00
|
|
|
source: self.span.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2013-09-26 11:57:25 -07:00
|
|
|
visibility: self.vis.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: None,
|
2013-09-26 11:57:25 -07:00
|
|
|
inner: inner,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
// Utilities
|
|
|
|
|
|
|
|
trait ToSource {
|
2014-05-22 16:57:53 -07:00
|
|
|
fn to_src(&self) -> String;
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
|
2013-09-05 10:14:35 -04:00
|
|
|
impl ToSource for syntax::codemap::Span {
|
2014-05-22 16:57:53 -07:00
|
|
|
fn to_src(&self) -> String {
|
2013-10-21 13:08:31 -07:00
|
|
|
debug!("converting span {:?} to snippet", self.clean());
|
2014-04-28 20:36:08 -07:00
|
|
|
let ctxt = super::ctxtkey.get().unwrap();
|
2014-04-23 23:29:38 -04:00
|
|
|
let cm = ctxt.sess().codemap().clone();
|
2013-08-15 16:28:54 -04:00
|
|
|
let sn = match cm.span_to_snippet(*self) {
|
2014-05-25 03:17:19 -07:00
|
|
|
Some(x) => x.to_string(),
|
|
|
|
None => "".to_string()
|
2013-08-15 16:28:54 -04:00
|
|
|
};
|
2013-10-21 13:08:31 -07:00
|
|
|
debug!("got snippet {}", sn);
|
2013-08-15 16:28:54 -04:00
|
|
|
sn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-21 03:39:03 -07:00
|
|
|
fn lit_to_string(lit: &ast::Lit) -> String {
|
2013-08-15 16:28:54 -04:00
|
|
|
match lit.node {
|
2014-05-25 03:17:19 -07:00
|
|
|
ast::LitStr(ref st, _) => st.get().to_string(),
|
2014-05-27 20:44:58 -07:00
|
|
|
ast::LitBinary(ref data) => format!("{:?}", data.as_slice()),
|
2014-06-06 16:04:04 +01:00
|
|
|
ast::LitByte(b) => {
|
|
|
|
let mut res = String::from_str("b'");
|
|
|
|
(b as char).escape_default(|c| {
|
|
|
|
res.push_char(c);
|
|
|
|
});
|
|
|
|
res.push_char('\'');
|
|
|
|
res
|
|
|
|
},
|
2014-05-27 20:44:58 -07:00
|
|
|
ast::LitChar(c) => format!("'{}'", c),
|
2014-06-21 03:39:03 -07:00
|
|
|
ast::LitInt(i, _t) => i.to_string(),
|
|
|
|
ast::LitUint(u, _t) => u.to_string(),
|
|
|
|
ast::LitIntUnsuffixed(i) => i.to_string(),
|
2014-05-25 03:17:19 -07:00
|
|
|
ast::LitFloat(ref f, _t) => f.get().to_string(),
|
|
|
|
ast::LitFloatUnsuffixed(ref f) => f.get().to_string(),
|
2014-06-21 03:39:03 -07:00
|
|
|
ast::LitBool(b) => b.to_string(),
|
2014-05-25 03:17:19 -07:00
|
|
|
ast::LitNil => "".to_string(),
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-22 16:57:53 -07:00
|
|
|
fn name_from_pat(p: &ast::Pat) -> String {
|
2013-08-15 16:28:54 -04:00
|
|
|
use syntax::ast::*;
|
2013-12-29 00:13:29 -05:00
|
|
|
debug!("Trying to get a name from pattern: {:?}", p);
|
|
|
|
|
2013-08-15 16:28:54 -04:00
|
|
|
match p.node {
|
2014-05-25 03:17:19 -07:00
|
|
|
PatWild => "_".to_string(),
|
|
|
|
PatWildMulti => "..".to_string(),
|
2014-06-30 18:02:14 -07:00
|
|
|
PatIdent(_, ref p, _) => token::get_ident(p.node).get().to_string(),
|
2014-06-21 03:39:03 -07:00
|
|
|
PatEnum(ref p, _) => path_to_string(p),
|
2013-11-28 12:22:53 -08:00
|
|
|
PatStruct(..) => fail!("tried to get argument name from pat_struct, \
|
2013-09-05 10:14:35 -04:00
|
|
|
which is not allowed in function arguments"),
|
2014-05-25 03:17:19 -07:00
|
|
|
PatTup(..) => "(tuple arg NYI)".to_string(),
|
2014-05-16 10:15:33 -07:00
|
|
|
PatBox(p) => name_from_pat(&*p),
|
|
|
|
PatRegion(p) => name_from_pat(&*p),
|
2013-12-29 00:13:29 -05:00
|
|
|
PatLit(..) => {
|
|
|
|
warn!("tried to get argument name from PatLit, \
|
|
|
|
which is silly in function arguments");
|
2014-05-25 03:17:19 -07:00
|
|
|
"()".to_string()
|
2013-12-29 00:13:29 -05:00
|
|
|
},
|
|
|
|
PatRange(..) => fail!("tried to get argument name from PatRange, \
|
2013-09-05 10:14:35 -04:00
|
|
|
which is not allowed in function arguments"),
|
2013-11-28 12:22:53 -08:00
|
|
|
PatVec(..) => fail!("tried to get argument name from pat_vec, \
|
2014-05-19 13:29:41 -07:00
|
|
|
which is not allowed in function arguments"),
|
|
|
|
PatMac(..) => {
|
|
|
|
warn!("can't document the name of a function argument \
|
|
|
|
produced by a pattern macro");
|
|
|
|
"(argument produced by macro)".to_string()
|
|
|
|
}
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Given a Type, resolve it using the def_map
|
2014-05-03 02:08:58 -07:00
|
|
|
fn resolve_type(path: Path, tpbs: Option<Vec<TyParamBound>>,
|
2013-09-24 13:53:09 -07:00
|
|
|
id: ast::NodeId) -> Type {
|
2014-06-26 11:37:39 -07:00
|
|
|
let cx = get_cx();
|
2014-03-05 16:36:01 +02:00
|
|
|
let tycx = match cx.maybe_typed {
|
|
|
|
core::Typed(ref tycx) => tycx,
|
2013-12-22 11:23:04 -08:00
|
|
|
// If we're extracting tests, this return value doesn't matter.
|
2014-05-28 19:53:37 -07:00
|
|
|
core::NotTyped(_) => return Primitive(Bool),
|
2013-12-22 11:23:04 -08:00
|
|
|
};
|
2013-10-21 13:08:31 -07:00
|
|
|
debug!("searching for {:?} in defmap", id);
|
2014-05-09 13:52:17 -07:00
|
|
|
let def = match tycx.def_map.borrow().find(&id) {
|
2014-03-20 21:52:59 -07:00
|
|
|
Some(&k) => k,
|
2014-05-09 13:52:17 -07:00
|
|
|
None => fail!("unresolved id not in defmap")
|
2013-08-15 16:28:54 -04:00
|
|
|
};
|
|
|
|
|
2014-05-09 13:52:17 -07:00
|
|
|
match def {
|
2014-05-14 15:31:30 -04:00
|
|
|
def::DefSelfTy(i) => return Self(ast_util::local_def(i)),
|
|
|
|
def::DefPrimTy(p) => match p {
|
2014-05-28 19:53:37 -07:00
|
|
|
ast::TyStr => return Primitive(Str),
|
|
|
|
ast::TyBool => return Primitive(Bool),
|
|
|
|
ast::TyChar => return Primitive(Char),
|
|
|
|
ast::TyInt(ast::TyI) => return Primitive(Int),
|
|
|
|
ast::TyInt(ast::TyI8) => return Primitive(I8),
|
|
|
|
ast::TyInt(ast::TyI16) => return Primitive(I16),
|
|
|
|
ast::TyInt(ast::TyI32) => return Primitive(I32),
|
|
|
|
ast::TyInt(ast::TyI64) => return Primitive(I64),
|
|
|
|
ast::TyUint(ast::TyU) => return Primitive(Uint),
|
|
|
|
ast::TyUint(ast::TyU8) => return Primitive(U8),
|
|
|
|
ast::TyUint(ast::TyU16) => return Primitive(U16),
|
|
|
|
ast::TyUint(ast::TyU32) => return Primitive(U32),
|
|
|
|
ast::TyUint(ast::TyU64) => return Primitive(U64),
|
|
|
|
ast::TyFloat(ast::TyF32) => return Primitive(F32),
|
|
|
|
ast::TyFloat(ast::TyF64) => return Primitive(F64),
|
2013-08-15 16:28:54 -04:00
|
|
|
},
|
2014-05-31 18:53:13 -04:00
|
|
|
def::DefTyParam(_, i, _) => return Generic(i),
|
2014-05-14 15:31:30 -04:00
|
|
|
def::DefTyParamBinder(i) => return TyParamBinder(i),
|
2014-05-09 13:52:17 -07:00
|
|
|
_ => {}
|
|
|
|
};
|
2014-06-26 11:37:39 -07:00
|
|
|
let did = register_def(&*cx, def);
|
2014-05-09 13:52:17 -07:00
|
|
|
ResolvedPath { path: path, typarams: tpbs, did: did }
|
|
|
|
}
|
|
|
|
|
2014-05-14 15:31:30 -04:00
|
|
|
fn register_def(cx: &core::DocContext, def: def::Def) -> ast::DefId {
|
2014-05-09 13:52:17 -07:00
|
|
|
let (did, kind) = match def {
|
2014-05-14 15:31:30 -04:00
|
|
|
def::DefFn(i, _) => (i, TypeFunction),
|
|
|
|
def::DefTy(i) => (i, TypeEnum),
|
|
|
|
def::DefTrait(i) => (i, TypeTrait),
|
|
|
|
def::DefStruct(i) => (i, TypeStruct),
|
|
|
|
def::DefMod(i) => (i, TypeModule),
|
|
|
|
def::DefStatic(i, _) => (i, TypeStatic),
|
|
|
|
def::DefVariant(i, _, _) => (i, TypeEnum),
|
|
|
|
_ => return def.def_id()
|
2013-08-15 16:28:54 -04:00
|
|
|
};
|
2014-05-09 13:52:17 -07:00
|
|
|
if ast_util::is_local(did) { return did }
|
|
|
|
let tcx = match cx.maybe_typed {
|
|
|
|
core::Typed(ref t) => t,
|
|
|
|
core::NotTyped(_) => return did
|
|
|
|
};
|
2014-05-24 11:56:38 -07:00
|
|
|
inline::record_extern_fqn(cx, did, kind);
|
2014-05-03 02:08:58 -07:00
|
|
|
match kind {
|
|
|
|
TypeTrait => {
|
2014-05-24 11:56:38 -07:00
|
|
|
let t = inline::build_external_trait(tcx, did);
|
2014-05-03 02:08:58 -07:00
|
|
|
cx.external_traits.borrow_mut().get_mut_ref().insert(did, t);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
2014-05-09 13:52:17 -07:00
|
|
|
return did;
|
2013-08-15 16:28:54 -04:00
|
|
|
}
|
2013-09-24 13:56:52 -07:00
|
|
|
|
|
|
|
fn resolve_use_source(path: Path, id: ast::NodeId) -> ImportSource {
|
|
|
|
ImportSource {
|
|
|
|
path: path,
|
|
|
|
did: resolve_def(id),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn resolve_def(id: ast::NodeId) -> Option<ast::DefId> {
|
2014-06-26 11:37:39 -07:00
|
|
|
get_cx().tcx_opt().and_then(|tcx| {
|
|
|
|
tcx.def_map.borrow().find(&id).map(|&def| register_def(&*get_cx(), def))
|
|
|
|
})
|
2013-09-24 13:56:52 -07:00
|
|
|
}
|
2014-02-16 21:40:26 -08:00
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Macro {
|
2014-05-22 16:57:53 -07:00
|
|
|
pub source: String,
|
2014-02-16 21:40:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Item> for doctree::Macro {
|
|
|
|
fn clean(&self) -> Item {
|
|
|
|
Item {
|
2014-05-27 20:44:58 -07:00
|
|
|
name: Some(format!("{}!", self.name.clean())),
|
2014-02-16 21:40:26 -08:00
|
|
|
attrs: self.attrs.clean(),
|
|
|
|
source: self.where.clean(),
|
|
|
|
visibility: ast::Public.clean(),
|
2014-06-26 11:37:39 -07:00
|
|
|
stability: self.stab.clean(),
|
2014-05-03 02:08:58 -07:00
|
|
|
def_id: ast_util::local_def(self.id),
|
2014-02-16 21:40:26 -08:00
|
|
|
inner: MacroItem(Macro {
|
|
|
|
source: self.where.to_src(),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 11:37:39 -07:00
|
|
|
|
|
|
|
#[deriving(Clone, Encodable, Decodable)]
|
|
|
|
pub struct Stability {
|
|
|
|
pub level: attr::StabilityLevel,
|
|
|
|
pub text: String
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clean<Stability> for attr::Stability {
|
|
|
|
fn clean(&self) -> Stability {
|
|
|
|
Stability {
|
|
|
|
level: self.level,
|
|
|
|
text: self.text.as_ref().map_or("".to_string(),
|
|
|
|
|interned| interned.get().to_string()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|