]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/render/context.rs
Rollup merge of #84460 - jyn514:doctree-is-crate, r=camelid
[rust.git] / src / librustdoc / html / render / context.rs
1 use std::cell::RefCell;
2 use std::collections::BTreeMap;
3 use std::io;
4 use std::path::{Path, PathBuf};
5 use std::rc::Rc;
6 use std::sync::mpsc::{channel, Receiver};
7
8 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
9 use rustc_hir::def_id::{DefId, LOCAL_CRATE};
10 use rustc_middle::ty::TyCtxt;
11 use rustc_session::Session;
12 use rustc_span::edition::Edition;
13 use rustc_span::source_map::FileName;
14 use rustc_span::symbol::sym;
15
16 use super::cache::{build_index, ExternalLocation};
17 use super::print_item::{full_path, item_path, print_item};
18 use super::write_shared::write_shared;
19 use super::{print_sidebar, settings, AllTypes, NameDoc, StylePath, BASIC_KEYWORDS};
20
21 use crate::clean::{self, AttributesExt};
22 use crate::config::RenderOptions;
23 use crate::docfs::{DocFS, PathError};
24 use crate::error::Error;
25 use crate::formats::cache::Cache;
26 use crate::formats::item_type::ItemType;
27 use crate::formats::FormatRenderer;
28 use crate::html::escape::Escape;
29 use crate::html::format::Buffer;
30 use crate::html::markdown::{self, plain_text_summary, ErrorCodes, IdMap};
31 use crate::html::{layout, sources};
32
33 /// Major driving force in all rustdoc rendering. This contains information
34 /// about where in the tree-like hierarchy rendering is occurring and controls
35 /// how the current page is being rendered.
36 ///
37 /// It is intended that this context is a lightweight object which can be fairly
38 /// easily cloned because it is cloned per work-job (about once per item in the
39 /// rustdoc tree).
40 crate struct Context<'tcx> {
41     /// Current hierarchy of components leading down to what's currently being
42     /// rendered
43     pub(crate) current: Vec<String>,
44     /// The current destination folder of where HTML artifacts should be placed.
45     /// This changes as the context descends into the module hierarchy.
46     pub(super) dst: PathBuf,
47     /// A flag, which when `true`, will render pages which redirect to the
48     /// real location of an item. This is used to allow external links to
49     /// publicly reused items to redirect to the right location.
50     pub(super) render_redirect_pages: bool,
51     /// The map used to ensure all generated 'id=' attributes are unique.
52     pub(super) id_map: RefCell<IdMap>,
53     /// Tracks section IDs for `Deref` targets so they match in both the main
54     /// body and the sidebar.
55     pub(super) deref_id_map: RefCell<FxHashMap<DefId, String>>,
56     /// Shared mutable state.
57     ///
58     /// Issue for improving the situation: [#82381][]
59     ///
60     /// [#82381]: https://github.com/rust-lang/rust/issues/82381
61     pub(super) shared: Rc<SharedContext<'tcx>>,
62     /// The [`Cache`] used during rendering.
63     ///
64     /// Ideally the cache would be in [`SharedContext`], but it's mutated
65     /// between when the `SharedContext` is created and when `Context`
66     /// is created, so more refactoring would be needed.
67     ///
68     /// It's immutable once in `Context`, so it's not as bad that it's not in
69     /// `SharedContext`.
70     // FIXME: move `cache` to `SharedContext`
71     pub(super) cache: Rc<Cache>,
72 }
73
74 // `Context` is cloned a lot, so we don't want the size to grow unexpectedly.
75 #[cfg(target_arch = "x86_64")]
76 rustc_data_structures::static_assert_size!(Context<'_>, 152);
77
78 /// Shared mutable state used in [`Context`] and elsewhere.
79 crate struct SharedContext<'tcx> {
80     crate tcx: TyCtxt<'tcx>,
81     /// The path to the crate root source minus the file name.
82     /// Used for simplifying paths to the highlighted source code files.
83     crate src_root: PathBuf,
84     /// This describes the layout of each page, and is not modified after
85     /// creation of the context (contains info like the favicon and added html).
86     crate layout: layout::Layout,
87     /// This flag indicates whether `[src]` links should be generated or not. If
88     /// the source files are present in the html rendering, then this will be
89     /// `true`.
90     crate include_sources: bool,
91     /// The local file sources we've emitted and their respective url-paths.
92     crate local_sources: FxHashMap<PathBuf, String>,
93     /// Whether the collapsed pass ran
94     collapsed: bool,
95     /// The base-URL of the issue tracker for when an item has been tagged with
96     /// an issue number.
97     pub(super) issue_tracker_base_url: Option<String>,
98     /// The directories that have already been created in this doc run. Used to reduce the number
99     /// of spurious `create_dir_all` calls.
100     created_dirs: RefCell<FxHashSet<PathBuf>>,
101     /// This flag indicates whether listings of modules (in the side bar and documentation itself)
102     /// should be ordered alphabetically or in order of appearance (in the source code).
103     pub(super) sort_modules_alphabetically: bool,
104     /// Additional CSS files to be added to the generated docs.
105     crate style_files: Vec<StylePath>,
106     /// Suffix to be added on resource files (if suffix is "-v2" then "light.css" becomes
107     /// "light-v2.css").
108     crate resource_suffix: String,
109     /// Optional path string to be used to load static files on output pages. If not set, uses
110     /// combinations of `../` to reach the documentation root.
111     crate static_root_path: Option<String>,
112     /// The fs handle we are working with.
113     crate fs: DocFS,
114     pub(super) codes: ErrorCodes,
115     pub(super) playground: Option<markdown::Playground>,
116     all: RefCell<AllTypes>,
117     /// Storage for the errors produced while generating documentation so they
118     /// can be printed together at the end.
119     errors: Receiver<String>,
120     /// `None` by default, depends on the `generate-redirect-map` option flag. If this field is set
121     /// to `Some(...)`, it'll store redirections and then generate a JSON file at the top level of
122     /// the crate.
123     redirections: Option<RefCell<FxHashMap<String, String>>>,
124 }
125
126 impl SharedContext<'_> {
127     crate fn ensure_dir(&self, dst: &Path) -> Result<(), Error> {
128         let mut dirs = self.created_dirs.borrow_mut();
129         if !dirs.contains(dst) {
130             try_err!(self.fs.create_dir_all(dst), dst);
131             dirs.insert(dst.to_path_buf());
132         }
133
134         Ok(())
135     }
136
137     /// Based on whether the `collapse-docs` pass was run, return either the `doc_value` or the
138     /// `collapsed_doc_value` of the given item.
139     crate fn maybe_collapsed_doc_value<'a>(&self, item: &'a clean::Item) -> Option<String> {
140         if self.collapsed { item.collapsed_doc_value() } else { item.doc_value() }
141     }
142
143     crate fn edition(&self) -> Edition {
144         self.tcx.sess.edition()
145     }
146 }
147
148 impl<'tcx> Context<'tcx> {
149     pub(crate) fn tcx(&self) -> TyCtxt<'tcx> {
150         self.shared.tcx
151     }
152
153     pub(crate) fn cache(&self) -> &Cache {
154         &self.cache
155     }
156
157     fn sess(&self) -> &'tcx Session {
158         &self.shared.tcx.sess
159     }
160
161     pub(super) fn derive_id(&self, id: String) -> String {
162         let mut map = self.id_map.borrow_mut();
163         map.derive(id)
164     }
165
166     /// String representation of how to get back to the root path of the 'doc/'
167     /// folder in terms of a relative URL.
168     pub(super) fn root_path(&self) -> String {
169         "../".repeat(self.current.len())
170     }
171
172     fn render_item(&self, it: &clean::Item, is_module: bool) -> String {
173         let mut title = String::new();
174         if !is_module {
175             title.push_str(&it.name.unwrap().as_str());
176         }
177         if !it.is_primitive() && !it.is_keyword() {
178             if !is_module {
179                 title.push_str(" in ");
180             }
181             // No need to include the namespace for primitive types and keywords
182             title.push_str(&self.current.join("::"));
183         };
184         title.push_str(" - Rust");
185         let tyname = it.type_();
186         let desc = it.doc_value().as_ref().map(|doc| plain_text_summary(&doc));
187         let desc = if let Some(desc) = desc {
188             desc
189         } else if it.is_crate() {
190             format!("API documentation for the Rust `{}` crate.", self.shared.layout.krate)
191         } else {
192             format!(
193                 "API documentation for the Rust `{}` {} in crate `{}`.",
194                 it.name.as_ref().unwrap(),
195                 tyname,
196                 self.shared.layout.krate
197             )
198         };
199         let keywords = make_item_keywords(it);
200         let page = layout::Page {
201             css_class: tyname.as_str(),
202             root_path: &self.root_path(),
203             static_root_path: self.shared.static_root_path.as_deref(),
204             title: &title,
205             description: &desc,
206             keywords: &keywords,
207             resource_suffix: &self.shared.resource_suffix,
208             extra_scripts: &[],
209             static_extra_scripts: &[],
210         };
211
212         if !self.render_redirect_pages {
213             layout::render(
214                 &self.shared.layout,
215                 &page,
216                 |buf: &mut _| print_sidebar(self, it, buf),
217                 |buf: &mut _| print_item(self, it, buf),
218                 &self.shared.style_files,
219             )
220         } else {
221             if let Some(&(ref names, ty)) = self.cache.paths.get(&it.def_id) {
222                 let mut path = String::new();
223                 for name in &names[..names.len() - 1] {
224                     path.push_str(name);
225                     path.push('/');
226                 }
227                 path.push_str(&item_path(ty, names.last().unwrap()));
228                 match self.shared.redirections {
229                     Some(ref redirections) => {
230                         let mut current_path = String::new();
231                         for name in &self.current {
232                             current_path.push_str(name);
233                             current_path.push('/');
234                         }
235                         current_path.push_str(&item_path(ty, names.last().unwrap()));
236                         redirections.borrow_mut().insert(current_path, path);
237                     }
238                     None => return layout::redirect(&format!("{}{}", self.root_path(), path)),
239                 }
240             }
241             String::new()
242         }
243     }
244
245     /// Construct a map of items shown in the sidebar to a plain-text summary of their docs.
246     fn build_sidebar_items(&self, m: &clean::Module) -> BTreeMap<String, Vec<NameDoc>> {
247         // BTreeMap instead of HashMap to get a sorted output
248         let mut map: BTreeMap<_, Vec<_>> = BTreeMap::new();
249         for item in &m.items {
250             if item.is_stripped() {
251                 continue;
252             }
253
254             let short = item.type_();
255             let myname = match item.name {
256                 None => continue,
257                 Some(ref s) => s.to_string(),
258             };
259             let short = short.to_string();
260             map.entry(short).or_default().push((
261                 myname,
262                 Some(item.doc_value().map_or_else(String::new, |s| plain_text_summary(&s))),
263             ));
264         }
265
266         if self.shared.sort_modules_alphabetically {
267             for items in map.values_mut() {
268                 items.sort();
269             }
270         }
271         map
272     }
273
274     /// Generates a url appropriate for an `href` attribute back to the source of
275     /// this item.
276     ///
277     /// The url generated, when clicked, will redirect the browser back to the
278     /// original source code.
279     ///
280     /// If `None` is returned, then a source link couldn't be generated. This
281     /// may happen, for example, with externally inlined items where the source
282     /// of their crate documentation isn't known.
283     pub(super) fn src_href(&self, item: &clean::Item) -> Option<String> {
284         if item.span.is_dummy() {
285             return None;
286         }
287         let mut root = self.root_path();
288         let mut path = String::new();
289         let cnum = item.span.cnum(self.sess());
290
291         // We can safely ignore synthetic `SourceFile`s.
292         let file = match item.span.filename(self.sess()) {
293             FileName::Real(ref path) => path.local_path().to_path_buf(),
294             _ => return None,
295         };
296         let file = &file;
297
298         let symbol;
299         let (krate, path) = if cnum == LOCAL_CRATE {
300             if let Some(path) = self.shared.local_sources.get(file) {
301                 (self.shared.layout.krate.as_str(), path)
302             } else {
303                 return None;
304             }
305         } else {
306             let (krate, src_root) = match *self.cache.extern_locations.get(&cnum)? {
307                 (name, ref src, ExternalLocation::Local) => (name, src),
308                 (name, ref src, ExternalLocation::Remote(ref s)) => {
309                     root = s.to_string();
310                     (name, src)
311                 }
312                 (_, _, ExternalLocation::Unknown) => return None,
313             };
314
315             sources::clean_path(&src_root, file, false, |component| {
316                 path.push_str(&component.to_string_lossy());
317                 path.push('/');
318             });
319             let mut fname = file.file_name().expect("source has no filename").to_os_string();
320             fname.push(".html");
321             path.push_str(&fname.to_string_lossy());
322             symbol = krate.as_str();
323             (&*symbol, &path)
324         };
325
326         let loline = item.span.lo(self.sess()).line;
327         let hiline = item.span.hi(self.sess()).line;
328         let lines =
329             if loline == hiline { loline.to_string() } else { format!("{}-{}", loline, hiline) };
330         Some(format!(
331             "{root}src/{krate}/{path}#{lines}",
332             root = Escape(&root),
333             krate = krate,
334             path = path,
335             lines = lines
336         ))
337     }
338 }
339
340 /// Generates the documentation for `crate` into the directory `dst`
341 impl<'tcx> FormatRenderer<'tcx> for Context<'tcx> {
342     fn descr() -> &'static str {
343         "html"
344     }
345
346     const RUN_ON_MODULE: bool = true;
347
348     fn init(
349         mut krate: clean::Crate,
350         options: RenderOptions,
351         mut cache: Cache,
352         tcx: TyCtxt<'tcx>,
353     ) -> Result<(Self, clean::Crate), Error> {
354         // need to save a copy of the options for rendering the index page
355         let md_opts = options.clone();
356         let emit_crate = options.should_emit_crate();
357         let RenderOptions {
358             output,
359             external_html,
360             id_map,
361             playground_url,
362             sort_modules_alphabetically,
363             themes: style_files,
364             default_settings,
365             extension_css,
366             resource_suffix,
367             static_root_path,
368             generate_search_filter,
369             unstable_features,
370             generate_redirect_map,
371             ..
372         } = options;
373
374         let src_root = match krate.src {
375             FileName::Real(ref p) => match p.local_path().parent() {
376                 Some(p) => p.to_path_buf(),
377                 None => PathBuf::new(),
378             },
379             _ => PathBuf::new(),
380         };
381         // If user passed in `--playground-url` arg, we fill in crate name here
382         let mut playground = None;
383         if let Some(url) = playground_url {
384             playground =
385                 Some(markdown::Playground { crate_name: Some(krate.name.to_string()), url });
386         }
387         let mut layout = layout::Layout {
388             logo: String::new(),
389             favicon: String::new(),
390             external_html,
391             default_settings,
392             krate: krate.name.to_string(),
393             css_file_extension: extension_css,
394             generate_search_filter,
395         };
396         let mut issue_tracker_base_url = None;
397         let mut include_sources = true;
398
399         // Crawl the crate attributes looking for attributes which control how we're
400         // going to emit HTML
401         for attr in krate.module.attrs.lists(sym::doc) {
402             match (attr.name_or_empty(), attr.value_str()) {
403                 (sym::html_favicon_url, Some(s)) => {
404                     layout.favicon = s.to_string();
405                 }
406                 (sym::html_logo_url, Some(s)) => {
407                     layout.logo = s.to_string();
408                 }
409                 (sym::html_playground_url, Some(s)) => {
410                     playground = Some(markdown::Playground {
411                         crate_name: Some(krate.name.to_string()),
412                         url: s.to_string(),
413                     });
414                 }
415                 (sym::issue_tracker_base_url, Some(s)) => {
416                     issue_tracker_base_url = Some(s.to_string());
417                 }
418                 (sym::html_no_source, None) if attr.is_word() => {
419                     include_sources = false;
420                 }
421                 _ => {}
422             }
423         }
424         let (sender, receiver) = channel();
425         let mut scx = SharedContext {
426             tcx,
427             collapsed: krate.collapsed,
428             src_root,
429             include_sources,
430             local_sources: Default::default(),
431             issue_tracker_base_url,
432             layout,
433             created_dirs: Default::default(),
434             sort_modules_alphabetically,
435             style_files,
436             resource_suffix,
437             static_root_path,
438             fs: DocFS::new(sender),
439             codes: ErrorCodes::from(unstable_features.is_nightly_build()),
440             playground,
441             all: RefCell::new(AllTypes::new()),
442             errors: receiver,
443             redirections: if generate_redirect_map { Some(Default::default()) } else { None },
444         };
445
446         // Add the default themes to the `Vec` of stylepaths
447         //
448         // Note that these must be added before `sources::render` is called
449         // so that the resulting source pages are styled
450         //
451         // `light.css` is not disabled because it is the stylesheet that stays loaded
452         // by the browser as the theme stylesheet. The theme system (hackily) works by
453         // changing the href to this stylesheet. All other themes are disabled to
454         // prevent rule conflicts
455         scx.style_files.push(StylePath { path: PathBuf::from("light.css"), disabled: false });
456         scx.style_files.push(StylePath { path: PathBuf::from("dark.css"), disabled: true });
457         scx.style_files.push(StylePath { path: PathBuf::from("ayu.css"), disabled: true });
458
459         let dst = output;
460         scx.ensure_dir(&dst)?;
461         if emit_crate {
462             krate = sources::render(&dst, &mut scx, krate)?;
463         }
464
465         // Build our search index
466         let index = build_index(&krate, &mut cache, tcx);
467
468         let mut cx = Context {
469             current: Vec::new(),
470             dst,
471             render_redirect_pages: false,
472             id_map: RefCell::new(id_map),
473             deref_id_map: RefCell::new(FxHashMap::default()),
474             shared: Rc::new(scx),
475             cache: Rc::new(cache),
476         };
477
478         // Write shared runs within a flock; disable thread dispatching of IO temporarily.
479         Rc::get_mut(&mut cx.shared).unwrap().fs.set_sync_only(true);
480         write_shared(&cx, &krate, index, &md_opts)?;
481         Rc::get_mut(&mut cx.shared).unwrap().fs.set_sync_only(false);
482         Ok((cx, krate))
483     }
484
485     fn make_child_renderer(&self) -> Self {
486         Self {
487             current: self.current.clone(),
488             dst: self.dst.clone(),
489             render_redirect_pages: self.render_redirect_pages,
490             id_map: RefCell::new(IdMap::new()),
491             deref_id_map: RefCell::new(FxHashMap::default()),
492             shared: Rc::clone(&self.shared),
493             cache: Rc::clone(&self.cache),
494         }
495     }
496
497     fn after_krate(&mut self) -> Result<(), Error> {
498         let crate_name = self.tcx().crate_name(LOCAL_CRATE);
499         let final_file = self.dst.join(&*crate_name.as_str()).join("all.html");
500         let settings_file = self.dst.join("settings.html");
501
502         let mut root_path = self.dst.to_str().expect("invalid path").to_owned();
503         if !root_path.ends_with('/') {
504             root_path.push('/');
505         }
506         let mut page = layout::Page {
507             title: "List of all items in this crate",
508             css_class: "mod",
509             root_path: "../",
510             static_root_path: self.shared.static_root_path.as_deref(),
511             description: "List of all items in this crate",
512             keywords: BASIC_KEYWORDS,
513             resource_suffix: &self.shared.resource_suffix,
514             extra_scripts: &[],
515             static_extra_scripts: &[],
516         };
517         let sidebar = if let Some(ref version) = self.cache.crate_version {
518             format!(
519                 "<p class=\"location\">Crate {}</p>\
520                      <div class=\"block version\">\
521                          <p>Version {}</p>\
522                      </div>\
523                      <a id=\"all-types\" href=\"index.html\"><p>Back to index</p></a>",
524                 crate_name,
525                 Escape(version),
526             )
527         } else {
528             String::new()
529         };
530         let all = self.shared.all.replace(AllTypes::new());
531         let v = layout::render(
532             &self.shared.layout,
533             &page,
534             sidebar,
535             |buf: &mut Buffer| all.print(buf),
536             &self.shared.style_files,
537         );
538         self.shared.fs.write(final_file, v.as_bytes())?;
539
540         // Generating settings page.
541         page.title = "Rustdoc settings";
542         page.description = "Settings of Rustdoc";
543         page.root_path = "./";
544
545         let mut style_files = self.shared.style_files.clone();
546         let sidebar = "<p class=\"location\">Settings</p><div class=\"sidebar-elems\"></div>";
547         style_files.push(StylePath { path: PathBuf::from("settings.css"), disabled: false });
548         let v = layout::render(
549             &self.shared.layout,
550             &page,
551             sidebar,
552             settings(
553                 self.shared.static_root_path.as_deref().unwrap_or("./"),
554                 &self.shared.resource_suffix,
555                 &self.shared.style_files,
556             )?,
557             &style_files,
558         );
559         self.shared.fs.write(&settings_file, v.as_bytes())?;
560         if let Some(ref redirections) = self.shared.redirections {
561             if !redirections.borrow().is_empty() {
562                 let redirect_map_path =
563                     self.dst.join(&*crate_name.as_str()).join("redirect-map.json");
564                 let paths = serde_json::to_string(&*redirections.borrow()).unwrap();
565                 self.shared.ensure_dir(&self.dst.join(&*crate_name.as_str()))?;
566                 self.shared.fs.write(&redirect_map_path, paths.as_bytes())?;
567             }
568         }
569
570         // Flush pending errors.
571         Rc::get_mut(&mut self.shared).unwrap().fs.close();
572         let nb_errors =
573             self.shared.errors.iter().map(|err| self.tcx().sess.struct_err(&err).emit()).count();
574         if nb_errors > 0 {
575             Err(Error::new(io::Error::new(io::ErrorKind::Other, "I/O error"), ""))
576         } else {
577             Ok(())
578         }
579     }
580
581     fn mod_item_in(&mut self, item: &clean::Item) -> Result<(), Error> {
582         // Stripped modules survive the rustdoc passes (i.e., `strip-private`)
583         // if they contain impls for public types. These modules can also
584         // contain items such as publicly re-exported structures.
585         //
586         // External crates will provide links to these structures, so
587         // these modules are recursed into, but not rendered normally
588         // (a flag on the context).
589         if !self.render_redirect_pages {
590             self.render_redirect_pages = item.is_stripped();
591         }
592         let scx = &self.shared;
593         let item_name = item.name.as_ref().unwrap().to_string();
594         self.dst.push(&item_name);
595         self.current.push(item_name);
596
597         info!("Recursing into {}", self.dst.display());
598
599         let buf = self.render_item(item, true);
600         // buf will be empty if the module is stripped and there is no redirect for it
601         if !buf.is_empty() {
602             self.shared.ensure_dir(&self.dst)?;
603             let joint_dst = self.dst.join("index.html");
604             scx.fs.write(&joint_dst, buf.as_bytes())?;
605         }
606
607         // Render sidebar-items.js used throughout this module.
608         if !self.render_redirect_pages {
609             let module = match *item.kind {
610                 clean::StrippedItem(box clean::ModuleItem(ref m)) | clean::ModuleItem(ref m) => m,
611                 _ => unreachable!(),
612             };
613             let items = self.build_sidebar_items(module);
614             let js_dst = self.dst.join("sidebar-items.js");
615             let v = format!("initSidebarItems({});", serde_json::to_string(&items).unwrap());
616             scx.fs.write(&js_dst, &v)?;
617         }
618         Ok(())
619     }
620
621     fn mod_item_out(&mut self) -> Result<(), Error> {
622         info!("Recursed; leaving {}", self.dst.display());
623
624         // Go back to where we were at
625         self.dst.pop();
626         self.current.pop();
627         Ok(())
628     }
629
630     fn item(&mut self, item: clean::Item) -> Result<(), Error> {
631         // Stripped modules survive the rustdoc passes (i.e., `strip-private`)
632         // if they contain impls for public types. These modules can also
633         // contain items such as publicly re-exported structures.
634         //
635         // External crates will provide links to these structures, so
636         // these modules are recursed into, but not rendered normally
637         // (a flag on the context).
638         if !self.render_redirect_pages {
639             self.render_redirect_pages = item.is_stripped();
640         }
641
642         let buf = self.render_item(&item, false);
643         // buf will be empty if the item is stripped and there is no redirect for it
644         if !buf.is_empty() {
645             let name = item.name.as_ref().unwrap();
646             let item_type = item.type_();
647             let file_name = &item_path(item_type, &name.as_str());
648             self.shared.ensure_dir(&self.dst)?;
649             let joint_dst = self.dst.join(file_name);
650             self.shared.fs.write(&joint_dst, buf.as_bytes())?;
651
652             if !self.render_redirect_pages {
653                 self.shared.all.borrow_mut().append(full_path(self, &item), &item_type);
654             }
655             // If the item is a macro, redirect from the old macro URL (with !)
656             // to the new one (without).
657             if item_type == ItemType::Macro {
658                 let redir_name = format!("{}.{}!.html", item_type, name);
659                 if let Some(ref redirections) = self.shared.redirections {
660                     let crate_name = &self.shared.layout.krate;
661                     redirections.borrow_mut().insert(
662                         format!("{}/{}", crate_name, redir_name),
663                         format!("{}/{}", crate_name, file_name),
664                     );
665                 } else {
666                     let v = layout::redirect(file_name);
667                     let redir_dst = self.dst.join(redir_name);
668                     self.shared.fs.write(&redir_dst, v.as_bytes())?;
669                 }
670             }
671         }
672         Ok(())
673     }
674
675     fn cache(&self) -> &Cache {
676         &self.cache
677     }
678 }
679
680 fn make_item_keywords(it: &clean::Item) -> String {
681     format!("{}, {}", BASIC_KEYWORDS, it.name.as_ref().unwrap())
682 }