]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/render.rs
e721b66779fffb0facfe3ef02b1085ab35ad354e
[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 pub use self::ExternalLocation::*;
36
37 use std::ascii::AsciiExt;
38 use std::cell::RefCell;
39 use std::cmp::Ordering;
40 use std::collections::BTreeMap;
41 use std::default::Default;
42 use std::error;
43 use std::fmt::{self, Display, Formatter, Write as FmtWrite};
44 use std::fs::{self, File, OpenOptions};
45 use std::io::prelude::*;
46 use std::io::{self, BufWriter, BufReader};
47 use std::iter::repeat;
48 use std::mem;
49 use std::path::{PathBuf, Path, Component};
50 use std::str;
51 use std::sync::Arc;
52
53 use externalfiles::ExternalHtml;
54
55 use serialize::json::{ToJson, Json, as_json};
56 use syntax::{abi, ast};
57 use syntax::feature_gate::UnstableFeatures;
58 use rustc::hir::def_id::{CrateNum, CRATE_DEF_INDEX, DefId};
59 use rustc::middle::privacy::AccessLevels;
60 use rustc::middle::stability;
61 use rustc::hir;
62 use rustc::util::nodemap::{FxHashMap, FxHashSet};
63 use rustc_data_structures::flock;
64
65 use clean::{self, AttributesExt, GetDefId, SelfTy, Mutability};
66 use doctree;
67 use fold::DocFolder;
68 use html::escape::Escape;
69 use html::format::{ConstnessSpace};
70 use html::format::{TyParamBounds, WhereClause, href, AbiSpace};
71 use html::format::{VisSpace, Method, UnsafetySpace, MutableSpace};
72 use html::format::fmt_impl_for_trait_page;
73 use html::item_type::ItemType;
74 use html::markdown::{self, Markdown};
75 use html::{highlight, layout};
76
77 /// A pair of name and its optional document.
78 pub type NameDoc = (String, Option<String>);
79
80 /// Major driving force in all rustdoc rendering. This contains information
81 /// about where in the tree-like hierarchy rendering is occurring and controls
82 /// how the current page is being rendered.
83 ///
84 /// It is intended that this context is a lightweight object which can be fairly
85 /// easily cloned because it is cloned per work-job (about once per item in the
86 /// rustdoc tree).
87 #[derive(Clone)]
88 pub struct Context {
89     /// Current hierarchy of components leading down to what's currently being
90     /// rendered
91     pub current: Vec<String>,
92     /// The current destination folder of where HTML artifacts should be placed.
93     /// This changes as the context descends into the module hierarchy.
94     pub dst: PathBuf,
95     /// A flag, which when `true`, will render pages which redirect to the
96     /// real location of an item. This is used to allow external links to
97     /// publicly reused items to redirect to the right location.
98     pub render_redirect_pages: bool,
99     pub shared: Arc<SharedContext>,
100 }
101
102 pub struct SharedContext {
103     /// The path to the crate root source minus the file name.
104     /// Used for simplifying paths to the highlighted source code files.
105     pub src_root: PathBuf,
106     /// This describes the layout of each page, and is not modified after
107     /// creation of the context (contains info like the favicon and added html).
108     pub layout: layout::Layout,
109     /// This flag indicates whether [src] links should be generated or not. If
110     /// the source files are present in the html rendering, then this will be
111     /// `true`.
112     pub include_sources: bool,
113     /// The local file sources we've emitted and their respective url-paths.
114     pub local_sources: FxHashMap<PathBuf, String>,
115     /// All the passes that were run on this crate.
116     pub passes: FxHashSet<String>,
117     /// The base-URL of the issue tracker for when an item has been tagged with
118     /// an issue number.
119     pub issue_tracker_base_url: Option<String>,
120     /// The given user css file which allow to customize the generated
121     /// documentation theme.
122     pub css_file_extension: Option<PathBuf>,
123 }
124
125 /// Indicates where an external crate can be found.
126 pub enum ExternalLocation {
127     /// Remote URL root of the external crate
128     Remote(String),
129     /// This external crate can be found in the local doc/ folder
130     Local,
131     /// The external crate could not be found.
132     Unknown,
133 }
134
135 /// Metadata about an implementor of a trait.
136 pub struct Implementor {
137     pub def_id: DefId,
138     pub stability: Option<clean::Stability>,
139     pub impl_: clean::Impl,
140 }
141
142 /// Metadata about implementations for a type.
143 #[derive(Clone)]
144 pub struct Impl {
145     pub impl_item: clean::Item,
146 }
147
148 impl Impl {
149     fn inner_impl(&self) -> &clean::Impl {
150         match self.impl_item.inner {
151             clean::ImplItem(ref impl_) => impl_,
152             _ => panic!("non-impl item found in impl")
153         }
154     }
155
156     fn trait_did(&self) -> Option<DefId> {
157         self.inner_impl().trait_.def_id()
158     }
159 }
160
161 #[derive(Debug)]
162 pub struct Error {
163     file: PathBuf,
164     error: io::Error,
165 }
166
167 impl error::Error for Error {
168     fn description(&self) -> &str {
169         self.error.description()
170     }
171 }
172
173 impl Display for Error {
174     fn fmt(&self, f: &mut Formatter) -> fmt::Result {
175         write!(f, "\"{}\": {}", self.file.display(), self.error)
176     }
177 }
178
179 impl Error {
180     pub fn new(e: io::Error, file: &Path) -> Error {
181         Error {
182             file: file.to_path_buf(),
183             error: e,
184         }
185     }
186 }
187
188 macro_rules! try_err {
189     ($e:expr, $file:expr) => ({
190         match $e {
191             Ok(e) => e,
192             Err(e) => return Err(Error::new(e, $file)),
193         }
194     })
195 }
196
197 /// This cache is used to store information about the `clean::Crate` being
198 /// rendered in order to provide more useful documentation. This contains
199 /// information like all implementors of a trait, all traits a type implements,
200 /// documentation for all known traits, etc.
201 ///
202 /// This structure purposefully does not implement `Clone` because it's intended
203 /// to be a fairly large and expensive structure to clone. Instead this adheres
204 /// to `Send` so it may be stored in a `Arc` instance and shared among the various
205 /// rendering threads.
206 #[derive(Default)]
207 pub struct Cache {
208     /// Mapping of typaram ids to the name of the type parameter. This is used
209     /// when pretty-printing a type (so pretty printing doesn't have to
210     /// painfully maintain a context like this)
211     pub typarams: FxHashMap<DefId, String>,
212
213     /// Maps a type id to all known implementations for that type. This is only
214     /// recognized for intra-crate `ResolvedPath` types, and is used to print
215     /// out extra documentation on the page of an enum/struct.
216     ///
217     /// The values of the map are a list of implementations and documentation
218     /// found on that implementation.
219     pub impls: FxHashMap<DefId, Vec<Impl>>,
220
221     /// Maintains a mapping of local crate node ids to the fully qualified name
222     /// and "short type description" of that node. This is used when generating
223     /// URLs when a type is being linked to. External paths are not located in
224     /// this map because the `External` type itself has all the information
225     /// necessary.
226     pub paths: FxHashMap<DefId, (Vec<String>, ItemType)>,
227
228     /// Similar to `paths`, but only holds external paths. This is only used for
229     /// generating explicit hyperlinks to other crates.
230     pub external_paths: FxHashMap<DefId, (Vec<String>, ItemType)>,
231
232     /// This map contains information about all known traits of this crate.
233     /// Implementations of a crate should inherit the documentation of the
234     /// parent trait if no extra documentation is specified, and default methods
235     /// should show up in documentation about trait implementations.
236     pub traits: FxHashMap<DefId, clean::Trait>,
237
238     /// When rendering traits, it's often useful to be able to list all
239     /// implementors of the trait, and this mapping is exactly, that: a mapping
240     /// of trait ids to the list of known implementors of the trait
241     pub implementors: FxHashMap<DefId, Vec<Implementor>>,
242
243     /// Cache of where external crate documentation can be found.
244     pub extern_locations: FxHashMap<CrateNum, (String, PathBuf, ExternalLocation)>,
245
246     /// Cache of where documentation for primitives can be found.
247     pub primitive_locations: FxHashMap<clean::PrimitiveType, DefId>,
248
249     // Note that external items for which `doc(hidden)` applies to are shown as
250     // non-reachable while local items aren't. This is because we're reusing
251     // the access levels from crateanalysis.
252     pub access_levels: Arc<AccessLevels<DefId>>,
253
254     // Private fields only used when initially crawling a crate to build a cache
255
256     stack: Vec<String>,
257     parent_stack: Vec<DefId>,
258     parent_is_trait_impl: bool,
259     search_index: Vec<IndexItem>,
260     stripped_mod: bool,
261     deref_trait_did: Option<DefId>,
262     deref_mut_trait_did: Option<DefId>,
263
264     // In rare case where a structure is defined in one module but implemented
265     // in another, if the implementing module is parsed before defining module,
266     // then the fully qualified name of the structure isn't presented in `paths`
267     // yet when its implementation methods are being indexed. Caches such methods
268     // and their parent id here and indexes them at the end of crate parsing.
269     orphan_impl_items: Vec<(DefId, clean::Item)>,
270 }
271
272 /// Temporary storage for data obtained during `RustdocVisitor::clean()`.
273 /// Later on moved into `CACHE_KEY`.
274 #[derive(Default)]
275 pub struct RenderInfo {
276     pub inlined: FxHashSet<DefId>,
277     pub external_paths: ::core::ExternalPaths,
278     pub external_typarams: FxHashMap<DefId, String>,
279     pub deref_trait_did: Option<DefId>,
280     pub deref_mut_trait_did: Option<DefId>,
281 }
282
283 /// Helper struct to render all source code to HTML pages
284 struct SourceCollector<'a> {
285     scx: &'a mut SharedContext,
286
287     /// Root destination to place all HTML output into
288     dst: PathBuf,
289 }
290
291 /// Wrapper struct to render the source code of a file. This will do things like
292 /// adding line numbers to the left-hand side.
293 struct Source<'a>(&'a str);
294
295 // Helper structs for rendering items/sidebars and carrying along contextual
296 // information
297
298 #[derive(Copy, Clone)]
299 struct Item<'a> {
300     cx: &'a Context,
301     item: &'a clean::Item,
302 }
303
304 struct Sidebar<'a> { cx: &'a Context, item: &'a clean::Item, }
305
306 /// Struct representing one entry in the JS search index. These are all emitted
307 /// by hand to a large JS file at the end of cache-creation.
308 struct IndexItem {
309     ty: ItemType,
310     name: String,
311     path: String,
312     desc: String,
313     parent: Option<DefId>,
314     parent_idx: Option<usize>,
315     search_type: Option<IndexItemFunctionType>,
316 }
317
318 impl ToJson for IndexItem {
319     fn to_json(&self) -> Json {
320         assert_eq!(self.parent.is_some(), self.parent_idx.is_some());
321
322         let mut data = Vec::with_capacity(6);
323         data.push((self.ty as usize).to_json());
324         data.push(self.name.to_json());
325         data.push(self.path.to_json());
326         data.push(self.desc.to_json());
327         data.push(self.parent_idx.to_json());
328         data.push(self.search_type.to_json());
329
330         Json::Array(data)
331     }
332 }
333
334 /// A type used for the search index.
335 struct Type {
336     name: Option<String>,
337 }
338
339 impl ToJson for Type {
340     fn to_json(&self) -> Json {
341         match self.name {
342             Some(ref name) => {
343                 let mut data = BTreeMap::new();
344                 data.insert("name".to_owned(), name.to_json());
345                 Json::Object(data)
346             },
347             None => Json::Null
348         }
349     }
350 }
351
352 /// Full type of functions/methods in the search index.
353 struct IndexItemFunctionType {
354     inputs: Vec<Type>,
355     output: Option<Type>
356 }
357
358 impl ToJson for IndexItemFunctionType {
359     fn to_json(&self) -> Json {
360         // If we couldn't figure out a type, just write `null`.
361         if self.inputs.iter().chain(self.output.iter()).any(|ref i| i.name.is_none()) {
362             Json::Null
363         } else {
364             let mut data = BTreeMap::new();
365             data.insert("inputs".to_owned(), self.inputs.to_json());
366             data.insert("output".to_owned(), self.output.to_json());
367             Json::Object(data)
368         }
369     }
370 }
371
372 // TLS keys used to carry information around during rendering.
373
374 thread_local!(static CACHE_KEY: RefCell<Arc<Cache>> = Default::default());
375 thread_local!(pub static CURRENT_LOCATION_KEY: RefCell<Vec<String>> =
376                     RefCell::new(Vec::new()));
377 thread_local!(static USED_ID_MAP: RefCell<FxHashMap<String, usize>> =
378                     RefCell::new(init_ids()));
379
380 fn init_ids() -> FxHashMap<String, usize> {
381     [
382      "main",
383      "search",
384      "help",
385      "TOC",
386      "render-detail",
387      "associated-types",
388      "associated-const",
389      "required-methods",
390      "provided-methods",
391      "implementors",
392      "implementors-list",
393      "methods",
394      "deref-methods",
395      "implementations",
396      ].into_iter().map(|id| (String::from(*id), 1)).collect()
397 }
398
399 /// This method resets the local table of used ID attributes. This is typically
400 /// used at the beginning of rendering an entire HTML page to reset from the
401 /// previous state (if any).
402 pub fn reset_ids(embedded: bool) {
403     USED_ID_MAP.with(|s| {
404         *s.borrow_mut() = if embedded {
405             init_ids()
406         } else {
407             FxHashMap()
408         };
409     });
410 }
411
412 pub fn derive_id(candidate: String) -> String {
413     USED_ID_MAP.with(|map| {
414         let id = match map.borrow_mut().get_mut(&candidate) {
415             None => candidate,
416             Some(a) => {
417                 let id = format!("{}-{}", candidate, *a);
418                 *a += 1;
419                 id
420             }
421         };
422
423         map.borrow_mut().insert(id.clone(), 1);
424         id
425     })
426 }
427
428 /// Generates the documentation for `crate` into the directory `dst`
429 pub fn run(mut krate: clean::Crate,
430            external_html: &ExternalHtml,
431            playground_url: Option<String>,
432            dst: PathBuf,
433            passes: FxHashSet<String>,
434            css_file_extension: Option<PathBuf>,
435            renderinfo: RenderInfo) -> Result<(), Error> {
436     let src_root = match krate.src.parent() {
437         Some(p) => p.to_path_buf(),
438         None => PathBuf::new(),
439     };
440     let mut scx = SharedContext {
441         src_root: src_root,
442         passes: passes,
443         include_sources: true,
444         local_sources: FxHashMap(),
445         issue_tracker_base_url: None,
446         layout: layout::Layout {
447             logo: "".to_string(),
448             favicon: "".to_string(),
449             external_html: external_html.clone(),
450             krate: krate.name.clone(),
451         },
452         css_file_extension: css_file_extension.clone(),
453     };
454
455     // If user passed in `--playground-url` arg, we fill in crate name here
456     if let Some(url) = playground_url {
457         markdown::PLAYGROUND.with(|slot| {
458             *slot.borrow_mut() = Some((Some(krate.name.clone()), url));
459         });
460     }
461
462     // Crawl the crate attributes looking for attributes which control how we're
463     // going to emit HTML
464     if let Some(attrs) = krate.module.as_ref().map(|m| &m.attrs) {
465         for attr in attrs.lists("doc") {
466             let name = attr.name().map(|s| s.as_str());
467             match (name.as_ref().map(|s| &s[..]), attr.value_str()) {
468                 (Some("html_favicon_url"), Some(s)) => {
469                     scx.layout.favicon = s.to_string();
470                 }
471                 (Some("html_logo_url"), Some(s)) => {
472                     scx.layout.logo = s.to_string();
473                 }
474                 (Some("html_playground_url"), Some(s)) => {
475                     markdown::PLAYGROUND.with(|slot| {
476                         let name = krate.name.clone();
477                         *slot.borrow_mut() = Some((Some(name), s.to_string()));
478                     });
479                 }
480                 (Some("issue_tracker_base_url"), Some(s)) => {
481                     scx.issue_tracker_base_url = Some(s.to_string());
482                 }
483                 (Some("html_no_source"), None) if attr.is_word() => {
484                     scx.include_sources = false;
485                 }
486                 _ => {}
487             }
488         }
489     }
490     try_err!(mkdir(&dst), &dst);
491     krate = render_sources(&dst, &mut scx, krate)?;
492     let cx = Context {
493         current: Vec::new(),
494         dst: dst,
495         render_redirect_pages: false,
496         shared: Arc::new(scx),
497     };
498
499     // Crawl the crate to build various caches used for the output
500     let RenderInfo {
501         inlined: _,
502         external_paths,
503         external_typarams,
504         deref_trait_did,
505         deref_mut_trait_did,
506     } = renderinfo;
507
508     let external_paths = external_paths.into_iter()
509         .map(|(k, (v, t))| (k, (v, ItemType::from(t))))
510         .collect();
511
512     let mut cache = Cache {
513         impls: FxHashMap(),
514         external_paths: external_paths,
515         paths: FxHashMap(),
516         implementors: FxHashMap(),
517         stack: Vec::new(),
518         parent_stack: Vec::new(),
519         search_index: Vec::new(),
520         parent_is_trait_impl: false,
521         extern_locations: FxHashMap(),
522         primitive_locations: FxHashMap(),
523         stripped_mod: false,
524         access_levels: krate.access_levels.clone(),
525         orphan_impl_items: Vec::new(),
526         traits: mem::replace(&mut krate.external_traits, FxHashMap()),
527         deref_trait_did: deref_trait_did,
528         deref_mut_trait_did: deref_mut_trait_did,
529         typarams: external_typarams,
530     };
531
532     // Cache where all our extern crates are located
533     for &(n, ref e) in &krate.externs {
534         let src_root = match Path::new(&e.src).parent() {
535             Some(p) => p.to_path_buf(),
536             None => PathBuf::new(),
537         };
538         cache.extern_locations.insert(n, (e.name.clone(), src_root,
539                                           extern_location(e, &cx.dst)));
540
541         let did = DefId { krate: n, index: CRATE_DEF_INDEX };
542         cache.external_paths.insert(did, (vec![e.name.to_string()], ItemType::Module));
543     }
544
545     // Cache where all known primitives have their documentation located.
546     //
547     // Favor linking to as local extern as possible, so iterate all crates in
548     // reverse topological order.
549     for &(_, ref e) in krate.externs.iter().rev() {
550         for &(def_id, prim, _) in &e.primitives {
551             cache.primitive_locations.insert(prim, def_id);
552         }
553     }
554     for &(def_id, prim, _) in &krate.primitives {
555         cache.primitive_locations.insert(prim, def_id);
556     }
557
558     cache.stack.push(krate.name.clone());
559     krate = cache.fold_crate(krate);
560
561     // Build our search index
562     let index = build_index(&krate, &mut cache);
563
564     // Freeze the cache now that the index has been built. Put an Arc into TLS
565     // for future parallelization opportunities
566     let cache = Arc::new(cache);
567     CACHE_KEY.with(|v| *v.borrow_mut() = cache.clone());
568     CURRENT_LOCATION_KEY.with(|s| s.borrow_mut().clear());
569
570     write_shared(&cx, &krate, &*cache, index)?;
571
572     // And finally render the whole crate's documentation
573     cx.krate(krate)
574 }
575
576 /// Build the search index from the collected metadata
577 fn build_index(krate: &clean::Crate, cache: &mut Cache) -> String {
578     let mut nodeid_to_pathid = FxHashMap();
579     let mut crate_items = Vec::with_capacity(cache.search_index.len());
580     let mut crate_paths = Vec::<Json>::new();
581
582     let Cache { ref mut search_index,
583                 ref orphan_impl_items,
584                 ref mut paths, .. } = *cache;
585
586     // Attach all orphan items to the type's definition if the type
587     // has since been learned.
588     for &(did, ref item) in orphan_impl_items {
589         if let Some(&(ref fqp, _)) = paths.get(&did) {
590             search_index.push(IndexItem {
591                 ty: item.type_(),
592                 name: item.name.clone().unwrap(),
593                 path: fqp[..fqp.len() - 1].join("::"),
594                 desc: Escape(&shorter(item.doc_value())).to_string(),
595                 parent: Some(did),
596                 parent_idx: None,
597                 search_type: get_index_search_type(&item),
598             });
599         }
600     }
601
602     // Reduce `NodeId` in paths into smaller sequential numbers,
603     // and prune the paths that do not appear in the index.
604     let mut lastpath = String::new();
605     let mut lastpathid = 0usize;
606
607     for item in search_index {
608         item.parent_idx = item.parent.map(|nodeid| {
609             if nodeid_to_pathid.contains_key(&nodeid) {
610                 *nodeid_to_pathid.get(&nodeid).unwrap()
611             } else {
612                 let pathid = lastpathid;
613                 nodeid_to_pathid.insert(nodeid, pathid);
614                 lastpathid += 1;
615
616                 let &(ref fqp, short) = paths.get(&nodeid).unwrap();
617                 crate_paths.push(((short as usize), fqp.last().unwrap().clone()).to_json());
618                 pathid
619             }
620         });
621
622         // Omit the parent path if it is same to that of the prior item.
623         if lastpath == item.path {
624             item.path.clear();
625         } else {
626             lastpath = item.path.clone();
627         }
628         crate_items.push(item.to_json());
629     }
630
631     let crate_doc = krate.module.as_ref().map(|module| {
632         Escape(&shorter(module.doc_value())).to_string()
633     }).unwrap_or(String::new());
634
635     let mut crate_data = BTreeMap::new();
636     crate_data.insert("doc".to_owned(), Json::String(crate_doc));
637     crate_data.insert("items".to_owned(), Json::Array(crate_items));
638     crate_data.insert("paths".to_owned(), Json::Array(crate_paths));
639
640     // Collect the index into a string
641     format!("searchIndex[{}] = {};",
642             as_json(&krate.name),
643             Json::Object(crate_data))
644 }
645
646 fn write_shared(cx: &Context,
647                 krate: &clean::Crate,
648                 cache: &Cache,
649                 search_index: String) -> Result<(), Error> {
650     // Write out the shared files. Note that these are shared among all rustdoc
651     // docs placed in the output directory, so this needs to be a synchronized
652     // operation with respect to all other rustdocs running around.
653     try_err!(mkdir(&cx.dst), &cx.dst);
654     let _lock = flock::Lock::panicking_new(&cx.dst.join(".lock"), true, true, true);
655
656     // Add all the static files. These may already exist, but we just
657     // overwrite them anyway to make sure that they're fresh and up-to-date.
658
659     write(cx.dst.join("jquery.js"),
660           include_bytes!("static/jquery-2.1.4.min.js"))?;
661     write(cx.dst.join("main.js"),
662           include_bytes!("static/main.js"))?;
663     write(cx.dst.join("rustdoc.css"),
664           include_bytes!("static/rustdoc.css"))?;
665     write(cx.dst.join("main.css"),
666           include_bytes!("static/styles/main.css"))?;
667     if let Some(ref css) = cx.shared.css_file_extension {
668         let mut content = String::new();
669         let css = css.as_path();
670         let mut f = try_err!(File::open(css), css);
671
672         try_err!(f.read_to_string(&mut content), css);
673         let css = cx.dst.join("theme.css");
674         let css = css.as_path();
675         let mut f = try_err!(File::create(css), css);
676         try_err!(write!(f, "{}", &content), css);
677     }
678     write(cx.dst.join("normalize.css"),
679           include_bytes!("static/normalize.css"))?;
680     write(cx.dst.join("FiraSans-Regular.woff"),
681           include_bytes!("static/FiraSans-Regular.woff"))?;
682     write(cx.dst.join("FiraSans-Medium.woff"),
683           include_bytes!("static/FiraSans-Medium.woff"))?;
684     write(cx.dst.join("FiraSans-LICENSE.txt"),
685           include_bytes!("static/FiraSans-LICENSE.txt"))?;
686     write(cx.dst.join("Heuristica-Italic.woff"),
687           include_bytes!("static/Heuristica-Italic.woff"))?;
688     write(cx.dst.join("Heuristica-LICENSE.txt"),
689           include_bytes!("static/Heuristica-LICENSE.txt"))?;
690     write(cx.dst.join("SourceSerifPro-Regular.woff"),
691           include_bytes!("static/SourceSerifPro-Regular.woff"))?;
692     write(cx.dst.join("SourceSerifPro-Bold.woff"),
693           include_bytes!("static/SourceSerifPro-Bold.woff"))?;
694     write(cx.dst.join("SourceSerifPro-LICENSE.txt"),
695           include_bytes!("static/SourceSerifPro-LICENSE.txt"))?;
696     write(cx.dst.join("SourceCodePro-Regular.woff"),
697           include_bytes!("static/SourceCodePro-Regular.woff"))?;
698     write(cx.dst.join("SourceCodePro-Semibold.woff"),
699           include_bytes!("static/SourceCodePro-Semibold.woff"))?;
700     write(cx.dst.join("SourceCodePro-LICENSE.txt"),
701           include_bytes!("static/SourceCodePro-LICENSE.txt"))?;
702     write(cx.dst.join("LICENSE-MIT.txt"),
703           include_bytes!("static/LICENSE-MIT.txt"))?;
704     write(cx.dst.join("LICENSE-APACHE.txt"),
705           include_bytes!("static/LICENSE-APACHE.txt"))?;
706     write(cx.dst.join("COPYRIGHT.txt"),
707           include_bytes!("static/COPYRIGHT.txt"))?;
708
709     fn collect(path: &Path, krate: &str,
710                key: &str) -> io::Result<Vec<String>> {
711         let mut ret = Vec::new();
712         if path.exists() {
713             for line in BufReader::new(File::open(path)?).lines() {
714                 let line = line?;
715                 if !line.starts_with(key) {
716                     continue;
717                 }
718                 if line.starts_with(&format!(r#"{}["{}"]"#, key, krate)) {
719                     continue;
720                 }
721                 ret.push(line.to_string());
722             }
723         }
724         Ok(ret)
725     }
726
727     // Update the search index
728     let dst = cx.dst.join("search-index.js");
729     let mut all_indexes = try_err!(collect(&dst, &krate.name, "searchIndex"), &dst);
730     all_indexes.push(search_index);
731     // Sort the indexes by crate so the file will be generated identically even
732     // with rustdoc running in parallel.
733     all_indexes.sort();
734     let mut w = try_err!(File::create(&dst), &dst);
735     try_err!(writeln!(&mut w, "var searchIndex = {{}};"), &dst);
736     for index in &all_indexes {
737         try_err!(writeln!(&mut w, "{}", *index), &dst);
738     }
739     try_err!(writeln!(&mut w, "initSearch(searchIndex);"), &dst);
740
741     // Update the list of all implementors for traits
742     let dst = cx.dst.join("implementors");
743     for (&did, imps) in &cache.implementors {
744         // Private modules can leak through to this phase of rustdoc, which
745         // could contain implementations for otherwise private types. In some
746         // rare cases we could find an implementation for an item which wasn't
747         // indexed, so we just skip this step in that case.
748         //
749         // FIXME: this is a vague explanation for why this can't be a `get`, in
750         //        theory it should be...
751         let &(ref remote_path, remote_item_type) = match cache.paths.get(&did) {
752             Some(p) => p,
753             None => match cache.external_paths.get(&did) {
754                 Some(p) => p,
755                 None => continue,
756             }
757         };
758
759         let mut implementors = format!(r#"implementors["{}"] = ["#, krate.name);
760         for imp in imps {
761             // If the trait and implementation are in the same crate, then
762             // there's no need to emit information about it (there's inlining
763             // going on). If they're in different crates then the crate defining
764             // the trait will be interested in our implementation.
765             if imp.def_id.krate == did.krate { continue }
766             write!(implementors, r#""{}","#, imp.impl_).unwrap();
767         }
768         implementors.push_str("];");
769
770         let mut mydst = dst.clone();
771         for part in &remote_path[..remote_path.len() - 1] {
772             mydst.push(part);
773         }
774         try_err!(fs::create_dir_all(&mydst), &mydst);
775         mydst.push(&format!("{}.{}.js",
776                             remote_item_type.css_class(),
777                             remote_path[remote_path.len() - 1]));
778
779         let mut all_implementors = try_err!(collect(&mydst, &krate.name, "implementors"), &mydst);
780         all_implementors.push(implementors);
781         // Sort the implementors by crate so the file will be generated
782         // identically even with rustdoc running in parallel.
783         all_implementors.sort();
784
785         let mut f = try_err!(File::create(&mydst), &mydst);
786         try_err!(writeln!(&mut f, "(function() {{var implementors = {{}};"), &mydst);
787         for implementor in &all_implementors {
788             try_err!(writeln!(&mut f, "{}", *implementor), &mydst);
789         }
790         try_err!(writeln!(&mut f, "{}", r"
791             if (window.register_implementors) {
792                 window.register_implementors(implementors);
793             } else {
794                 window.pending_implementors = implementors;
795             }
796         "), &mydst);
797         try_err!(writeln!(&mut f, r"}})()"), &mydst);
798     }
799     Ok(())
800 }
801
802 fn render_sources(dst: &Path, scx: &mut SharedContext,
803                   krate: clean::Crate) -> Result<clean::Crate, Error> {
804     info!("emitting source files");
805     let dst = dst.join("src");
806     try_err!(mkdir(&dst), &dst);
807     let dst = dst.join(&krate.name);
808     try_err!(mkdir(&dst), &dst);
809     let mut folder = SourceCollector {
810         dst: dst,
811         scx: scx,
812     };
813     Ok(folder.fold_crate(krate))
814 }
815
816 /// Writes the entire contents of a string to a destination, not attempting to
817 /// catch any errors.
818 fn write(dst: PathBuf, contents: &[u8]) -> Result<(), Error> {
819     Ok(try_err!(try_err!(File::create(&dst), &dst).write_all(contents), &dst))
820 }
821
822 /// Makes a directory on the filesystem, failing the thread if an error occurs
823 /// and skipping if the directory already exists.
824 ///
825 /// Note that this also handles races as rustdoc is likely to be run
826 /// concurrently against another invocation.
827 fn mkdir(path: &Path) -> io::Result<()> {
828     match fs::create_dir(path) {
829         Ok(()) => Ok(()),
830         Err(ref e) if e.kind() == io::ErrorKind::AlreadyExists => Ok(()),
831         Err(e) => Err(e)
832     }
833 }
834
835 /// Takes a path to a source file and cleans the path to it. This canonicalizes
836 /// things like ".." to components which preserve the "top down" hierarchy of a
837 /// static HTML tree. Each component in the cleaned path will be passed as an
838 /// argument to `f`. The very last component of the path (ie the file name) will
839 /// be passed to `f` if `keep_filename` is true, and ignored otherwise.
840 // FIXME (#9639): The closure should deal with &[u8] instead of &str
841 // FIXME (#9639): This is too conservative, rejecting non-UTF-8 paths
842 fn clean_srcpath<F>(src_root: &Path, p: &Path, keep_filename: bool, mut f: F) where
843     F: FnMut(&str),
844 {
845     // make it relative, if possible
846     let p = p.strip_prefix(src_root).unwrap_or(p);
847
848     let mut iter = p.components().peekable();
849
850     while let Some(c) = iter.next() {
851         if !keep_filename && iter.peek().is_none() {
852             break;
853         }
854
855         match c {
856             Component::ParentDir => f("up"),
857             Component::Normal(c) => f(c.to_str().unwrap()),
858             _ => continue,
859         }
860     }
861 }
862
863 /// Attempts to find where an external crate is located, given that we're
864 /// rendering in to the specified source destination.
865 fn extern_location(e: &clean::ExternalCrate, dst: &Path) -> ExternalLocation {
866     // See if there's documentation generated into the local directory
867     let local_location = dst.join(&e.name);
868     if local_location.is_dir() {
869         return Local;
870     }
871
872     // Failing that, see if there's an attribute specifying where to find this
873     // external crate
874     e.attrs.lists("doc")
875      .filter(|a| a.check_name("html_root_url"))
876      .filter_map(|a| a.value_str())
877      .map(|url| {
878         let mut url = url.to_string();
879         if !url.ends_with("/") {
880             url.push('/')
881         }
882         Remote(url)
883     }).next().unwrap_or(Unknown) // Well, at least we tried.
884 }
885
886 impl<'a> DocFolder for SourceCollector<'a> {
887     fn fold_item(&mut self, item: clean::Item) -> Option<clean::Item> {
888         // If we're including source files, and we haven't seen this file yet,
889         // then we need to render it out to the filesystem.
890         if self.scx.include_sources
891             // skip all invalid spans
892             && item.source.filename != ""
893             // skip non-local items
894             && item.def_id.is_local()
895             // Macros from other libraries get special filenames which we can
896             // safely ignore.
897             && !(item.source.filename.starts_with("<")
898                 && item.source.filename.ends_with("macros>")) {
899
900             // If it turns out that we couldn't read this file, then we probably
901             // can't read any of the files (generating html output from json or
902             // something like that), so just don't include sources for the
903             // entire crate. The other option is maintaining this mapping on a
904             // per-file basis, but that's probably not worth it...
905             self.scx
906                 .include_sources = match self.emit_source(&item.source.filename) {
907                 Ok(()) => true,
908                 Err(e) => {
909                     println!("warning: source code was requested to be rendered, \
910                               but processing `{}` had an error: {}",
911                              item.source.filename, e);
912                     println!("         skipping rendering of source code");
913                     false
914                 }
915             };
916         }
917         self.fold_item_recur(item)
918     }
919 }
920
921 impl<'a> SourceCollector<'a> {
922     /// Renders the given filename into its corresponding HTML source file.
923     fn emit_source(&mut self, filename: &str) -> io::Result<()> {
924         let p = PathBuf::from(filename);
925         if self.scx.local_sources.contains_key(&p) {
926             // We've already emitted this source
927             return Ok(());
928         }
929
930         let mut contents = Vec::new();
931         File::open(&p).and_then(|mut f| f.read_to_end(&mut contents))?;
932
933         let contents = str::from_utf8(&contents).unwrap();
934
935         // Remove the utf-8 BOM if any
936         let contents = if contents.starts_with("\u{feff}") {
937             &contents[3..]
938         } else {
939             contents
940         };
941
942         // Create the intermediate directories
943         let mut cur = self.dst.clone();
944         let mut root_path = String::from("../../");
945         let mut href = String::new();
946         clean_srcpath(&self.scx.src_root, &p, false, |component| {
947             cur.push(component);
948             mkdir(&cur).unwrap();
949             root_path.push_str("../");
950             href.push_str(component);
951             href.push('/');
952         });
953         let mut fname = p.file_name().expect("source has no filename")
954                          .to_os_string();
955         fname.push(".html");
956         cur.push(&fname);
957         href.push_str(&fname.to_string_lossy());
958
959         let mut w = BufWriter::new(File::create(&cur)?);
960         let title = format!("{} -- source", cur.file_name().unwrap()
961                                                .to_string_lossy());
962         let desc = format!("Source to the Rust file `{}`.", filename);
963         let page = layout::Page {
964             title: &title,
965             css_class: "source",
966             root_path: &root_path,
967             description: &desc,
968             keywords: BASIC_KEYWORDS,
969         };
970         layout::render(&mut w, &self.scx.layout,
971                        &page, &(""), &Source(contents),
972                        self.scx.css_file_extension.is_some())?;
973         w.flush()?;
974         self.scx.local_sources.insert(p, href);
975         Ok(())
976     }
977 }
978
979 impl DocFolder for Cache {
980     fn fold_item(&mut self, item: clean::Item) -> Option<clean::Item> {
981         // If this is a stripped module,
982         // we don't want it or its children in the search index.
983         let orig_stripped_mod = match item.inner {
984             clean::StrippedItem(box clean::ModuleItem(..)) => {
985                 mem::replace(&mut self.stripped_mod, true)
986             }
987             _ => self.stripped_mod,
988         };
989
990         // Register any generics to their corresponding string. This is used
991         // when pretty-printing types.
992         if let Some(generics) = item.inner.generics() {
993             self.generics(generics);
994         }
995
996         // Propagate a trait method's documentation to all implementors of the
997         // trait.
998         if let clean::TraitItem(ref t) = item.inner {
999             self.traits.entry(item.def_id).or_insert_with(|| t.clone());
1000         }
1001
1002         // Collect all the implementors of traits.
1003         if let clean::ImplItem(ref i) = item.inner {
1004             if let Some(did) = i.trait_.def_id() {
1005                 self.implementors.entry(did).or_insert(vec![]).push(Implementor {
1006                     def_id: item.def_id,
1007                     stability: item.stability.clone(),
1008                     impl_: i.clone(),
1009                 });
1010             }
1011         }
1012
1013         // Index this method for searching later on.
1014         if let Some(ref s) = item.name {
1015             let (parent, is_inherent_impl_item) = match item.inner {
1016                 clean::StrippedItem(..) => ((None, None), false),
1017                 clean::AssociatedConstItem(..) |
1018                 clean::TypedefItem(_, true) if self.parent_is_trait_impl => {
1019                     // skip associated items in trait impls
1020                     ((None, None), false)
1021                 }
1022                 clean::AssociatedTypeItem(..) |
1023                 clean::TyMethodItem(..) |
1024                 clean::StructFieldItem(..) |
1025                 clean::VariantItem(..) => {
1026                     ((Some(*self.parent_stack.last().unwrap()),
1027                       Some(&self.stack[..self.stack.len() - 1])),
1028                      false)
1029                 }
1030                 clean::MethodItem(..) | clean::AssociatedConstItem(..) => {
1031                     if self.parent_stack.is_empty() {
1032                         ((None, None), false)
1033                     } else {
1034                         let last = self.parent_stack.last().unwrap();
1035                         let did = *last;
1036                         let path = match self.paths.get(&did) {
1037                             // The current stack not necessarily has correlation
1038                             // for where the type was defined. On the other
1039                             // hand, `paths` always has the right
1040                             // information if present.
1041                             Some(&(ref fqp, ItemType::Trait)) |
1042                             Some(&(ref fqp, ItemType::Struct)) |
1043                             Some(&(ref fqp, ItemType::Union)) |
1044                             Some(&(ref fqp, ItemType::Enum)) =>
1045                                 Some(&fqp[..fqp.len() - 1]),
1046                             Some(..) => Some(&*self.stack),
1047                             None => None
1048                         };
1049                         ((Some(*last), path), true)
1050                     }
1051                 }
1052                 _ => ((None, Some(&*self.stack)), false)
1053             };
1054
1055             match parent {
1056                 (parent, Some(path)) if is_inherent_impl_item || (!self.stripped_mod) => {
1057                     debug_assert!(!item.is_stripped());
1058
1059                     // A crate has a module at its root, containing all items,
1060                     // which should not be indexed. The crate-item itself is
1061                     // inserted later on when serializing the search-index.
1062                     if item.def_id.index != CRATE_DEF_INDEX {
1063                         self.search_index.push(IndexItem {
1064                             ty: item.type_(),
1065                             name: s.to_string(),
1066                             path: path.join("::").to_string(),
1067                             desc: Escape(&shorter(item.doc_value())).to_string(),
1068                             parent: parent,
1069                             parent_idx: None,
1070                             search_type: get_index_search_type(&item),
1071                         });
1072                     }
1073                 }
1074                 (Some(parent), None) if is_inherent_impl_item => {
1075                     // We have a parent, but we don't know where they're
1076                     // defined yet. Wait for later to index this item.
1077                     self.orphan_impl_items.push((parent, item.clone()));
1078                 }
1079                 _ => {}
1080             }
1081         }
1082
1083         // Keep track of the fully qualified path for this item.
1084         let pushed = match item.name {
1085             Some(ref n) if !n.is_empty() => {
1086                 self.stack.push(n.to_string());
1087                 true
1088             }
1089             _ => false,
1090         };
1091
1092         match item.inner {
1093             clean::StructItem(..) | clean::EnumItem(..) |
1094             clean::TypedefItem(..) | clean::TraitItem(..) |
1095             clean::FunctionItem(..) | clean::ModuleItem(..) |
1096             clean::ForeignFunctionItem(..) | clean::ForeignStaticItem(..) |
1097             clean::ConstantItem(..) | clean::StaticItem(..) |
1098             clean::UnionItem(..)
1099             if !self.stripped_mod => {
1100                 // Reexported items mean that the same id can show up twice
1101                 // in the rustdoc ast that we're looking at. We know,
1102                 // however, that a reexported item doesn't show up in the
1103                 // `public_items` map, so we can skip inserting into the
1104                 // paths map if there was already an entry present and we're
1105                 // not a public item.
1106                 if
1107                     !self.paths.contains_key(&item.def_id) ||
1108                     self.access_levels.is_public(item.def_id)
1109                 {
1110                     self.paths.insert(item.def_id,
1111                                       (self.stack.clone(), item.type_()));
1112                 }
1113             }
1114             // Link variants to their parent enum because pages aren't emitted
1115             // for each variant.
1116             clean::VariantItem(..) if !self.stripped_mod => {
1117                 let mut stack = self.stack.clone();
1118                 stack.pop();
1119                 self.paths.insert(item.def_id, (stack, ItemType::Enum));
1120             }
1121
1122             clean::PrimitiveItem(..) if item.visibility.is_some() => {
1123                 self.paths.insert(item.def_id, (self.stack.clone(),
1124                                                 item.type_()));
1125             }
1126
1127             _ => {}
1128         }
1129
1130         // Maintain the parent stack
1131         let orig_parent_is_trait_impl = self.parent_is_trait_impl;
1132         let parent_pushed = match item.inner {
1133             clean::TraitItem(..) | clean::EnumItem(..) |
1134             clean::StructItem(..) | clean::UnionItem(..) => {
1135                 self.parent_stack.push(item.def_id);
1136                 self.parent_is_trait_impl = false;
1137                 true
1138             }
1139             clean::ImplItem(ref i) => {
1140                 self.parent_is_trait_impl = i.trait_.is_some();
1141                 match i.for_ {
1142                     clean::ResolvedPath{ did, .. } => {
1143                         self.parent_stack.push(did);
1144                         true
1145                     }
1146                     ref t => {
1147                         let prim_did = t.primitive_type().and_then(|t| {
1148                             self.primitive_locations.get(&t).cloned()
1149                         });
1150                         match prim_did {
1151                             Some(did) => {
1152                                 self.parent_stack.push(did);
1153                                 true
1154                             }
1155                             None => false,
1156                         }
1157                     }
1158                 }
1159             }
1160             _ => false
1161         };
1162
1163         // Once we've recursively found all the generics, hoard off all the
1164         // implementations elsewhere.
1165         let ret = self.fold_item_recur(item).and_then(|item| {
1166             if let clean::Item { inner: clean::ImplItem(_), .. } = item {
1167                 // Figure out the id of this impl. This may map to a
1168                 // primitive rather than always to a struct/enum.
1169                 // Note: matching twice to restrict the lifetime of the `i` borrow.
1170                 let did = if let clean::Item { inner: clean::ImplItem(ref i), .. } = item {
1171                     match i.for_ {
1172                         clean::ResolvedPath { did, .. } |
1173                         clean::BorrowedRef {
1174                             type_: box clean::ResolvedPath { did, .. }, ..
1175                         } => {
1176                             Some(did)
1177                         }
1178                         ref t => {
1179                             t.primitive_type().and_then(|t| {
1180                                 self.primitive_locations.get(&t).cloned()
1181                             })
1182                         }
1183                     }
1184                 } else {
1185                     unreachable!()
1186                 };
1187                 if let Some(did) = did {
1188                     self.impls.entry(did).or_insert(vec![]).push(Impl {
1189                         impl_item: item,
1190                     });
1191                 }
1192                 None
1193             } else {
1194                 Some(item)
1195             }
1196         });
1197
1198         if pushed { self.stack.pop().unwrap(); }
1199         if parent_pushed { self.parent_stack.pop().unwrap(); }
1200         self.stripped_mod = orig_stripped_mod;
1201         self.parent_is_trait_impl = orig_parent_is_trait_impl;
1202         ret
1203     }
1204 }
1205
1206 impl<'a> Cache {
1207     fn generics(&mut self, generics: &clean::Generics) {
1208         for typ in &generics.type_params {
1209             self.typarams.insert(typ.did, typ.name.clone());
1210         }
1211     }
1212 }
1213
1214 impl Context {
1215     /// String representation of how to get back to the root path of the 'doc/'
1216     /// folder in terms of a relative URL.
1217     fn root_path(&self) -> String {
1218         repeat("../").take(self.current.len()).collect::<String>()
1219     }
1220
1221     /// Recurse in the directory structure and change the "root path" to make
1222     /// sure it always points to the top (relatively).
1223     fn recurse<T, F>(&mut self, s: String, f: F) -> T where
1224         F: FnOnce(&mut Context) -> T,
1225     {
1226         if s.is_empty() {
1227             panic!("Unexpected empty destination: {:?}", self.current);
1228         }
1229         let prev = self.dst.clone();
1230         self.dst.push(&s);
1231         self.current.push(s);
1232
1233         info!("Recursing into {}", self.dst.display());
1234
1235         let ret = f(self);
1236
1237         info!("Recursed; leaving {}", self.dst.display());
1238
1239         // Go back to where we were at
1240         self.dst = prev;
1241         self.current.pop().unwrap();
1242
1243         ret
1244     }
1245
1246     /// Main method for rendering a crate.
1247     ///
1248     /// This currently isn't parallelized, but it'd be pretty easy to add
1249     /// parallelization to this function.
1250     fn krate(self, mut krate: clean::Crate) -> Result<(), Error> {
1251         let mut item = match krate.module.take() {
1252             Some(i) => i,
1253             None => return Ok(()),
1254         };
1255         item.name = Some(krate.name);
1256
1257         // Render the crate documentation
1258         let mut work = vec![(self, item)];
1259
1260         while let Some((mut cx, item)) = work.pop() {
1261             cx.item(item, |cx, item| {
1262                 work.push((cx.clone(), item))
1263             })?
1264         }
1265         Ok(())
1266     }
1267
1268     fn render_item(&self,
1269                    writer: &mut io::Write,
1270                    it: &clean::Item,
1271                    pushname: bool)
1272                    -> io::Result<()> {
1273         // A little unfortunate that this is done like this, but it sure
1274         // does make formatting *a lot* nicer.
1275         CURRENT_LOCATION_KEY.with(|slot| {
1276             *slot.borrow_mut() = self.current.clone();
1277         });
1278
1279         let mut title = if it.is_primitive() {
1280             // No need to include the namespace for primitive types
1281             String::new()
1282         } else {
1283             self.current.join("::")
1284         };
1285         if pushname {
1286             if !title.is_empty() {
1287                 title.push_str("::");
1288             }
1289             title.push_str(it.name.as_ref().unwrap());
1290         }
1291         title.push_str(" - Rust");
1292         let tyname = it.type_().css_class();
1293         let desc = if it.is_crate() {
1294             format!("API documentation for the Rust `{}` crate.",
1295                     self.shared.layout.krate)
1296         } else {
1297             format!("API documentation for the Rust `{}` {} in crate `{}`.",
1298                     it.name.as_ref().unwrap(), tyname, self.shared.layout.krate)
1299         };
1300         let keywords = make_item_keywords(it);
1301         let page = layout::Page {
1302             css_class: tyname,
1303             root_path: &self.root_path(),
1304             title: &title,
1305             description: &desc,
1306             keywords: &keywords,
1307         };
1308
1309         reset_ids(true);
1310
1311         if !self.render_redirect_pages {
1312             layout::render(writer, &self.shared.layout, &page,
1313                            &Sidebar{ cx: self, item: it },
1314                            &Item{ cx: self, item: it },
1315                            self.shared.css_file_extension.is_some())?;
1316         } else {
1317             let mut url = self.root_path();
1318             if let Some(&(ref names, ty)) = cache().paths.get(&it.def_id) {
1319                 for name in &names[..names.len() - 1] {
1320                     url.push_str(name);
1321                     url.push_str("/");
1322                 }
1323                 url.push_str(&item_path(ty, names.last().unwrap()));
1324                 layout::redirect(writer, &url)?;
1325             }
1326         }
1327         Ok(())
1328     }
1329
1330     /// Non-parallelized version of rendering an item. This will take the input
1331     /// item, render its contents, and then invoke the specified closure with
1332     /// all sub-items which need to be rendered.
1333     ///
1334     /// The rendering driver uses this closure to queue up more work.
1335     fn item<F>(&mut self, item: clean::Item, mut f: F) -> Result<(), Error> where
1336         F: FnMut(&mut Context, clean::Item),
1337     {
1338         // Stripped modules survive the rustdoc passes (i.e. `strip-private`)
1339         // if they contain impls for public types. These modules can also
1340         // contain items such as publicly reexported structures.
1341         //
1342         // External crates will provide links to these structures, so
1343         // these modules are recursed into, but not rendered normally
1344         // (a flag on the context).
1345         if !self.render_redirect_pages {
1346             self.render_redirect_pages = maybe_ignore_item(&item);
1347         }
1348
1349         if item.is_mod() {
1350             // modules are special because they add a namespace. We also need to
1351             // recurse into the items of the module as well.
1352             let name = item.name.as_ref().unwrap().to_string();
1353             let mut item = Some(item);
1354             self.recurse(name, |this| {
1355                 let item = item.take().unwrap();
1356
1357                 let mut buf = Vec::new();
1358                 this.render_item(&mut buf, &item, false).unwrap();
1359                 // buf will be empty if the module is stripped and there is no redirect for it
1360                 if !buf.is_empty() {
1361                     let joint_dst = this.dst.join("index.html");
1362                     try_err!(fs::create_dir_all(&this.dst), &this.dst);
1363                     let mut dst = try_err!(File::create(&joint_dst), &joint_dst);
1364                     try_err!(dst.write_all(&buf), &joint_dst);
1365                 }
1366
1367                 let m = match item.inner {
1368                     clean::StrippedItem(box clean::ModuleItem(m)) |
1369                     clean::ModuleItem(m) => m,
1370                     _ => unreachable!()
1371                 };
1372
1373                 // Render sidebar-items.js used throughout this module.
1374                 if !this.render_redirect_pages {
1375                     let items = this.build_sidebar_items(&m);
1376                     let js_dst = this.dst.join("sidebar-items.js");
1377                     let mut js_out = BufWriter::new(try_err!(File::create(&js_dst), &js_dst));
1378                     try_err!(write!(&mut js_out, "initSidebarItems({});",
1379                                     as_json(&items)), &js_dst);
1380                 }
1381
1382                 for item in m.items {
1383                     f(this,item);
1384                 }
1385
1386                 Ok(())
1387             })?;
1388         } else if item.name.is_some() {
1389             let mut buf = Vec::new();
1390             self.render_item(&mut buf, &item, true).unwrap();
1391             // buf will be empty if the item is stripped and there is no redirect for it
1392             if !buf.is_empty() {
1393                 let name = item.name.as_ref().unwrap();
1394                 let item_type = item.type_();
1395                 let file_name = &item_path(item_type, name);
1396                 let joint_dst = self.dst.join(file_name);
1397                 try_err!(fs::create_dir_all(&self.dst), &self.dst);
1398                 let mut dst = try_err!(File::create(&joint_dst), &joint_dst);
1399                 try_err!(dst.write_all(&buf), &joint_dst);
1400
1401                 // Redirect from a sane URL using the namespace to Rustdoc's
1402                 // URL for the page.
1403                 let redir_name = format!("{}.{}.html", name, item_type.name_space());
1404                 let redir_dst = self.dst.join(redir_name);
1405                 if let Ok(mut redirect_out) = OpenOptions::new().create_new(true)
1406                                                                 .write(true)
1407                                                                 .open(&redir_dst) {
1408                     try_err!(layout::redirect(&mut redirect_out, file_name), &redir_dst);
1409                 }
1410
1411                 // If the item is a macro, redirect from the old macro URL (with !)
1412                 // to the new one (without).
1413                 // FIXME(#35705) remove this redirect.
1414                 if item_type == ItemType::Macro {
1415                     let redir_name = format!("{}.{}!.html", item_type, name);
1416                     let redir_dst = self.dst.join(redir_name);
1417                     let mut redirect_out = try_err!(File::create(&redir_dst), &redir_dst);
1418                     try_err!(layout::redirect(&mut redirect_out, file_name), &redir_dst);
1419                 }
1420             }
1421         }
1422         Ok(())
1423     }
1424
1425     fn build_sidebar_items(&self, m: &clean::Module) -> BTreeMap<String, Vec<NameDoc>> {
1426         // BTreeMap instead of HashMap to get a sorted output
1427         let mut map = BTreeMap::new();
1428         for item in &m.items {
1429             if maybe_ignore_item(item) { continue }
1430
1431             let short = item.type_().css_class();
1432             let myname = match item.name {
1433                 None => continue,
1434                 Some(ref s) => s.to_string(),
1435             };
1436             let short = short.to_string();
1437             map.entry(short).or_insert(vec![])
1438                 .push((myname, Some(plain_summary_line(item.doc_value()))));
1439         }
1440
1441         for (_, items) in &mut map {
1442             items.sort();
1443         }
1444         map
1445     }
1446 }
1447
1448 impl<'a> Item<'a> {
1449     /// Generate a url appropriate for an `href` attribute back to the source of
1450     /// this item.
1451     ///
1452     /// The url generated, when clicked, will redirect the browser back to the
1453     /// original source code.
1454     ///
1455     /// If `None` is returned, then a source link couldn't be generated. This
1456     /// may happen, for example, with externally inlined items where the source
1457     /// of their crate documentation isn't known.
1458     fn src_href(&self) -> Option<String> {
1459         let mut root = self.cx.root_path();
1460
1461         let cache = cache();
1462         let mut path = String::new();
1463         let (krate, path) = if self.item.def_id.is_local() {
1464             let path = PathBuf::from(&self.item.source.filename);
1465             if let Some(path) = self.cx.shared.local_sources.get(&path) {
1466                 (&self.cx.shared.layout.krate, path)
1467             } else {
1468                 return None;
1469             }
1470         } else {
1471             let (krate, src_root) = match cache.extern_locations.get(&self.item.def_id.krate) {
1472                 Some(&(ref name, ref src, Local)) => (name, src),
1473                 Some(&(ref name, ref src, Remote(ref s))) => {
1474                     root = s.to_string();
1475                     (name, src)
1476                 }
1477                 Some(&(_, _, Unknown)) | None => return None,
1478             };
1479
1480             let file = Path::new(&self.item.source.filename);
1481             clean_srcpath(&src_root, file, false, |component| {
1482                 path.push_str(component);
1483                 path.push('/');
1484             });
1485             let mut fname = file.file_name().expect("source has no filename")
1486                                 .to_os_string();
1487             fname.push(".html");
1488             path.push_str(&fname.to_string_lossy());
1489             (krate, &path)
1490         };
1491
1492         let lines = if self.item.source.loline == self.item.source.hiline {
1493             format!("{}", self.item.source.loline)
1494         } else {
1495             format!("{}-{}", self.item.source.loline, self.item.source.hiline)
1496         };
1497         Some(format!("{root}src/{krate}/{path}#{lines}",
1498                      root = root,
1499                      krate = krate,
1500                      path = path,
1501                      lines = lines))
1502     }
1503 }
1504
1505 impl<'a> fmt::Display for Item<'a> {
1506     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
1507         debug_assert!(!self.item.is_stripped());
1508         // Write the breadcrumb trail header for the top
1509         write!(fmt, "\n<h1 class='fqn'><span class='in-band'>")?;
1510         match self.item.inner {
1511             clean::ModuleItem(ref m) => if m.is_crate {
1512                     write!(fmt, "Crate ")?;
1513                 } else {
1514                     write!(fmt, "Module ")?;
1515                 },
1516             clean::FunctionItem(..) | clean::ForeignFunctionItem(..) =>
1517                 write!(fmt, "Function ")?,
1518             clean::TraitItem(..) => write!(fmt, "Trait ")?,
1519             clean::StructItem(..) => write!(fmt, "Struct ")?,
1520             clean::UnionItem(..) => write!(fmt, "Union ")?,
1521             clean::EnumItem(..) => write!(fmt, "Enum ")?,
1522             clean::TypedefItem(..) => write!(fmt, "Type Definition ")?,
1523             clean::MacroItem(..) => write!(fmt, "Macro ")?,
1524             clean::PrimitiveItem(..) => write!(fmt, "Primitive Type ")?,
1525             clean::StaticItem(..) | clean::ForeignStaticItem(..) =>
1526                 write!(fmt, "Static ")?,
1527             clean::ConstantItem(..) => write!(fmt, "Constant ")?,
1528             _ => {
1529                 // We don't generate pages for any other type.
1530                 unreachable!();
1531             }
1532         }
1533         if !self.item.is_primitive() {
1534             let cur = &self.cx.current;
1535             let amt = if self.item.is_mod() { cur.len() - 1 } else { cur.len() };
1536             for (i, component) in cur.iter().enumerate().take(amt) {
1537                 write!(fmt, "<a href='{}index.html'>{}</a>::<wbr>",
1538                        repeat("../").take(cur.len() - i - 1)
1539                                     .collect::<String>(),
1540                        component)?;
1541             }
1542         }
1543         write!(fmt, "<a class='{}' href=''>{}</a>",
1544                self.item.type_(), self.item.name.as_ref().unwrap())?;
1545
1546         write!(fmt, "</span>")?; // in-band
1547         write!(fmt, "<span class='out-of-band'>")?;
1548         if let Some(version) = self.item.stable_since() {
1549             write!(fmt, "<span class='since' title='Stable since Rust version {0}'>{0}</span>",
1550                    version)?;
1551         }
1552         write!(fmt,
1553                r##"<span id='render-detail'>
1554                    <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
1555                        [<span class='inner'>&#x2212;</span>]
1556                    </a>
1557                </span>"##)?;
1558
1559         // Write `src` tag
1560         //
1561         // When this item is part of a `pub use` in a downstream crate, the
1562         // [src] link in the downstream documentation will actually come back to
1563         // this page, and this link will be auto-clicked. The `id` attribute is
1564         // used to find the link to auto-click.
1565         if self.cx.shared.include_sources && !self.item.is_primitive() {
1566             if let Some(l) = self.src_href() {
1567                 write!(fmt, "<a class='srclink' href='{}' title='{}'>[src]</a>",
1568                        l, "goto source code")?;
1569             }
1570         }
1571
1572         write!(fmt, "</span>")?; // out-of-band
1573
1574         write!(fmt, "</h1>\n")?;
1575
1576         match self.item.inner {
1577             clean::ModuleItem(ref m) => {
1578                 item_module(fmt, self.cx, self.item, &m.items)
1579             }
1580             clean::FunctionItem(ref f) | clean::ForeignFunctionItem(ref f) =>
1581                 item_function(fmt, self.cx, self.item, f),
1582             clean::TraitItem(ref t) => item_trait(fmt, self.cx, self.item, t),
1583             clean::StructItem(ref s) => item_struct(fmt, self.cx, self.item, s),
1584             clean::UnionItem(ref s) => item_union(fmt, self.cx, self.item, s),
1585             clean::EnumItem(ref e) => item_enum(fmt, self.cx, self.item, e),
1586             clean::TypedefItem(ref t, _) => item_typedef(fmt, self.cx, self.item, t),
1587             clean::MacroItem(ref m) => item_macro(fmt, self.cx, self.item, m),
1588             clean::PrimitiveItem(ref p) => item_primitive(fmt, self.cx, self.item, p),
1589             clean::StaticItem(ref i) | clean::ForeignStaticItem(ref i) =>
1590                 item_static(fmt, self.cx, self.item, i),
1591             clean::ConstantItem(ref c) => item_constant(fmt, self.cx, self.item, c),
1592             _ => {
1593                 // We don't generate pages for any other type.
1594                 unreachable!();
1595             }
1596         }
1597     }
1598 }
1599
1600 fn item_path(ty: ItemType, name: &str) -> String {
1601     match ty {
1602         ItemType::Module => format!("{}/index.html", name),
1603         _ => format!("{}.{}.html", ty.css_class(), name),
1604     }
1605 }
1606
1607 fn full_path(cx: &Context, item: &clean::Item) -> String {
1608     let mut s = cx.current.join("::");
1609     s.push_str("::");
1610     s.push_str(item.name.as_ref().unwrap());
1611     s
1612 }
1613
1614 fn shorter<'a>(s: Option<&'a str>) -> String {
1615     match s {
1616         Some(s) => s.lines().take_while(|line|{
1617             (*line).chars().any(|chr|{
1618                 !chr.is_whitespace()
1619             })
1620         }).collect::<Vec<_>>().join("\n"),
1621         None => "".to_string()
1622     }
1623 }
1624
1625 #[inline]
1626 fn plain_summary_line(s: Option<&str>) -> String {
1627     let line = shorter(s).replace("\n", " ");
1628     markdown::plain_summary_line(&line[..])
1629 }
1630
1631 fn document(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item) -> fmt::Result {
1632     document_stability(w, cx, item)?;
1633     document_full(w, item)?;
1634     Ok(())
1635 }
1636
1637 fn document_short(w: &mut fmt::Formatter, item: &clean::Item, link: AssocItemLink) -> fmt::Result {
1638     if let Some(s) = item.doc_value() {
1639         let markdown = if s.contains('\n') {
1640             format!("{} [Read more]({})",
1641                     &plain_summary_line(Some(s)), naive_assoc_href(item, link))
1642         } else {
1643             format!("{}", &plain_summary_line(Some(s)))
1644         };
1645         write!(w, "<div class='docblock'>{}</div>", Markdown(&markdown))?;
1646     }
1647     Ok(())
1648 }
1649
1650 fn document_full(w: &mut fmt::Formatter, item: &clean::Item) -> fmt::Result {
1651     if let Some(s) = item.doc_value() {
1652         write!(w, "<div class='docblock'>{}</div>", Markdown(s))?;
1653     }
1654     Ok(())
1655 }
1656
1657 fn document_stability(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item) -> fmt::Result {
1658     for stability in short_stability(item, cx, true) {
1659         write!(w, "<div class='stability'>{}</div>", stability)?;
1660     }
1661     Ok(())
1662 }
1663
1664 fn item_module(w: &mut fmt::Formatter, cx: &Context,
1665                item: &clean::Item, items: &[clean::Item]) -> fmt::Result {
1666     document(w, cx, item)?;
1667
1668     let mut indices = (0..items.len()).filter(|i| {
1669         if let clean::DefaultImplItem(..) = items[*i].inner {
1670             return false;
1671         }
1672         !maybe_ignore_item(&items[*i])
1673     }).collect::<Vec<usize>>();
1674
1675     // the order of item types in the listing
1676     fn reorder(ty: ItemType) -> u8 {
1677         match ty {
1678             ItemType::ExternCrate     => 0,
1679             ItemType::Import          => 1,
1680             ItemType::Primitive       => 2,
1681             ItemType::Module          => 3,
1682             ItemType::Macro           => 4,
1683             ItemType::Struct          => 5,
1684             ItemType::Enum            => 6,
1685             ItemType::Constant        => 7,
1686             ItemType::Static          => 8,
1687             ItemType::Trait           => 9,
1688             ItemType::Function        => 10,
1689             ItemType::Typedef         => 12,
1690             ItemType::Union           => 13,
1691             _                         => 14 + ty as u8,
1692         }
1693     }
1694
1695     fn cmp(i1: &clean::Item, i2: &clean::Item, idx1: usize, idx2: usize) -> Ordering {
1696         let ty1 = i1.type_();
1697         let ty2 = i2.type_();
1698         if ty1 != ty2 {
1699             return (reorder(ty1), idx1).cmp(&(reorder(ty2), idx2))
1700         }
1701         let s1 = i1.stability.as_ref().map(|s| s.level);
1702         let s2 = i2.stability.as_ref().map(|s| s.level);
1703         match (s1, s2) {
1704             (Some(stability::Unstable), Some(stability::Stable)) => return Ordering::Greater,
1705             (Some(stability::Stable), Some(stability::Unstable)) => return Ordering::Less,
1706             _ => {}
1707         }
1708         i1.name.cmp(&i2.name)
1709     }
1710
1711     indices.sort_by(|&i1, &i2| cmp(&items[i1], &items[i2], i1, i2));
1712
1713     debug!("{:?}", indices);
1714     let mut curty = None;
1715     for &idx in &indices {
1716         let myitem = &items[idx];
1717         if myitem.is_stripped() {
1718             continue;
1719         }
1720
1721         let myty = Some(myitem.type_());
1722         if curty == Some(ItemType::ExternCrate) && myty == Some(ItemType::Import) {
1723             // Put `extern crate` and `use` re-exports in the same section.
1724             curty = myty;
1725         } else if myty != curty {
1726             if curty.is_some() {
1727                 write!(w, "</table>")?;
1728             }
1729             curty = myty;
1730             let (short, name) = match myty.unwrap() {
1731                 ItemType::ExternCrate |
1732                 ItemType::Import          => ("reexports", "Reexports"),
1733                 ItemType::Module          => ("modules", "Modules"),
1734                 ItemType::Struct          => ("structs", "Structs"),
1735                 ItemType::Union           => ("unions", "Unions"),
1736                 ItemType::Enum            => ("enums", "Enums"),
1737                 ItemType::Function        => ("functions", "Functions"),
1738                 ItemType::Typedef         => ("types", "Type Definitions"),
1739                 ItemType::Static          => ("statics", "Statics"),
1740                 ItemType::Constant        => ("constants", "Constants"),
1741                 ItemType::Trait           => ("traits", "Traits"),
1742                 ItemType::Impl            => ("impls", "Implementations"),
1743                 ItemType::TyMethod        => ("tymethods", "Type Methods"),
1744                 ItemType::Method          => ("methods", "Methods"),
1745                 ItemType::StructField     => ("fields", "Struct Fields"),
1746                 ItemType::Variant         => ("variants", "Variants"),
1747                 ItemType::Macro           => ("macros", "Macros"),
1748                 ItemType::Primitive       => ("primitives", "Primitive Types"),
1749                 ItemType::AssociatedType  => ("associated-types", "Associated Types"),
1750                 ItemType::AssociatedConst => ("associated-consts", "Associated Constants"),
1751             };
1752             write!(w, "<h2 id='{id}' class='section-header'>\
1753                        <a href=\"#{id}\">{name}</a></h2>\n<table>",
1754                    id = derive_id(short.to_owned()), name = name)?;
1755         }
1756
1757         match myitem.inner {
1758             clean::ExternCrateItem(ref name, ref src) => {
1759                 use html::format::HRef;
1760
1761                 match *src {
1762                     Some(ref src) => {
1763                         write!(w, "<tr><td><code>{}extern crate {} as {};",
1764                                VisSpace(&myitem.visibility),
1765                                HRef::new(myitem.def_id, src),
1766                                name)?
1767                     }
1768                     None => {
1769                         write!(w, "<tr><td><code>{}extern crate {};",
1770                                VisSpace(&myitem.visibility),
1771                                HRef::new(myitem.def_id, name))?
1772                     }
1773                 }
1774                 write!(w, "</code></td></tr>")?;
1775             }
1776
1777             clean::ImportItem(ref import) => {
1778                 write!(w, "<tr><td><code>{}{}</code></td></tr>",
1779                        VisSpace(&myitem.visibility), *import)?;
1780             }
1781
1782             _ => {
1783                 if myitem.name.is_none() { continue }
1784
1785                 let stabilities = short_stability(myitem, cx, false);
1786
1787                 let stab_docs = if !stabilities.is_empty() {
1788                     stabilities.iter()
1789                                .map(|s| format!("[{}]", s))
1790                                .collect::<Vec<_>>()
1791                                .as_slice()
1792                                .join(" ")
1793                 } else {
1794                     String::new()
1795                 };
1796
1797                 let mut unsafety_flag = "";
1798                 if let clean::FunctionItem(ref func) = myitem.inner {
1799                     if func.unsafety == hir::Unsafety::Unsafe {
1800                         unsafety_flag = "<a title='unsafe function' href='#'><sup>âš </sup></a>";
1801                     }
1802                 }
1803
1804                 let doc_value = myitem.doc_value().unwrap_or("");
1805                 write!(w, "
1806                        <tr class='{stab} module-item'>
1807                            <td><a class='{class}' href='{href}'
1808                                   title='{title}'>{name}</a>{unsafety_flag}</td>
1809                            <td class='docblock-short'>
1810                                {stab_docs} {docs}
1811                            </td>
1812                        </tr>",
1813                        name = *myitem.name.as_ref().unwrap(),
1814                        stab_docs = stab_docs,
1815                        docs = shorter(Some(&Markdown(doc_value).to_string())),
1816                        class = myitem.type_(),
1817                        stab = myitem.stability_class(),
1818                        unsafety_flag = unsafety_flag,
1819                        href = item_path(myitem.type_(), myitem.name.as_ref().unwrap()),
1820                        title = full_path(cx, myitem))?;
1821             }
1822         }
1823     }
1824
1825     if curty.is_some() {
1826         write!(w, "</table>")?;
1827     }
1828     Ok(())
1829 }
1830
1831 fn maybe_ignore_item(it: &clean::Item) -> bool {
1832     match it.inner {
1833         clean::StrippedItem(..) => true,
1834         clean::ModuleItem(ref m) => {
1835             it.doc_value().is_none() && m.items.is_empty()
1836                                      && it.visibility != Some(clean::Public)
1837         },
1838         _ => false,
1839     }
1840 }
1841
1842 fn short_stability(item: &clean::Item, cx: &Context, show_reason: bool) -> Vec<String> {
1843     let mut stability = vec![];
1844
1845     if let Some(stab) = item.stability.as_ref() {
1846         let deprecated_reason = if show_reason && !stab.deprecated_reason.is_empty() {
1847             format!(": {}", stab.deprecated_reason)
1848         } else {
1849             String::new()
1850         };
1851         if !stab.deprecated_since.is_empty() {
1852             let since = if show_reason {
1853                 format!(" since {}", Escape(&stab.deprecated_since))
1854             } else {
1855                 String::new()
1856             };
1857             let text = format!("Deprecated{}{}", since, Markdown(&deprecated_reason));
1858             stability.push(format!("<em class='stab deprecated'>{}</em>", text))
1859         };
1860
1861         if stab.level == stability::Unstable {
1862             let unstable_extra = if show_reason {
1863                 match (!stab.feature.is_empty(), &cx.shared.issue_tracker_base_url, stab.issue) {
1864                     (true, &Some(ref tracker_url), Some(issue_no)) if issue_no > 0 =>
1865                         format!(" (<code>{}</code> <a href=\"{}{}\">#{}</a>)",
1866                                 Escape(&stab.feature), tracker_url, issue_no, issue_no),
1867                     (false, &Some(ref tracker_url), Some(issue_no)) if issue_no > 0 =>
1868                         format!(" (<a href=\"{}{}\">#{}</a>)", Escape(&tracker_url), issue_no,
1869                                 issue_no),
1870                     (true, ..) =>
1871                         format!(" (<code>{}</code>)", Escape(&stab.feature)),
1872                     _ => String::new(),
1873                 }
1874             } else {
1875                 String::new()
1876             };
1877             let unstable_reason = if show_reason && !stab.unstable_reason.is_empty() {
1878                 format!(": {}", stab.unstable_reason)
1879             } else {
1880                 String::new()
1881             };
1882             let text = format!("Unstable{}{}", unstable_extra, Markdown(&unstable_reason));
1883             stability.push(format!("<em class='stab unstable'>{}</em>", text))
1884         };
1885     } else if let Some(depr) = item.deprecation.as_ref() {
1886         let note = if show_reason && !depr.note.is_empty() {
1887             format!(": {}", depr.note)
1888         } else {
1889             String::new()
1890         };
1891         let since = if show_reason && !depr.since.is_empty() {
1892             format!(" since {}", Escape(&depr.since))
1893         } else {
1894             String::new()
1895         };
1896
1897         let text = format!("Deprecated{}{}", since, Markdown(&note));
1898         stability.push(format!("<em class='stab deprecated'>{}</em>", text))
1899     }
1900
1901     stability
1902 }
1903
1904 struct Initializer<'a>(&'a str);
1905
1906 impl<'a> fmt::Display for Initializer<'a> {
1907     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1908         let Initializer(s) = *self;
1909         if s.is_empty() { return Ok(()); }
1910         write!(f, "<code> = </code>")?;
1911         write!(f, "<code>{}</code>", Escape(s))
1912     }
1913 }
1914
1915 fn item_constant(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
1916                  c: &clean::Constant) -> fmt::Result {
1917     write!(w, "<pre class='rust const'>{vis}const \
1918                {name}: {typ}{init}</pre>",
1919            vis = VisSpace(&it.visibility),
1920            name = it.name.as_ref().unwrap(),
1921            typ = c.type_,
1922            init = Initializer(&c.expr))?;
1923     document(w, cx, it)
1924 }
1925
1926 fn item_static(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
1927                s: &clean::Static) -> fmt::Result {
1928     write!(w, "<pre class='rust static'>{vis}static {mutability}\
1929                {name}: {typ}{init}</pre>",
1930            vis = VisSpace(&it.visibility),
1931            mutability = MutableSpace(s.mutability),
1932            name = it.name.as_ref().unwrap(),
1933            typ = s.type_,
1934            init = Initializer(&s.expr))?;
1935     document(w, cx, it)
1936 }
1937
1938 fn item_function(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
1939                  f: &clean::Function) -> fmt::Result {
1940     // FIXME(#24111): remove when `const_fn` is stabilized
1941     let vis_constness = match UnstableFeatures::from_environment() {
1942         UnstableFeatures::Allow => f.constness,
1943         _ => hir::Constness::NotConst
1944     };
1945     let indent = format!("{}{}{}{:#}fn {}{:#}",
1946                          VisSpace(&it.visibility),
1947                          ConstnessSpace(vis_constness),
1948                          UnsafetySpace(f.unsafety),
1949                          AbiSpace(f.abi),
1950                          it.name.as_ref().unwrap(),
1951                          f.generics).len();
1952     write!(w, "<pre class='rust fn'>{vis}{constness}{unsafety}{abi}fn \
1953                {name}{generics}{decl}{where_clause}</pre>",
1954            vis = VisSpace(&it.visibility),
1955            constness = ConstnessSpace(vis_constness),
1956            unsafety = UnsafetySpace(f.unsafety),
1957            abi = AbiSpace(f.abi),
1958            name = it.name.as_ref().unwrap(),
1959            generics = f.generics,
1960            where_clause = WhereClause(&f.generics, 2),
1961            decl = Method(&f.decl, indent))?;
1962     document(w, cx, it)
1963 }
1964
1965 fn item_trait(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
1966               t: &clean::Trait) -> fmt::Result {
1967     let mut bounds = String::new();
1968     let mut bounds_plain = String::new();
1969     if !t.bounds.is_empty() {
1970         if !bounds.is_empty() {
1971             bounds.push(' ');
1972             bounds_plain.push(' ');
1973         }
1974         bounds.push_str(": ");
1975         bounds_plain.push_str(": ");
1976         for (i, p) in t.bounds.iter().enumerate() {
1977             if i > 0 {
1978                 bounds.push_str(" + ");
1979                 bounds_plain.push_str(" + ");
1980             }
1981             bounds.push_str(&format!("{}", *p));
1982             bounds_plain.push_str(&format!("{:#}", *p));
1983         }
1984     }
1985
1986     // Output the trait definition
1987     write!(w, "<pre class='rust trait'>{}{}trait {}{}{}{} ",
1988            VisSpace(&it.visibility),
1989            UnsafetySpace(t.unsafety),
1990            it.name.as_ref().unwrap(),
1991            t.generics,
1992            bounds,
1993            // Where clauses in traits are indented nine spaces, per rustdoc.css
1994            WhereClause(&t.generics, 9))?;
1995
1996     let types = t.items.iter().filter(|m| m.is_associated_type()).collect::<Vec<_>>();
1997     let consts = t.items.iter().filter(|m| m.is_associated_const()).collect::<Vec<_>>();
1998     let required = t.items.iter().filter(|m| m.is_ty_method()).collect::<Vec<_>>();
1999     let provided = t.items.iter().filter(|m| m.is_method()).collect::<Vec<_>>();
2000
2001     if t.items.is_empty() {
2002         write!(w, "{{ }}")?;
2003     } else {
2004         // FIXME: we should be using a derived_id for the Anchors here
2005         write!(w, "{{\n")?;
2006         for t in &types {
2007             write!(w, "    ")?;
2008             render_assoc_item(w, t, AssocItemLink::Anchor(None), ItemType::Trait)?;
2009             write!(w, ";\n")?;
2010         }
2011         if !types.is_empty() && !consts.is_empty() {
2012             w.write_str("\n")?;
2013         }
2014         for t in &consts {
2015             write!(w, "    ")?;
2016             render_assoc_item(w, t, AssocItemLink::Anchor(None), ItemType::Trait)?;
2017             write!(w, ";\n")?;
2018         }
2019         if !consts.is_empty() && !required.is_empty() {
2020             w.write_str("\n")?;
2021         }
2022         for m in &required {
2023             write!(w, "    ")?;
2024             render_assoc_item(w, m, AssocItemLink::Anchor(None), ItemType::Trait)?;
2025             write!(w, ";\n")?;
2026         }
2027         if !required.is_empty() && !provided.is_empty() {
2028             w.write_str("\n")?;
2029         }
2030         for m in &provided {
2031             write!(w, "    ")?;
2032             render_assoc_item(w, m, AssocItemLink::Anchor(None), ItemType::Trait)?;
2033             write!(w, " {{ ... }}\n")?;
2034         }
2035         write!(w, "}}")?;
2036     }
2037     write!(w, "</pre>")?;
2038
2039     // Trait documentation
2040     document(w, cx, it)?;
2041
2042     fn trait_item(w: &mut fmt::Formatter, cx: &Context, m: &clean::Item, t: &clean::Item)
2043                   -> fmt::Result {
2044         let name = m.name.as_ref().unwrap();
2045         let item_type = m.type_();
2046         let id = derive_id(format!("{}.{}", item_type, name));
2047         let ns_id = derive_id(format!("{}.{}", name, item_type.name_space()));
2048         write!(w, "<h3 id='{id}' class='method stab {stab}'>\
2049                    <span id='{ns_id}' class='invisible'><code>",
2050                id = id,
2051                stab = m.stability_class(),
2052                ns_id = ns_id)?;
2053         render_assoc_item(w, m, AssocItemLink::Anchor(Some(&id)), ItemType::Impl)?;
2054         write!(w, "</code>")?;
2055         render_stability_since(w, m, t)?;
2056         write!(w, "</span></h3>")?;
2057         document(w, cx, m)?;
2058         Ok(())
2059     }
2060
2061     if !types.is_empty() {
2062         write!(w, "
2063             <h2 id='associated-types'>Associated Types</h2>
2064             <div class='methods'>
2065         ")?;
2066         for t in &types {
2067             trait_item(w, cx, *t, it)?;
2068         }
2069         write!(w, "</div>")?;
2070     }
2071
2072     if !consts.is_empty() {
2073         write!(w, "
2074             <h2 id='associated-const'>Associated Constants</h2>
2075             <div class='methods'>
2076         ")?;
2077         for t in &consts {
2078             trait_item(w, cx, *t, it)?;
2079         }
2080         write!(w, "</div>")?;
2081     }
2082
2083     // Output the documentation for each function individually
2084     if !required.is_empty() {
2085         write!(w, "
2086             <h2 id='required-methods'>Required Methods</h2>
2087             <div class='methods'>
2088         ")?;
2089         for m in &required {
2090             trait_item(w, cx, *m, it)?;
2091         }
2092         write!(w, "</div>")?;
2093     }
2094     if !provided.is_empty() {
2095         write!(w, "
2096             <h2 id='provided-methods'>Provided Methods</h2>
2097             <div class='methods'>
2098         ")?;
2099         for m in &provided {
2100             trait_item(w, cx, *m, it)?;
2101         }
2102         write!(w, "</div>")?;
2103     }
2104
2105     // If there are methods directly on this trait object, render them here.
2106     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)?;
2107
2108     let cache = cache();
2109     write!(w, "
2110         <h2 id='implementors'>Implementors</h2>
2111         <ul class='item-list' id='implementors-list'>
2112     ")?;
2113     if let Some(implementors) = cache.implementors.get(&it.def_id) {
2114         for i in implementors {
2115             write!(w, "<li><code>")?;
2116             fmt_impl_for_trait_page(&i.impl_, w)?;
2117             writeln!(w, "</code></li>")?;
2118         }
2119     }
2120     write!(w, "</ul>")?;
2121     write!(w, r#"<script type="text/javascript" async
2122                          src="{root_path}/implementors/{path}/{ty}.{name}.js">
2123                  </script>"#,
2124            root_path = vec![".."; cx.current.len()].join("/"),
2125            path = if it.def_id.is_local() {
2126                cx.current.join("/")
2127            } else {
2128                let (ref path, _) = cache.external_paths[&it.def_id];
2129                path[..path.len() - 1].join("/")
2130            },
2131            ty = it.type_().css_class(),
2132            name = *it.name.as_ref().unwrap())?;
2133     Ok(())
2134 }
2135
2136 fn naive_assoc_href(it: &clean::Item, link: AssocItemLink) -> String {
2137     use html::item_type::ItemType::*;
2138
2139     let name = it.name.as_ref().unwrap();
2140     let ty = match it.type_() {
2141         Typedef | AssociatedType => AssociatedType,
2142         s@_ => s,
2143     };
2144
2145     let anchor = format!("#{}.{}", ty, name);
2146     match link {
2147         AssocItemLink::Anchor(Some(ref id)) => format!("#{}", id),
2148         AssocItemLink::Anchor(None) => anchor,
2149         AssocItemLink::GotoSource(did, _) => {
2150             href(did).map(|p| format!("{}{}", p.0, anchor)).unwrap_or(anchor)
2151         }
2152     }
2153 }
2154
2155 fn assoc_const(w: &mut fmt::Formatter,
2156                it: &clean::Item,
2157                ty: &clean::Type,
2158                default: Option<&String>,
2159                link: AssocItemLink) -> fmt::Result {
2160     write!(w, "const <a href='{}' class='constant'>{}</a>",
2161            naive_assoc_href(it, link),
2162            it.name.as_ref().unwrap())?;
2163
2164     write!(w, ": {}", ty)?;
2165     if let Some(default) = default {
2166         write!(w, " = {}", Escape(default))?;
2167     }
2168     Ok(())
2169 }
2170
2171 fn assoc_type(w: &mut fmt::Formatter, it: &clean::Item,
2172               bounds: &Vec<clean::TyParamBound>,
2173               default: Option<&clean::Type>,
2174               link: AssocItemLink) -> fmt::Result {
2175     write!(w, "type <a href='{}' class='type'>{}</a>",
2176            naive_assoc_href(it, link),
2177            it.name.as_ref().unwrap())?;
2178     if !bounds.is_empty() {
2179         write!(w, ": {}", TyParamBounds(bounds))?
2180     }
2181     if let Some(default) = default {
2182         write!(w, " = {}", default)?;
2183     }
2184     Ok(())
2185 }
2186
2187 fn render_stability_since_raw<'a>(w: &mut fmt::Formatter,
2188                                   ver: Option<&'a str>,
2189                                   containing_ver: Option<&'a str>) -> fmt::Result {
2190     if let Some(v) = ver {
2191         if containing_ver != ver && v.len() > 0 {
2192             write!(w, "<div class='since' title='Stable since Rust version {0}'>{0}</div>",
2193                    v)?
2194         }
2195     }
2196     Ok(())
2197 }
2198
2199 fn render_stability_since(w: &mut fmt::Formatter,
2200                           item: &clean::Item,
2201                           containing_item: &clean::Item) -> fmt::Result {
2202     render_stability_since_raw(w, item.stable_since(), containing_item.stable_since())
2203 }
2204
2205 fn render_assoc_item(w: &mut fmt::Formatter,
2206                      item: &clean::Item,
2207                      link: AssocItemLink,
2208                      parent: ItemType) -> fmt::Result {
2209     fn method(w: &mut fmt::Formatter,
2210               meth: &clean::Item,
2211               unsafety: hir::Unsafety,
2212               constness: hir::Constness,
2213               abi: abi::Abi,
2214               g: &clean::Generics,
2215               d: &clean::FnDecl,
2216               link: AssocItemLink,
2217               parent: ItemType)
2218               -> fmt::Result {
2219         let name = meth.name.as_ref().unwrap();
2220         let anchor = format!("#{}.{}", meth.type_(), name);
2221         let href = match link {
2222             AssocItemLink::Anchor(Some(ref id)) => format!("#{}", id),
2223             AssocItemLink::Anchor(None) => anchor,
2224             AssocItemLink::GotoSource(did, provided_methods) => {
2225                 // We're creating a link from an impl-item to the corresponding
2226                 // trait-item and need to map the anchored type accordingly.
2227                 let ty = if provided_methods.contains(name) {
2228                     ItemType::Method
2229                 } else {
2230                     ItemType::TyMethod
2231                 };
2232
2233                 href(did).map(|p| format!("{}#{}.{}", p.0, ty, name)).unwrap_or(anchor)
2234             }
2235         };
2236         // FIXME(#24111): remove when `const_fn` is stabilized
2237         let vis_constness = match UnstableFeatures::from_environment() {
2238             UnstableFeatures::Allow => constness,
2239             _ => hir::Constness::NotConst
2240         };
2241         let prefix = format!("{}{}{:#}fn {}{:#}",
2242                              ConstnessSpace(vis_constness),
2243                              UnsafetySpace(unsafety),
2244                              AbiSpace(abi),
2245                              name,
2246                              *g);
2247         let mut indent = prefix.len();
2248         let where_indent = if parent == ItemType::Trait {
2249             indent += 4;
2250             8
2251         } else if parent == ItemType::Impl {
2252             2
2253         } else {
2254             let prefix = prefix + &format!("{:#}", Method(d, indent));
2255             prefix.lines().last().unwrap().len() + 1
2256         };
2257         write!(w, "{}{}{}fn <a href='{href}' class='fnname'>{name}</a>\
2258                    {generics}{decl}{where_clause}",
2259                ConstnessSpace(vis_constness),
2260                UnsafetySpace(unsafety),
2261                AbiSpace(abi),
2262                href = href,
2263                name = name,
2264                generics = *g,
2265                decl = Method(d, indent),
2266                where_clause = WhereClause(g, where_indent))
2267     }
2268     match item.inner {
2269         clean::StrippedItem(..) => Ok(()),
2270         clean::TyMethodItem(ref m) => {
2271             method(w, item, m.unsafety, hir::Constness::NotConst,
2272                    m.abi, &m.generics, &m.decl, link, parent)
2273         }
2274         clean::MethodItem(ref m) => {
2275             method(w, item, m.unsafety, m.constness,
2276                    m.abi, &m.generics, &m.decl, link, parent)
2277         }
2278         clean::AssociatedConstItem(ref ty, ref default) => {
2279             assoc_const(w, item, ty, default.as_ref(), link)
2280         }
2281         clean::AssociatedTypeItem(ref bounds, ref default) => {
2282             assoc_type(w, item, bounds, default.as_ref(), link)
2283         }
2284         _ => panic!("render_assoc_item called on non-associated-item")
2285     }
2286 }
2287
2288 fn item_struct(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2289                s: &clean::Struct) -> fmt::Result {
2290     write!(w, "<pre class='rust struct'>")?;
2291     render_attributes(w, it)?;
2292     render_struct(w,
2293                   it,
2294                   Some(&s.generics),
2295                   s.struct_type,
2296                   &s.fields,
2297                   "",
2298                   true)?;
2299     write!(w, "</pre>")?;
2300
2301     document(w, cx, it)?;
2302     let mut fields = s.fields.iter().filter_map(|f| {
2303         match f.inner {
2304             clean::StructFieldItem(ref ty) => Some((f, ty)),
2305             _ => None,
2306         }
2307     }).peekable();
2308     if let doctree::Plain = s.struct_type {
2309         if fields.peek().is_some() {
2310             write!(w, "<h2 class='fields'>Fields</h2>")?;
2311             for (field, ty) in fields {
2312                 let id = derive_id(format!("{}.{}",
2313                                            ItemType::StructField,
2314                                            field.name.as_ref().unwrap()));
2315                 let ns_id = derive_id(format!("{}.{}",
2316                                               field.name.as_ref().unwrap(),
2317                                               ItemType::StructField.name_space()));
2318                 write!(w, "<span id='{id}' class='{item_type}'>
2319                            <span id='{ns_id}' class='invisible'>
2320                            <code>{name}: {ty}</code>
2321                            </span></span><span class='stab {stab}'></span>",
2322                        item_type = ItemType::StructField,
2323                        id = id,
2324                        ns_id = ns_id,
2325                        stab = field.stability_class(),
2326                        name = field.name.as_ref().unwrap(),
2327                        ty = ty)?;
2328                 document(w, cx, field)?;
2329             }
2330         }
2331     }
2332     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
2333 }
2334
2335 fn item_union(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2336                s: &clean::Union) -> fmt::Result {
2337     write!(w, "<pre class='rust union'>")?;
2338     render_attributes(w, it)?;
2339     render_union(w,
2340                  it,
2341                  Some(&s.generics),
2342                  &s.fields,
2343                  "",
2344                  true)?;
2345     write!(w, "</pre>")?;
2346
2347     document(w, cx, it)?;
2348     let mut fields = s.fields.iter().filter_map(|f| {
2349         match f.inner {
2350             clean::StructFieldItem(ref ty) => Some((f, ty)),
2351             _ => None,
2352         }
2353     }).peekable();
2354     if fields.peek().is_some() {
2355         write!(w, "<h2 class='fields'>Fields</h2>")?;
2356         for (field, ty) in fields {
2357             write!(w, "<span id='{shortty}.{name}' class='{shortty}'><code>{name}: {ty}</code>
2358                        </span><span class='stab {stab}'></span>",
2359                    shortty = ItemType::StructField,
2360                    stab = field.stability_class(),
2361                    name = field.name.as_ref().unwrap(),
2362                    ty = ty)?;
2363             document(w, cx, field)?;
2364         }
2365     }
2366     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
2367 }
2368
2369 fn item_enum(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2370              e: &clean::Enum) -> fmt::Result {
2371     write!(w, "<pre class='rust enum'>")?;
2372     render_attributes(w, it)?;
2373     let padding = format!("{}enum {}{:#} ",
2374                           VisSpace(&it.visibility),
2375                           it.name.as_ref().unwrap(),
2376                           e.generics).len();
2377     write!(w, "{}enum {}{}{}",
2378            VisSpace(&it.visibility),
2379            it.name.as_ref().unwrap(),
2380            e.generics,
2381            WhereClause(&e.generics, padding))?;
2382     if e.variants.is_empty() && !e.variants_stripped {
2383         write!(w, " {{}}")?;
2384     } else {
2385         write!(w, " {{\n")?;
2386         for v in &e.variants {
2387             write!(w, "    ")?;
2388             let name = v.name.as_ref().unwrap();
2389             match v.inner {
2390                 clean::VariantItem(ref var) => {
2391                     match var.kind {
2392                         clean::VariantKind::CLike => write!(w, "{}", name)?,
2393                         clean::VariantKind::Tuple(ref tys) => {
2394                             write!(w, "{}(", name)?;
2395                             for (i, ty) in tys.iter().enumerate() {
2396                                 if i > 0 {
2397                                     write!(w, ",&nbsp;")?
2398                                 }
2399                                 write!(w, "{}", *ty)?;
2400                             }
2401                             write!(w, ")")?;
2402                         }
2403                         clean::VariantKind::Struct(ref s) => {
2404                             render_struct(w,
2405                                           v,
2406                                           None,
2407                                           s.struct_type,
2408                                           &s.fields,
2409                                           "    ",
2410                                           false)?;
2411                         }
2412                     }
2413                 }
2414                 _ => unreachable!()
2415             }
2416             write!(w, ",\n")?;
2417         }
2418
2419         if e.variants_stripped {
2420             write!(w, "    // some variants omitted\n")?;
2421         }
2422         write!(w, "}}")?;
2423     }
2424     write!(w, "</pre>")?;
2425
2426     document(w, cx, it)?;
2427     if !e.variants.is_empty() {
2428         write!(w, "<h2 class='variants'>Variants</h2>\n")?;
2429         for variant in &e.variants {
2430             let id = derive_id(format!("{}.{}",
2431                                        ItemType::Variant,
2432                                        variant.name.as_ref().unwrap()));
2433             let ns_id = derive_id(format!("{}.{}",
2434                                           variant.name.as_ref().unwrap(),
2435                                           ItemType::Variant.name_space()));
2436             write!(w, "<span id='{id}' class='variant'>\
2437                        <span id='{ns_id}' class='invisible'><code>{name}",
2438                    id = id,
2439                    ns_id = ns_id,
2440                    name = variant.name.as_ref().unwrap())?;
2441             if let clean::VariantItem(ref var) = variant.inner {
2442                 if let clean::VariantKind::Tuple(ref tys) = var.kind {
2443                     write!(w, "(")?;
2444                     for (i, ty) in tys.iter().enumerate() {
2445                         if i > 0 {
2446                             write!(w, ",&nbsp;")?;
2447                         }
2448                         write!(w, "{}", *ty)?;
2449                     }
2450                     write!(w, ")")?;
2451                 }
2452             }
2453             write!(w, "</code></span></span>")?;
2454             document(w, cx, variant)?;
2455
2456             use clean::{Variant, VariantKind};
2457             if let clean::VariantItem(Variant {
2458                 kind: VariantKind::Struct(ref s)
2459             }) = variant.inner {
2460                 let variant_id = derive_id(format!("{}.{}.fields",
2461                                                    ItemType::Variant,
2462                                                    variant.name.as_ref().unwrap()));
2463                 write!(w, "<span class='docblock autohide sub-variant' id='{id}'>",
2464                        id = variant_id)?;
2465                 write!(w, "<h3 class='fields'>Fields of <code>{name}</code></h3>\n
2466                            <table>", name = variant.name.as_ref().unwrap())?;
2467                 for field in &s.fields {
2468                     use clean::StructFieldItem;
2469                     if let StructFieldItem(ref ty) = field.inner {
2470                         let id = derive_id(format!("variant.{}.field.{}",
2471                                                    variant.name.as_ref().unwrap(),
2472                                                    field.name.as_ref().unwrap()));
2473                         let ns_id = derive_id(format!("{}.{}.{}.{}",
2474                                                       variant.name.as_ref().unwrap(),
2475                                                       ItemType::Variant.name_space(),
2476                                                       field.name.as_ref().unwrap(),
2477                                                       ItemType::StructField.name_space()));
2478                         write!(w, "<tr><td \
2479                                    id='{id}'>\
2480                                    <span id='{ns_id}' class='invisible'>\
2481                                    <code>{f}:&nbsp;{t}</code></span></td><td>",
2482                                id = id,
2483                                ns_id = ns_id,
2484                                f = field.name.as_ref().unwrap(),
2485                                t = *ty)?;
2486                         document(w, cx, field)?;
2487                         write!(w, "</td></tr>")?;
2488                     }
2489                 }
2490                 write!(w, "</table></span>")?;
2491             }
2492             render_stability_since(w, variant, it)?;
2493         }
2494     }
2495     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)?;
2496     Ok(())
2497 }
2498
2499 fn render_attribute(attr: &ast::MetaItem) -> Option<String> {
2500     let name = attr.name();
2501
2502     if attr.is_word() {
2503         Some(format!("{}", name))
2504     } else if let Some(v) = attr.value_str() {
2505         Some(format!("{} = {:?}", name, &v.as_str()[..]))
2506     } else if let Some(values) = attr.meta_item_list() {
2507         let display: Vec<_> = values.iter().filter_map(|attr| {
2508             attr.meta_item().and_then(|mi| render_attribute(mi))
2509         }).collect();
2510
2511         if display.len() > 0 {
2512             Some(format!("{}({})", name, display.join(", ")))
2513         } else {
2514             None
2515         }
2516     } else {
2517         None
2518     }
2519 }
2520
2521 const ATTRIBUTE_WHITELIST: &'static [&'static str] = &[
2522     "export_name",
2523     "lang",
2524     "link_section",
2525     "must_use",
2526     "no_mangle",
2527     "repr",
2528     "unsafe_destructor_blind_to_params"
2529 ];
2530
2531 fn render_attributes(w: &mut fmt::Formatter, it: &clean::Item) -> fmt::Result {
2532     let mut attrs = String::new();
2533
2534     for attr in &it.attrs.other_attrs {
2535         let name = attr.name();
2536         if !ATTRIBUTE_WHITELIST.contains(&&name.as_str()[..]) {
2537             continue;
2538         }
2539         if let Some(s) = render_attribute(attr.meta()) {
2540             attrs.push_str(&format!("#[{}]\n", s));
2541         }
2542     }
2543     if attrs.len() > 0 {
2544         write!(w, "<div class=\"docblock attributes\">{}</div>", &attrs)?;
2545     }
2546     Ok(())
2547 }
2548
2549 fn render_struct(w: &mut fmt::Formatter, it: &clean::Item,
2550                  g: Option<&clean::Generics>,
2551                  ty: doctree::StructType,
2552                  fields: &[clean::Item],
2553                  tab: &str,
2554                  structhead: bool) -> fmt::Result {
2555     let mut plain = String::new();
2556     write!(w, "{}{}{}",
2557            VisSpace(&it.visibility),
2558            if structhead {"struct "} else {""},
2559            it.name.as_ref().unwrap())?;
2560     plain.push_str(&format!("{}{}{}",
2561                             VisSpace(&it.visibility),
2562                             if structhead {"struct "} else {""},
2563                             it.name.as_ref().unwrap()));
2564     if let Some(g) = g {
2565         plain.push_str(&format!("{:#}", g));
2566         write!(w, "{}", g)?
2567     }
2568     match ty {
2569         doctree::Plain => {
2570             if let Some(g) = g {
2571                 write!(w, "{}", WhereClause(g, plain.len() + 1))?
2572             }
2573             let mut has_visible_fields = false;
2574             write!(w, " {{")?;
2575             for field in fields {
2576                 if let clean::StructFieldItem(ref ty) = field.inner {
2577                     write!(w, "\n{}    {}{}: {},",
2578                            tab,
2579                            VisSpace(&field.visibility),
2580                            field.name.as_ref().unwrap(),
2581                            *ty)?;
2582                     has_visible_fields = true;
2583                 }
2584             }
2585
2586             if has_visible_fields {
2587                 if it.has_stripped_fields().unwrap() {
2588                     write!(w, "\n{}    // some fields omitted", tab)?;
2589                 }
2590                 write!(w, "\n{}", tab)?;
2591             } else if it.has_stripped_fields().unwrap() {
2592                 // If there are no visible fields we can just display
2593                 // `{ /* fields omitted */ }` to save space.
2594                 write!(w, " /* fields omitted */ ")?;
2595             }
2596             write!(w, "}}")?;
2597         }
2598         doctree::Tuple => {
2599             write!(w, "(")?;
2600             plain.push_str("(");
2601             for (i, field) in fields.iter().enumerate() {
2602                 if i > 0 {
2603                     write!(w, ", ")?;
2604                     plain.push_str(", ");
2605                 }
2606                 match field.inner {
2607                     clean::StrippedItem(box clean::StructFieldItem(..)) => {
2608                         plain.push_str("_");
2609                         write!(w, "_")?
2610                     }
2611                     clean::StructFieldItem(ref ty) => {
2612                         plain.push_str(&format!("{}{:#}", VisSpace(&field.visibility), *ty));
2613                         write!(w, "{}{}", VisSpace(&field.visibility), *ty)?
2614                     }
2615                     _ => unreachable!()
2616                 }
2617             }
2618             write!(w, ")")?;
2619             plain.push_str(")");
2620             if let Some(g) = g {
2621                 write!(w, "{}", WhereClause(g, plain.len() + 1))?
2622             }
2623             write!(w, ";")?;
2624         }
2625         doctree::Unit => {
2626             // Needed for PhantomData.
2627             if let Some(g) = g {
2628                 write!(w, "{}", WhereClause(g, plain.len() + 1))?
2629             }
2630             write!(w, ";")?;
2631         }
2632     }
2633     Ok(())
2634 }
2635
2636 fn render_union(w: &mut fmt::Formatter, it: &clean::Item,
2637                 g: Option<&clean::Generics>,
2638                 fields: &[clean::Item],
2639                 tab: &str,
2640                 structhead: bool) -> fmt::Result {
2641     let mut plain = String::new();
2642     write!(w, "{}{}{}",
2643            VisSpace(&it.visibility),
2644            if structhead {"union "} else {""},
2645            it.name.as_ref().unwrap())?;
2646     plain.push_str(&format!("{}{}{}",
2647                             VisSpace(&it.visibility),
2648                             if structhead {"union "} else {""},
2649                             it.name.as_ref().unwrap()));
2650     if let Some(g) = g {
2651         write!(w, "{}", g)?;
2652         plain.push_str(&format!("{:#}", g));
2653         write!(w, "{}", WhereClause(g, plain.len() + 1))?;
2654     }
2655
2656     write!(w, " {{\n{}", tab)?;
2657     for field in fields {
2658         if let clean::StructFieldItem(ref ty) = field.inner {
2659             write!(w, "    {}{}: {},\n{}",
2660                    VisSpace(&field.visibility),
2661                    field.name.as_ref().unwrap(),
2662                    *ty,
2663                    tab)?;
2664         }
2665     }
2666
2667     if it.has_stripped_fields().unwrap() {
2668         write!(w, "    // some fields omitted\n{}", tab)?;
2669     }
2670     write!(w, "}}")?;
2671     Ok(())
2672 }
2673
2674 #[derive(Copy, Clone)]
2675 enum AssocItemLink<'a> {
2676     Anchor(Option<&'a str>),
2677     GotoSource(DefId, &'a FxHashSet<String>),
2678 }
2679
2680 impl<'a> AssocItemLink<'a> {
2681     fn anchor(&self, id: &'a String) -> Self {
2682         match *self {
2683             AssocItemLink::Anchor(_) => { AssocItemLink::Anchor(Some(&id)) },
2684             ref other => *other,
2685         }
2686     }
2687 }
2688
2689 enum AssocItemRender<'a> {
2690     All,
2691     DerefFor { trait_: &'a clean::Type, type_: &'a clean::Type, deref_mut_: bool }
2692 }
2693
2694 #[derive(Copy, Clone, PartialEq)]
2695 enum RenderMode {
2696     Normal,
2697     ForDeref { mut_: bool },
2698 }
2699
2700 fn render_assoc_items(w: &mut fmt::Formatter,
2701                       cx: &Context,
2702                       containing_item: &clean::Item,
2703                       it: DefId,
2704                       what: AssocItemRender) -> fmt::Result {
2705     let c = cache();
2706     let v = match c.impls.get(&it) {
2707         Some(v) => v,
2708         None => return Ok(()),
2709     };
2710     let (non_trait, traits): (Vec<_>, _) = v.iter().partition(|i| {
2711         i.inner_impl().trait_.is_none()
2712     });
2713     if !non_trait.is_empty() {
2714         let render_mode = match what {
2715             AssocItemRender::All => {
2716                 write!(w, "<h2 id='methods'>Methods</h2>")?;
2717                 RenderMode::Normal
2718             }
2719             AssocItemRender::DerefFor { trait_, type_, deref_mut_ } => {
2720                 write!(w, "<h2 id='deref-methods'>Methods from \
2721                                {}&lt;Target={}&gt;</h2>", trait_, type_)?;
2722                 RenderMode::ForDeref { mut_: deref_mut_ }
2723             }
2724         };
2725         for i in &non_trait {
2726             render_impl(w, cx, i, AssocItemLink::Anchor(None), render_mode,
2727                         containing_item.stable_since())?;
2728         }
2729     }
2730     if let AssocItemRender::DerefFor { .. } = what {
2731         return Ok(());
2732     }
2733     if !traits.is_empty() {
2734         let deref_impl = traits.iter().find(|t| {
2735             t.inner_impl().trait_.def_id() == c.deref_trait_did
2736         });
2737         if let Some(impl_) = deref_impl {
2738             let has_deref_mut = traits.iter().find(|t| {
2739                 t.inner_impl().trait_.def_id() == c.deref_mut_trait_did
2740             }).is_some();
2741             render_deref_methods(w, cx, impl_, containing_item, has_deref_mut)?;
2742         }
2743         write!(w, "<h2 id='implementations'>Trait \
2744                    Implementations</h2>")?;
2745         for i in &traits {
2746             let did = i.trait_did().unwrap();
2747             let assoc_link = AssocItemLink::GotoSource(did, &i.inner_impl().provided_trait_methods);
2748             render_impl(w, cx, i, assoc_link,
2749                         RenderMode::Normal, containing_item.stable_since())?;
2750         }
2751     }
2752     Ok(())
2753 }
2754
2755 fn render_deref_methods(w: &mut fmt::Formatter, cx: &Context, impl_: &Impl,
2756                         container_item: &clean::Item, deref_mut: bool) -> fmt::Result {
2757     let deref_type = impl_.inner_impl().trait_.as_ref().unwrap();
2758     let target = impl_.inner_impl().items.iter().filter_map(|item| {
2759         match item.inner {
2760             clean::TypedefItem(ref t, true) => Some(&t.type_),
2761             _ => None,
2762         }
2763     }).next().expect("Expected associated type binding");
2764     let what = AssocItemRender::DerefFor { trait_: deref_type, type_: target,
2765                                            deref_mut_: deref_mut };
2766     if let Some(did) = target.def_id() {
2767         render_assoc_items(w, cx, container_item, did, what)
2768     } else {
2769         if let Some(prim) = target.primitive_type() {
2770             if let Some(&did) = cache().primitive_locations.get(&prim) {
2771                 render_assoc_items(w, cx, container_item, did, what)?;
2772             }
2773         }
2774         Ok(())
2775     }
2776 }
2777
2778 fn render_impl(w: &mut fmt::Formatter, cx: &Context, i: &Impl, link: AssocItemLink,
2779                render_mode: RenderMode, outer_version: Option<&str>) -> fmt::Result {
2780     if render_mode == RenderMode::Normal {
2781         write!(w, "<h3 class='impl'><span class='in-band'><code>{}</code>", i.inner_impl())?;
2782         write!(w, "</span><span class='out-of-band'>")?;
2783         let since = i.impl_item.stability.as_ref().map(|s| &s.since[..]);
2784         if let Some(l) = (Item { item: &i.impl_item, cx: cx }).src_href() {
2785             write!(w, "<div class='ghost'></div>")?;
2786             render_stability_since_raw(w, since, outer_version)?;
2787             write!(w, "<a class='srclink' href='{}' title='{}'>[src]</a>",
2788                    l, "goto source code")?;
2789         } else {
2790             render_stability_since_raw(w, since, outer_version)?;
2791         }
2792         write!(w, "</span>")?;
2793         write!(w, "</h3>\n")?;
2794         if let Some(ref dox) = i.impl_item.doc_value() {
2795             write!(w, "<div class='docblock'>{}</div>", Markdown(dox))?;
2796         }
2797     }
2798
2799     fn doc_impl_item(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item,
2800                      link: AssocItemLink, render_mode: RenderMode,
2801                      is_default_item: bool, outer_version: Option<&str>,
2802                      trait_: Option<&clean::Trait>) -> fmt::Result {
2803         let item_type = item.type_();
2804         let name = item.name.as_ref().unwrap();
2805
2806         let render_method_item: bool = match render_mode {
2807             RenderMode::Normal => true,
2808             RenderMode::ForDeref { mut_: deref_mut_ } => {
2809                 let self_type_opt = match item.inner {
2810                     clean::MethodItem(ref method) => method.decl.self_type(),
2811                     clean::TyMethodItem(ref method) => method.decl.self_type(),
2812                     _ => None
2813                 };
2814
2815                 if let Some(self_ty) = self_type_opt {
2816                     let by_mut_ref = match self_ty {
2817                         SelfTy::SelfBorrowed(_lifetime, mutability) => {
2818                             mutability == Mutability::Mutable
2819                         },
2820                         SelfTy::SelfExplicit(clean::BorrowedRef { mutability, .. }) => {
2821                             mutability == Mutability::Mutable
2822                         },
2823                         _ => false,
2824                     };
2825
2826                     deref_mut_ || !by_mut_ref
2827                 } else {
2828                     false
2829                 }
2830             },
2831         };
2832
2833         match item.inner {
2834             clean::MethodItem(..) | clean::TyMethodItem(..) => {
2835                 // Only render when the method is not static or we allow static methods
2836                 if render_method_item {
2837                     let id = derive_id(format!("{}.{}", item_type, name));
2838                     let ns_id = derive_id(format!("{}.{}", name, item_type.name_space()));
2839                     write!(w, "<h4 id='{}' class='{}'>", id, item_type)?;
2840                     write!(w, "<span id='{}' class='invisible'>", ns_id)?;
2841                     write!(w, "<code>")?;
2842                     render_assoc_item(w, item, link.anchor(&id), ItemType::Impl)?;
2843                     write!(w, "</code>")?;
2844                     render_stability_since_raw(w, item.stable_since(), outer_version)?;
2845                     write!(w, "</span></h4>\n")?;
2846                 }
2847             }
2848             clean::TypedefItem(ref tydef, _) => {
2849                 let id = derive_id(format!("{}.{}", ItemType::AssociatedType, name));
2850                 let ns_id = derive_id(format!("{}.{}", name, item_type.name_space()));
2851                 write!(w, "<h4 id='{}' class='{}'>", id, item_type)?;
2852                 write!(w, "<span id='{}' class='invisible'><code>", ns_id)?;
2853                 assoc_type(w, item, &Vec::new(), Some(&tydef.type_), link.anchor(&id))?;
2854                 write!(w, "</code></span></h4>\n")?;
2855             }
2856             clean::AssociatedConstItem(ref ty, ref default) => {
2857                 let id = derive_id(format!("{}.{}", item_type, name));
2858                 let ns_id = derive_id(format!("{}.{}", name, item_type.name_space()));
2859                 write!(w, "<h4 id='{}' class='{}'>", id, item_type)?;
2860                 write!(w, "<span id='{}' class='invisible'><code>", ns_id)?;
2861                 assoc_const(w, item, ty, default.as_ref(), link.anchor(&id))?;
2862                 write!(w, "</code></span></h4>\n")?;
2863             }
2864             clean::ConstantItem(ref c) => {
2865                 let id = derive_id(format!("{}.{}", item_type, name));
2866                 let ns_id = derive_id(format!("{}.{}", name, item_type.name_space()));
2867                 write!(w, "<h4 id='{}' class='{}'>", id, item_type)?;
2868                 write!(w, "<span id='{}' class='invisible'><code>", ns_id)?;
2869                 assoc_const(w, item, &c.type_, Some(&c.expr), link.anchor(&id))?;
2870                 write!(w, "</code></span></h4>\n")?;
2871             }
2872             clean::AssociatedTypeItem(ref bounds, ref default) => {
2873                 let id = derive_id(format!("{}.{}", item_type, name));
2874                 let ns_id = derive_id(format!("{}.{}", name, item_type.name_space()));
2875                 write!(w, "<h4 id='{}' class='{}'>", id, item_type)?;
2876                 write!(w, "<span id='{}' class='invisible'><code>", ns_id)?;
2877                 assoc_type(w, item, bounds, default.as_ref(), link.anchor(&id))?;
2878                 write!(w, "</code></span></h4>\n")?;
2879             }
2880             clean::StrippedItem(..) => return Ok(()),
2881             _ => panic!("can't make docs for trait item with name {:?}", item.name)
2882         }
2883
2884         if render_method_item || render_mode == RenderMode::Normal {
2885             if !is_default_item {
2886                 if let Some(t) = trait_ {
2887                     // The trait item may have been stripped so we might not
2888                     // find any documentation or stability for it.
2889                     if let Some(it) = t.items.iter().find(|i| i.name == item.name) {
2890                         // We need the stability of the item from the trait
2891                         // because impls can't have a stability.
2892                         document_stability(w, cx, it)?;
2893                         if item.doc_value().is_some() {
2894                             document_full(w, item)?;
2895                         } else {
2896                             // In case the item isn't documented,
2897                             // provide short documentation from the trait.
2898                             document_short(w, it, link)?;
2899                         }
2900                     }
2901                 } else {
2902                     document(w, cx, item)?;
2903                 }
2904             } else {
2905                 document_stability(w, cx, item)?;
2906                 document_short(w, item, link)?;
2907             }
2908         }
2909         Ok(())
2910     }
2911
2912     let traits = &cache().traits;
2913     let trait_ = i.trait_did().and_then(|did| traits.get(&did));
2914
2915     write!(w, "<div class='impl-items'>")?;
2916     for trait_item in &i.inner_impl().items {
2917         doc_impl_item(w, cx, trait_item, link, render_mode,
2918                       false, outer_version, trait_)?;
2919     }
2920
2921     fn render_default_items(w: &mut fmt::Formatter,
2922                             cx: &Context,
2923                             t: &clean::Trait,
2924                             i: &clean::Impl,
2925                             render_mode: RenderMode,
2926                             outer_version: Option<&str>) -> fmt::Result {
2927         for trait_item in &t.items {
2928             let n = trait_item.name.clone();
2929             if i.items.iter().find(|m| m.name == n).is_some() {
2930                 continue;
2931             }
2932             let did = i.trait_.as_ref().unwrap().def_id().unwrap();
2933             let assoc_link = AssocItemLink::GotoSource(did, &i.provided_trait_methods);
2934
2935             doc_impl_item(w, cx, trait_item, assoc_link, render_mode, true,
2936                           outer_version, None)?;
2937         }
2938         Ok(())
2939     }
2940
2941     // If we've implemented a trait, then also emit documentation for all
2942     // default items which weren't overridden in the implementation block.
2943     if let Some(t) = trait_ {
2944         render_default_items(w, cx, t, &i.inner_impl(), render_mode, outer_version)?;
2945     }
2946     write!(w, "</div>")?;
2947     Ok(())
2948 }
2949
2950 fn item_typedef(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
2951                 t: &clean::Typedef) -> fmt::Result {
2952     let indent = format!("type {}{:#} ", it.name.as_ref().unwrap(), t.generics).len();
2953     write!(w, "<pre class='rust typedef'>type {}{}{where_clause} = {type_};</pre>",
2954            it.name.as_ref().unwrap(),
2955            t.generics,
2956            where_clause = WhereClause(&t.generics, indent),
2957            type_ = t.type_)?;
2958
2959     document(w, cx, it)
2960 }
2961
2962 impl<'a> fmt::Display for Sidebar<'a> {
2963     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
2964         let cx = self.cx;
2965         let it = self.item;
2966         let parentlen = cx.current.len() - if it.is_mod() {1} else {0};
2967
2968         // The sidebar is designed to display sibling functions, modules and
2969         // other miscellaneous information. since there are lots of sibling
2970         // items (and that causes quadratic growth in large modules),
2971         // we refactor common parts into a shared JavaScript file per module.
2972         // still, we don't move everything into JS because we want to preserve
2973         // as much HTML as possible in order to allow non-JS-enabled browsers
2974         // to navigate the documentation (though slightly inefficiently).
2975
2976         write!(fmt, "<p class='location'>")?;
2977         for (i, name) in cx.current.iter().take(parentlen).enumerate() {
2978             if i > 0 {
2979                 write!(fmt, "::<wbr>")?;
2980             }
2981             write!(fmt, "<a href='{}index.html'>{}</a>",
2982                    &cx.root_path()[..(cx.current.len() - i - 1) * 3],
2983                    *name)?;
2984         }
2985         write!(fmt, "</p>")?;
2986
2987         // Sidebar refers to the enclosing module, not this module.
2988         let relpath = if it.is_mod() { "../" } else { "" };
2989         write!(fmt,
2990                "<script>window.sidebarCurrent = {{\
2991                    name: '{name}', \
2992                    ty: '{ty}', \
2993                    relpath: '{path}'\
2994                 }};</script>",
2995                name = it.name.as_ref().map(|x| &x[..]).unwrap_or(""),
2996                ty = it.type_().css_class(),
2997                path = relpath)?;
2998         if parentlen == 0 {
2999             // There is no sidebar-items.js beyond the crate root path
3000             // FIXME maybe dynamic crate loading can be merged here
3001         } else {
3002             write!(fmt, "<script defer src=\"{path}sidebar-items.js\"></script>",
3003                    path = relpath)?;
3004         }
3005
3006         Ok(())
3007     }
3008 }
3009
3010 impl<'a> fmt::Display for Source<'a> {
3011     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
3012         let Source(s) = *self;
3013         let lines = s.lines().count();
3014         let mut cols = 0;
3015         let mut tmp = lines;
3016         while tmp > 0 {
3017             cols += 1;
3018             tmp /= 10;
3019         }
3020         write!(fmt, "<pre class=\"line-numbers\">")?;
3021         for i in 1..lines + 1 {
3022             write!(fmt, "<span id=\"{0}\">{0:1$}</span>\n", i, cols)?;
3023         }
3024         write!(fmt, "</pre>")?;
3025         write!(fmt, "{}", highlight::render_with_highlighting(s, None, None, None))?;
3026         Ok(())
3027     }
3028 }
3029
3030 fn item_macro(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
3031               t: &clean::Macro) -> fmt::Result {
3032     w.write_str(&highlight::render_with_highlighting(&t.source,
3033                                                      Some("macro"),
3034                                                      None,
3035                                                      None))?;
3036     document(w, cx, it)
3037 }
3038
3039 fn item_primitive(w: &mut fmt::Formatter, cx: &Context,
3040                   it: &clean::Item,
3041                   _p: &clean::PrimitiveType) -> fmt::Result {
3042     document(w, cx, it)?;
3043     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3044 }
3045
3046 const BASIC_KEYWORDS: &'static str = "rust, rustlang, rust-lang";
3047
3048 fn make_item_keywords(it: &clean::Item) -> String {
3049     format!("{}, {}", BASIC_KEYWORDS, it.name.as_ref().unwrap())
3050 }
3051
3052 fn get_index_search_type(item: &clean::Item) -> Option<IndexItemFunctionType> {
3053     let decl = match item.inner {
3054         clean::FunctionItem(ref f) => &f.decl,
3055         clean::MethodItem(ref m) => &m.decl,
3056         clean::TyMethodItem(ref m) => &m.decl,
3057         _ => return None
3058     };
3059
3060     let inputs = decl.inputs.values.iter().map(|arg| get_index_type(&arg.type_)).collect();
3061     let output = match decl.output {
3062         clean::FunctionRetTy::Return(ref return_type) => Some(get_index_type(return_type)),
3063         _ => None
3064     };
3065
3066     Some(IndexItemFunctionType { inputs: inputs, output: output })
3067 }
3068
3069 fn get_index_type(clean_type: &clean::Type) -> Type {
3070     Type { name: get_index_type_name(clean_type).map(|s| s.to_ascii_lowercase()) }
3071 }
3072
3073 fn get_index_type_name(clean_type: &clean::Type) -> Option<String> {
3074     match *clean_type {
3075         clean::ResolvedPath { ref path, .. } => {
3076             let segments = &path.segments;
3077             Some(segments[segments.len() - 1].name.clone())
3078         },
3079         clean::Generic(ref s) => Some(s.clone()),
3080         clean::Primitive(ref p) => Some(format!("{:?}", p)),
3081         clean::BorrowedRef { ref type_, .. } => get_index_type_name(type_),
3082         // FIXME: add all from clean::Type.
3083         _ => None
3084     }
3085 }
3086
3087 pub fn cache() -> Arc<Cache> {
3088     CACHE_KEY.with(|c| c.borrow().clone())
3089 }
3090
3091 #[cfg(test)]
3092 #[test]
3093 fn test_unique_id() {
3094     let input = ["foo", "examples", "examples", "method.into_iter","examples",
3095                  "method.into_iter", "foo", "main", "search", "methods",
3096                  "examples", "method.into_iter", "assoc_type.Item", "assoc_type.Item"];
3097     let expected = ["foo", "examples", "examples-1", "method.into_iter", "examples-2",
3098                     "method.into_iter-1", "foo-1", "main-1", "search-1", "methods-1",
3099                     "examples-3", "method.into_iter-2", "assoc_type.Item", "assoc_type.Item-1"];
3100
3101     let test = || {
3102         let actual: Vec<String> = input.iter().map(|s| derive_id(s.to_string())).collect();
3103         assert_eq!(&actual[..], expected);
3104     };
3105     test();
3106     reset_ids(true);
3107     test();
3108 }