]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/render.rs
rustdoc: Sort implementors
[rust.git] / src / librustdoc / html / render.rs
1 // Copyright 2013-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Rustdoc's HTML Rendering module
12 //!
13 //! This modules contains the bulk of the logic necessary for rendering a
14 //! rustdoc `clean::Crate` instance to a set of static HTML pages. This
15 //! rendering process is largely driven by the `format!` syntax extension to
16 //! perform all I/O into files and streams.
17 //!
18 //! The rendering process is largely driven by the `Context` and `Cache`
19 //! structures. The cache is pre-populated by crawling the crate in question,
20 //! and then it is shared among the various rendering threads. The cache is meant
21 //! to be a fairly large structure not implementing `Clone` (because it's shared
22 //! among threads). The context, however, should be a lightweight structure. This
23 //! is cloned per-thread and contains information about what is currently being
24 //! rendered.
25 //!
26 //! In order to speed up rendering (mostly because of markdown rendering), the
27 //! rendering process has been parallelized. This parallelization is only
28 //! exposed through the `crate` method on the context, and then also from the
29 //! fact that the shared cache is stored in TLS (and must be accessed as such).
30 //!
31 //! In addition to rendering the crate itself, this module is also responsible
32 //! for creating the corresponding search index and source file renderings.
33 //! These threads are not parallelized (they haven't been a bottleneck yet), and
34 //! both occur before the crate is rendered.
35
36 pub use self::ExternalLocation::*;
37
38 use std::borrow::Cow;
39 use std::cell::RefCell;
40 use std::cmp::Ordering;
41 use std::collections::{BTreeMap, VecDeque};
42 use std::default::Default;
43 use std::error;
44 use std::fmt::{self, Display, Formatter, Write as FmtWrite};
45 use std::ffi::OsStr;
46 use std::fs::{self, File, OpenOptions};
47 use std::io::prelude::*;
48 use std::io::{self, BufWriter, BufReader};
49 use std::mem;
50 use std::path::{PathBuf, Path, Component};
51 use std::str;
52 use std::sync::Arc;
53 use std::rc::Rc;
54
55 use externalfiles::ExternalHtml;
56
57 use serialize::json::{ToJson, Json, as_json};
58 use syntax::ast;
59 use syntax::source_map::FileName;
60 use syntax::feature_gate::UnstableFeatures;
61 use rustc::hir::def_id::{CrateNum, CRATE_DEF_INDEX, DefId};
62 use rustc::middle::privacy::AccessLevels;
63 use rustc::middle::stability;
64 use rustc::hir;
65 use rustc::util::nodemap::{FxHashMap, FxHashSet};
66 use rustc_data_structures::flock;
67
68 use clean::{self, AttributesExt, GetDefId, SelfTy, Mutability};
69 use doctree;
70 use fold::DocFolder;
71 use html::escape::Escape;
72 use html::format::{AsyncSpace, ConstnessSpace};
73 use html::format::{GenericBounds, WhereClause, href, AbiSpace};
74 use html::format::{VisSpace, Method, UnsafetySpace, MutableSpace};
75 use html::format::fmt_impl_for_trait_page;
76 use html::item_type::ItemType;
77 use html::markdown::{self, Markdown, MarkdownHtml, MarkdownSummaryLine, ErrorCodes, IdMap};
78 use html::{highlight, layout};
79
80 use minifier;
81
82 /// A pair of name and its optional document.
83 pub type NameDoc = (String, Option<String>);
84
85 /// Major driving force in all rustdoc rendering. This contains information
86 /// about where in the tree-like hierarchy rendering is occurring and controls
87 /// how the current page is being rendered.
88 ///
89 /// It is intended that this context is a lightweight object which can be fairly
90 /// easily cloned because it is cloned per work-job (about once per item in the
91 /// rustdoc tree).
92 #[derive(Clone)]
93 struct Context {
94     /// Current hierarchy of components leading down to what's currently being
95     /// rendered
96     pub current: Vec<String>,
97     /// The current destination folder of where HTML artifacts should be placed.
98     /// This changes as the context descends into the module hierarchy.
99     pub dst: PathBuf,
100     /// A flag, which when `true`, will render pages which redirect to the
101     /// real location of an item. This is used to allow external links to
102     /// publicly reused items to redirect to the right location.
103     pub render_redirect_pages: bool,
104     pub codes: ErrorCodes,
105     /// The map used to ensure all generated 'id=' attributes are unique.
106     id_map: Rc<RefCell<IdMap>>,
107     pub shared: Arc<SharedContext>,
108 }
109
110 struct SharedContext {
111     /// The path to the crate root source minus the file name.
112     /// Used for simplifying paths to the highlighted source code files.
113     pub src_root: PathBuf,
114     /// This describes the layout of each page, and is not modified after
115     /// creation of the context (contains info like the favicon and added html).
116     pub layout: layout::Layout,
117     /// This flag indicates whether `[src]` links should be generated or not. If
118     /// the source files are present in the html rendering, then this will be
119     /// `true`.
120     pub include_sources: bool,
121     /// The local file sources we've emitted and their respective url-paths.
122     pub local_sources: FxHashMap<PathBuf, String>,
123     /// All the passes that were run on this crate.
124     pub passes: FxHashSet<String>,
125     /// The base-URL of the issue tracker for when an item has been tagged with
126     /// an issue number.
127     pub issue_tracker_base_url: Option<String>,
128     /// The given user css file which allow to customize the generated
129     /// documentation theme.
130     pub css_file_extension: Option<PathBuf>,
131     /// The directories that have already been created in this doc run. Used to reduce the number
132     /// of spurious `create_dir_all` calls.
133     pub created_dirs: RefCell<FxHashSet<PathBuf>>,
134     /// This flag indicates whether listings of modules (in the side bar and documentation itself)
135     /// should be ordered alphabetically or in order of appearance (in the source code).
136     pub sort_modules_alphabetically: bool,
137     /// Additional themes to be added to the generated docs.
138     pub themes: Vec<PathBuf>,
139     /// Suffix to be added on resource files (if suffix is "-v2" then "light.css" becomes
140     /// "light-v2.css").
141     pub resource_suffix: String,
142 }
143
144 impl SharedContext {
145     fn ensure_dir(&self, dst: &Path) -> io::Result<()> {
146         let mut dirs = self.created_dirs.borrow_mut();
147         if !dirs.contains(dst) {
148             fs::create_dir_all(dst)?;
149             dirs.insert(dst.to_path_buf());
150         }
151
152         Ok(())
153     }
154 }
155
156 impl SharedContext {
157     /// Returns whether the `collapse-docs` pass was run on this crate.
158     pub fn was_collapsed(&self) -> bool {
159         self.passes.contains("collapse-docs")
160     }
161
162     /// Based on whether the `collapse-docs` pass was run, return either the `doc_value` or the
163     /// `collapsed_doc_value` of the given item.
164     pub fn maybe_collapsed_doc_value<'a>(&self, item: &'a clean::Item) -> Option<Cow<'a, str>> {
165         if self.was_collapsed() {
166             item.collapsed_doc_value().map(|s| s.into())
167         } else {
168             item.doc_value().map(|s| s.into())
169         }
170     }
171 }
172
173 /// Indicates where an external crate can be found.
174 pub enum ExternalLocation {
175     /// Remote URL root of the external crate
176     Remote(String),
177     /// This external crate can be found in the local doc/ folder
178     Local,
179     /// The external crate could not be found.
180     Unknown,
181 }
182
183 /// Metadata about implementations for a type or trait.
184 #[derive(Clone, Debug)]
185 pub struct Impl {
186     pub impl_item: clean::Item,
187 }
188
189 impl Impl {
190     fn inner_impl(&self) -> &clean::Impl {
191         match self.impl_item.inner {
192             clean::ImplItem(ref impl_) => impl_,
193             _ => panic!("non-impl item found in impl")
194         }
195     }
196
197     fn trait_did(&self) -> Option<DefId> {
198         self.inner_impl().trait_.def_id()
199     }
200 }
201
202 #[derive(Debug)]
203 pub struct Error {
204     file: PathBuf,
205     error: io::Error,
206 }
207
208 impl error::Error for Error {
209     fn description(&self) -> &str {
210         self.error.description()
211     }
212 }
213
214 impl Display for Error {
215     fn fmt(&self, f: &mut Formatter) -> fmt::Result {
216         write!(f, "\"{}\": {}", self.file.display(), self.error)
217     }
218 }
219
220 impl Error {
221     pub fn new(e: io::Error, file: &Path) -> Error {
222         Error {
223             file: file.to_path_buf(),
224             error: e,
225         }
226     }
227 }
228
229 macro_rules! try_none {
230     ($e:expr, $file:expr) => ({
231         use std::io;
232         match $e {
233             Some(e) => e,
234             None => return Err(Error::new(io::Error::new(io::ErrorKind::Other, "not found"),
235                                           $file))
236         }
237     })
238 }
239
240 macro_rules! try_err {
241     ($e:expr, $file:expr) => ({
242         match $e {
243             Ok(e) => e,
244             Err(e) => return Err(Error::new(e, $file)),
245         }
246     })
247 }
248
249 /// This cache is used to store information about the `clean::Crate` being
250 /// rendered in order to provide more useful documentation. This contains
251 /// information like all implementors of a trait, all traits a type implements,
252 /// documentation for all known traits, etc.
253 ///
254 /// This structure purposefully does not implement `Clone` because it's intended
255 /// to be a fairly large and expensive structure to clone. Instead this adheres
256 /// to `Send` so it may be stored in a `Arc` instance and shared among the various
257 /// rendering threads.
258 #[derive(Default)]
259 pub struct Cache {
260     /// Mapping of typaram ids to the name of the type parameter. This is used
261     /// when pretty-printing a type (so pretty printing doesn't have to
262     /// painfully maintain a context like this)
263     pub typarams: FxHashMap<DefId, String>,
264
265     /// Maps a type id to all known implementations for that type. This is only
266     /// recognized for intra-crate `ResolvedPath` types, and is used to print
267     /// out extra documentation on the page of an enum/struct.
268     ///
269     /// The values of the map are a list of implementations and documentation
270     /// found on that implementation.
271     pub impls: FxHashMap<DefId, Vec<Impl>>,
272
273     /// Maintains a mapping of local crate node ids to the fully qualified name
274     /// and "short type description" of that node. This is used when generating
275     /// URLs when a type is being linked to. External paths are not located in
276     /// this map because the `External` type itself has all the information
277     /// necessary.
278     pub paths: FxHashMap<DefId, (Vec<String>, ItemType)>,
279
280     /// Similar to `paths`, but only holds external paths. This is only used for
281     /// generating explicit hyperlinks to other crates.
282     pub external_paths: FxHashMap<DefId, (Vec<String>, ItemType)>,
283
284     /// Maps local def ids of exported types to fully qualified paths.
285     /// Unlike 'paths', this mapping ignores any renames that occur
286     /// due to 'use' statements.
287     ///
288     /// This map is used when writing out the special 'implementors'
289     /// javascript file. By using the exact path that the type
290     /// is declared with, we ensure that each path will be identical
291     /// to the path used if the corresponding type is inlined. By
292     /// doing this, we can detect duplicate impls on a trait page, and only display
293     /// the impl for the inlined type.
294     pub exact_paths: FxHashMap<DefId, Vec<String>>,
295
296     /// This map contains information about all known traits of this crate.
297     /// Implementations of a crate should inherit the documentation of the
298     /// parent trait if no extra documentation is specified, and default methods
299     /// should show up in documentation about trait implementations.
300     pub traits: FxHashMap<DefId, clean::Trait>,
301
302     /// When rendering traits, it's often useful to be able to list all
303     /// implementors of the trait, and this mapping is exactly, that: a mapping
304     /// of trait ids to the list of known implementors of the trait
305     pub implementors: FxHashMap<DefId, Vec<Impl>>,
306
307     /// Cache of where external crate documentation can be found.
308     pub extern_locations: FxHashMap<CrateNum, (String, PathBuf, ExternalLocation)>,
309
310     /// Cache of where documentation for primitives can be found.
311     pub primitive_locations: FxHashMap<clean::PrimitiveType, DefId>,
312
313     // Note that external items for which `doc(hidden)` applies to are shown as
314     // non-reachable while local items aren't. This is because we're reusing
315     // the access levels from crateanalysis.
316     pub access_levels: Arc<AccessLevels<DefId>>,
317
318     /// The version of the crate being documented, if given from the `--crate-version` flag.
319     pub crate_version: Option<String>,
320
321     // Private fields only used when initially crawling a crate to build a cache
322
323     stack: Vec<String>,
324     parent_stack: Vec<DefId>,
325     parent_is_trait_impl: bool,
326     search_index: Vec<IndexItem>,
327     stripped_mod: bool,
328     deref_trait_did: Option<DefId>,
329     deref_mut_trait_did: Option<DefId>,
330     owned_box_did: Option<DefId>,
331     masked_crates: FxHashSet<CrateNum>,
332
333     // In rare case where a structure is defined in one module but implemented
334     // in another, if the implementing module is parsed before defining module,
335     // then the fully qualified name of the structure isn't presented in `paths`
336     // yet when its implementation methods are being indexed. Caches such methods
337     // and their parent id here and indexes them at the end of crate parsing.
338     orphan_impl_items: Vec<(DefId, clean::Item)>,
339
340     /// Aliases added through `#[doc(alias = "...")]`. Since a few items can have the same alias,
341     /// we need the alias element to have an array of items.
342     aliases: FxHashMap<String, Vec<IndexItem>>,
343 }
344
345 /// Temporary storage for data obtained during `RustdocVisitor::clean()`.
346 /// Later on moved into `CACHE_KEY`.
347 #[derive(Default)]
348 pub struct RenderInfo {
349     pub inlined: FxHashSet<DefId>,
350     pub external_paths: ::core::ExternalPaths,
351     pub external_typarams: FxHashMap<DefId, String>,
352     pub exact_paths: FxHashMap<DefId, Vec<String>>,
353     pub deref_trait_did: Option<DefId>,
354     pub deref_mut_trait_did: Option<DefId>,
355     pub owned_box_did: Option<DefId>,
356 }
357
358 /// Helper struct to render all source code to HTML pages
359 struct SourceCollector<'a> {
360     scx: &'a mut SharedContext,
361
362     /// Root destination to place all HTML output into
363     dst: PathBuf,
364 }
365
366 /// Wrapper struct to render the source code of a file. This will do things like
367 /// adding line numbers to the left-hand side.
368 struct Source<'a>(&'a str);
369
370 // Helper structs for rendering items/sidebars and carrying along contextual
371 // information
372
373 #[derive(Copy, Clone)]
374 struct Item<'a> {
375     cx: &'a Context,
376     item: &'a clean::Item,
377 }
378
379 struct Sidebar<'a> { cx: &'a Context, item: &'a clean::Item, }
380
381 /// Struct representing one entry in the JS search index. These are all emitted
382 /// by hand to a large JS file at the end of cache-creation.
383 #[derive(Debug)]
384 struct IndexItem {
385     ty: ItemType,
386     name: String,
387     path: String,
388     desc: String,
389     parent: Option<DefId>,
390     parent_idx: Option<usize>,
391     search_type: Option<IndexItemFunctionType>,
392 }
393
394 impl ToJson for IndexItem {
395     fn to_json(&self) -> Json {
396         assert_eq!(self.parent.is_some(), self.parent_idx.is_some());
397
398         let mut data = Vec::with_capacity(6);
399         data.push((self.ty as usize).to_json());
400         data.push(self.name.to_json());
401         data.push(self.path.to_json());
402         data.push(self.desc.to_json());
403         data.push(self.parent_idx.to_json());
404         data.push(self.search_type.to_json());
405
406         Json::Array(data)
407     }
408 }
409
410 /// A type used for the search index.
411 #[derive(Debug)]
412 struct Type {
413     name: Option<String>,
414     generics: Option<Vec<String>>,
415 }
416
417 impl ToJson for Type {
418     fn to_json(&self) -> Json {
419         match self.name {
420             Some(ref name) => {
421                 let mut data = Vec::with_capacity(2);
422                 data.push(name.to_json());
423                 if let Some(ref generics) = self.generics {
424                     data.push(generics.to_json());
425                 }
426                 Json::Array(data)
427             }
428             None => Json::Null
429         }
430     }
431 }
432
433 /// Full type of functions/methods in the search index.
434 #[derive(Debug)]
435 struct IndexItemFunctionType {
436     inputs: Vec<Type>,
437     output: Option<Type>,
438 }
439
440 impl ToJson for IndexItemFunctionType {
441     fn to_json(&self) -> Json {
442         // If we couldn't figure out a type, just write `null`.
443         if self.inputs.iter().chain(self.output.iter()).any(|ref i| i.name.is_none()) {
444             Json::Null
445         } else {
446             let mut data = Vec::with_capacity(2);
447             data.push(self.inputs.to_json());
448             if let Some(ref output) = self.output {
449                 data.push(output.to_json());
450             }
451             Json::Array(data)
452         }
453     }
454 }
455
456 thread_local!(static CACHE_KEY: RefCell<Arc<Cache>> = Default::default());
457 thread_local!(pub static CURRENT_LOCATION_KEY: RefCell<Vec<String>> = RefCell::new(Vec::new()));
458
459 pub fn initial_ids() -> Vec<String> {
460     [
461      "main",
462      "search",
463      "help",
464      "TOC",
465      "render-detail",
466      "associated-types",
467      "associated-const",
468      "required-methods",
469      "provided-methods",
470      "implementors",
471      "synthetic-implementors",
472      "implementors-list",
473      "synthetic-implementors-list",
474      "methods",
475      "deref-methods",
476      "implementations",
477     ].into_iter().map(|id| (String::from(*id))).collect()
478 }
479
480 /// Generates the documentation for `crate` into the directory `dst`
481 pub fn run(mut krate: clean::Crate,
482            extern_urls: BTreeMap<String, String>,
483            external_html: &ExternalHtml,
484            playground_url: Option<String>,
485            dst: PathBuf,
486            resource_suffix: String,
487            passes: FxHashSet<String>,
488            css_file_extension: Option<PathBuf>,
489            renderinfo: RenderInfo,
490            sort_modules_alphabetically: bool,
491            themes: Vec<PathBuf>,
492            enable_minification: bool,
493            id_map: IdMap) -> Result<(), Error> {
494     let src_root = match krate.src {
495         FileName::Real(ref p) => match p.parent() {
496             Some(p) => p.to_path_buf(),
497             None => PathBuf::new(),
498         },
499         _ => PathBuf::new(),
500     };
501     let mut scx = SharedContext {
502         src_root,
503         passes,
504         include_sources: true,
505         local_sources: FxHashMap(),
506         issue_tracker_base_url: None,
507         layout: layout::Layout {
508             logo: String::new(),
509             favicon: String::new(),
510             external_html: external_html.clone(),
511             krate: krate.name.clone(),
512         },
513         css_file_extension: css_file_extension.clone(),
514         created_dirs: RefCell::new(FxHashSet()),
515         sort_modules_alphabetically,
516         themes,
517         resource_suffix,
518     };
519
520     // If user passed in `--playground-url` arg, we fill in crate name here
521     if let Some(url) = playground_url {
522         markdown::PLAYGROUND.with(|slot| {
523             *slot.borrow_mut() = Some((Some(krate.name.clone()), url));
524         });
525     }
526
527     // Crawl the crate attributes looking for attributes which control how we're
528     // going to emit HTML
529     if let Some(attrs) = krate.module.as_ref().map(|m| &m.attrs) {
530         for attr in attrs.lists("doc") {
531             let name = attr.name().map(|s| s.as_str());
532             match (name.as_ref().map(|s| &s[..]), attr.value_str()) {
533                 (Some("html_favicon_url"), Some(s)) => {
534                     scx.layout.favicon = s.to_string();
535                 }
536                 (Some("html_logo_url"), Some(s)) => {
537                     scx.layout.logo = s.to_string();
538                 }
539                 (Some("html_playground_url"), Some(s)) => {
540                     markdown::PLAYGROUND.with(|slot| {
541                         let name = krate.name.clone();
542                         *slot.borrow_mut() = Some((Some(name), s.to_string()));
543                     });
544                 }
545                 (Some("issue_tracker_base_url"), Some(s)) => {
546                     scx.issue_tracker_base_url = Some(s.to_string());
547                 }
548                 (Some("html_no_source"), None) if attr.is_word() => {
549                     scx.include_sources = false;
550                 }
551                 _ => {}
552             }
553         }
554     }
555     try_err!(fs::create_dir_all(&dst), &dst);
556     krate = render_sources(&dst, &mut scx, krate)?;
557     let cx = Context {
558         current: Vec::new(),
559         dst,
560         render_redirect_pages: false,
561         codes: ErrorCodes::from(UnstableFeatures::from_environment().is_nightly_build()),
562         id_map: Rc::new(RefCell::new(id_map)),
563         shared: Arc::new(scx),
564     };
565
566     // Crawl the crate to build various caches used for the output
567     let RenderInfo {
568         inlined: _,
569         external_paths,
570         external_typarams,
571         exact_paths,
572         deref_trait_did,
573         deref_mut_trait_did,
574         owned_box_did,
575     } = renderinfo;
576
577     let external_paths = external_paths.into_iter()
578         .map(|(k, (v, t))| (k, (v, ItemType::from(t))))
579         .collect();
580
581     let mut cache = Cache {
582         impls: FxHashMap(),
583         external_paths,
584         exact_paths,
585         paths: FxHashMap(),
586         implementors: FxHashMap(),
587         stack: Vec::new(),
588         parent_stack: Vec::new(),
589         search_index: Vec::new(),
590         parent_is_trait_impl: false,
591         extern_locations: FxHashMap(),
592         primitive_locations: FxHashMap(),
593         stripped_mod: false,
594         access_levels: krate.access_levels.clone(),
595         crate_version: krate.version.take(),
596         orphan_impl_items: Vec::new(),
597         traits: mem::replace(&mut krate.external_traits, FxHashMap()),
598         deref_trait_did,
599         deref_mut_trait_did,
600         owned_box_did,
601         masked_crates: mem::replace(&mut krate.masked_crates, FxHashSet()),
602         typarams: external_typarams,
603         aliases: FxHashMap(),
604     };
605
606     // Cache where all our extern crates are located
607     for &(n, ref e) in &krate.externs {
608         let src_root = match e.src {
609             FileName::Real(ref p) => match p.parent() {
610                 Some(p) => p.to_path_buf(),
611                 None => PathBuf::new(),
612             },
613             _ => PathBuf::new(),
614         };
615         let extern_url = extern_urls.get(&e.name).map(|u| &**u);
616         cache.extern_locations.insert(n, (e.name.clone(), src_root,
617                                           extern_location(e, extern_url, &cx.dst)));
618
619         let did = DefId { krate: n, index: CRATE_DEF_INDEX };
620         cache.external_paths.insert(did, (vec![e.name.to_string()], ItemType::Module));
621     }
622
623     // Cache where all known primitives have their documentation located.
624     //
625     // Favor linking to as local extern as possible, so iterate all crates in
626     // reverse topological order.
627     for &(_, ref e) in krate.externs.iter().rev() {
628         for &(def_id, prim, _) in &e.primitives {
629             cache.primitive_locations.insert(prim, def_id);
630         }
631     }
632     for &(def_id, prim, _) in &krate.primitives {
633         cache.primitive_locations.insert(prim, def_id);
634     }
635
636     cache.stack.push(krate.name.clone());
637     krate = cache.fold_crate(krate);
638
639     // Build our search index
640     let index = build_index(&krate, &mut cache);
641
642     // Freeze the cache now that the index has been built. Put an Arc into TLS
643     // for future parallelization opportunities
644     let cache = Arc::new(cache);
645     CACHE_KEY.with(|v| *v.borrow_mut() = cache.clone());
646     CURRENT_LOCATION_KEY.with(|s| s.borrow_mut().clear());
647
648     write_shared(&cx, &krate, &*cache, index, enable_minification)?;
649
650     // And finally render the whole crate's documentation
651     cx.krate(krate)
652 }
653
654 /// Build the search index from the collected metadata
655 fn build_index(krate: &clean::Crate, cache: &mut Cache) -> String {
656     let mut nodeid_to_pathid = FxHashMap();
657     let mut crate_items = Vec::with_capacity(cache.search_index.len());
658     let mut crate_paths = Vec::<Json>::new();
659
660     let Cache { ref mut search_index,
661                 ref orphan_impl_items,
662                 ref mut paths, .. } = *cache;
663
664     // Attach all orphan items to the type's definition if the type
665     // has since been learned.
666     for &(did, ref item) in orphan_impl_items {
667         if let Some(&(ref fqp, _)) = paths.get(&did) {
668             search_index.push(IndexItem {
669                 ty: item.type_(),
670                 name: item.name.clone().unwrap(),
671                 path: fqp[..fqp.len() - 1].join("::"),
672                 desc: plain_summary_line(item.doc_value()),
673                 parent: Some(did),
674                 parent_idx: None,
675                 search_type: get_index_search_type(&item),
676             });
677         }
678     }
679
680     // Reduce `NodeId` in paths into smaller sequential numbers,
681     // and prune the paths that do not appear in the index.
682     let mut lastpath = String::new();
683     let mut lastpathid = 0usize;
684
685     for item in search_index {
686         item.parent_idx = item.parent.map(|nodeid| {
687             if nodeid_to_pathid.contains_key(&nodeid) {
688                 *nodeid_to_pathid.get(&nodeid).unwrap()
689             } else {
690                 let pathid = lastpathid;
691                 nodeid_to_pathid.insert(nodeid, pathid);
692                 lastpathid += 1;
693
694                 let &(ref fqp, short) = paths.get(&nodeid).unwrap();
695                 crate_paths.push(((short as usize), fqp.last().unwrap().clone()).to_json());
696                 pathid
697             }
698         });
699
700         // Omit the parent path if it is same to that of the prior item.
701         if lastpath == item.path {
702             item.path.clear();
703         } else {
704             lastpath = item.path.clone();
705         }
706         crate_items.push(item.to_json());
707     }
708
709     let crate_doc = krate.module.as_ref().map(|module| {
710         plain_summary_line(module.doc_value())
711     }).unwrap_or(String::new());
712
713     let mut crate_data = BTreeMap::new();
714     crate_data.insert("doc".to_owned(), Json::String(crate_doc));
715     crate_data.insert("items".to_owned(), Json::Array(crate_items));
716     crate_data.insert("paths".to_owned(), Json::Array(crate_paths));
717
718     // Collect the index into a string
719     format!("searchIndex[{}] = {};",
720             as_json(&krate.name),
721             Json::Object(crate_data))
722 }
723
724 fn write_shared(cx: &Context,
725                 krate: &clean::Crate,
726                 cache: &Cache,
727                 search_index: String,
728                 enable_minification: bool) -> Result<(), Error> {
729     // Write out the shared files. Note that these are shared among all rustdoc
730     // docs placed in the output directory, so this needs to be a synchronized
731     // operation with respect to all other rustdocs running around.
732     let _lock = flock::Lock::panicking_new(&cx.dst.join(".lock"), true, true, true);
733
734     // Add all the static files. These may already exist, but we just
735     // overwrite them anyway to make sure that they're fresh and up-to-date.
736
737     write_minify(cx.dst.join(&format!("rustdoc{}.css", cx.shared.resource_suffix)),
738                  include_str!("static/rustdoc.css"),
739                  enable_minification)?;
740     write_minify(cx.dst.join(&format!("settings{}.css", cx.shared.resource_suffix)),
741                  include_str!("static/settings.css"),
742                  enable_minification)?;
743
744     // To avoid "light.css" to be overwritten, we'll first run over the received themes and only
745     // then we'll run over the "official" styles.
746     let mut themes: FxHashSet<String> = FxHashSet::default();
747
748     for entry in &cx.shared.themes {
749         let mut content = Vec::with_capacity(100000);
750
751         let mut f = try_err!(File::open(&entry), &entry);
752         try_err!(f.read_to_end(&mut content), &entry);
753         let theme = try_none!(try_none!(entry.file_stem(), &entry).to_str(), &entry);
754         let extension = try_none!(try_none!(entry.extension(), &entry).to_str(), &entry);
755         write(cx.dst.join(format!("{}{}.{}", theme, cx.shared.resource_suffix, extension)),
756               content.as_slice())?;
757         themes.insert(theme.to_owned());
758     }
759
760     write(cx.dst.join(&format!("brush{}.svg", cx.shared.resource_suffix)),
761           include_bytes!("static/brush.svg"))?;
762     write(cx.dst.join(&format!("wheel{}.svg", cx.shared.resource_suffix)),
763           include_bytes!("static/wheel.svg"))?;
764     write_minify(cx.dst.join(&format!("light{}.css", cx.shared.resource_suffix)),
765                  include_str!("static/themes/light.css"),
766                  enable_minification)?;
767     themes.insert("light".to_owned());
768     write_minify(cx.dst.join(&format!("dark{}.css", cx.shared.resource_suffix)),
769                  include_str!("static/themes/dark.css"),
770                  enable_minification)?;
771     themes.insert("dark".to_owned());
772
773     let mut themes: Vec<&String> = themes.iter().collect();
774     themes.sort();
775     // To avoid theme switch latencies as much as possible, we put everything theme related
776     // at the beginning of the html files into another js file.
777     write(cx.dst.join(&format!("theme{}.js", cx.shared.resource_suffix)),
778           format!(
779 r#"var themes = document.getElementById("theme-choices");
780 var themePicker = document.getElementById("theme-picker");
781
782 function switchThemeButtonState() {{
783     if (themes.style.display === "block") {{
784         themes.style.display = "none";
785         themePicker.style.borderBottomRightRadius = "3px";
786         themePicker.style.borderBottomLeftRadius = "3px";
787     }} else {{
788         themes.style.display = "block";
789         themePicker.style.borderBottomRightRadius = "0";
790         themePicker.style.borderBottomLeftRadius = "0";
791     }}
792 }};
793
794 function handleThemeButtonsBlur(e) {{
795     var active = document.activeElement;
796     var related = e.relatedTarget;
797
798     if (active.id !== "themePicker" &&
799         (!active.parentNode || active.parentNode.id !== "theme-choices") &&
800         (!related ||
801          (related.id !== "themePicker" &&
802           (!related.parentNode || related.parentNode.id !== "theme-choices")))) {{
803         switchThemeButtonState();
804     }}
805 }}
806
807 themePicker.onclick = switchThemeButtonState;
808 themePicker.onblur = handleThemeButtonsBlur;
809 [{}].forEach(function(item) {{
810     var but = document.createElement('button');
811     but.innerHTML = item;
812     but.onclick = function(el) {{
813         switchTheme(currentTheme, mainTheme, item);
814     }};
815     but.onblur = handleThemeButtonsBlur;
816     themes.appendChild(but);
817 }});"#,
818                  themes.iter()
819                        .map(|s| format!("\"{}\"", s))
820                        .collect::<Vec<String>>()
821                        .join(",")).as_bytes(),
822     )?;
823
824     write_minify(cx.dst.join(&format!("main{}.js", cx.shared.resource_suffix)),
825                  include_str!("static/main.js"),
826                  enable_minification)?;
827     write_minify(cx.dst.join(&format!("settings{}.js", cx.shared.resource_suffix)),
828                  include_str!("static/settings.js"),
829                  enable_minification)?;
830
831     {
832         let mut data = format!("var resourcesSuffix = \"{}\";\n",
833                                cx.shared.resource_suffix);
834         data.push_str(include_str!("static/storage.js"));
835         write_minify(cx.dst.join(&format!("storage{}.js", cx.shared.resource_suffix)),
836                      &data,
837                      enable_minification)?;
838     }
839
840     if let Some(ref css) = cx.shared.css_file_extension {
841         let out = cx.dst.join(&format!("theme{}.css", cx.shared.resource_suffix));
842         if !enable_minification {
843             try_err!(fs::copy(css, out), css);
844         } else {
845             let mut f = try_err!(File::open(css), css);
846             let mut buffer = String::with_capacity(1000);
847
848             try_err!(f.read_to_string(&mut buffer), css);
849             write_minify(out, &buffer, enable_minification)?;
850         }
851     }
852     write_minify(cx.dst.join(&format!("normalize{}.css", cx.shared.resource_suffix)),
853                  include_str!("static/normalize.css"),
854                  enable_minification)?;
855     write(cx.dst.join("FiraSans-Regular.woff"),
856           include_bytes!("static/FiraSans-Regular.woff"))?;
857     write(cx.dst.join("FiraSans-Medium.woff"),
858           include_bytes!("static/FiraSans-Medium.woff"))?;
859     write(cx.dst.join("FiraSans-LICENSE.txt"),
860           include_bytes!("static/FiraSans-LICENSE.txt"))?;
861     write(cx.dst.join("Heuristica-Italic.woff"),
862           include_bytes!("static/Heuristica-Italic.woff"))?;
863     write(cx.dst.join("Heuristica-LICENSE.txt"),
864           include_bytes!("static/Heuristica-LICENSE.txt"))?;
865     write(cx.dst.join("SourceSerifPro-Regular.woff"),
866           include_bytes!("static/SourceSerifPro-Regular.woff"))?;
867     write(cx.dst.join("SourceSerifPro-Bold.woff"),
868           include_bytes!("static/SourceSerifPro-Bold.woff"))?;
869     write(cx.dst.join("SourceSerifPro-LICENSE.txt"),
870           include_bytes!("static/SourceSerifPro-LICENSE.txt"))?;
871     write(cx.dst.join("SourceCodePro-Regular.woff"),
872           include_bytes!("static/SourceCodePro-Regular.woff"))?;
873     write(cx.dst.join("SourceCodePro-Semibold.woff"),
874           include_bytes!("static/SourceCodePro-Semibold.woff"))?;
875     write(cx.dst.join("SourceCodePro-LICENSE.txt"),
876           include_bytes!("static/SourceCodePro-LICENSE.txt"))?;
877     write(cx.dst.join("LICENSE-MIT.txt"),
878           include_bytes!("static/LICENSE-MIT.txt"))?;
879     write(cx.dst.join("LICENSE-APACHE.txt"),
880           include_bytes!("static/LICENSE-APACHE.txt"))?;
881     write(cx.dst.join("COPYRIGHT.txt"),
882           include_bytes!("static/COPYRIGHT.txt"))?;
883
884     fn collect(path: &Path, krate: &str, key: &str) -> io::Result<Vec<String>> {
885         let mut ret = Vec::new();
886         if path.exists() {
887             for line in BufReader::new(File::open(path)?).lines() {
888                 let line = line?;
889                 if !line.starts_with(key) {
890                     continue;
891                 }
892                 if line.starts_with(&format!(r#"{}["{}"]"#, key, krate)) {
893                     continue;
894                 }
895                 ret.push(line.to_string());
896             }
897         }
898         Ok(ret)
899     }
900
901     fn show_item(item: &IndexItem, krate: &str) -> String {
902         format!("{{'crate':'{}','ty':{},'name':'{}','desc':'{}','p':'{}'{}}}",
903                 krate, item.ty as usize, item.name, item.desc.replace("'", "\\'"), item.path,
904                 if let Some(p) = item.parent_idx {
905                     format!(",'parent':{}", p)
906                 } else {
907                     String::new()
908                 })
909     }
910
911     let dst = cx.dst.join("aliases.js");
912     {
913         let mut all_aliases = try_err!(collect(&dst, &krate.name, "ALIASES"), &dst);
914         let mut w = try_err!(File::create(&dst), &dst);
915         let mut output = String::with_capacity(100);
916         for (alias, items) in &cache.aliases {
917             if items.is_empty() {
918                 continue
919             }
920             output.push_str(&format!("\"{}\":[{}],",
921                                      alias,
922                                      items.iter()
923                                           .map(|v| show_item(v, &krate.name))
924                                           .collect::<Vec<_>>()
925                                           .join(",")));
926         }
927         all_aliases.push(format!("ALIASES['{}'] = {{{}}};", krate.name, output));
928         all_aliases.sort();
929         try_err!(writeln!(&mut w, "var ALIASES = {{}};"), &dst);
930         for aliases in &all_aliases {
931             try_err!(writeln!(&mut w, "{}", aliases), &dst);
932         }
933     }
934
935     // Update the search index
936     let dst = cx.dst.join("search-index.js");
937     let mut all_indexes = try_err!(collect(&dst, &krate.name, "searchIndex"), &dst);
938     all_indexes.push(search_index);
939     // Sort the indexes by crate so the file will be generated identically even
940     // with rustdoc running in parallel.
941     all_indexes.sort();
942     let mut w = try_err!(File::create(&dst), &dst);
943     try_err!(writeln!(&mut w, "var N = null;var searchIndex = {{}};"), &dst);
944     for index in &all_indexes {
945         try_err!(write_minify_replacer(&mut w, &*index, enable_minification,
946                                        &[(minifier::js::Keyword::Null, "N")]),
947                  &dst);
948     }
949     try_err!(writeln!(&mut w, "initSearch(searchIndex);"), &dst);
950
951     // Update the list of all implementors for traits
952     let dst = cx.dst.join("implementors");
953     for (&did, imps) in &cache.implementors {
954         // Private modules can leak through to this phase of rustdoc, which
955         // could contain implementations for otherwise private types. In some
956         // rare cases we could find an implementation for an item which wasn't
957         // indexed, so we just skip this step in that case.
958         //
959         // FIXME: this is a vague explanation for why this can't be a `get`, in
960         //        theory it should be...
961         let &(ref remote_path, remote_item_type) = match cache.paths.get(&did) {
962             Some(p) => p,
963             None => match cache.external_paths.get(&did) {
964                 Some(p) => p,
965                 None => continue,
966             }
967         };
968
969         let mut have_impls = false;
970         let mut implementors = format!(r#"implementors["{}"] = ["#, krate.name);
971         for imp in imps {
972             // If the trait and implementation are in the same crate, then
973             // there's no need to emit information about it (there's inlining
974             // going on). If they're in different crates then the crate defining
975             // the trait will be interested in our implementation.
976             if imp.impl_item.def_id.krate == did.krate { continue }
977             // If the implementation is from another crate then that crate
978             // should add it.
979             if !imp.impl_item.def_id.is_local() { continue }
980             have_impls = true;
981             write!(implementors, "{{text:{},synthetic:{},types:{}}},",
982                    as_json(&imp.inner_impl().to_string()),
983                    imp.inner_impl().synthetic,
984                    as_json(&collect_paths_for_type(imp.inner_impl().for_.clone()))).unwrap();
985         }
986         implementors.push_str("];");
987
988         // Only create a js file if we have impls to add to it. If the trait is
989         // documented locally though we always create the file to avoid dead
990         // links.
991         if !have_impls && !cache.paths.contains_key(&did) {
992             continue;
993         }
994
995         let mut mydst = dst.clone();
996         for part in &remote_path[..remote_path.len() - 1] {
997             mydst.push(part);
998         }
999         try_err!(fs::create_dir_all(&mydst), &mydst);
1000         mydst.push(&format!("{}.{}.js",
1001                             remote_item_type.css_class(),
1002                             remote_path[remote_path.len() - 1]));
1003
1004         let mut all_implementors = try_err!(collect(&mydst, &krate.name, "implementors"), &mydst);
1005         all_implementors.push(implementors);
1006         // Sort the implementors by crate so the file will be generated
1007         // identically even with rustdoc running in parallel.
1008         all_implementors.sort();
1009
1010         let mut f = try_err!(File::create(&mydst), &mydst);
1011         try_err!(writeln!(&mut f, "(function() {{var implementors = {{}};"), &mydst);
1012         for implementor in &all_implementors {
1013             try_err!(writeln!(&mut f, "{}", *implementor), &mydst);
1014         }
1015         try_err!(writeln!(&mut f, "{}", r"
1016             if (window.register_implementors) {
1017                 window.register_implementors(implementors);
1018             } else {
1019                 window.pending_implementors = implementors;
1020             }
1021         "), &mydst);
1022         try_err!(writeln!(&mut f, r"}})()"), &mydst);
1023     }
1024     Ok(())
1025 }
1026
1027 fn render_sources(dst: &Path, scx: &mut SharedContext,
1028                   krate: clean::Crate) -> Result<clean::Crate, Error> {
1029     info!("emitting source files");
1030     let dst = dst.join("src").join(&krate.name);
1031     try_err!(fs::create_dir_all(&dst), &dst);
1032     let mut folder = SourceCollector {
1033         dst,
1034         scx,
1035     };
1036     Ok(folder.fold_crate(krate))
1037 }
1038
1039 /// Writes the entire contents of a string to a destination, not attempting to
1040 /// catch any errors.
1041 fn write(dst: PathBuf, contents: &[u8]) -> Result<(), Error> {
1042     Ok(try_err!(fs::write(&dst, contents), &dst))
1043 }
1044
1045 fn write_minify(dst: PathBuf, contents: &str, enable_minification: bool) -> Result<(), Error> {
1046     if enable_minification {
1047         if dst.extension() == Some(&OsStr::new("css")) {
1048             let res = try_none!(minifier::css::minify(contents).ok(), &dst);
1049             write(dst, res.as_bytes())
1050         } else {
1051             write(dst, minifier::js::minify(contents).as_bytes())
1052         }
1053     } else {
1054         write(dst, contents.as_bytes())
1055     }
1056 }
1057
1058 fn write_minify_replacer<W: Write>(dst: &mut W,
1059                                    contents: &str,
1060                                    enable_minification: bool,
1061                                    keywords_to_replace: &[(minifier::js::Keyword, &str)])
1062                                    -> io::Result<()> {
1063     if enable_minification {
1064         writeln!(dst, "{}",
1065                  minifier::js::minify_and_replace_keywords(contents, keywords_to_replace))
1066     } else {
1067         writeln!(dst, "{}", contents)
1068     }
1069 }
1070
1071 /// Takes a path to a source file and cleans the path to it. This canonicalizes
1072 /// things like ".." to components which preserve the "top down" hierarchy of a
1073 /// static HTML tree. Each component in the cleaned path will be passed as an
1074 /// argument to `f`. The very last component of the path (ie the file name) will
1075 /// be passed to `f` if `keep_filename` is true, and ignored otherwise.
1076 // FIXME (#9639): The closure should deal with &[u8] instead of &str
1077 // FIXME (#9639): This is too conservative, rejecting non-UTF-8 paths
1078 fn clean_srcpath<F>(src_root: &Path, p: &Path, keep_filename: bool, mut f: F) where
1079     F: FnMut(&str),
1080 {
1081     // make it relative, if possible
1082     let p = p.strip_prefix(src_root).unwrap_or(p);
1083
1084     let mut iter = p.components().peekable();
1085
1086     while let Some(c) = iter.next() {
1087         if !keep_filename && iter.peek().is_none() {
1088             break;
1089         }
1090
1091         match c {
1092             Component::ParentDir => f("up"),
1093             Component::Normal(c) => f(c.to_str().unwrap()),
1094             _ => continue,
1095         }
1096     }
1097 }
1098
1099 /// Attempts to find where an external crate is located, given that we're
1100 /// rendering in to the specified source destination.
1101 fn extern_location(e: &clean::ExternalCrate, extern_url: Option<&str>, dst: &Path)
1102     -> ExternalLocation
1103 {
1104     // See if there's documentation generated into the local directory
1105     let local_location = dst.join(&e.name);
1106     if local_location.is_dir() {
1107         return Local;
1108     }
1109
1110     if let Some(url) = extern_url {
1111         let mut url = url.to_string();
1112         if !url.ends_with("/") {
1113             url.push('/');
1114         }
1115         return Remote(url);
1116     }
1117
1118     // Failing that, see if there's an attribute specifying where to find this
1119     // external crate
1120     e.attrs.lists("doc")
1121      .filter(|a| a.check_name("html_root_url"))
1122      .filter_map(|a| a.value_str())
1123      .map(|url| {
1124         let mut url = url.to_string();
1125         if !url.ends_with("/") {
1126             url.push('/')
1127         }
1128         Remote(url)
1129     }).next().unwrap_or(Unknown) // Well, at least we tried.
1130 }
1131
1132 impl<'a> DocFolder for SourceCollector<'a> {
1133     fn fold_item(&mut self, item: clean::Item) -> Option<clean::Item> {
1134         // If we're including source files, and we haven't seen this file yet,
1135         // then we need to render it out to the filesystem.
1136         if self.scx.include_sources
1137             // skip all invalid or macro spans
1138             && item.source.filename.is_real()
1139             // skip non-local items
1140             && item.def_id.is_local() {
1141
1142             // If it turns out that we couldn't read this file, then we probably
1143             // can't read any of the files (generating html output from json or
1144             // something like that), so just don't include sources for the
1145             // entire crate. The other option is maintaining this mapping on a
1146             // per-file basis, but that's probably not worth it...
1147             self.scx
1148                 .include_sources = match self.emit_source(&item.source.filename) {
1149                 Ok(()) => true,
1150                 Err(e) => {
1151                     println!("warning: source code was requested to be rendered, \
1152                               but processing `{}` had an error: {}",
1153                              item.source.filename, e);
1154                     println!("         skipping rendering of source code");
1155                     false
1156                 }
1157             };
1158         }
1159         self.fold_item_recur(item)
1160     }
1161 }
1162
1163 impl<'a> SourceCollector<'a> {
1164     /// Renders the given filename into its corresponding HTML source file.
1165     fn emit_source(&mut self, filename: &FileName) -> io::Result<()> {
1166         let p = match *filename {
1167             FileName::Real(ref file) => file,
1168             _ => return Ok(()),
1169         };
1170         if self.scx.local_sources.contains_key(&**p) {
1171             // We've already emitted this source
1172             return Ok(());
1173         }
1174
1175         let contents = fs::read_to_string(&p)?;
1176
1177         // Remove the utf-8 BOM if any
1178         let contents = if contents.starts_with("\u{feff}") {
1179             &contents[3..]
1180         } else {
1181             &contents[..]
1182         };
1183
1184         // Create the intermediate directories
1185         let mut cur = self.dst.clone();
1186         let mut root_path = String::from("../../");
1187         let mut href = String::new();
1188         clean_srcpath(&self.scx.src_root, &p, false, |component| {
1189             cur.push(component);
1190             fs::create_dir_all(&cur).unwrap();
1191             root_path.push_str("../");
1192             href.push_str(component);
1193             href.push('/');
1194         });
1195         let mut fname = p.file_name()
1196                          .expect("source has no filename")
1197                          .to_os_string();
1198         fname.push(".html");
1199         cur.push(&fname);
1200         href.push_str(&fname.to_string_lossy());
1201
1202         let mut w = BufWriter::new(File::create(&cur)?);
1203         let title = format!("{} -- source", cur.file_name().unwrap()
1204                                                .to_string_lossy());
1205         let desc = format!("Source to the Rust file `{}`.", filename);
1206         let page = layout::Page {
1207             title: &title,
1208             css_class: "source",
1209             root_path: &root_path,
1210             description: &desc,
1211             keywords: BASIC_KEYWORDS,
1212             resource_suffix: &self.scx.resource_suffix,
1213         };
1214         layout::render(&mut w, &self.scx.layout,
1215                        &page, &(""), &Source(contents),
1216                        self.scx.css_file_extension.is_some(),
1217                        &self.scx.themes)?;
1218         w.flush()?;
1219         self.scx.local_sources.insert(p.clone(), href);
1220         Ok(())
1221     }
1222 }
1223
1224 impl DocFolder for Cache {
1225     fn fold_item(&mut self, item: clean::Item) -> Option<clean::Item> {
1226         // If this is a stripped module,
1227         // we don't want it or its children in the search index.
1228         let orig_stripped_mod = match item.inner {
1229             clean::StrippedItem(box clean::ModuleItem(..)) => {
1230                 mem::replace(&mut self.stripped_mod, true)
1231             }
1232             _ => self.stripped_mod,
1233         };
1234
1235         // If the impl is from a masked crate or references something from a
1236         // masked crate then remove it completely.
1237         if let clean::ImplItem(ref i) = item.inner {
1238             if self.masked_crates.contains(&item.def_id.krate) ||
1239                i.trait_.def_id().map_or(false, |d| self.masked_crates.contains(&d.krate)) ||
1240                i.for_.def_id().map_or(false, |d| self.masked_crates.contains(&d.krate)) {
1241                 return None;
1242             }
1243         }
1244
1245         // Register any generics to their corresponding string. This is used
1246         // when pretty-printing types.
1247         if let Some(generics) = item.inner.generics() {
1248             self.generics(generics);
1249         }
1250
1251         // Propagate a trait method's documentation to all implementors of the
1252         // trait.
1253         if let clean::TraitItem(ref t) = item.inner {
1254             self.traits.entry(item.def_id).or_insert_with(|| t.clone());
1255         }
1256
1257         // Collect all the implementors of traits.
1258         if let clean::ImplItem(ref i) = item.inner {
1259             if let Some(did) = i.trait_.def_id() {
1260                 if i.blanket_impl.is_none() {
1261                     self.implementors.entry(did).or_default().push(Impl {
1262                         impl_item: item.clone(),
1263                     });
1264                 }
1265             }
1266         }
1267
1268         // Index this method for searching later on.
1269         if let Some(ref s) = item.name {
1270             let (parent, is_inherent_impl_item) = match item.inner {
1271                 clean::StrippedItem(..) => ((None, None), false),
1272                 clean::AssociatedConstItem(..) |
1273                 clean::TypedefItem(_, true) if self.parent_is_trait_impl => {
1274                     // skip associated items in trait impls
1275                     ((None, None), false)
1276                 }
1277                 clean::AssociatedTypeItem(..) |
1278                 clean::TyMethodItem(..) |
1279                 clean::StructFieldItem(..) |
1280                 clean::VariantItem(..) => {
1281                     ((Some(*self.parent_stack.last().unwrap()),
1282                       Some(&self.stack[..self.stack.len() - 1])),
1283                      false)
1284                 }
1285                 clean::MethodItem(..) | clean::AssociatedConstItem(..) => {
1286                     if self.parent_stack.is_empty() {
1287                         ((None, None), false)
1288                     } else {
1289                         let last = self.parent_stack.last().unwrap();
1290                         let did = *last;
1291                         let path = match self.paths.get(&did) {
1292                             // The current stack not necessarily has correlation
1293                             // for where the type was defined. On the other
1294                             // hand, `paths` always has the right
1295                             // information if present.
1296                             Some(&(ref fqp, ItemType::Trait)) |
1297                             Some(&(ref fqp, ItemType::Struct)) |
1298                             Some(&(ref fqp, ItemType::Union)) |
1299                             Some(&(ref fqp, ItemType::Enum)) =>
1300                                 Some(&fqp[..fqp.len() - 1]),
1301                             Some(..) => Some(&*self.stack),
1302                             None => None
1303                         };
1304                         ((Some(*last), path), true)
1305                     }
1306                 }
1307                 _ => ((None, Some(&*self.stack)), false)
1308             };
1309
1310             match parent {
1311                 (parent, Some(path)) if is_inherent_impl_item || (!self.stripped_mod) => {
1312                     debug_assert!(!item.is_stripped());
1313
1314                     // A crate has a module at its root, containing all items,
1315                     // which should not be indexed. The crate-item itself is
1316                     // inserted later on when serializing the search-index.
1317                     if item.def_id.index != CRATE_DEF_INDEX {
1318                         self.search_index.push(IndexItem {
1319                             ty: item.type_(),
1320                             name: s.to_string(),
1321                             path: path.join("::").to_string(),
1322                             desc: plain_summary_line(item.doc_value()),
1323                             parent,
1324                             parent_idx: None,
1325                             search_type: get_index_search_type(&item),
1326                         });
1327                     }
1328                 }
1329                 (Some(parent), None) if is_inherent_impl_item => {
1330                     // We have a parent, but we don't know where they're
1331                     // defined yet. Wait for later to index this item.
1332                     self.orphan_impl_items.push((parent, item.clone()));
1333                 }
1334                 _ => {}
1335             }
1336         }
1337
1338         // Keep track of the fully qualified path for this item.
1339         let pushed = match item.name {
1340             Some(ref n) if !n.is_empty() => {
1341                 self.stack.push(n.to_string());
1342                 true
1343             }
1344             _ => false,
1345         };
1346
1347         match item.inner {
1348             clean::StructItem(..) | clean::EnumItem(..) |
1349             clean::TypedefItem(..) | clean::TraitItem(..) |
1350             clean::FunctionItem(..) | clean::ModuleItem(..) |
1351             clean::ForeignFunctionItem(..) | clean::ForeignStaticItem(..) |
1352             clean::ConstantItem(..) | clean::StaticItem(..) |
1353             clean::UnionItem(..) | clean::ForeignTypeItem | clean::MacroItem(..)
1354             if !self.stripped_mod => {
1355                 // Re-exported items mean that the same id can show up twice
1356                 // in the rustdoc ast that we're looking at. We know,
1357                 // however, that a re-exported item doesn't show up in the
1358                 // `public_items` map, so we can skip inserting into the
1359                 // paths map if there was already an entry present and we're
1360                 // not a public item.
1361                 if !self.paths.contains_key(&item.def_id) ||
1362                    self.access_levels.is_public(item.def_id)
1363                 {
1364                     self.paths.insert(item.def_id,
1365                                       (self.stack.clone(), item.type_()));
1366                 }
1367                 self.add_aliases(&item);
1368             }
1369             // Link variants to their parent enum because pages aren't emitted
1370             // for each variant.
1371             clean::VariantItem(..) if !self.stripped_mod => {
1372                 let mut stack = self.stack.clone();
1373                 stack.pop();
1374                 self.paths.insert(item.def_id, (stack, ItemType::Enum));
1375             }
1376
1377             clean::PrimitiveItem(..) if item.visibility.is_some() => {
1378                 self.add_aliases(&item);
1379                 self.paths.insert(item.def_id, (self.stack.clone(),
1380                                                 item.type_()));
1381             }
1382
1383             _ => {}
1384         }
1385
1386         // Maintain the parent stack
1387         let orig_parent_is_trait_impl = self.parent_is_trait_impl;
1388         let parent_pushed = match item.inner {
1389             clean::TraitItem(..) | clean::EnumItem(..) | clean::ForeignTypeItem |
1390             clean::StructItem(..) | clean::UnionItem(..) => {
1391                 self.parent_stack.push(item.def_id);
1392                 self.parent_is_trait_impl = false;
1393                 true
1394             }
1395             clean::ImplItem(ref i) => {
1396                 self.parent_is_trait_impl = i.trait_.is_some();
1397                 match i.for_ {
1398                     clean::ResolvedPath{ did, .. } => {
1399                         self.parent_stack.push(did);
1400                         true
1401                     }
1402                     ref t => {
1403                         let prim_did = t.primitive_type().and_then(|t| {
1404                             self.primitive_locations.get(&t).cloned()
1405                         });
1406                         match prim_did {
1407                             Some(did) => {
1408                                 self.parent_stack.push(did);
1409                                 true
1410                             }
1411                             None => false,
1412                         }
1413                     }
1414                 }
1415             }
1416             _ => false
1417         };
1418
1419         // Once we've recursively found all the generics, hoard off all the
1420         // implementations elsewhere.
1421         let ret = self.fold_item_recur(item).and_then(|item| {
1422             if let clean::Item { inner: clean::ImplItem(_), .. } = item {
1423                 // Figure out the id of this impl. This may map to a
1424                 // primitive rather than always to a struct/enum.
1425                 // Note: matching twice to restrict the lifetime of the `i` borrow.
1426                 let mut dids = FxHashSet();
1427                 if let clean::Item { inner: clean::ImplItem(ref i), .. } = item {
1428                     match i.for_ {
1429                         clean::ResolvedPath { did, .. } |
1430                         clean::BorrowedRef {
1431                             type_: box clean::ResolvedPath { did, .. }, ..
1432                         } => {
1433                             dids.insert(did);
1434                         }
1435                         ref t => {
1436                             let did = t.primitive_type().and_then(|t| {
1437                                 self.primitive_locations.get(&t).cloned()
1438                             });
1439
1440                             if let Some(did) = did {
1441                                 dids.insert(did);
1442                             }
1443                         }
1444                     }
1445
1446                     if let Some(generics) = i.trait_.as_ref().and_then(|t| t.generics()) {
1447                         for bound in generics {
1448                             if let Some(did) = bound.def_id() {
1449                                 dids.insert(did);
1450                             }
1451                         }
1452                     }
1453                 } else {
1454                     unreachable!()
1455                 };
1456                 for did in dids {
1457                     self.impls.entry(did).or_default().push(Impl {
1458                         impl_item: item.clone(),
1459                     });
1460                 }
1461                 None
1462             } else {
1463                 Some(item)
1464             }
1465         });
1466
1467         if pushed { self.stack.pop().unwrap(); }
1468         if parent_pushed { self.parent_stack.pop().unwrap(); }
1469         self.stripped_mod = orig_stripped_mod;
1470         self.parent_is_trait_impl = orig_parent_is_trait_impl;
1471         ret
1472     }
1473 }
1474
1475 impl<'a> Cache {
1476     fn generics(&mut self, generics: &clean::Generics) {
1477         for param in &generics.params {
1478             match param.kind {
1479                 clean::GenericParamDefKind::Lifetime => {}
1480                 clean::GenericParamDefKind::Type { did, .. } => {
1481                     self.typarams.insert(did, param.name.clone());
1482                 }
1483             }
1484         }
1485     }
1486
1487     fn add_aliases(&mut self, item: &clean::Item) {
1488         if item.def_id.index == CRATE_DEF_INDEX {
1489             return
1490         }
1491         if let Some(ref item_name) = item.name {
1492             let path = self.paths.get(&item.def_id)
1493                                  .map(|p| p.0[..p.0.len() - 1].join("::"))
1494                                  .unwrap_or("std".to_owned());
1495             for alias in item.attrs.lists("doc")
1496                                    .filter(|a| a.check_name("alias"))
1497                                    .filter_map(|a| a.value_str()
1498                                                     .map(|s| s.to_string().replace("\"", "")))
1499                                    .filter(|v| !v.is_empty())
1500                                    .collect::<FxHashSet<_>>()
1501                                    .into_iter() {
1502                 self.aliases.entry(alias)
1503                             .or_insert(Vec::with_capacity(1))
1504                             .push(IndexItem {
1505                                 ty: item.type_(),
1506                                 name: item_name.to_string(),
1507                                 path: path.clone(),
1508                                 desc: plain_summary_line(item.doc_value()),
1509                                 parent: None,
1510                                 parent_idx: None,
1511                                 search_type: get_index_search_type(&item),
1512                             });
1513             }
1514         }
1515     }
1516 }
1517
1518 #[derive(Debug, Eq, PartialEq, Hash)]
1519 struct ItemEntry {
1520     url: String,
1521     name: String,
1522 }
1523
1524 impl ItemEntry {
1525     fn new(mut url: String, name: String) -> ItemEntry {
1526         while url.starts_with('/') {
1527             url.remove(0);
1528         }
1529         ItemEntry {
1530             url,
1531             name,
1532         }
1533     }
1534 }
1535
1536 impl fmt::Display for ItemEntry {
1537     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1538         write!(f, "<a href='{}'>{}</a>", self.url, Escape(&self.name))
1539     }
1540 }
1541
1542 impl PartialOrd for ItemEntry {
1543     fn partial_cmp(&self, other: &ItemEntry) -> Option<::std::cmp::Ordering> {
1544         Some(self.cmp(other))
1545     }
1546 }
1547
1548 impl Ord for ItemEntry {
1549     fn cmp(&self, other: &ItemEntry) -> ::std::cmp::Ordering {
1550         self.name.cmp(&other.name)
1551     }
1552 }
1553
1554 #[derive(Debug)]
1555 struct AllTypes {
1556     structs: FxHashSet<ItemEntry>,
1557     enums: FxHashSet<ItemEntry>,
1558     unions: FxHashSet<ItemEntry>,
1559     primitives: FxHashSet<ItemEntry>,
1560     traits: FxHashSet<ItemEntry>,
1561     macros: FxHashSet<ItemEntry>,
1562     functions: FxHashSet<ItemEntry>,
1563     typedefs: FxHashSet<ItemEntry>,
1564     existentials: FxHashSet<ItemEntry>,
1565     statics: FxHashSet<ItemEntry>,
1566     constants: FxHashSet<ItemEntry>,
1567     keywords: FxHashSet<ItemEntry>,
1568 }
1569
1570 impl AllTypes {
1571     fn new() -> AllTypes {
1572         let new_set = |cap| FxHashSet::with_capacity_and_hasher(cap, Default::default());
1573         AllTypes {
1574             structs: new_set(100),
1575             enums: new_set(100),
1576             unions: new_set(100),
1577             primitives: new_set(26),
1578             traits: new_set(100),
1579             macros: new_set(100),
1580             functions: new_set(100),
1581             typedefs: new_set(100),
1582             existentials: new_set(100),
1583             statics: new_set(100),
1584             constants: new_set(100),
1585             keywords: new_set(100),
1586         }
1587     }
1588
1589     fn append(&mut self, item_name: String, item_type: &ItemType) {
1590         let mut url: Vec<_> = item_name.split("::").skip(1).collect();
1591         if let Some(name) = url.pop() {
1592             let new_url = format!("{}/{}.{}.html", url.join("/"), item_type, name);
1593             url.push(name);
1594             let name = url.join("::");
1595             match *item_type {
1596                 ItemType::Struct => self.structs.insert(ItemEntry::new(new_url, name)),
1597                 ItemType::Enum => self.enums.insert(ItemEntry::new(new_url, name)),
1598                 ItemType::Union => self.unions.insert(ItemEntry::new(new_url, name)),
1599                 ItemType::Primitive => self.primitives.insert(ItemEntry::new(new_url, name)),
1600                 ItemType::Trait => self.traits.insert(ItemEntry::new(new_url, name)),
1601                 ItemType::Macro => self.macros.insert(ItemEntry::new(new_url, name)),
1602                 ItemType::Function => self.functions.insert(ItemEntry::new(new_url, name)),
1603                 ItemType::Typedef => self.typedefs.insert(ItemEntry::new(new_url, name)),
1604                 ItemType::Existential => self.existentials.insert(ItemEntry::new(new_url, name)),
1605                 ItemType::Static => self.statics.insert(ItemEntry::new(new_url, name)),
1606                 ItemType::Constant => self.constants.insert(ItemEntry::new(new_url, name)),
1607                 _ => true,
1608             };
1609         }
1610     }
1611 }
1612
1613 fn print_entries(f: &mut fmt::Formatter, e: &FxHashSet<ItemEntry>, title: &str,
1614                  class: &str) -> fmt::Result {
1615     if !e.is_empty() {
1616         let mut e: Vec<&ItemEntry> = e.iter().collect();
1617         e.sort();
1618         write!(f, "<h3 id='{}'>{}</h3><ul class='{} docblock'>{}</ul>",
1619                title,
1620                Escape(title),
1621                class,
1622                e.iter().map(|s| format!("<li>{}</li>", s)).collect::<String>())?;
1623     }
1624     Ok(())
1625 }
1626
1627 impl fmt::Display for AllTypes {
1628     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1629         write!(f,
1630 "<h1 class='fqn'>\
1631      <span class='out-of-band'>\
1632          <span id='render-detail'>\
1633              <a id=\"toggle-all-docs\" href=\"javascript:void(0)\" title=\"collapse all docs\">\
1634                  [<span class='inner'>&#x2212;</span>]\
1635              </a>\
1636          </span>
1637      </span>
1638      <span class='in-band'>List of all items</span>\
1639 </h1>")?;
1640         print_entries(f, &self.structs, "Structs", "structs")?;
1641         print_entries(f, &self.enums, "Enums", "enums")?;
1642         print_entries(f, &self.unions, "Unions", "unions")?;
1643         print_entries(f, &self.primitives, "Primitives", "primitives")?;
1644         print_entries(f, &self.traits, "Traits", "traits")?;
1645         print_entries(f, &self.macros, "Macros", "macros")?;
1646         print_entries(f, &self.functions, "Functions", "functions")?;
1647         print_entries(f, &self.typedefs, "Typedefs", "typedefs")?;
1648         print_entries(f, &self.existentials, "Existentials", "existentials")?;
1649         print_entries(f, &self.statics, "Statics", "statics")?;
1650         print_entries(f, &self.constants, "Constants", "constants")
1651     }
1652 }
1653
1654 #[derive(Debug)]
1655 struct Settings<'a> {
1656     // (id, explanation, default value)
1657     settings: Vec<(&'static str, &'static str, bool)>,
1658     root_path: &'a str,
1659     suffix: &'a str,
1660 }
1661
1662 impl<'a> Settings<'a> {
1663     pub fn new(root_path: &'a str, suffix: &'a str) -> Settings<'a> {
1664         Settings {
1665             settings: vec![
1666                 ("item-declarations", "Auto-hide item declarations.", true),
1667                 ("item-attributes", "Auto-hide item attributes.", true),
1668                 ("trait-implementations", "Auto-hide trait implementations documentation",
1669                  true),
1670                 ("go-to-only-result", "Directly go to item in search if there is only one result",
1671                  false),
1672             ],
1673             root_path,
1674             suffix,
1675         }
1676     }
1677 }
1678
1679 impl<'a> fmt::Display for Settings<'a> {
1680     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1681         write!(f,
1682 "<h1 class='fqn'>\
1683      <span class='in-band'>Rustdoc settings</span>\
1684 </h1>\
1685 <div class='settings'>{}</div>\
1686 <script src='{}settings{}.js'></script>",
1687                self.settings.iter()
1688                             .map(|(id, text, enabled)| {
1689                                 format!("<div class='setting-line'>\
1690                                              <label class='toggle'>\
1691                                                 <input type='checkbox' id='{}' {}>\
1692                                                 <span class='slider'></span>\
1693                                              </label>\
1694                                              <div>{}</div>\
1695                                          </div>", id, if *enabled { " checked" } else { "" }, text)
1696                             })
1697                             .collect::<String>(),
1698                self.root_path,
1699                self.suffix)
1700     }
1701 }
1702
1703 impl Context {
1704     fn derive_id(&self, id: String) -> String {
1705         let mut map = self.id_map.borrow_mut();
1706         map.derive(id)
1707     }
1708
1709     /// String representation of how to get back to the root path of the 'doc/'
1710     /// folder in terms of a relative URL.
1711     fn root_path(&self) -> String {
1712         "../".repeat(self.current.len())
1713     }
1714
1715     /// Recurse in the directory structure and change the "root path" to make
1716     /// sure it always points to the top (relatively).
1717     fn recurse<T, F>(&mut self, s: String, f: F) -> T where
1718         F: FnOnce(&mut Context) -> T,
1719     {
1720         if s.is_empty() {
1721             panic!("Unexpected empty destination: {:?}", self.current);
1722         }
1723         let prev = self.dst.clone();
1724         self.dst.push(&s);
1725         self.current.push(s);
1726
1727         info!("Recursing into {}", self.dst.display());
1728
1729         let ret = f(self);
1730
1731         info!("Recursed; leaving {}", self.dst.display());
1732
1733         // Go back to where we were at
1734         self.dst = prev;
1735         self.current.pop().unwrap();
1736
1737         ret
1738     }
1739
1740     /// Main method for rendering a crate.
1741     ///
1742     /// This currently isn't parallelized, but it'd be pretty easy to add
1743     /// parallelization to this function.
1744     fn krate(self, mut krate: clean::Crate) -> Result<(), Error> {
1745         let mut item = match krate.module.take() {
1746             Some(i) => i,
1747             None => return Ok(()),
1748         };
1749         let final_file = self.dst.join(&krate.name)
1750                                  .join("all.html");
1751         let settings_file = self.dst.join("settings.html");
1752
1753         let crate_name = krate.name.clone();
1754         item.name = Some(krate.name);
1755
1756         let mut all = AllTypes::new();
1757
1758         {
1759             // Render the crate documentation
1760             let mut work = vec![(self.clone(), item)];
1761
1762             while let Some((mut cx, item)) = work.pop() {
1763                 cx.item(item, &mut all, |cx, item| {
1764                     work.push((cx.clone(), item))
1765                 })?
1766             }
1767         }
1768
1769         let mut w = BufWriter::new(try_err!(File::create(&final_file), &final_file));
1770         let mut root_path = self.dst.to_str().expect("invalid path").to_owned();
1771         if !root_path.ends_with('/') {
1772             root_path.push('/');
1773         }
1774         let mut page = layout::Page {
1775             title: "List of all items in this crate",
1776             css_class: "mod",
1777             root_path: "../",
1778             description: "List of all items in this crate",
1779             keywords: BASIC_KEYWORDS,
1780             resource_suffix: &self.shared.resource_suffix,
1781         };
1782         let sidebar = if let Some(ref version) = cache().crate_version {
1783             format!("<p class='location'>Crate {}</p>\
1784                      <div class='block version'>\
1785                          <p>Version {}</p>\
1786                      </div>\
1787                      <a id='all-types' href='index.html'><p>Back to index</p></a>",
1788                     crate_name, version)
1789         } else {
1790             String::new()
1791         };
1792         try_err!(layout::render(&mut w, &self.shared.layout,
1793                                 &page, &sidebar, &all,
1794                                 self.shared.css_file_extension.is_some(),
1795                                 &self.shared.themes),
1796                  &final_file);
1797
1798         // Generating settings page.
1799         let settings = Settings::new("./", &self.shared.resource_suffix);
1800         page.title = "Rustdoc settings";
1801         page.description = "Settings of Rustdoc";
1802         page.root_path = "./";
1803
1804         let mut w = BufWriter::new(try_err!(File::create(&settings_file), &settings_file));
1805         let mut themes = self.shared.themes.clone();
1806         let sidebar = "<p class='location'>Settings</p><div class='sidebar-elems'></div>";
1807         themes.push(PathBuf::from("settings.css"));
1808         let mut layout = self.shared.layout.clone();
1809         layout.krate = String::new();
1810         layout.logo = String::new();
1811         layout.favicon = String::new();
1812         try_err!(layout::render(&mut w, &layout,
1813                                 &page, &sidebar, &settings,
1814                                 self.shared.css_file_extension.is_some(),
1815                                 &themes),
1816                  &settings_file);
1817
1818         Ok(())
1819     }
1820
1821     fn render_item(&self,
1822                    writer: &mut dyn io::Write,
1823                    it: &clean::Item,
1824                    pushname: bool)
1825                    -> io::Result<()> {
1826         // A little unfortunate that this is done like this, but it sure
1827         // does make formatting *a lot* nicer.
1828         CURRENT_LOCATION_KEY.with(|slot| {
1829             *slot.borrow_mut() = self.current.clone();
1830         });
1831
1832         let mut title = if it.is_primitive() {
1833             // No need to include the namespace for primitive types
1834             String::new()
1835         } else {
1836             self.current.join("::")
1837         };
1838         if pushname {
1839             if !title.is_empty() {
1840                 title.push_str("::");
1841             }
1842             title.push_str(it.name.as_ref().unwrap());
1843         }
1844         title.push_str(" - Rust");
1845         let tyname = it.type_().css_class();
1846         let desc = if it.is_crate() {
1847             format!("API documentation for the Rust `{}` crate.",
1848                     self.shared.layout.krate)
1849         } else {
1850             format!("API documentation for the Rust `{}` {} in crate `{}`.",
1851                     it.name.as_ref().unwrap(), tyname, self.shared.layout.krate)
1852         };
1853         let keywords = make_item_keywords(it);
1854         let page = layout::Page {
1855             css_class: tyname,
1856             root_path: &self.root_path(),
1857             title: &title,
1858             description: &desc,
1859             keywords: &keywords,
1860             resource_suffix: &self.shared.resource_suffix,
1861         };
1862
1863         {
1864             self.id_map.borrow_mut().reset();
1865             self.id_map.borrow_mut().populate(initial_ids());
1866         }
1867
1868         if !self.render_redirect_pages {
1869             layout::render(writer, &self.shared.layout, &page,
1870                            &Sidebar{ cx: self, item: it },
1871                            &Item{ cx: self, item: it },
1872                            self.shared.css_file_extension.is_some(),
1873                            &self.shared.themes)?;
1874         } else {
1875             let mut url = self.root_path();
1876             if let Some(&(ref names, ty)) = cache().paths.get(&it.def_id) {
1877                 for name in &names[..names.len() - 1] {
1878                     url.push_str(name);
1879                     url.push_str("/");
1880                 }
1881                 url.push_str(&item_path(ty, names.last().unwrap()));
1882                 layout::redirect(writer, &url)?;
1883             }
1884         }
1885         Ok(())
1886     }
1887
1888     /// Non-parallelized version of rendering an item. This will take the input
1889     /// item, render its contents, and then invoke the specified closure with
1890     /// all sub-items which need to be rendered.
1891     ///
1892     /// The rendering driver uses this closure to queue up more work.
1893     fn item<F>(&mut self, item: clean::Item, all: &mut AllTypes, mut f: F) -> Result<(), Error>
1894         where F: FnMut(&mut Context, clean::Item),
1895     {
1896         // Stripped modules survive the rustdoc passes (i.e. `strip-private`)
1897         // if they contain impls for public types. These modules can also
1898         // contain items such as publicly re-exported structures.
1899         //
1900         // External crates will provide links to these structures, so
1901         // these modules are recursed into, but not rendered normally
1902         // (a flag on the context).
1903         if !self.render_redirect_pages {
1904             self.render_redirect_pages = item.is_stripped();
1905         }
1906
1907         if item.is_mod() {
1908             // modules are special because they add a namespace. We also need to
1909             // recurse into the items of the module as well.
1910             let name = item.name.as_ref().unwrap().to_string();
1911             let mut item = Some(item);
1912             self.recurse(name, |this| {
1913                 let item = item.take().unwrap();
1914
1915                 let mut buf = Vec::new();
1916                 this.render_item(&mut buf, &item, false).unwrap();
1917                 // buf will be empty if the module is stripped and there is no redirect for it
1918                 if !buf.is_empty() {
1919                     try_err!(this.shared.ensure_dir(&this.dst), &this.dst);
1920                     let joint_dst = this.dst.join("index.html");
1921                     let mut dst = try_err!(File::create(&joint_dst), &joint_dst);
1922                     try_err!(dst.write_all(&buf), &joint_dst);
1923                 }
1924
1925                 let m = match item.inner {
1926                     clean::StrippedItem(box clean::ModuleItem(m)) |
1927                     clean::ModuleItem(m) => m,
1928                     _ => unreachable!()
1929                 };
1930
1931                 // Render sidebar-items.js used throughout this module.
1932                 if !this.render_redirect_pages {
1933                     let items = this.build_sidebar_items(&m);
1934                     let js_dst = this.dst.join("sidebar-items.js");
1935                     let mut js_out = BufWriter::new(try_err!(File::create(&js_dst), &js_dst));
1936                     try_err!(write!(&mut js_out, "initSidebarItems({});",
1937                                     as_json(&items)), &js_dst);
1938                 }
1939
1940                 for item in m.items {
1941                     f(this, item);
1942                 }
1943
1944                 Ok(())
1945             })?;
1946         } else if item.name.is_some() {
1947             let mut buf = Vec::new();
1948             self.render_item(&mut buf, &item, true).unwrap();
1949             // buf will be empty if the item is stripped and there is no redirect for it
1950             if !buf.is_empty() {
1951                 let name = item.name.as_ref().unwrap();
1952                 let item_type = item.type_();
1953                 let file_name = &item_path(item_type, name);
1954                 try_err!(self.shared.ensure_dir(&self.dst), &self.dst);
1955                 let joint_dst = self.dst.join(file_name);
1956                 let mut dst = try_err!(File::create(&joint_dst), &joint_dst);
1957                 try_err!(dst.write_all(&buf), &joint_dst);
1958
1959                 if !self.render_redirect_pages {
1960                     all.append(full_path(self, &item), &item_type);
1961                 }
1962                 // Redirect from a sane URL using the namespace to Rustdoc's
1963                 // URL for the page.
1964                 let redir_name = format!("{}.{}.html", name, item_type.name_space());
1965                 let redir_dst = self.dst.join(redir_name);
1966                 if let Ok(redirect_out) = OpenOptions::new().create_new(true)
1967                                                             .write(true)
1968                                                             .open(&redir_dst) {
1969                     let mut redirect_out = BufWriter::new(redirect_out);
1970                     try_err!(layout::redirect(&mut redirect_out, file_name), &redir_dst);
1971                 }
1972
1973                 // If the item is a macro, redirect from the old macro URL (with !)
1974                 // to the new one (without).
1975                 if item_type == ItemType::Macro {
1976                     let redir_name = format!("{}.{}!.html", item_type, name);
1977                     let redir_dst = self.dst.join(redir_name);
1978                     let redirect_out = try_err!(File::create(&redir_dst), &redir_dst);
1979                     let mut redirect_out = BufWriter::new(redirect_out);
1980                     try_err!(layout::redirect(&mut redirect_out, file_name), &redir_dst);
1981                 }
1982             }
1983         }
1984         Ok(())
1985     }
1986
1987     fn build_sidebar_items(&self, m: &clean::Module) -> BTreeMap<String, Vec<NameDoc>> {
1988         // BTreeMap instead of HashMap to get a sorted output
1989         let mut map: BTreeMap<_, Vec<_>> = BTreeMap::new();
1990         for item in &m.items {
1991             if item.is_stripped() { continue }
1992
1993             let short = item.type_().css_class();
1994             let myname = match item.name {
1995                 None => continue,
1996                 Some(ref s) => s.to_string(),
1997             };
1998             let short = short.to_string();
1999             map.entry(short).or_default()
2000                 .push((myname, Some(plain_summary_line(item.doc_value()))));
2001         }
2002
2003         if self.shared.sort_modules_alphabetically {
2004             for (_, items) in &mut map {
2005                 items.sort();
2006             }
2007         }
2008         map
2009     }
2010 }
2011
2012 impl<'a> Item<'a> {
2013     /// Generate a url appropriate for an `href` attribute back to the source of
2014     /// this item.
2015     ///
2016     /// The url generated, when clicked, will redirect the browser back to the
2017     /// original source code.
2018     ///
2019     /// If `None` is returned, then a source link couldn't be generated. This
2020     /// may happen, for example, with externally inlined items where the source
2021     /// of their crate documentation isn't known.
2022     fn src_href(&self) -> Option<String> {
2023         let mut root = self.cx.root_path();
2024
2025         let cache = cache();
2026         let mut path = String::new();
2027
2028         // We can safely ignore macros from other libraries
2029         let file = match self.item.source.filename {
2030             FileName::Real(ref path) => path,
2031             _ => return None,
2032         };
2033
2034         let (krate, path) = if self.item.def_id.is_local() {
2035             if let Some(path) = self.cx.shared.local_sources.get(file) {
2036                 (&self.cx.shared.layout.krate, path)
2037             } else {
2038                 return None;
2039             }
2040         } else {
2041             let (krate, src_root) = match cache.extern_locations.get(&self.item.def_id.krate) {
2042                 Some(&(ref name, ref src, Local)) => (name, src),
2043                 Some(&(ref name, ref src, Remote(ref s))) => {
2044                     root = s.to_string();
2045                     (name, src)
2046                 }
2047                 Some(&(_, _, Unknown)) | None => return None,
2048             };
2049
2050             clean_srcpath(&src_root, file, false, |component| {
2051                 path.push_str(component);
2052                 path.push('/');
2053             });
2054             let mut fname = file.file_name().expect("source has no filename")
2055                                 .to_os_string();
2056             fname.push(".html");
2057             path.push_str(&fname.to_string_lossy());
2058             (krate, &path)
2059         };
2060
2061         let lines = if self.item.source.loline == self.item.source.hiline {
2062             self.item.source.loline.to_string()
2063         } else {
2064             format!("{}-{}", self.item.source.loline, self.item.source.hiline)
2065         };
2066         Some(format!("{root}src/{krate}/{path}#{lines}",
2067                      root = Escape(&root),
2068                      krate = krate,
2069                      path = path,
2070                      lines = lines))
2071     }
2072 }
2073
2074 fn wrap_into_docblock<F>(w: &mut fmt::Formatter,
2075                          f: F) -> fmt::Result
2076 where F: Fn(&mut fmt::Formatter) -> fmt::Result {
2077     write!(w, "<div class=\"docblock type-decl\">")?;
2078     f(w)?;
2079     write!(w, "</div>")
2080 }
2081
2082 impl<'a> fmt::Display for Item<'a> {
2083     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
2084         debug_assert!(!self.item.is_stripped());
2085         // Write the breadcrumb trail header for the top
2086         write!(fmt, "<h1 class='fqn'><span class='out-of-band'>")?;
2087         if let Some(version) = self.item.stable_since() {
2088             write!(fmt, "<span class='since' title='Stable since Rust version {0}'>{0}</span>",
2089                    version)?;
2090         }
2091         write!(fmt,
2092                "<span id='render-detail'>\
2093                    <a id=\"toggle-all-docs\" href=\"javascript:void(0)\" \
2094                       title=\"collapse all docs\">\
2095                        [<span class='inner'>&#x2212;</span>]\
2096                    </a>\
2097                </span>")?;
2098
2099         // Write `src` tag
2100         //
2101         // When this item is part of a `pub use` in a downstream crate, the
2102         // [src] link in the downstream documentation will actually come back to
2103         // this page, and this link will be auto-clicked. The `id` attribute is
2104         // used to find the link to auto-click.
2105         if self.cx.shared.include_sources && !self.item.is_primitive() {
2106             if let Some(l) = self.src_href() {
2107                 write!(fmt, "<a class='srclink' href='{}' title='{}'>[src]</a>",
2108                        l, "goto source code")?;
2109             }
2110         }
2111
2112         write!(fmt, "</span>")?; // out-of-band
2113         write!(fmt, "<span class='in-band'>")?;
2114         match self.item.inner {
2115             clean::ModuleItem(ref m) => if m.is_crate {
2116                     write!(fmt, "Crate ")?;
2117                 } else {
2118                     write!(fmt, "Module ")?;
2119                 },
2120             clean::FunctionItem(..) | clean::ForeignFunctionItem(..) => write!(fmt, "Function ")?,
2121             clean::TraitItem(..) => write!(fmt, "Trait ")?,
2122             clean::StructItem(..) => write!(fmt, "Struct ")?,
2123             clean::UnionItem(..) => write!(fmt, "Union ")?,
2124             clean::EnumItem(..) => write!(fmt, "Enum ")?,
2125             clean::TypedefItem(..) => write!(fmt, "Type Definition ")?,
2126             clean::MacroItem(..) => write!(fmt, "Macro ")?,
2127             clean::PrimitiveItem(..) => write!(fmt, "Primitive Type ")?,
2128             clean::StaticItem(..) | clean::ForeignStaticItem(..) => write!(fmt, "Static ")?,
2129             clean::ConstantItem(..) => write!(fmt, "Constant ")?,
2130             clean::ForeignTypeItem => write!(fmt, "Foreign Type ")?,
2131             clean::KeywordItem(..) => write!(fmt, "Keyword ")?,
2132             clean::ExistentialItem(..) => write!(fmt, "Existential Type ")?,
2133             _ => {
2134                 // We don't generate pages for any other type.
2135                 unreachable!();
2136             }
2137         }
2138         if !self.item.is_primitive() && !self.item.is_keyword() {
2139             let cur = &self.cx.current;
2140             let amt = if self.item.is_mod() { cur.len() - 1 } else { cur.len() };
2141             for (i, component) in cur.iter().enumerate().take(amt) {
2142                 write!(fmt, "<a href='{}index.html'>{}</a>::<wbr>",
2143                        "../".repeat(cur.len() - i - 1),
2144                        component)?;
2145             }
2146         }
2147         write!(fmt, "<a class=\"{}\" href=''>{}</a>",
2148                self.item.type_(), self.item.name.as_ref().unwrap())?;
2149
2150         write!(fmt, "</span></h1>")?; // in-band
2151
2152         match self.item.inner {
2153             clean::ModuleItem(ref m) =>
2154                 item_module(fmt, self.cx, self.item, &m.items),
2155             clean::FunctionItem(ref f) | clean::ForeignFunctionItem(ref f) =>
2156                 item_function(fmt, self.cx, self.item, f),
2157             clean::TraitItem(ref t) => item_trait(fmt, self.cx, self.item, t),
2158             clean::StructItem(ref s) => item_struct(fmt, self.cx, self.item, s),
2159             clean::UnionItem(ref s) => item_union(fmt, self.cx, self.item, s),
2160             clean::EnumItem(ref e) => item_enum(fmt, self.cx, self.item, e),
2161             clean::TypedefItem(ref t, _) => item_typedef(fmt, self.cx, self.item, t),
2162             clean::MacroItem(ref m) => item_macro(fmt, self.cx, self.item, m),
2163             clean::PrimitiveItem(ref p) => item_primitive(fmt, self.cx, self.item, p),
2164             clean::StaticItem(ref i) | clean::ForeignStaticItem(ref i) =>
2165                 item_static(fmt, self.cx, self.item, i),
2166             clean::ConstantItem(ref c) => item_constant(fmt, self.cx, self.item, c),
2167             clean::ForeignTypeItem => item_foreign_type(fmt, self.cx, self.item),
2168             clean::KeywordItem(ref k) => item_keyword(fmt, self.cx, self.item, k),
2169             clean::ExistentialItem(ref e, _) => item_existential(fmt, self.cx, self.item, e),
2170             _ => {
2171                 // We don't generate pages for any other type.
2172                 unreachable!();
2173             }
2174         }
2175     }
2176 }
2177
2178 fn item_path(ty: ItemType, name: &str) -> String {
2179     match ty {
2180         ItemType::Module => format!("{}/index.html", name),
2181         _ => format!("{}.{}.html", ty.css_class(), name),
2182     }
2183 }
2184
2185 fn full_path(cx: &Context, item: &clean::Item) -> String {
2186     let mut s = cx.current.join("::");
2187     s.push_str("::");
2188     s.push_str(item.name.as_ref().unwrap());
2189     s
2190 }
2191
2192 fn shorter<'a>(s: Option<&'a str>) -> String {
2193     match s {
2194         Some(s) => s.lines()
2195             .skip_while(|s| s.chars().all(|c| c.is_whitespace()))
2196             .take_while(|line|{
2197             (*line).chars().any(|chr|{
2198                 !chr.is_whitespace()
2199             })
2200         }).collect::<Vec<_>>().join("\n"),
2201         None => String::new()
2202     }
2203 }
2204
2205 #[inline]
2206 fn plain_summary_line(s: Option<&str>) -> String {
2207     let line = shorter(s).replace("\n", " ");
2208     markdown::plain_summary_line(&line[..])
2209 }
2210
2211 fn document(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item) -> fmt::Result {
2212     if let Some(ref name) = item.name {
2213         info!("Documenting {}", name);
2214     }
2215     document_stability(w, cx, item)?;
2216     document_full(w, item, cx, "")?;
2217     Ok(())
2218 }
2219
2220 /// Render md_text as markdown.
2221 fn render_markdown(w: &mut fmt::Formatter,
2222                    cx: &Context,
2223                    md_text: &str,
2224                    links: Vec<(String, String)>,
2225                    prefix: &str)
2226                    -> fmt::Result {
2227     let mut ids = cx.id_map.borrow_mut();
2228     write!(w, "<div class='docblock'>{}{}</div>",
2229         prefix, Markdown(md_text, &links, RefCell::new(&mut ids), cx.codes))
2230 }
2231
2232 fn document_short(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item, link: AssocItemLink,
2233                   prefix: &str) -> fmt::Result {
2234     if let Some(s) = item.doc_value() {
2235         let markdown = if s.contains('\n') {
2236             format!("{} [Read more]({})",
2237                     &plain_summary_line(Some(s)), naive_assoc_href(item, link))
2238         } else {
2239             plain_summary_line(Some(s)).to_string()
2240         };
2241         render_markdown(w, cx, &markdown, item.links(), prefix)?;
2242     } else if !prefix.is_empty() {
2243         write!(w, "<div class='docblock'>{}</div>", prefix)?;
2244     }
2245     Ok(())
2246 }
2247
2248 fn document_full(w: &mut fmt::Formatter, item: &clean::Item,
2249                  cx: &Context, prefix: &str) -> fmt::Result {
2250     if let Some(s) = cx.shared.maybe_collapsed_doc_value(item) {
2251         debug!("Doc block: =====\n{}\n=====", s);
2252         render_markdown(w, cx, &*s, item.links(), prefix)?;
2253     } else if !prefix.is_empty() {
2254         write!(w, "<div class='docblock'>{}</div>", prefix)?;
2255     }
2256     Ok(())
2257 }
2258
2259 fn document_stability(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item) -> fmt::Result {
2260     let stabilities = short_stability(item, cx, true);
2261     if !stabilities.is_empty() {
2262         write!(w, "<div class='stability'>")?;
2263         for stability in stabilities {
2264             write!(w, "{}", stability)?;
2265         }
2266         write!(w, "</div>")?;
2267     }
2268     Ok(())
2269 }
2270
2271 fn document_non_exhaustive_header(item: &clean::Item) -> &str {
2272     if item.is_non_exhaustive() { " (Non-exhaustive)" } else { "" }
2273 }
2274
2275 fn document_non_exhaustive(w: &mut fmt::Formatter, item: &clean::Item) -> fmt::Result {
2276     if item.is_non_exhaustive() {
2277         write!(w, "<div class='docblock non-exhaustive non-exhaustive-{}'>", {
2278             if item.is_struct() { "struct" } else if item.is_enum() { "enum" } else { "type" }
2279         })?;
2280
2281         if item.is_struct() {
2282             write!(w, "Non-exhaustive structs could have additional fields added in future. \
2283                        Therefore, non-exhaustive structs cannot be constructed in external crates \
2284                        using the traditional <code>Struct {{ .. }}</code> syntax; cannot be \
2285                        matched against without a wildcard <code>..</code>; and \
2286                        struct update syntax will not work.")?;
2287         } else if item.is_enum() {
2288             write!(w, "Non-exhaustive enums could have additional variants added in future. \
2289                        Therefore, when matching against variants of non-exhaustive enums, an \
2290                        extra wildcard arm must be added to account for any future variants.")?;
2291         } else {
2292             write!(w, "This type will require a wildcard arm in any match statements or \
2293                        constructors.")?;
2294         }
2295
2296         write!(w, "</div>")?;
2297     }
2298
2299     Ok(())
2300 }
2301
2302 fn name_key(name: &str) -> (&str, u64, usize) {
2303     let end = name.bytes()
2304         .rposition(|b| b.is_ascii_digit()).map_or(name.len(), |i| i + 1);
2305
2306     // find number at end
2307     let split = name[0..end].bytes()
2308         .rposition(|b| !b.is_ascii_digit()).map_or(0, |i| i + 1);
2309
2310     // count leading zeroes
2311     let after_zeroes =
2312         name[split..end].bytes().position(|b| b != b'0').map_or(name.len(), |extra| split + extra);
2313
2314     // sort leading zeroes last
2315     let num_zeroes = after_zeroes - split;
2316
2317     match name[split..end].parse() {
2318         Ok(n) => (&name[..split], n, num_zeroes),
2319         Err(_) => (name, 0, num_zeroes),
2320     }
2321 }
2322
2323 fn item_module(w: &mut fmt::Formatter, cx: &Context,
2324                item: &clean::Item, items: &[clean::Item]) -> fmt::Result {
2325     document(w, cx, item)?;
2326
2327     let mut indices = (0..items.len()).filter(|i| !items[*i].is_stripped()).collect::<Vec<usize>>();
2328
2329     // the order of item types in the listing
2330     fn reorder(ty: ItemType) -> u8 {
2331         match ty {
2332             ItemType::ExternCrate     => 0,
2333             ItemType::Import          => 1,
2334             ItemType::Primitive       => 2,
2335             ItemType::Module          => 3,
2336             ItemType::Macro           => 4,
2337             ItemType::Struct          => 5,
2338             ItemType::Enum            => 6,
2339             ItemType::Constant        => 7,
2340             ItemType::Static          => 8,
2341             ItemType::Trait           => 9,
2342             ItemType::Function        => 10,
2343             ItemType::Typedef         => 12,
2344             ItemType::Union           => 13,
2345             _                         => 14 + ty as u8,
2346         }
2347     }
2348
2349     fn cmp(i1: &clean::Item, i2: &clean::Item, idx1: usize, idx2: usize) -> Ordering {
2350         let ty1 = i1.type_();
2351         let ty2 = i2.type_();
2352         if ty1 != ty2 {
2353             return (reorder(ty1), idx1).cmp(&(reorder(ty2), idx2))
2354         }
2355         let s1 = i1.stability.as_ref().map(|s| s.level);
2356         let s2 = i2.stability.as_ref().map(|s| s.level);
2357         match (s1, s2) {
2358             (Some(stability::Unstable), Some(stability::Stable)) => return Ordering::Greater,
2359             (Some(stability::Stable), Some(stability::Unstable)) => return Ordering::Less,
2360             _ => {}
2361         }
2362         let lhs = i1.name.as_ref().map_or("", |s| &**s);
2363         let rhs = i2.name.as_ref().map_or("", |s| &**s);
2364         name_key(lhs).cmp(&name_key(rhs))
2365     }
2366
2367     if cx.shared.sort_modules_alphabetically {
2368         indices.sort_by(|&i1, &i2| cmp(&items[i1], &items[i2], i1, i2));
2369     }
2370     // This call is to remove re-export duplicates in cases such as:
2371     //
2372     // ```
2373     // pub mod foo {
2374     //     pub mod bar {
2375     //         pub trait Double { fn foo(); }
2376     //     }
2377     // }
2378     //
2379     // pub use foo::bar::*;
2380     // pub use foo::*;
2381     // ```
2382     //
2383     // `Double` will appear twice in the generated docs.
2384     //
2385     // FIXME: This code is quite ugly and could be improved. Small issue: DefId
2386     // can be identical even if the elements are different (mostly in imports).
2387     // So in case this is an import, we keep everything by adding a "unique id"
2388     // (which is the position in the vector).
2389     indices.dedup_by_key(|i| (items[*i].def_id,
2390                               if items[*i].name.as_ref().is_some() {
2391                                   Some(full_path(cx, &items[*i]).clone())
2392                               } else {
2393                                   None
2394                               },
2395                               items[*i].type_(),
2396                               if items[*i].is_import() {
2397                                   *i
2398                               } else {
2399                                   0
2400                               }));
2401
2402     debug!("{:?}", indices);
2403     let mut curty = None;
2404     for &idx in &indices {
2405         let myitem = &items[idx];
2406         if myitem.is_stripped() {
2407             continue;
2408         }
2409
2410         let myty = Some(myitem.type_());
2411         if curty == Some(ItemType::ExternCrate) && myty == Some(ItemType::Import) {
2412             // Put `extern crate` and `use` re-exports in the same section.
2413             curty = myty;
2414         } else if myty != curty {
2415             if curty.is_some() {
2416                 write!(w, "</table>")?;
2417             }
2418             curty = myty;
2419             let (short, name) = item_ty_to_strs(&myty.unwrap());
2420             write!(w, "<h2 id='{id}' class='section-header'>\
2421                        <a href=\"#{id}\">{name}</a></h2>\n<table>",
2422                    id = cx.derive_id(short.to_owned()), name = name)?;
2423         }
2424
2425         match myitem.inner {
2426             clean::ExternCrateItem(ref name, ref src) => {
2427                 use html::format::HRef;
2428
2429                 match *src {
2430                     Some(ref src) => {
2431                         write!(w, "<tr><td><code>{}extern crate {} as {};",
2432                                VisSpace(&myitem.visibility),
2433                                HRef::new(myitem.def_id, src),
2434                                name)?
2435                     }
2436                     None => {
2437                         write!(w, "<tr><td><code>{}extern crate {};",
2438                                VisSpace(&myitem.visibility),
2439                                HRef::new(myitem.def_id, name))?
2440                     }
2441                 }
2442                 write!(w, "</code></td></tr>")?;
2443             }
2444
2445             clean::ImportItem(ref import) => {
2446                 write!(w, "<tr><td><code>{}{}</code></td></tr>",
2447                        VisSpace(&myitem.visibility), *import)?;
2448             }
2449
2450             _ => {
2451                 if myitem.name.is_none() { continue }
2452
2453                 let stabilities = short_stability(myitem, cx, false);
2454
2455                 let stab_docs = if !stabilities.is_empty() {
2456                     stabilities.iter()
2457                                .map(|s| format!("[{}]", s))
2458                                .collect::<Vec<_>>()
2459                                .as_slice()
2460                                .join(" ")
2461                 } else {
2462                     String::new()
2463                 };
2464
2465                 let unsafety_flag = match myitem.inner {
2466                     clean::FunctionItem(ref func) | clean::ForeignFunctionItem(ref func)
2467                     if func.header.unsafety == hir::Unsafety::Unsafe => {
2468                         "<a title='unsafe function' href='#'><sup>âš </sup></a>"
2469                     }
2470                     _ => "",
2471                 };
2472
2473                 let doc_value = myitem.doc_value().unwrap_or("");
2474                 write!(w, "
2475                        <tr class='{stab} module-item'>
2476                            <td><a class=\"{class}\" href=\"{href}\"
2477                                   title='{title_type} {title}'>{name}</a>{unsafety_flag}</td>
2478                            <td class='docblock-short'>
2479                                {stab_docs} {docs}
2480                            </td>
2481                        </tr>",
2482                        name = *myitem.name.as_ref().unwrap(),
2483                        stab_docs = stab_docs,
2484                        docs = MarkdownSummaryLine(doc_value, &myitem.links()),
2485                        class = myitem.type_(),
2486                        stab = myitem.stability_class().unwrap_or(String::new()),
2487                        unsafety_flag = unsafety_flag,
2488                        href = item_path(myitem.type_(), myitem.name.as_ref().unwrap()),
2489                        title_type = myitem.type_(),
2490                        title = full_path(cx, myitem))?;
2491             }
2492         }
2493     }
2494
2495     if curty.is_some() {
2496         write!(w, "</table>")?;
2497     }
2498     Ok(())
2499 }
2500
2501 fn short_stability(item: &clean::Item, cx: &Context, show_reason: bool) -> Vec<String> {
2502     let mut stability = vec![];
2503     let error_codes = ErrorCodes::from(UnstableFeatures::from_environment().is_nightly_build());
2504
2505     if let Some(stab) = item.stability.as_ref() {
2506         let deprecated_reason = if show_reason && !stab.deprecated_reason.is_empty() {
2507             format!(": {}", stab.deprecated_reason)
2508         } else {
2509             String::new()
2510         };
2511         if !stab.deprecated_since.is_empty() {
2512             let since = if show_reason {
2513                 format!(" since {}", Escape(&stab.deprecated_since))
2514             } else {
2515                 String::new()
2516             };
2517             let mut ids = cx.id_map.borrow_mut();
2518             let html = MarkdownHtml(&deprecated_reason, RefCell::new(&mut ids), error_codes);
2519             let text = if stability::deprecation_in_effect(&stab.deprecated_since) {
2520                 format!("Deprecated{}{}", since, html)
2521             } else {
2522                 format!("Deprecating in {}{}", Escape(&stab.deprecated_since), html)
2523             };
2524             stability.push(format!("<div class='stab deprecated'>{}</div>", text))
2525         };
2526
2527         if stab.level == stability::Unstable {
2528             if show_reason {
2529                 let unstable_extra = match (!stab.feature.is_empty(),
2530                                             &cx.shared.issue_tracker_base_url,
2531                                             stab.issue) {
2532                     (true, &Some(ref tracker_url), Some(issue_no)) if issue_no > 0 =>
2533                         format!(" (<code>{} </code><a href=\"{}{}\">#{}</a>)",
2534                                 Escape(&stab.feature), tracker_url, issue_no, issue_no),
2535                     (false, &Some(ref tracker_url), Some(issue_no)) if issue_no > 0 =>
2536                         format!(" (<a href=\"{}{}\">#{}</a>)", Escape(&tracker_url), issue_no,
2537                                 issue_no),
2538                     (true, ..) =>
2539                         format!(" (<code>{}</code>)", Escape(&stab.feature)),
2540                     _ => String::new(),
2541                 };
2542                 if stab.unstable_reason.is_empty() {
2543                     stability.push(format!("<div class='stab unstable'>\
2544                                             <span class=microscope>🔬</span> \
2545                                             This is a nightly-only experimental API. {}\
2546                                             </div>",
2547                                            unstable_extra));
2548                 } else {
2549                     let mut ids = cx.id_map.borrow_mut();
2550                     let text = format!("<summary><span class=microscope>🔬</span> \
2551                                         This is a nightly-only experimental API. {}\
2552                                         </summary>{}",
2553                                        unstable_extra,
2554                                        MarkdownHtml(
2555                                            &stab.unstable_reason,
2556                                            RefCell::new(&mut ids),
2557                                            error_codes));
2558                     stability.push(format!("<div class='stab unstable'><details>{}</details></div>",
2559                                    text));
2560                 }
2561             } else {
2562                 stability.push("<div class='stab unstable'>Experimental</div>".to_string())
2563             }
2564         };
2565     } else if let Some(depr) = item.deprecation.as_ref() {
2566         let note = if show_reason && !depr.note.is_empty() {
2567             format!(": {}", depr.note)
2568         } else {
2569             String::new()
2570         };
2571         let since = if show_reason && !depr.since.is_empty() {
2572             format!(" since {}", Escape(&depr.since))
2573         } else {
2574             String::new()
2575         };
2576
2577         let mut ids = cx.id_map.borrow_mut();
2578         let text = if stability::deprecation_in_effect(&depr.since) {
2579             format!("Deprecated{}{}",
2580                     since,
2581                     MarkdownHtml(&note, RefCell::new(&mut ids), error_codes))
2582         } else {
2583             format!("Deprecating in {}{}",
2584                     Escape(&depr.since),
2585                     MarkdownHtml(&note, RefCell::new(&mut ids), error_codes))
2586         };
2587         stability.push(format!("<div class='stab deprecated'>{}</div>", text))
2588     }
2589
2590     if let Some(ref cfg) = item.attrs.cfg {
2591         stability.push(format!("<div class='stab portability'>{}</div>", if show_reason {
2592             cfg.render_long_html()
2593         } else {
2594             cfg.render_short_html()
2595         }));
2596     }
2597
2598     stability
2599 }
2600
2601 fn item_constant(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2602                  c: &clean::Constant) -> fmt::Result {
2603     write!(w, "<pre class='rust const'>")?;
2604     render_attributes(w, it)?;
2605     write!(w, "{vis}const \
2606                {name}: {typ}</pre>",
2607            vis = VisSpace(&it.visibility),
2608            name = it.name.as_ref().unwrap(),
2609            typ = c.type_)?;
2610     document(w, cx, it)
2611 }
2612
2613 fn item_static(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2614                s: &clean::Static) -> fmt::Result {
2615     write!(w, "<pre class='rust static'>")?;
2616     render_attributes(w, it)?;
2617     write!(w, "{vis}static {mutability}\
2618                {name}: {typ}</pre>",
2619            vis = VisSpace(&it.visibility),
2620            mutability = MutableSpace(s.mutability),
2621            name = it.name.as_ref().unwrap(),
2622            typ = s.type_)?;
2623     document(w, cx, it)
2624 }
2625
2626 fn item_function(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2627                  f: &clean::Function) -> fmt::Result {
2628     let name_len = format!("{}{}{}{}{:#}fn {}{:#}",
2629                            VisSpace(&it.visibility),
2630                            ConstnessSpace(f.header.constness),
2631                            UnsafetySpace(f.header.unsafety),
2632                            AsyncSpace(f.header.asyncness),
2633                            AbiSpace(f.header.abi),
2634                            it.name.as_ref().unwrap(),
2635                            f.generics).len();
2636     write!(w, "{}<pre class='rust fn'>", render_spotlight_traits(it)?)?;
2637     render_attributes(w, it)?;
2638     write!(w,
2639            "{vis}{constness}{unsafety}{asyncness}{abi}fn \
2640            {name}{generics}{decl}{where_clause}</pre>",
2641            vis = VisSpace(&it.visibility),
2642            constness = ConstnessSpace(f.header.constness),
2643            unsafety = UnsafetySpace(f.header.unsafety),
2644            asyncness = AsyncSpace(f.header.asyncness),
2645            abi = AbiSpace(f.header.abi),
2646            name = it.name.as_ref().unwrap(),
2647            generics = f.generics,
2648            where_clause = WhereClause { gens: &f.generics, indent: 0, end_newline: true },
2649            decl = Method {
2650               decl: &f.decl,
2651               name_len,
2652               indent: 0,
2653            })?;
2654     document(w, cx, it)
2655 }
2656
2657 fn render_implementor(cx: &Context, implementor: &Impl, w: &mut fmt::Formatter,
2658                       implementor_dups: &FxHashMap<&str, (DefId, bool)>) -> fmt::Result {
2659     // If there's already another implementor that has the same abbridged name, use the
2660     // full path, for example in `std::iter::ExactSizeIterator`
2661     let use_absolute = match implementor.inner_impl().for_ {
2662         clean::ResolvedPath { ref path, is_generic: false, .. } |
2663         clean::BorrowedRef {
2664             type_: box clean::ResolvedPath { ref path, is_generic: false, .. },
2665             ..
2666         } => implementor_dups[path.last_name()].1,
2667         _ => false,
2668     };
2669     render_impl(w, cx, implementor, AssocItemLink::Anchor(None), RenderMode::Normal,
2670                 implementor.impl_item.stable_since(), false, Some(use_absolute))?;
2671     Ok(())
2672 }
2673
2674 fn render_impls(cx: &Context, w: &mut fmt::Formatter,
2675                 traits: &[&&Impl],
2676                 containing_item: &clean::Item) -> fmt::Result {
2677     for i in traits {
2678         let did = i.trait_did().unwrap();
2679         let assoc_link = AssocItemLink::GotoSource(did, &i.inner_impl().provided_trait_methods);
2680         render_impl(w, cx, i, assoc_link,
2681                     RenderMode::Normal, containing_item.stable_since(), true, None)?;
2682     }
2683     Ok(())
2684 }
2685
2686 fn bounds(t_bounds: &[clean::GenericBound]) -> String {
2687     let mut bounds = String::new();
2688     let mut bounds_plain = String::new();
2689     if !t_bounds.is_empty() {
2690         if !bounds.is_empty() {
2691             bounds.push(' ');
2692             bounds_plain.push(' ');
2693         }
2694         bounds.push_str(": ");
2695         bounds_plain.push_str(": ");
2696         for (i, p) in t_bounds.iter().enumerate() {
2697             if i > 0 {
2698                 bounds.push_str(" + ");
2699                 bounds_plain.push_str(" + ");
2700             }
2701             bounds.push_str(&(*p).to_string());
2702             bounds_plain.push_str(&format!("{:#}", *p));
2703         }
2704     }
2705     bounds
2706 }
2707
2708 fn compare_impl<'a, 'b>(lhs: &'a &&Impl, rhs: &'b &&Impl) -> Ordering {
2709     let lhs = format!("{}", lhs.inner_impl());
2710     let rhs = format!("{}", rhs.inner_impl());
2711
2712     // lhs and rhs are formatted as HTML, which may be unnecessary
2713     name_key(&lhs).cmp(&name_key(&rhs))
2714 }
2715
2716 fn item_trait(
2717     w: &mut fmt::Formatter,
2718     cx: &Context,
2719     it: &clean::Item,
2720     t: &clean::Trait,
2721 ) -> fmt::Result {
2722     let bounds = bounds(&t.bounds);
2723     let types = t.items.iter().filter(|m| m.is_associated_type()).collect::<Vec<_>>();
2724     let consts = t.items.iter().filter(|m| m.is_associated_const()).collect::<Vec<_>>();
2725     let required = t.items.iter().filter(|m| m.is_ty_method()).collect::<Vec<_>>();
2726     let provided = t.items.iter().filter(|m| m.is_method()).collect::<Vec<_>>();
2727
2728     // Output the trait definition
2729     wrap_into_docblock(w, |w| {
2730         write!(w, "<pre class='rust trait'>")?;
2731         render_attributes(w, it)?;
2732         write!(w, "{}{}{}trait {}{}{}",
2733                VisSpace(&it.visibility),
2734                UnsafetySpace(t.unsafety),
2735                if t.is_auto { "auto " } else { "" },
2736                it.name.as_ref().unwrap(),
2737                t.generics,
2738                bounds)?;
2739
2740         if !t.generics.where_predicates.is_empty() {
2741             write!(w, "{}", WhereClause { gens: &t.generics, indent: 0, end_newline: true })?;
2742         } else {
2743             write!(w, " ")?;
2744         }
2745
2746         if t.items.is_empty() {
2747             write!(w, "{{ }}")?;
2748         } else {
2749             // FIXME: we should be using a derived_id for the Anchors here
2750             write!(w, "{{\n")?;
2751             for t in &types {
2752                 write!(w, "    ")?;
2753                 render_assoc_item(w, t, AssocItemLink::Anchor(None), ItemType::Trait)?;
2754                 write!(w, ";\n")?;
2755             }
2756             if !types.is_empty() && !consts.is_empty() {
2757                 w.write_str("\n")?;
2758             }
2759             for t in &consts {
2760                 write!(w, "    ")?;
2761                 render_assoc_item(w, t, AssocItemLink::Anchor(None), ItemType::Trait)?;
2762                 write!(w, ";\n")?;
2763             }
2764             if !consts.is_empty() && !required.is_empty() {
2765                 w.write_str("\n")?;
2766             }
2767             for (pos, m) in required.iter().enumerate() {
2768                 write!(w, "    ")?;
2769                 render_assoc_item(w, m, AssocItemLink::Anchor(None), ItemType::Trait)?;
2770                 write!(w, ";\n")?;
2771
2772                 if pos < required.len() - 1 {
2773                    write!(w, "<div class='item-spacer'></div>")?;
2774                 }
2775             }
2776             if !required.is_empty() && !provided.is_empty() {
2777                 w.write_str("\n")?;
2778             }
2779             for (pos, m) in provided.iter().enumerate() {
2780                 write!(w, "    ")?;
2781                 render_assoc_item(w, m, AssocItemLink::Anchor(None), ItemType::Trait)?;
2782                 match m.inner {
2783                     clean::MethodItem(ref inner) if !inner.generics.where_predicates.is_empty() => {
2784                         write!(w, ",\n    {{ ... }}\n")?;
2785                     },
2786                     _ => {
2787                         write!(w, " {{ ... }}\n")?;
2788                     },
2789                 }
2790                 if pos < provided.len() - 1 {
2791                    write!(w, "<div class='item-spacer'></div>")?;
2792                 }
2793             }
2794             write!(w, "}}")?;
2795         }
2796         write!(w, "</pre>")
2797     })?;
2798
2799     // Trait documentation
2800     document(w, cx, it)?;
2801
2802     fn trait_item(w: &mut fmt::Formatter, cx: &Context, m: &clean::Item, t: &clean::Item)
2803                   -> fmt::Result {
2804         let name = m.name.as_ref().unwrap();
2805         let item_type = m.type_();
2806         let id = cx.derive_id(format!("{}.{}", item_type, name));
2807         let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
2808         write!(w, "{extra}<h3 id='{id}' class='method'>\
2809                    <span id='{ns_id}' class='invisible'><code>",
2810                extra = render_spotlight_traits(m)?,
2811                id = id,
2812                ns_id = ns_id)?;
2813         render_assoc_item(w, m, AssocItemLink::Anchor(Some(&id)), ItemType::Impl)?;
2814         write!(w, "</code>")?;
2815         render_stability_since(w, m, t)?;
2816         write!(w, "</span></h3>")?;
2817         document(w, cx, m)?;
2818         Ok(())
2819     }
2820
2821     if !types.is_empty() {
2822         write!(w, "
2823             <h2 id='associated-types' class='small-section-header'>
2824               Associated Types<a href='#associated-types' class='anchor'></a>
2825             </h2>
2826             <div class='methods'>
2827         ")?;
2828         for t in &types {
2829             trait_item(w, cx, *t, it)?;
2830         }
2831         write!(w, "</div>")?;
2832     }
2833
2834     if !consts.is_empty() {
2835         write!(w, "
2836             <h2 id='associated-const' class='small-section-header'>
2837               Associated Constants<a href='#associated-const' class='anchor'></a>
2838             </h2>
2839             <div class='methods'>
2840         ")?;
2841         for t in &consts {
2842             trait_item(w, cx, *t, it)?;
2843         }
2844         write!(w, "</div>")?;
2845     }
2846
2847     // Output the documentation for each function individually
2848     if !required.is_empty() {
2849         write!(w, "
2850             <h2 id='required-methods' class='small-section-header'>
2851               Required Methods<a href='#required-methods' class='anchor'></a>
2852             </h2>
2853             <div class='methods'>
2854         ")?;
2855         for m in &required {
2856             trait_item(w, cx, *m, it)?;
2857         }
2858         write!(w, "</div>")?;
2859     }
2860     if !provided.is_empty() {
2861         write!(w, "
2862             <h2 id='provided-methods' class='small-section-header'>
2863               Provided Methods<a href='#provided-methods' class='anchor'></a>
2864             </h2>
2865             <div class='methods'>
2866         ")?;
2867         for m in &provided {
2868             trait_item(w, cx, *m, it)?;
2869         }
2870         write!(w, "</div>")?;
2871     }
2872
2873     // If there are methods directly on this trait object, render them here.
2874     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)?;
2875
2876     let cache = cache();
2877     let impl_header = "\
2878         <h2 id='implementors' class='small-section-header'>\
2879           Implementors<a href='#implementors' class='anchor'></a>\
2880         </h2>\
2881         <div class='item-list' id='implementors-list'>\
2882     ";
2883
2884     let synthetic_impl_header = "\
2885         <h2 id='synthetic-implementors' class='small-section-header'>\
2886           Auto implementors<a href='#synthetic-implementors' class='anchor'></a>\
2887         </h2>\
2888         <div class='item-list' id='synthetic-implementors-list'>\
2889     ";
2890
2891     let mut synthetic_types = Vec::new();
2892
2893     if let Some(implementors) = cache.implementors.get(&it.def_id) {
2894         // The DefId is for the first Type found with that name. The bool is
2895         // if any Types with the same name but different DefId have been found.
2896         let mut implementor_dups: FxHashMap<&str, (DefId, bool)> = FxHashMap();
2897         for implementor in implementors {
2898             match implementor.inner_impl().for_ {
2899                 clean::ResolvedPath { ref path, did, is_generic: false, .. } |
2900                 clean::BorrowedRef {
2901                     type_: box clean::ResolvedPath { ref path, did, is_generic: false, .. },
2902                     ..
2903                 } => {
2904                     let &mut (prev_did, ref mut has_duplicates) =
2905                         implementor_dups.entry(path.last_name()).or_insert((did, false));
2906                     if prev_did != did {
2907                         *has_duplicates = true;
2908                     }
2909                 }
2910                 _ => {}
2911             }
2912         }
2913
2914         let (local, foreign) = implementors.iter()
2915             .partition::<Vec<_>, _>(|i| i.inner_impl().for_.def_id()
2916                                          .map_or(true, |d| cache.paths.contains_key(&d)));
2917
2918
2919         let (mut synthetic, mut concrete): (Vec<&&Impl>, Vec<&&Impl>) = local.iter()
2920             .partition(|i| i.inner_impl().synthetic);
2921
2922         synthetic.sort_by(compare_impl);
2923         concrete.sort_by(compare_impl);
2924
2925         if !foreign.is_empty() {
2926             write!(w, "
2927                 <h2 id='foreign-impls' class='small-section-header'>
2928                   Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a>
2929                 </h2>
2930             ")?;
2931
2932             for implementor in foreign {
2933                 let assoc_link = AssocItemLink::GotoSource(
2934                     implementor.impl_item.def_id,
2935                     &implementor.inner_impl().provided_trait_methods
2936                 );
2937                 render_impl(w, cx, &implementor, assoc_link,
2938                             RenderMode::Normal, implementor.impl_item.stable_since(), false,
2939                             None)?;
2940             }
2941         }
2942
2943         write!(w, "{}", impl_header)?;
2944         for implementor in concrete {
2945             render_implementor(cx, implementor, w, &implementor_dups)?;
2946         }
2947         write!(w, "</div>")?;
2948
2949         if t.auto {
2950             write!(w, "{}", synthetic_impl_header)?;
2951             for implementor in synthetic {
2952                 synthetic_types.extend(
2953                     collect_paths_for_type(implementor.inner_impl().for_.clone())
2954                 );
2955                 render_implementor(cx, implementor, w, &implementor_dups)?;
2956             }
2957             write!(w, "</div>")?;
2958         }
2959     } else {
2960         // even without any implementations to write in, we still want the heading and list, so the
2961         // implementors javascript file pulled in below has somewhere to write the impls into
2962         write!(w, "{}", impl_header)?;
2963         write!(w, "</div>")?;
2964
2965         if t.auto {
2966             write!(w, "{}", synthetic_impl_header)?;
2967             write!(w, "</div>")?;
2968         }
2969     }
2970     write!(w, r#"<script type="text/javascript">window.inlined_types=new Set({});</script>"#,
2971            as_json(&synthetic_types))?;
2972
2973     write!(w, r#"<script type="text/javascript" async
2974                          src="{root_path}/implementors/{path}/{ty}.{name}.js">
2975                  </script>"#,
2976            root_path = vec![".."; cx.current.len()].join("/"),
2977            path = if it.def_id.is_local() {
2978                cx.current.join("/")
2979            } else {
2980                let (ref path, _) = cache.external_paths[&it.def_id];
2981                path[..path.len() - 1].join("/")
2982            },
2983            ty = it.type_().css_class(),
2984            name = *it.name.as_ref().unwrap())?;
2985     Ok(())
2986 }
2987
2988 fn naive_assoc_href(it: &clean::Item, link: AssocItemLink) -> String {
2989     use html::item_type::ItemType::*;
2990
2991     let name = it.name.as_ref().unwrap();
2992     let ty = match it.type_() {
2993         Typedef | AssociatedType => AssociatedType,
2994         s@_ => s,
2995     };
2996
2997     let anchor = format!("#{}.{}", ty, name);
2998     match link {
2999         AssocItemLink::Anchor(Some(ref id)) => format!("#{}", id),
3000         AssocItemLink::Anchor(None) => anchor,
3001         AssocItemLink::GotoSource(did, _) => {
3002             href(did).map(|p| format!("{}{}", p.0, anchor)).unwrap_or(anchor)
3003         }
3004     }
3005 }
3006
3007 fn assoc_const(w: &mut fmt::Formatter,
3008                it: &clean::Item,
3009                ty: &clean::Type,
3010                _default: Option<&String>,
3011                link: AssocItemLink) -> fmt::Result {
3012     write!(w, "{}const <a href='{}' class=\"constant\"><b>{}</b></a>: {}",
3013            VisSpace(&it.visibility),
3014            naive_assoc_href(it, link),
3015            it.name.as_ref().unwrap(),
3016            ty)?;
3017     Ok(())
3018 }
3019
3020 fn assoc_type<W: fmt::Write>(w: &mut W, it: &clean::Item,
3021                              bounds: &[clean::GenericBound],
3022                              default: Option<&clean::Type>,
3023                              link: AssocItemLink) -> fmt::Result {
3024     write!(w, "type <a href='{}' class=\"type\">{}</a>",
3025            naive_assoc_href(it, link),
3026            it.name.as_ref().unwrap())?;
3027     if !bounds.is_empty() {
3028         write!(w, ": {}", GenericBounds(bounds))?
3029     }
3030     if let Some(default) = default {
3031         write!(w, " = {}", default)?;
3032     }
3033     Ok(())
3034 }
3035
3036 fn render_stability_since_raw<'a>(w: &mut fmt::Formatter,
3037                                   ver: Option<&'a str>,
3038                                   containing_ver: Option<&'a str>) -> fmt::Result {
3039     if let Some(v) = ver {
3040         if containing_ver != ver && v.len() > 0 {
3041             write!(w, "<div class='since' title='Stable since Rust version {0}'>{0}</div>",
3042                    v)?
3043         }
3044     }
3045     Ok(())
3046 }
3047
3048 fn render_stability_since(w: &mut fmt::Formatter,
3049                           item: &clean::Item,
3050                           containing_item: &clean::Item) -> fmt::Result {
3051     render_stability_since_raw(w, item.stable_since(), containing_item.stable_since())
3052 }
3053
3054 fn render_assoc_item(w: &mut fmt::Formatter,
3055                      item: &clean::Item,
3056                      link: AssocItemLink,
3057                      parent: ItemType) -> fmt::Result {
3058     fn method(w: &mut fmt::Formatter,
3059               meth: &clean::Item,
3060               header: hir::FnHeader,
3061               g: &clean::Generics,
3062               d: &clean::FnDecl,
3063               link: AssocItemLink,
3064               parent: ItemType)
3065               -> fmt::Result {
3066         let name = meth.name.as_ref().unwrap();
3067         let anchor = format!("#{}.{}", meth.type_(), name);
3068         let href = match link {
3069             AssocItemLink::Anchor(Some(ref id)) => format!("#{}", id),
3070             AssocItemLink::Anchor(None) => anchor,
3071             AssocItemLink::GotoSource(did, provided_methods) => {
3072                 // We're creating a link from an impl-item to the corresponding
3073                 // trait-item and need to map the anchored type accordingly.
3074                 let ty = if provided_methods.contains(name) {
3075                     ItemType::Method
3076                 } else {
3077                     ItemType::TyMethod
3078                 };
3079
3080                 href(did).map(|p| format!("{}#{}.{}", p.0, ty, name)).unwrap_or(anchor)
3081             }
3082         };
3083         let mut head_len = format!("{}{}{}{}{:#}fn {}{:#}",
3084                                    VisSpace(&meth.visibility),
3085                                    ConstnessSpace(header.constness),
3086                                    UnsafetySpace(header.unsafety),
3087                                    AsyncSpace(header.asyncness),
3088                                    AbiSpace(header.abi),
3089                                    name,
3090                                    *g).len();
3091         let (indent, end_newline) = if parent == ItemType::Trait {
3092             head_len += 4;
3093             (4, false)
3094         } else {
3095             (0, true)
3096         };
3097         render_attributes(w, meth)?;
3098         write!(w, "{}{}{}{}{}fn <a href='{href}' class='fnname'>{name}</a>\
3099                    {generics}{decl}{where_clause}",
3100                VisSpace(&meth.visibility),
3101                ConstnessSpace(header.constness),
3102                UnsafetySpace(header.unsafety),
3103                AsyncSpace(header.asyncness),
3104                AbiSpace(header.abi),
3105                href = href,
3106                name = name,
3107                generics = *g,
3108                decl = Method {
3109                    decl: d,
3110                    name_len: head_len,
3111                    indent,
3112                },
3113                where_clause = WhereClause {
3114                    gens: g,
3115                    indent,
3116                    end_newline,
3117                })
3118     }
3119     match item.inner {
3120         clean::StrippedItem(..) => Ok(()),
3121         clean::TyMethodItem(ref m) => {
3122             method(w, item, m.header, &m.generics, &m.decl, link, parent)
3123         }
3124         clean::MethodItem(ref m) => {
3125             method(w, item, m.header, &m.generics, &m.decl, link, parent)
3126         }
3127         clean::AssociatedConstItem(ref ty, ref default) => {
3128             assoc_const(w, item, ty, default.as_ref(), link)
3129         }
3130         clean::AssociatedTypeItem(ref bounds, ref default) => {
3131             assoc_type(w, item, bounds, default.as_ref(), link)
3132         }
3133         _ => panic!("render_assoc_item called on non-associated-item")
3134     }
3135 }
3136
3137 fn item_struct(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
3138                s: &clean::Struct) -> fmt::Result {
3139     wrap_into_docblock(w, |w| {
3140         write!(w, "<pre class='rust struct'>")?;
3141         render_attributes(w, it)?;
3142         render_struct(w,
3143                       it,
3144                       Some(&s.generics),
3145                       s.struct_type,
3146                       &s.fields,
3147                       "",
3148                       true)?;
3149         write!(w, "</pre>")
3150     })?;
3151
3152     document(w, cx, it)?;
3153     let mut fields = s.fields.iter().filter_map(|f| {
3154         match f.inner {
3155             clean::StructFieldItem(ref ty) => Some((f, ty)),
3156             _ => None,
3157         }
3158     }).peekable();
3159     if let doctree::Plain = s.struct_type {
3160         if fields.peek().is_some() {
3161             write!(w, "<h2 id='fields' class='fields small-section-header'>
3162                        Fields{}<a href='#fields' class='anchor'></a></h2>",
3163                        document_non_exhaustive_header(it))?;
3164             document_non_exhaustive(w, it)?;
3165             for (field, ty) in fields {
3166                 let id = cx.derive_id(format!("{}.{}",
3167                                            ItemType::StructField,
3168                                            field.name.as_ref().unwrap()));
3169                 let ns_id = cx.derive_id(format!("{}.{}",
3170                                               field.name.as_ref().unwrap(),
3171                                               ItemType::StructField.name_space()));
3172                 write!(w, "<span id=\"{id}\" class=\"{item_type} small-section-header\">
3173                            <a href=\"#{id}\" class=\"anchor field\"></a>
3174                            <span id=\"{ns_id}\" class='invisible'>
3175                            <code>{name}: {ty}</code>
3176                            </span></span>",
3177                        item_type = ItemType::StructField,
3178                        id = id,
3179                        ns_id = ns_id,
3180                        name = field.name.as_ref().unwrap(),
3181                        ty = ty)?;
3182                 if let Some(stability_class) = field.stability_class() {
3183                     write!(w, "<span class='stab {stab}'></span>",
3184                         stab = stability_class)?;
3185                 }
3186                 document(w, cx, field)?;
3187             }
3188         }
3189     }
3190     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3191 }
3192
3193 fn item_union(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
3194                s: &clean::Union) -> fmt::Result {
3195     wrap_into_docblock(w, |w| {
3196         write!(w, "<pre class='rust union'>")?;
3197         render_attributes(w, it)?;
3198         render_union(w,
3199                      it,
3200                      Some(&s.generics),
3201                      &s.fields,
3202                      "",
3203                      true)?;
3204         write!(w, "</pre>")
3205     })?;
3206
3207     document(w, cx, it)?;
3208     let mut fields = s.fields.iter().filter_map(|f| {
3209         match f.inner {
3210             clean::StructFieldItem(ref ty) => Some((f, ty)),
3211             _ => None,
3212         }
3213     }).peekable();
3214     if fields.peek().is_some() {
3215         write!(w, "<h2 id='fields' class='fields small-section-header'>
3216                    Fields<a href='#fields' class='anchor'></a></h2>")?;
3217         for (field, ty) in fields {
3218             let name = field.name.as_ref().expect("union field name");
3219             let id = format!("{}.{}", ItemType::StructField, name);
3220             write!(w, "<span id=\"{id}\" class=\"{shortty} small-section-header\">\
3221                            <a href=\"#{id}\" class=\"anchor field\"></a>\
3222                            <span class='invisible'><code>{name}: {ty}</code></span>\
3223                        </span>",
3224                    id = id,
3225                    name = name,
3226                    shortty = ItemType::StructField,
3227                    ty = ty)?;
3228             if let Some(stability_class) = field.stability_class() {
3229                 write!(w, "<span class='stab {stab}'></span>",
3230                     stab = stability_class)?;
3231             }
3232             document(w, cx, field)?;
3233         }
3234     }
3235     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3236 }
3237
3238 fn item_enum(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
3239              e: &clean::Enum) -> fmt::Result {
3240     wrap_into_docblock(w, |w| {
3241         write!(w, "<pre class='rust enum'>")?;
3242         render_attributes(w, it)?;
3243         write!(w, "{}enum {}{}{}",
3244                VisSpace(&it.visibility),
3245                it.name.as_ref().unwrap(),
3246                e.generics,
3247                WhereClause { gens: &e.generics, indent: 0, end_newline: true })?;
3248         if e.variants.is_empty() && !e.variants_stripped {
3249             write!(w, " {{}}")?;
3250         } else {
3251             write!(w, " {{\n")?;
3252             for v in &e.variants {
3253                 write!(w, "    ")?;
3254                 let name = v.name.as_ref().unwrap();
3255                 match v.inner {
3256                     clean::VariantItem(ref var) => {
3257                         match var.kind {
3258                             clean::VariantKind::CLike => write!(w, "{}", name)?,
3259                             clean::VariantKind::Tuple(ref tys) => {
3260                                 write!(w, "{}(", name)?;
3261                                 for (i, ty) in tys.iter().enumerate() {
3262                                     if i > 0 {
3263                                         write!(w, ",&nbsp;")?
3264                                     }
3265                                     write!(w, "{}", *ty)?;
3266                                 }
3267                                 write!(w, ")")?;
3268                             }
3269                             clean::VariantKind::Struct(ref s) => {
3270                                 render_struct(w,
3271                                               v,
3272                                               None,
3273                                               s.struct_type,
3274                                               &s.fields,
3275                                               "    ",
3276                                               false)?;
3277                             }
3278                         }
3279                     }
3280                     _ => unreachable!()
3281                 }
3282                 write!(w, ",\n")?;
3283             }
3284
3285             if e.variants_stripped {
3286                 write!(w, "    // some variants omitted\n")?;
3287             }
3288             write!(w, "}}")?;
3289         }
3290         write!(w, "</pre>")
3291     })?;
3292
3293     document(w, cx, it)?;
3294     if !e.variants.is_empty() {
3295         write!(w, "<h2 id='variants' class='variants small-section-header'>
3296                    Variants{}<a href='#variants' class='anchor'></a></h2>\n",
3297                    document_non_exhaustive_header(it))?;
3298         document_non_exhaustive(w, it)?;
3299         for variant in &e.variants {
3300             let id = cx.derive_id(format!("{}.{}",
3301                                        ItemType::Variant,
3302                                        variant.name.as_ref().unwrap()));
3303             let ns_id = cx.derive_id(format!("{}.{}",
3304                                           variant.name.as_ref().unwrap(),
3305                                           ItemType::Variant.name_space()));
3306             write!(w, "<span id=\"{id}\" class=\"variant small-section-header\">\
3307                        <a href=\"#{id}\" class=\"anchor field\"></a>\
3308                        <span id='{ns_id}' class='invisible'><code>{name}",
3309                    id = id,
3310                    ns_id = ns_id,
3311                    name = variant.name.as_ref().unwrap())?;
3312             if let clean::VariantItem(ref var) = variant.inner {
3313                 if let clean::VariantKind::Tuple(ref tys) = var.kind {
3314                     write!(w, "(")?;
3315                     for (i, ty) in tys.iter().enumerate() {
3316                         if i > 0 {
3317                             write!(w, ",&nbsp;")?;
3318                         }
3319                         write!(w, "{}", *ty)?;
3320                     }
3321                     write!(w, ")")?;
3322                 }
3323             }
3324             write!(w, "</code></span></span>")?;
3325             document(w, cx, variant)?;
3326
3327             use clean::{Variant, VariantKind};
3328             if let clean::VariantItem(Variant {
3329                 kind: VariantKind::Struct(ref s)
3330             }) = variant.inner {
3331                 let variant_id = cx.derive_id(format!("{}.{}.fields",
3332                                                    ItemType::Variant,
3333                                                    variant.name.as_ref().unwrap()));
3334                 write!(w, "<span class='docblock autohide sub-variant' id='{id}'>",
3335                        id = variant_id)?;
3336                 write!(w, "<h3 class='fields'>Fields of <code>{name}</code></h3>\n
3337                            <table>", name = variant.name.as_ref().unwrap())?;
3338                 for field in &s.fields {
3339                     use clean::StructFieldItem;
3340                     if let StructFieldItem(ref ty) = field.inner {
3341                         let id = cx.derive_id(format!("variant.{}.field.{}",
3342                                                    variant.name.as_ref().unwrap(),
3343                                                    field.name.as_ref().unwrap()));
3344                         let ns_id = cx.derive_id(format!("{}.{}.{}.{}",
3345                                                       variant.name.as_ref().unwrap(),
3346                                                       ItemType::Variant.name_space(),
3347                                                       field.name.as_ref().unwrap(),
3348                                                       ItemType::StructField.name_space()));
3349                         write!(w, "<tr><td \
3350                                    id='{id}'>\
3351                                    <span id='{ns_id}' class='invisible'>\
3352                                    <code>{f}:&nbsp;{t}</code></span></td><td>",
3353                                id = id,
3354                                ns_id = ns_id,
3355                                f = field.name.as_ref().unwrap(),
3356                                t = *ty)?;
3357                         document(w, cx, field)?;
3358                         write!(w, "</td></tr>")?;
3359                     }
3360                 }
3361                 write!(w, "</table></span>")?;
3362             }
3363             render_stability_since(w, variant, it)?;
3364         }
3365     }
3366     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)?;
3367     Ok(())
3368 }
3369
3370 fn render_attribute(attr: &ast::MetaItem) -> Option<String> {
3371     let name = attr.name();
3372
3373     if attr.is_word() {
3374         Some(name.to_string())
3375     } else if let Some(v) = attr.value_str() {
3376         Some(format!("{} = {:?}", name, v.as_str()))
3377     } else if let Some(values) = attr.meta_item_list() {
3378         let display: Vec<_> = values.iter().filter_map(|attr| {
3379             attr.meta_item().and_then(|mi| render_attribute(mi))
3380         }).collect();
3381
3382         if display.len() > 0 {
3383             Some(format!("{}({})", name, display.join(", ")))
3384         } else {
3385             None
3386         }
3387     } else {
3388         None
3389     }
3390 }
3391
3392 const ATTRIBUTE_WHITELIST: &'static [&'static str] = &[
3393     "export_name",
3394     "lang",
3395     "link_section",
3396     "must_use",
3397     "no_mangle",
3398     "repr",
3399     "unsafe_destructor_blind_to_params",
3400     "non_exhaustive"
3401 ];
3402
3403 fn render_attributes(w: &mut fmt::Formatter, it: &clean::Item) -> fmt::Result {
3404     let mut attrs = String::new();
3405
3406     for attr in &it.attrs.other_attrs {
3407         let name = attr.name();
3408         if !ATTRIBUTE_WHITELIST.contains(&&*name.as_str()) {
3409             continue;
3410         }
3411         if let Some(s) = render_attribute(&attr.meta().unwrap()) {
3412             attrs.push_str(&format!("#[{}]\n", s));
3413         }
3414     }
3415     if attrs.len() > 0 {
3416         write!(w, "<div class=\"docblock attributes\">{}</div>", &attrs)?;
3417     }
3418     Ok(())
3419 }
3420
3421 fn render_struct(w: &mut fmt::Formatter, it: &clean::Item,
3422                  g: Option<&clean::Generics>,
3423                  ty: doctree::StructType,
3424                  fields: &[clean::Item],
3425                  tab: &str,
3426                  structhead: bool) -> fmt::Result {
3427     write!(w, "{}{}{}",
3428            VisSpace(&it.visibility),
3429            if structhead {"struct "} else {""},
3430            it.name.as_ref().unwrap())?;
3431     if let Some(g) = g {
3432         write!(w, "{}", g)?
3433     }
3434     match ty {
3435         doctree::Plain => {
3436             if let Some(g) = g {
3437                 write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: true })?
3438             }
3439             let mut has_visible_fields = false;
3440             write!(w, " {{")?;
3441             for field in fields {
3442                 if let clean::StructFieldItem(ref ty) = field.inner {
3443                     write!(w, "\n{}    {}{}: {},",
3444                            tab,
3445                            VisSpace(&field.visibility),
3446                            field.name.as_ref().unwrap(),
3447                            *ty)?;
3448                     has_visible_fields = true;
3449                 }
3450             }
3451
3452             if has_visible_fields {
3453                 if it.has_stripped_fields().unwrap() {
3454                     write!(w, "\n{}    // some fields omitted", tab)?;
3455                 }
3456                 write!(w, "\n{}", tab)?;
3457             } else if it.has_stripped_fields().unwrap() {
3458                 // If there are no visible fields we can just display
3459                 // `{ /* fields omitted */ }` to save space.
3460                 write!(w, " /* fields omitted */ ")?;
3461             }
3462             write!(w, "}}")?;
3463         }
3464         doctree::Tuple => {
3465             write!(w, "(")?;
3466             for (i, field) in fields.iter().enumerate() {
3467                 if i > 0 {
3468                     write!(w, ", ")?;
3469                 }
3470                 match field.inner {
3471                     clean::StrippedItem(box clean::StructFieldItem(..)) => {
3472                         write!(w, "_")?
3473                     }
3474                     clean::StructFieldItem(ref ty) => {
3475                         write!(w, "{}{}", VisSpace(&field.visibility), *ty)?
3476                     }
3477                     _ => unreachable!()
3478                 }
3479             }
3480             write!(w, ")")?;
3481             if let Some(g) = g {
3482                 write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: false })?
3483             }
3484             write!(w, ";")?;
3485         }
3486         doctree::Unit => {
3487             // Needed for PhantomData.
3488             if let Some(g) = g {
3489                 write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: false })?
3490             }
3491             write!(w, ";")?;
3492         }
3493     }
3494     Ok(())
3495 }
3496
3497 fn render_union(w: &mut fmt::Formatter, it: &clean::Item,
3498                 g: Option<&clean::Generics>,
3499                 fields: &[clean::Item],
3500                 tab: &str,
3501                 structhead: bool) -> fmt::Result {
3502     write!(w, "{}{}{}",
3503            VisSpace(&it.visibility),
3504            if structhead {"union "} else {""},
3505            it.name.as_ref().unwrap())?;
3506     if let Some(g) = g {
3507         write!(w, "{}", g)?;
3508         write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: true })?;
3509     }
3510
3511     write!(w, " {{\n{}", tab)?;
3512     for field in fields {
3513         if let clean::StructFieldItem(ref ty) = field.inner {
3514             write!(w, "    {}{}: {},\n{}",
3515                    VisSpace(&field.visibility),
3516                    field.name.as_ref().unwrap(),
3517                    *ty,
3518                    tab)?;
3519         }
3520     }
3521
3522     if it.has_stripped_fields().unwrap() {
3523         write!(w, "    // some fields omitted\n{}", tab)?;
3524     }
3525     write!(w, "}}")?;
3526     Ok(())
3527 }
3528
3529 #[derive(Copy, Clone)]
3530 enum AssocItemLink<'a> {
3531     Anchor(Option<&'a str>),
3532     GotoSource(DefId, &'a FxHashSet<String>),
3533 }
3534
3535 impl<'a> AssocItemLink<'a> {
3536     fn anchor(&self, id: &'a String) -> Self {
3537         match *self {
3538             AssocItemLink::Anchor(_) => { AssocItemLink::Anchor(Some(&id)) },
3539             ref other => *other,
3540         }
3541     }
3542 }
3543
3544 enum AssocItemRender<'a> {
3545     All,
3546     DerefFor { trait_: &'a clean::Type, type_: &'a clean::Type, deref_mut_: bool }
3547 }
3548
3549 #[derive(Copy, Clone, PartialEq)]
3550 enum RenderMode {
3551     Normal,
3552     ForDeref { mut_: bool },
3553 }
3554
3555 fn render_assoc_items(w: &mut fmt::Formatter,
3556                       cx: &Context,
3557                       containing_item: &clean::Item,
3558                       it: DefId,
3559                       what: AssocItemRender) -> fmt::Result {
3560     let c = cache();
3561     let v = match c.impls.get(&it) {
3562         Some(v) => v,
3563         None => return Ok(()),
3564     };
3565     let (non_trait, traits): (Vec<_>, _) = v.iter().partition(|i| {
3566         i.inner_impl().trait_.is_none()
3567     });
3568     if !non_trait.is_empty() {
3569         let render_mode = match what {
3570             AssocItemRender::All => {
3571                 write!(w, "\
3572                     <h2 id='methods' class='small-section-header'>\
3573                       Methods<a href='#methods' class='anchor'></a>\
3574                     </h2>\
3575                 ")?;
3576                 RenderMode::Normal
3577             }
3578             AssocItemRender::DerefFor { trait_, type_, deref_mut_ } => {
3579                 write!(w, "\
3580                     <h2 id='deref-methods' class='small-section-header'>\
3581                       Methods from {}&lt;Target = {}&gt;\
3582                       <a href='#deref-methods' class='anchor'></a>\
3583                     </h2>\
3584                 ", trait_, type_)?;
3585                 RenderMode::ForDeref { mut_: deref_mut_ }
3586             }
3587         };
3588         for i in &non_trait {
3589             render_impl(w, cx, i, AssocItemLink::Anchor(None), render_mode,
3590                         containing_item.stable_since(), true, None)?;
3591         }
3592     }
3593     if let AssocItemRender::DerefFor { .. } = what {
3594         return Ok(());
3595     }
3596     if !traits.is_empty() {
3597         let deref_impl = traits.iter().find(|t| {
3598             t.inner_impl().trait_.def_id() == c.deref_trait_did
3599         });
3600         if let Some(impl_) = deref_impl {
3601             let has_deref_mut = traits.iter().find(|t| {
3602                 t.inner_impl().trait_.def_id() == c.deref_mut_trait_did
3603             }).is_some();
3604             render_deref_methods(w, cx, impl_, containing_item, has_deref_mut)?;
3605         }
3606
3607         let (synthetic, concrete): (Vec<&&Impl>, Vec<&&Impl>) = traits
3608             .iter()
3609             .partition(|t| t.inner_impl().synthetic);
3610         let (blanket_impl, concrete) = concrete
3611             .into_iter()
3612             .partition(|t| t.inner_impl().blanket_impl.is_some());
3613
3614         struct RendererStruct<'a, 'b, 'c>(&'a Context, Vec<&'b &'b Impl>, &'c clean::Item);
3615
3616         impl<'a, 'b, 'c> fmt::Display for RendererStruct<'a, 'b, 'c> {
3617             fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
3618                 render_impls(self.0, fmt, &self.1, self.2)
3619             }
3620         }
3621
3622         let impls = RendererStruct(cx, concrete, containing_item).to_string();
3623         if !impls.is_empty() {
3624             write!(w, "\
3625                 <h2 id='implementations' class='small-section-header'>\
3626                   Trait Implementations<a href='#implementations' class='anchor'></a>\
3627                 </h2>\
3628                 <div id='implementations-list'>{}</div>", impls)?;
3629         }
3630
3631         if !synthetic.is_empty() {
3632             write!(w, "\
3633                 <h2 id='synthetic-implementations' class='small-section-header'>\
3634                   Auto Trait Implementations\
3635                   <a href='#synthetic-implementations' class='anchor'></a>\
3636                 </h2>\
3637                 <div id='synthetic-implementations-list'>\
3638             ")?;
3639             render_impls(cx, w, &synthetic, containing_item)?;
3640             write!(w, "</div>")?;
3641         }
3642
3643         if !blanket_impl.is_empty() {
3644             write!(w, "\
3645                 <h2 id='blanket-implementations' class='small-section-header'>\
3646                   Blanket Implementations\
3647                   <a href='#blanket-implementations' class='anchor'></a>\
3648                 </h2>\
3649                 <div id='blanket-implementations-list'>\
3650             ")?;
3651             render_impls(cx, w, &blanket_impl, containing_item)?;
3652             write!(w, "</div>")?;
3653         }
3654     }
3655     Ok(())
3656 }
3657
3658 fn render_deref_methods(w: &mut fmt::Formatter, cx: &Context, impl_: &Impl,
3659                         container_item: &clean::Item, deref_mut: bool) -> fmt::Result {
3660     let deref_type = impl_.inner_impl().trait_.as_ref().unwrap();
3661     let target = impl_.inner_impl().items.iter().filter_map(|item| {
3662         match item.inner {
3663             clean::TypedefItem(ref t, true) => Some(&t.type_),
3664             _ => None,
3665         }
3666     }).next().expect("Expected associated type binding");
3667     let what = AssocItemRender::DerefFor { trait_: deref_type, type_: target,
3668                                            deref_mut_: deref_mut };
3669     if let Some(did) = target.def_id() {
3670         render_assoc_items(w, cx, container_item, did, what)
3671     } else {
3672         if let Some(prim) = target.primitive_type() {
3673             if let Some(&did) = cache().primitive_locations.get(&prim) {
3674                 render_assoc_items(w, cx, container_item, did, what)?;
3675             }
3676         }
3677         Ok(())
3678     }
3679 }
3680
3681 fn should_render_item(item: &clean::Item, deref_mut_: bool) -> bool {
3682     let self_type_opt = match item.inner {
3683         clean::MethodItem(ref method) => method.decl.self_type(),
3684         clean::TyMethodItem(ref method) => method.decl.self_type(),
3685         _ => None
3686     };
3687
3688     if let Some(self_ty) = self_type_opt {
3689         let (by_mut_ref, by_box, by_value) = match self_ty {
3690             SelfTy::SelfBorrowed(_, mutability) |
3691             SelfTy::SelfExplicit(clean::BorrowedRef { mutability, .. }) => {
3692                 (mutability == Mutability::Mutable, false, false)
3693             },
3694             SelfTy::SelfExplicit(clean::ResolvedPath { did, .. }) => {
3695                 (false, Some(did) == cache().owned_box_did, false)
3696             },
3697             SelfTy::SelfValue => (false, false, true),
3698             _ => (false, false, false),
3699         };
3700
3701         (deref_mut_ || !by_mut_ref) && !by_box && !by_value
3702     } else {
3703         false
3704     }
3705 }
3706
3707 fn render_spotlight_traits(item: &clean::Item) -> Result<String, fmt::Error> {
3708     let mut out = String::new();
3709
3710     match item.inner {
3711         clean::FunctionItem(clean::Function { ref decl, .. }) |
3712         clean::TyMethodItem(clean::TyMethod { ref decl, .. }) |
3713         clean::MethodItem(clean::Method { ref decl, .. }) |
3714         clean::ForeignFunctionItem(clean::Function { ref decl, .. }) => {
3715             out = spotlight_decl(decl)?;
3716         }
3717         _ => {}
3718     }
3719
3720     Ok(out)
3721 }
3722
3723 fn spotlight_decl(decl: &clean::FnDecl) -> Result<String, fmt::Error> {
3724     let mut out = String::new();
3725     let mut trait_ = String::new();
3726
3727     if let Some(did) = decl.output.def_id() {
3728         let c = cache();
3729         if let Some(impls) = c.impls.get(&did) {
3730             for i in impls {
3731                 let impl_ = i.inner_impl();
3732                 if impl_.trait_.def_id().map_or(false, |d| c.traits[&d].is_spotlight) {
3733                     if out.is_empty() {
3734                         out.push_str(
3735                             &format!("<h3 class=\"important\">Important traits for {}</h3>\
3736                                       <code class=\"content\">",
3737                                      impl_.for_));
3738                         trait_.push_str(&impl_.for_.to_string());
3739                     }
3740
3741                     //use the "where" class here to make it small
3742                     out.push_str(&format!("<span class=\"where fmt-newline\">{}</span>", impl_));
3743                     let t_did = impl_.trait_.def_id().unwrap();
3744                     for it in &impl_.items {
3745                         if let clean::TypedefItem(ref tydef, _) = it.inner {
3746                             out.push_str("<span class=\"where fmt-newline\">    ");
3747                             assoc_type(&mut out, it, &[],
3748                                        Some(&tydef.type_),
3749                                        AssocItemLink::GotoSource(t_did, &FxHashSet()))?;
3750                             out.push_str(";</span>");
3751                         }
3752                     }
3753                 }
3754             }
3755         }
3756     }
3757
3758     if !out.is_empty() {
3759         out.insert_str(0, &format!("<div class=\"important-traits\"><div class='tooltip'>ⓘ\
3760                                     <span class='tooltiptext'>Important traits for {}</span></div>\
3761                                     <div class=\"content hidden\">",
3762                                    trait_));
3763         out.push_str("</code></div></div>");
3764     }
3765
3766     Ok(out)
3767 }
3768
3769 fn render_impl(w: &mut fmt::Formatter, cx: &Context, i: &Impl, link: AssocItemLink,
3770                render_mode: RenderMode, outer_version: Option<&str>,
3771                show_def_docs: bool, use_absolute: Option<bool>) -> fmt::Result {
3772     if render_mode == RenderMode::Normal {
3773         let id = cx.derive_id(match i.inner_impl().trait_ {
3774             Some(ref t) => format!("impl-{}", small_url_encode(&format!("{:#}", t))),
3775             None => "impl".to_string(),
3776         });
3777         if let Some(use_absolute) = use_absolute {
3778             write!(w, "<h3 id='{}' class='impl'><span class='in-band'><table class='table-display'>\
3779                        <tbody><tr><td><code>", id)?;
3780             fmt_impl_for_trait_page(&i.inner_impl(), w, use_absolute)?;
3781             if show_def_docs {
3782                 for it in &i.inner_impl().items {
3783                     if let clean::TypedefItem(ref tydef, _) = it.inner {
3784                         write!(w, "<span class=\"where fmt-newline\">  ")?;
3785                         assoc_type(w, it, &vec![], Some(&tydef.type_),
3786                                    AssocItemLink::Anchor(None))?;
3787                         write!(w, ";</span>")?;
3788                     }
3789                 }
3790             }
3791             write!(w, "</code>")?;
3792         } else {
3793             write!(w, "<h3 id='{}' class='impl'><span class='in-band'><table class='table-display'>\
3794                        <tbody><tr><td><code>{}</code>",
3795                    id, i.inner_impl())?;
3796         }
3797         write!(w, "<a href='#{}' class='anchor'></a>", id)?;
3798         write!(w, "</span></td><td><span class='out-of-band'>")?;
3799         let since = i.impl_item.stability.as_ref().map(|s| &s.since[..]);
3800         if let Some(l) = (Item { item: &i.impl_item, cx: cx }).src_href() {
3801             write!(w, "<div class='ghost'></div>")?;
3802             render_stability_since_raw(w, since, outer_version)?;
3803             write!(w, "<a class='srclink' href='{}' title='{}'>[src]</a>",
3804                    l, "goto source code")?;
3805         } else {
3806             render_stability_since_raw(w, since, outer_version)?;
3807         }
3808         write!(w, "</span></td></tr></tbody></table></h3>")?;
3809         if let Some(ref dox) = cx.shared.maybe_collapsed_doc_value(&i.impl_item) {
3810             let mut ids = cx.id_map.borrow_mut();
3811             write!(w, "<div class='docblock'>{}</div>",
3812                    Markdown(&*dox, &i.impl_item.links(), RefCell::new(&mut ids), cx.codes))?;
3813         }
3814     }
3815
3816     fn doc_impl_item(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item,
3817                      link: AssocItemLink, render_mode: RenderMode,
3818                      is_default_item: bool, outer_version: Option<&str>,
3819                      trait_: Option<&clean::Trait>, show_def_docs: bool) -> fmt::Result {
3820         let item_type = item.type_();
3821         let name = item.name.as_ref().unwrap();
3822
3823         let render_method_item: bool = match render_mode {
3824             RenderMode::Normal => true,
3825             RenderMode::ForDeref { mut_: deref_mut_ } => should_render_item(&item, deref_mut_),
3826         };
3827
3828         match item.inner {
3829             clean::MethodItem(clean::Method { ref decl, .. }) |
3830             clean::TyMethodItem(clean::TyMethod{ ref decl, .. }) => {
3831                 // Only render when the method is not static or we allow static methods
3832                 if render_method_item {
3833                     let id = cx.derive_id(format!("{}.{}", item_type, name));
3834                     let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3835                     write!(w, "<h4 id='{}' class=\"{}\">", id, item_type)?;
3836                     write!(w, "{}", spotlight_decl(decl)?)?;
3837                     write!(w, "<span id='{}' class='invisible'>", ns_id)?;
3838                     write!(w, "<table class='table-display'><tbody><tr><td><code>")?;
3839                     render_assoc_item(w, item, link.anchor(&id), ItemType::Impl)?;
3840                     write!(w, "</code>")?;
3841                     if let Some(l) = (Item { cx, item }).src_href() {
3842                         write!(w, "</span></td><td><span class='out-of-band'>")?;
3843                         write!(w, "<div class='ghost'></div>")?;
3844                         render_stability_since_raw(w, item.stable_since(), outer_version)?;
3845                         write!(w, "<a class='srclink' href='{}' title='{}'>[src]</a>",
3846                                l, "goto source code")?;
3847                     } else {
3848                         write!(w, "</td><td>")?;
3849                         render_stability_since_raw(w, item.stable_since(), outer_version)?;
3850                     }
3851                     write!(w, "</td></tr></tbody></table></span></h4>")?;
3852                 }
3853             }
3854             clean::TypedefItem(ref tydef, _) => {
3855                 let id = cx.derive_id(format!("{}.{}", ItemType::AssociatedType, name));
3856                 let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3857                 write!(w, "<h4 id='{}' class=\"{}\">", id, item_type)?;
3858                 write!(w, "<span id='{}' class='invisible'><code>", ns_id)?;
3859                 assoc_type(w, item, &Vec::new(), Some(&tydef.type_), link.anchor(&id))?;
3860                 write!(w, "</code></span></h4>\n")?;
3861             }
3862             clean::AssociatedConstItem(ref ty, ref default) => {
3863                 let id = cx.derive_id(format!("{}.{}", item_type, name));
3864                 let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3865                 write!(w, "<h4 id='{}' class=\"{}\">", id, item_type)?;
3866                 write!(w, "<span id='{}' class='invisible'><code>", ns_id)?;
3867                 assoc_const(w, item, ty, default.as_ref(), link.anchor(&id))?;
3868                 let src = if let Some(l) = (Item { cx, item }).src_href() {
3869                     format!("<a class='srclink' href='{}' title='{}'>[src]</a>",
3870                             l, "goto source code")
3871                 } else {
3872                     String::new()
3873                 };
3874                 write!(w, "</code>{}</span></h4>\n", src)?;
3875             }
3876             clean::AssociatedTypeItem(ref bounds, ref default) => {
3877                 let id = cx.derive_id(format!("{}.{}", item_type, name));
3878                 let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3879                 write!(w, "<h4 id='{}' class=\"{}\">", id, item_type)?;
3880                 write!(w, "<span id='{}' class='invisible'><code>", ns_id)?;
3881                 assoc_type(w, item, bounds, default.as_ref(), link.anchor(&id))?;
3882                 write!(w, "</code></span></h4>\n")?;
3883             }
3884             clean::StrippedItem(..) => return Ok(()),
3885             _ => panic!("can't make docs for trait item with name {:?}", item.name)
3886         }
3887
3888         if render_method_item || render_mode == RenderMode::Normal {
3889             if !is_default_item {
3890                 if let Some(t) = trait_ {
3891                     // The trait item may have been stripped so we might not
3892                     // find any documentation or stability for it.
3893                     if let Some(it) = t.items.iter().find(|i| i.name == item.name) {
3894                         // We need the stability of the item from the trait
3895                         // because impls can't have a stability.
3896                         document_stability(w, cx, it)?;
3897                         if item.doc_value().is_some() {
3898                             document_full(w, item, cx, "")?;
3899                         } else if show_def_docs {
3900                             // In case the item isn't documented,
3901                             // provide short documentation from the trait.
3902                             document_short(w, cx, it, link, "")?;
3903                         }
3904                     }
3905                 } else {
3906                     document_stability(w, cx, item)?;
3907                     if show_def_docs {
3908                         document_full(w, item, cx, "")?;
3909                     }
3910                 }
3911             } else {
3912                 document_stability(w, cx, item)?;
3913                 if show_def_docs {
3914                     document_short(w, cx, item, link, "")?;
3915                 }
3916             }
3917         }
3918         Ok(())
3919     }
3920
3921     let traits = &cache().traits;
3922     let trait_ = i.trait_did().map(|did| &traits[&did]);
3923
3924     write!(w, "<div class='impl-items'>")?;
3925     for trait_item in &i.inner_impl().items {
3926         doc_impl_item(w, cx, trait_item, link, render_mode,
3927                       false, outer_version, trait_, show_def_docs)?;
3928     }
3929
3930     fn render_default_items(w: &mut fmt::Formatter,
3931                             cx: &Context,
3932                             t: &clean::Trait,
3933                             i: &clean::Impl,
3934                             render_mode: RenderMode,
3935                             outer_version: Option<&str>,
3936                             show_def_docs: bool) -> fmt::Result {
3937         for trait_item in &t.items {
3938             let n = trait_item.name.clone();
3939             if i.items.iter().find(|m| m.name == n).is_some() {
3940                 continue;
3941             }
3942             let did = i.trait_.as_ref().unwrap().def_id().unwrap();
3943             let assoc_link = AssocItemLink::GotoSource(did, &i.provided_trait_methods);
3944
3945             doc_impl_item(w, cx, trait_item, assoc_link, render_mode, true,
3946                           outer_version, None, show_def_docs)?;
3947         }
3948         Ok(())
3949     }
3950
3951     // If we've implemented a trait, then also emit documentation for all
3952     // default items which weren't overridden in the implementation block.
3953     if let Some(t) = trait_ {
3954         render_default_items(w, cx, t, &i.inner_impl(),
3955                              render_mode, outer_version, show_def_docs)?;
3956     }
3957     write!(w, "</div>")?;
3958
3959     Ok(())
3960 }
3961
3962 fn item_existential(
3963     w: &mut fmt::Formatter,
3964     cx: &Context,
3965     it: &clean::Item,
3966     t: &clean::Existential,
3967 ) -> fmt::Result {
3968     write!(w, "<pre class='rust existential'>")?;
3969     render_attributes(w, it)?;
3970     write!(w, "existential type {}{}{where_clause}: {bounds};</pre>",
3971            it.name.as_ref().unwrap(),
3972            t.generics,
3973            where_clause = WhereClause { gens: &t.generics, indent: 0, end_newline: true },
3974            bounds = bounds(&t.bounds))?;
3975
3976     document(w, cx, it)?;
3977
3978     // Render any items associated directly to this alias, as otherwise they
3979     // won't be visible anywhere in the docs. It would be nice to also show
3980     // associated items from the aliased type (see discussion in #32077), but
3981     // we need #14072 to make sense of the generics.
3982     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3983 }
3984
3985 fn item_typedef(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
3986                 t: &clean::Typedef) -> fmt::Result {
3987     write!(w, "<pre class='rust typedef'>")?;
3988     render_attributes(w, it)?;
3989     write!(w, "type {}{}{where_clause} = {type_};</pre>",
3990            it.name.as_ref().unwrap(),
3991            t.generics,
3992            where_clause = WhereClause { gens: &t.generics, indent: 0, end_newline: true },
3993            type_ = t.type_)?;
3994
3995     document(w, cx, it)?;
3996
3997     // Render any items associated directly to this alias, as otherwise they
3998     // won't be visible anywhere in the docs. It would be nice to also show
3999     // associated items from the aliased type (see discussion in #32077), but
4000     // we need #14072 to make sense of the generics.
4001     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
4002 }
4003
4004 fn item_foreign_type(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item) -> fmt::Result {
4005     writeln!(w, "<pre class='rust foreigntype'>extern {{")?;
4006     render_attributes(w, it)?;
4007     write!(
4008         w,
4009         "    {}type {};\n}}</pre>",
4010         VisSpace(&it.visibility),
4011         it.name.as_ref().unwrap(),
4012     )?;
4013
4014     document(w, cx, it)?;
4015
4016     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
4017 }
4018
4019 impl<'a> fmt::Display for Sidebar<'a> {
4020     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
4021         let cx = self.cx;
4022         let it = self.item;
4023         let parentlen = cx.current.len() - if it.is_mod() {1} else {0};
4024
4025         if it.is_struct() || it.is_trait() || it.is_primitive() || it.is_union()
4026             || it.is_enum() || it.is_mod() || it.is_typedef() {
4027             write!(fmt, "<p class='location'>{}{}</p>",
4028                 match it.inner {
4029                     clean::StructItem(..) => "Struct ",
4030                     clean::TraitItem(..) => "Trait ",
4031                     clean::PrimitiveItem(..) => "Primitive Type ",
4032                     clean::UnionItem(..) => "Union ",
4033                     clean::EnumItem(..) => "Enum ",
4034                     clean::TypedefItem(..) => "Type Definition ",
4035                     clean::ForeignTypeItem => "Foreign Type ",
4036                     clean::ModuleItem(..) => if it.is_crate() {
4037                         "Crate "
4038                     } else {
4039                         "Module "
4040                     },
4041                     _ => "",
4042                 },
4043                 it.name.as_ref().unwrap())?;
4044         }
4045
4046         if it.is_crate() {
4047             if let Some(ref version) = cache().crate_version {
4048                 write!(fmt,
4049                        "<div class='block version'>\
4050                         <p>Version {}</p>\
4051                         </div>
4052                         <a id='all-types' href='all.html'><p>See all {}'s items</p></a>",
4053                        version,
4054                        it.name.as_ref().unwrap())?;
4055             }
4056         }
4057
4058         write!(fmt, "<div class=\"sidebar-elems\">")?;
4059         match it.inner {
4060             clean::StructItem(ref s) => sidebar_struct(fmt, it, s)?,
4061             clean::TraitItem(ref t) => sidebar_trait(fmt, it, t)?,
4062             clean::PrimitiveItem(ref p) => sidebar_primitive(fmt, it, p)?,
4063             clean::UnionItem(ref u) => sidebar_union(fmt, it, u)?,
4064             clean::EnumItem(ref e) => sidebar_enum(fmt, it, e)?,
4065             clean::TypedefItem(ref t, _) => sidebar_typedef(fmt, it, t)?,
4066             clean::ModuleItem(ref m) => sidebar_module(fmt, it, &m.items)?,
4067             clean::ForeignTypeItem => sidebar_foreign_type(fmt, it)?,
4068             _ => (),
4069         }
4070
4071         // The sidebar is designed to display sibling functions, modules and
4072         // other miscellaneous information. since there are lots of sibling
4073         // items (and that causes quadratic growth in large modules),
4074         // we refactor common parts into a shared JavaScript file per module.
4075         // still, we don't move everything into JS because we want to preserve
4076         // as much HTML as possible in order to allow non-JS-enabled browsers
4077         // to navigate the documentation (though slightly inefficiently).
4078
4079         write!(fmt, "<p class='location'>")?;
4080         for (i, name) in cx.current.iter().take(parentlen).enumerate() {
4081             if i > 0 {
4082                 write!(fmt, "::<wbr>")?;
4083             }
4084             write!(fmt, "<a href='{}index.html'>{}</a>",
4085                    &cx.root_path()[..(cx.current.len() - i - 1) * 3],
4086                    *name)?;
4087         }
4088         write!(fmt, "</p>")?;
4089
4090         // Sidebar refers to the enclosing module, not this module.
4091         let relpath = if it.is_mod() { "../" } else { "" };
4092         write!(fmt,
4093                "<script>window.sidebarCurrent = {{\
4094                    name: '{name}', \
4095                    ty: '{ty}', \
4096                    relpath: '{path}'\
4097                 }};</script>",
4098                name = it.name.as_ref().map(|x| &x[..]).unwrap_or(""),
4099                ty = it.type_().css_class(),
4100                path = relpath)?;
4101         if parentlen == 0 {
4102             // There is no sidebar-items.js beyond the crate root path
4103             // FIXME maybe dynamic crate loading can be merged here
4104         } else {
4105             write!(fmt, "<script defer src=\"{path}sidebar-items.js\"></script>",
4106                    path = relpath)?;
4107         }
4108         // Closes sidebar-elems div.
4109         write!(fmt, "</div>")?;
4110
4111         Ok(())
4112     }
4113 }
4114
4115 fn get_methods(i: &clean::Impl, for_deref: bool) -> Vec<String> {
4116     i.items.iter().filter_map(|item| {
4117         match item.name {
4118             // Maybe check with clean::Visibility::Public as well?
4119             Some(ref name) if !name.is_empty() && item.visibility.is_some() && item.is_method() => {
4120                 if !for_deref || should_render_item(item, false) {
4121                     Some(format!("<a href=\"#method.{name}\">{name}</a>", name = name))
4122                 } else {
4123                     None
4124                 }
4125             }
4126             _ => None,
4127         }
4128     }).collect::<Vec<_>>()
4129 }
4130
4131 // The point is to url encode any potential character from a type with genericity.
4132 fn small_url_encode(s: &str) -> String {
4133     s.replace("<", "%3C")
4134      .replace(">", "%3E")
4135      .replace(" ", "%20")
4136      .replace("?", "%3F")
4137      .replace("'", "%27")
4138      .replace("&", "%26")
4139      .replace(",", "%2C")
4140      .replace(":", "%3A")
4141      .replace(";", "%3B")
4142      .replace("[", "%5B")
4143      .replace("]", "%5D")
4144      .replace("\"", "%22")
4145 }
4146
4147 fn sidebar_assoc_items(it: &clean::Item) -> String {
4148     let mut out = String::new();
4149     let c = cache();
4150     if let Some(v) = c.impls.get(&it.def_id) {
4151         let ret = v.iter()
4152                    .filter(|i| i.inner_impl().trait_.is_none())
4153                    .flat_map(|i| get_methods(i.inner_impl(), false))
4154                    .collect::<String>();
4155         if !ret.is_empty() {
4156             out.push_str(&format!("<a class=\"sidebar-title\" href=\"#methods\">Methods\
4157                                    </a><div class=\"sidebar-links\">{}</div>", ret));
4158         }
4159
4160         if v.iter().any(|i| i.inner_impl().trait_.is_some()) {
4161             if let Some(impl_) = v.iter()
4162                                   .filter(|i| i.inner_impl().trait_.is_some())
4163                                   .find(|i| i.inner_impl().trait_.def_id() == c.deref_trait_did) {
4164                 if let Some(target) = impl_.inner_impl().items.iter().filter_map(|item| {
4165                     match item.inner {
4166                         clean::TypedefItem(ref t, true) => Some(&t.type_),
4167                         _ => None,
4168                     }
4169                 }).next() {
4170                     let inner_impl = target.def_id().or(target.primitive_type().and_then(|prim| {
4171                         c.primitive_locations.get(&prim).cloned()
4172                     })).and_then(|did| c.impls.get(&did));
4173                     if let Some(impls) = inner_impl {
4174                         out.push_str("<a class=\"sidebar-title\" href=\"#deref-methods\">");
4175                         out.push_str(&format!("Methods from {}&lt;Target={}&gt;",
4176                                               Escape(&format!("{:#}",
4177                                                      impl_.inner_impl().trait_.as_ref().unwrap())),
4178                                               Escape(&format!("{:#}", target))));
4179                         out.push_str("</a>");
4180                         let ret = impls.iter()
4181                                        .filter(|i| i.inner_impl().trait_.is_none())
4182                                        .flat_map(|i| get_methods(i.inner_impl(), true))
4183                                        .collect::<String>();
4184                         out.push_str(&format!("<div class=\"sidebar-links\">{}</div>", ret));
4185                     }
4186                 }
4187             }
4188             let format_impls = |impls: Vec<&Impl>| {
4189                 let mut links = FxHashSet::default();
4190                 impls.iter()
4191                            .filter_map(|i| {
4192                                let is_negative_impl = is_negative_impl(i.inner_impl());
4193                                if let Some(ref i) = i.inner_impl().trait_ {
4194                                    let i_display = format!("{:#}", i);
4195                                    let out = Escape(&i_display);
4196                                    let encoded = small_url_encode(&format!("{:#}", i));
4197                                    let generated = format!("<a href=\"#impl-{}\">{}{}</a>",
4198                                                            encoded,
4199                                                            if is_negative_impl { "!" } else { "" },
4200                                                            out);
4201                                    if links.insert(generated.clone()) {
4202                                        Some(generated)
4203                                    } else {
4204                                        None
4205                                    }
4206                                } else {
4207                                    None
4208                                }
4209                            })
4210                            .collect::<String>()
4211             };
4212
4213             let (synthetic, concrete): (Vec<&Impl>, Vec<&Impl>) = v
4214                 .iter()
4215                 .partition::<Vec<_>, _>(|i| i.inner_impl().synthetic);
4216             let (blanket_impl, concrete): (Vec<&Impl>, Vec<&Impl>) = concrete
4217                 .into_iter()
4218                 .partition::<Vec<_>, _>(|i| i.inner_impl().blanket_impl.is_some());
4219
4220             let concrete_format = format_impls(concrete);
4221             let synthetic_format = format_impls(synthetic);
4222             let blanket_format = format_impls(blanket_impl);
4223
4224             if !concrete_format.is_empty() {
4225                 out.push_str("<a class=\"sidebar-title\" href=\"#implementations\">\
4226                               Trait Implementations</a>");
4227                 out.push_str(&format!("<div class=\"sidebar-links\">{}</div>", concrete_format));
4228             }
4229
4230             if !synthetic_format.is_empty() {
4231                 out.push_str("<a class=\"sidebar-title\" href=\"#synthetic-implementations\">\
4232                               Auto Trait Implementations</a>");
4233                 out.push_str(&format!("<div class=\"sidebar-links\">{}</div>", synthetic_format));
4234             }
4235
4236             if !blanket_format.is_empty() {
4237                 out.push_str("<a class=\"sidebar-title\" href=\"#blanket-implementations\">\
4238                               Blanket Implementations</a>");
4239                 out.push_str(&format!("<div class=\"sidebar-links\">{}</div>", blanket_format));
4240             }
4241         }
4242     }
4243
4244     out
4245 }
4246
4247 fn sidebar_struct(fmt: &mut fmt::Formatter, it: &clean::Item,
4248                   s: &clean::Struct) -> fmt::Result {
4249     let mut sidebar = String::new();
4250     let fields = get_struct_fields_name(&s.fields);
4251
4252     if !fields.is_empty() {
4253         if let doctree::Plain = s.struct_type {
4254             sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#fields\">Fields</a>\
4255                                        <div class=\"sidebar-links\">{}</div>", fields));
4256         }
4257     }
4258
4259     sidebar.push_str(&sidebar_assoc_items(it));
4260
4261     if !sidebar.is_empty() {
4262         write!(fmt, "<div class=\"block items\">{}</div>", sidebar)?;
4263     }
4264     Ok(())
4265 }
4266
4267 fn extract_for_impl_name(item: &clean::Item) -> Option<(String, String)> {
4268     match item.inner {
4269         clean::ItemEnum::ImplItem(ref i) => {
4270             if let Some(ref trait_) = i.trait_ {
4271                 Some((format!("{:#}", i.for_), format!("{:#}", trait_)))
4272             } else {
4273                 None
4274             }
4275         },
4276         _ => None,
4277     }
4278 }
4279
4280 fn is_negative_impl(i: &clean::Impl) -> bool {
4281     i.polarity == Some(clean::ImplPolarity::Negative)
4282 }
4283
4284 fn sidebar_trait(fmt: &mut fmt::Formatter, it: &clean::Item,
4285                  t: &clean::Trait) -> fmt::Result {
4286     let mut sidebar = String::new();
4287
4288     let types = t.items
4289                  .iter()
4290                  .filter_map(|m| {
4291                      match m.name {
4292                          Some(ref name) if m.is_associated_type() => {
4293                              Some(format!("<a href=\"#associatedtype.{name}\">{name}</a>",
4294                                           name=name))
4295                          }
4296                          _ => None,
4297                      }
4298                  })
4299                  .collect::<String>();
4300     let consts = t.items
4301                   .iter()
4302                   .filter_map(|m| {
4303                       match m.name {
4304                           Some(ref name) if m.is_associated_const() => {
4305                               Some(format!("<a href=\"#associatedconstant.{name}\">{name}</a>",
4306                                            name=name))
4307                           }
4308                           _ => None,
4309                       }
4310                   })
4311                   .collect::<String>();
4312     let required = t.items
4313                     .iter()
4314                     .filter_map(|m| {
4315                         match m.name {
4316                             Some(ref name) if m.is_ty_method() => {
4317                                 Some(format!("<a href=\"#tymethod.{name}\">{name}</a>",
4318                                              name=name))
4319                             }
4320                             _ => None,
4321                         }
4322                     })
4323                     .collect::<String>();
4324     let provided = t.items
4325                     .iter()
4326                     .filter_map(|m| {
4327                         match m.name {
4328                             Some(ref name) if m.is_method() => {
4329                                 Some(format!("<a href=\"#method.{name}\">{name}</a>", name=name))
4330                             }
4331                             _ => None,
4332                         }
4333                     })
4334                     .collect::<String>();
4335
4336     if !types.is_empty() {
4337         sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#associated-types\">\
4338                                    Associated Types</a><div class=\"sidebar-links\">{}</div>",
4339                                   types));
4340     }
4341     if !consts.is_empty() {
4342         sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#associated-const\">\
4343                                    Associated Constants</a><div class=\"sidebar-links\">{}</div>",
4344                                   consts));
4345     }
4346     if !required.is_empty() {
4347         sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#required-methods\">\
4348                                    Required Methods</a><div class=\"sidebar-links\">{}</div>",
4349                                   required));
4350     }
4351     if !provided.is_empty() {
4352         sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#provided-methods\">\
4353                                    Provided Methods</a><div class=\"sidebar-links\">{}</div>",
4354                                   provided));
4355     }
4356
4357     let c = cache();
4358
4359     if let Some(implementors) = c.implementors.get(&it.def_id) {
4360         let res = implementors.iter()
4361                               .filter(|i| i.inner_impl().for_.def_id()
4362                               .map_or(false, |d| !c.paths.contains_key(&d)))
4363                               .filter_map(|i| {
4364                                   match extract_for_impl_name(&i.impl_item) {
4365                                       Some((ref name, ref url)) => {
4366                                           Some(format!("<a href=\"#impl-{}\">{}</a>",
4367                                                       small_url_encode(url),
4368                                                       Escape(name)))
4369                                       }
4370                                       _ => None,
4371                                   }
4372                               })
4373                               .collect::<String>();
4374         if !res.is_empty() {
4375             sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#foreign-impls\">\
4376                                        Implementations on Foreign Types</a><div \
4377                                        class=\"sidebar-links\">{}</div>",
4378                                       res));
4379         }
4380     }
4381
4382     sidebar.push_str("<a class=\"sidebar-title\" href=\"#implementors\">Implementors</a>");
4383     if t.auto {
4384         sidebar.push_str("<a class=\"sidebar-title\" \
4385                           href=\"#synthetic-implementors\">Auto Implementors</a>");
4386     }
4387
4388     sidebar.push_str(&sidebar_assoc_items(it));
4389
4390     write!(fmt, "<div class=\"block items\">{}</div>", sidebar)
4391 }
4392
4393 fn sidebar_primitive(fmt: &mut fmt::Formatter, it: &clean::Item,
4394                      _p: &clean::PrimitiveType) -> fmt::Result {
4395     let sidebar = sidebar_assoc_items(it);
4396
4397     if !sidebar.is_empty() {
4398         write!(fmt, "<div class=\"block items\">{}</div>", sidebar)?;
4399     }
4400     Ok(())
4401 }
4402
4403 fn sidebar_typedef(fmt: &mut fmt::Formatter, it: &clean::Item,
4404                    _t: &clean::Typedef) -> fmt::Result {
4405     let sidebar = sidebar_assoc_items(it);
4406
4407     if !sidebar.is_empty() {
4408         write!(fmt, "<div class=\"block items\">{}</div>", sidebar)?;
4409     }
4410     Ok(())
4411 }
4412
4413 fn get_struct_fields_name(fields: &[clean::Item]) -> String {
4414     fields.iter()
4415           .filter(|f| if let clean::StructFieldItem(..) = f.inner {
4416               true
4417           } else {
4418               false
4419           })
4420           .filter_map(|f| match f.name {
4421               Some(ref name) => Some(format!("<a href=\"#structfield.{name}\">\
4422                                               {name}</a>", name=name)),
4423               _ => None,
4424           })
4425           .collect()
4426 }
4427
4428 fn sidebar_union(fmt: &mut fmt::Formatter, it: &clean::Item,
4429                  u: &clean::Union) -> fmt::Result {
4430     let mut sidebar = String::new();
4431     let fields = get_struct_fields_name(&u.fields);
4432
4433     if !fields.is_empty() {
4434         sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#fields\">Fields</a>\
4435                                    <div class=\"sidebar-links\">{}</div>", fields));
4436     }
4437
4438     sidebar.push_str(&sidebar_assoc_items(it));
4439
4440     if !sidebar.is_empty() {
4441         write!(fmt, "<div class=\"block items\">{}</div>", sidebar)?;
4442     }
4443     Ok(())
4444 }
4445
4446 fn sidebar_enum(fmt: &mut fmt::Formatter, it: &clean::Item,
4447                 e: &clean::Enum) -> fmt::Result {
4448     let mut sidebar = String::new();
4449
4450     let variants = e.variants.iter()
4451                              .filter_map(|v| match v.name {
4452                                  Some(ref name) => Some(format!("<a href=\"#variant.{name}\">{name}\
4453                                                                  </a>", name = name)),
4454                                  _ => None,
4455                              })
4456                              .collect::<String>();
4457     if !variants.is_empty() {
4458         sidebar.push_str(&format!("<a class=\"sidebar-title\" href=\"#variants\">Variants</a>\
4459                                    <div class=\"sidebar-links\">{}</div>", variants));
4460     }
4461
4462     sidebar.push_str(&sidebar_assoc_items(it));
4463
4464     if !sidebar.is_empty() {
4465         write!(fmt, "<div class=\"block items\">{}</div>", sidebar)?;
4466     }
4467     Ok(())
4468 }
4469
4470 fn item_ty_to_strs(ty: &ItemType) -> (&'static str, &'static str) {
4471     match *ty {
4472         ItemType::ExternCrate |
4473         ItemType::Import          => ("reexports", "Re-exports"),
4474         ItemType::Module          => ("modules", "Modules"),
4475         ItemType::Struct          => ("structs", "Structs"),
4476         ItemType::Union           => ("unions", "Unions"),
4477         ItemType::Enum            => ("enums", "Enums"),
4478         ItemType::Function        => ("functions", "Functions"),
4479         ItemType::Typedef         => ("types", "Type Definitions"),
4480         ItemType::Static          => ("statics", "Statics"),
4481         ItemType::Constant        => ("constants", "Constants"),
4482         ItemType::Trait           => ("traits", "Traits"),
4483         ItemType::Impl            => ("impls", "Implementations"),
4484         ItemType::TyMethod        => ("tymethods", "Type Methods"),
4485         ItemType::Method          => ("methods", "Methods"),
4486         ItemType::StructField     => ("fields", "Struct Fields"),
4487         ItemType::Variant         => ("variants", "Variants"),
4488         ItemType::Macro           => ("macros", "Macros"),
4489         ItemType::Primitive       => ("primitives", "Primitive Types"),
4490         ItemType::AssociatedType  => ("associated-types", "Associated Types"),
4491         ItemType::AssociatedConst => ("associated-consts", "Associated Constants"),
4492         ItemType::ForeignType     => ("foreign-types", "Foreign Types"),
4493         ItemType::Keyword         => ("keywords", "Keywords"),
4494         ItemType::Existential     => ("existentials", "Existentials"),
4495     }
4496 }
4497
4498 fn sidebar_module(fmt: &mut fmt::Formatter, _it: &clean::Item,
4499                   items: &[clean::Item]) -> fmt::Result {
4500     let mut sidebar = String::new();
4501
4502     if items.iter().any(|it| it.type_() == ItemType::ExternCrate ||
4503                              it.type_() == ItemType::Import) {
4504         sidebar.push_str(&format!("<li><a href=\"#{id}\">{name}</a></li>",
4505                                   id = "reexports",
4506                                   name = "Re-exports"));
4507     }
4508
4509     // ordering taken from item_module, reorder, where it prioritized elements in a certain order
4510     // to print its headings
4511     for &myty in &[ItemType::Primitive, ItemType::Module, ItemType::Macro, ItemType::Struct,
4512                    ItemType::Enum, ItemType::Constant, ItemType::Static, ItemType::Trait,
4513                    ItemType::Function, ItemType::Typedef, ItemType::Union, ItemType::Impl,
4514                    ItemType::TyMethod, ItemType::Method, ItemType::StructField, ItemType::Variant,
4515                    ItemType::AssociatedType, ItemType::AssociatedConst, ItemType::ForeignType] {
4516         if items.iter().any(|it| !it.is_stripped() && it.type_() == myty) {
4517             let (short, name) = item_ty_to_strs(&myty);
4518             sidebar.push_str(&format!("<li><a href=\"#{id}\">{name}</a></li>",
4519                                       id = short,
4520                                       name = name));
4521         }
4522     }
4523
4524     if !sidebar.is_empty() {
4525         write!(fmt, "<div class=\"block items\"><ul>{}</ul></div>", sidebar)?;
4526     }
4527     Ok(())
4528 }
4529
4530 fn sidebar_foreign_type(fmt: &mut fmt::Formatter, it: &clean::Item) -> fmt::Result {
4531     let sidebar = sidebar_assoc_items(it);
4532     if !sidebar.is_empty() {
4533         write!(fmt, "<div class=\"block items\">{}</div>", sidebar)?;
4534     }
4535     Ok(())
4536 }
4537
4538 impl<'a> fmt::Display for Source<'a> {
4539     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
4540         let Source(s) = *self;
4541         let lines = s.lines().count();
4542         let mut cols = 0;
4543         let mut tmp = lines;
4544         while tmp > 0 {
4545             cols += 1;
4546             tmp /= 10;
4547         }
4548         write!(fmt, "<pre class=\"line-numbers\">")?;
4549         for i in 1..lines + 1 {
4550             write!(fmt, "<span id=\"{0}\">{0:1$}</span>\n", i, cols)?;
4551         }
4552         write!(fmt, "</pre>")?;
4553         write!(fmt, "{}",
4554                highlight::render_with_highlighting(s, None, None, None))?;
4555         Ok(())
4556     }
4557 }
4558
4559 fn item_macro(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
4560               t: &clean::Macro) -> fmt::Result {
4561     wrap_into_docblock(w, |w| {
4562         w.write_str(&highlight::render_with_highlighting(&t.source,
4563                                                          Some("macro"),
4564                                                          None,
4565                                                          None))
4566     })?;
4567     document(w, cx, it)
4568 }
4569
4570 fn item_primitive(w: &mut fmt::Formatter, cx: &Context,
4571                   it: &clean::Item,
4572                   _p: &clean::PrimitiveType) -> fmt::Result {
4573     document(w, cx, it)?;
4574     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
4575 }
4576
4577 fn item_keyword(w: &mut fmt::Formatter, cx: &Context,
4578                 it: &clean::Item,
4579                 _p: &str) -> fmt::Result {
4580     document(w, cx, it)
4581 }
4582
4583 const BASIC_KEYWORDS: &'static str = "rust, rustlang, rust-lang";
4584
4585 fn make_item_keywords(it: &clean::Item) -> String {
4586     format!("{}, {}", BASIC_KEYWORDS, it.name.as_ref().unwrap())
4587 }
4588
4589 fn get_index_search_type(item: &clean::Item) -> Option<IndexItemFunctionType> {
4590     let decl = match item.inner {
4591         clean::FunctionItem(ref f) => &f.decl,
4592         clean::MethodItem(ref m) => &m.decl,
4593         clean::TyMethodItem(ref m) => &m.decl,
4594         _ => return None
4595     };
4596
4597     let inputs = decl.inputs.values.iter().map(|arg| get_index_type(&arg.type_)).collect();
4598     let output = match decl.output {
4599         clean::FunctionRetTy::Return(ref return_type) => Some(get_index_type(return_type)),
4600         _ => None
4601     };
4602
4603     Some(IndexItemFunctionType { inputs: inputs, output: output })
4604 }
4605
4606 fn get_index_type(clean_type: &clean::Type) -> Type {
4607     let t = Type {
4608         name: get_index_type_name(clean_type, true).map(|s| s.to_ascii_lowercase()),
4609         generics: get_generics(clean_type),
4610     };
4611     t
4612 }
4613
4614 /// Returns a list of all paths used in the type.
4615 /// This is used to help deduplicate imported impls
4616 /// for reexported types. If any of the contained
4617 /// types are re-exported, we don't use the corresponding
4618 /// entry from the js file, as inlining will have already
4619 /// picked up the impl
4620 fn collect_paths_for_type(first_ty: clean::Type) -> Vec<String> {
4621     let mut out = Vec::new();
4622     let mut visited = FxHashSet();
4623     let mut work = VecDeque::new();
4624     let cache = cache();
4625
4626     work.push_back(first_ty);
4627
4628     while let Some(ty) = work.pop_front() {
4629         if !visited.insert(ty.clone()) {
4630             continue;
4631         }
4632
4633         match ty {
4634             clean::Type::ResolvedPath { did, .. } => {
4635                 let get_extern = || cache.external_paths.get(&did).map(|s| s.0.clone());
4636                 let fqp = cache.exact_paths.get(&did).cloned().or_else(get_extern);
4637
4638                 match fqp {
4639                     Some(path) => {
4640                         out.push(path.join("::"));
4641                     },
4642                     _ => {}
4643                 };
4644
4645             },
4646             clean::Type::Tuple(tys) => {
4647                 work.extend(tys.into_iter());
4648             },
4649             clean::Type::Slice(ty) => {
4650                 work.push_back(*ty);
4651             }
4652             clean::Type::Array(ty, _) => {
4653                 work.push_back(*ty);
4654             },
4655             clean::Type::Unique(ty) => {
4656                 work.push_back(*ty);
4657             },
4658             clean::Type::RawPointer(_, ty) => {
4659                 work.push_back(*ty);
4660             },
4661             clean::Type::BorrowedRef { type_, .. } => {
4662                 work.push_back(*type_);
4663             },
4664             clean::Type::QPath { self_type, trait_, .. } => {
4665                 work.push_back(*self_type);
4666                 work.push_back(*trait_);
4667             },
4668             _ => {}
4669         }
4670     };
4671     out
4672 }
4673
4674 fn get_index_type_name(clean_type: &clean::Type, accept_generic: bool) -> Option<String> {
4675     match *clean_type {
4676         clean::ResolvedPath { ref path, .. } => {
4677             let segments = &path.segments;
4678             let path_segment = segments.into_iter().last().unwrap_or_else(|| panic!(
4679                 "get_index_type_name(clean_type: {:?}, accept_generic: {:?}) had length zero path",
4680                 clean_type, accept_generic
4681             ));
4682             Some(path_segment.name.clone())
4683         }
4684         clean::Generic(ref s) if accept_generic => Some(s.clone()),
4685         clean::Primitive(ref p) => Some(format!("{:?}", p)),
4686         clean::BorrowedRef { ref type_, .. } => get_index_type_name(type_, accept_generic),
4687         // FIXME: add all from clean::Type.
4688         _ => None
4689     }
4690 }
4691
4692 fn get_generics(clean_type: &clean::Type) -> Option<Vec<String>> {
4693     clean_type.generics()
4694               .and_then(|types| {
4695                   let r = types.iter()
4696                                .filter_map(|t| get_index_type_name(t, false))
4697                                .map(|s| s.to_ascii_lowercase())
4698                                .collect::<Vec<_>>();
4699                   if r.is_empty() {
4700                       None
4701                   } else {
4702                       Some(r)
4703                   }
4704               })
4705 }
4706
4707 pub fn cache() -> Arc<Cache> {
4708     CACHE_KEY.with(|c| c.borrow().clone())
4709 }
4710
4711 #[cfg(test)]
4712 #[test]
4713 fn test_name_key() {
4714     assert_eq!(name_key("0"), ("", 0, 1));
4715     assert_eq!(name_key("123"), ("", 123, 0));
4716     assert_eq!(name_key("Fruit"), ("Fruit", 0, 0));
4717     assert_eq!(name_key("Fruit0"), ("Fruit", 0, 1));
4718     assert_eq!(name_key("Fruit0000"), ("Fruit", 0, 4));
4719     assert_eq!(name_key("Fruit01"), ("Fruit", 1, 1));
4720     assert_eq!(name_key("Fruit10"), ("Fruit", 10, 0));
4721     assert_eq!(name_key("Fruit123"), ("Fruit", 123, 0));
4722 }
4723
4724 #[cfg(test)]
4725 #[test]
4726 fn test_name_sorting() {
4727     let names = ["Apple",
4728                  "Banana",
4729                  "Fruit", "Fruit0", "Fruit00",
4730                  "Fruit1", "Fruit01",
4731                  "Fruit2", "Fruit02",
4732                  "Fruit20",
4733                  "Fruit30x",
4734                  "Fruit100",
4735                  "Pear"];
4736     let mut sorted = names.to_owned();
4737     sorted.sort_by_key(|&s| name_key(s));
4738     assert_eq!(names, sorted);
4739 }