rustdoc/
scrape_examples.rs

1//! This module analyzes crates to find call sites that can serve as examples in the documentation.
2
3use std::fs;
4use std::path::PathBuf;
5
6use rustc_data_structures::fx::FxIndexMap;
7use rustc_errors::DiagCtxtHandle;
8use rustc_hir::intravisit::{self, Visitor};
9use rustc_hir::{self as hir};
10use rustc_macros::{Decodable, Encodable};
11use rustc_middle::hir::nested_filter;
12use rustc_middle::ty::{self, TyCtxt};
13use rustc_serialize::opaque::{FileEncoder, MemDecoder};
14use rustc_serialize::{Decodable, Encodable};
15use rustc_session::getopts;
16use rustc_span::def_id::{CrateNum, DefPathHash, LOCAL_CRATE};
17use rustc_span::edition::Edition;
18use rustc_span::{BytePos, FileName, SourceFile};
19use tracing::{debug, trace, warn};
20
21use crate::html::render::Context;
22use crate::{clean, config, formats};
23
24#[derive(Debug, Clone)]
25pub(crate) struct ScrapeExamplesOptions {
26    output_path: PathBuf,
27    target_crates: Vec<String>,
28    pub(crate) scrape_tests: bool,
29}
30
31impl ScrapeExamplesOptions {
32    pub(crate) fn new(matches: &getopts::Matches, dcx: DiagCtxtHandle<'_>) -> Option<Self> {
33        let output_path = matches.opt_str("scrape-examples-output-path");
34        let target_crates = matches.opt_strs("scrape-examples-target-crate");
35        let scrape_tests = matches.opt_present("scrape-tests");
36        match (output_path, !target_crates.is_empty(), scrape_tests) {
37            (Some(output_path), true, _) => Some(ScrapeExamplesOptions {
38                output_path: PathBuf::from(output_path),
39                target_crates,
40                scrape_tests,
41            }),
42            (Some(_), false, _) | (None, true, _) => {
43                dcx.fatal(
44                    "must use --scrape-examples-output-path and --scrape-examples-target-crate \
45                     together",
46                );
47            }
48            (None, false, true) => {
49                dcx.fatal(
50                    "must use --scrape-examples-output-path and \
51                     --scrape-examples-target-crate with --scrape-tests",
52                );
53            }
54            (None, false, false) => None,
55        }
56    }
57}
58
59#[derive(Encodable, Decodable, Debug, Clone)]
60pub(crate) struct SyntaxRange {
61    pub(crate) byte_span: (u32, u32),
62    pub(crate) line_span: (usize, usize),
63}
64
65impl SyntaxRange {
66    fn new(span: rustc_span::Span, file: &SourceFile) -> Option<Self> {
67        let get_pos = |bytepos: BytePos| file.original_relative_byte_pos(bytepos).0;
68        let get_line = |bytepos: BytePos| file.lookup_line(file.relative_position(bytepos));
69
70        Some(SyntaxRange {
71            byte_span: (get_pos(span.lo()), get_pos(span.hi())),
72            line_span: (get_line(span.lo())?, get_line(span.hi())?),
73        })
74    }
75}
76
77#[derive(Encodable, Decodable, Debug, Clone)]
78pub(crate) struct CallLocation {
79    pub(crate) call_expr: SyntaxRange,
80    pub(crate) call_ident: SyntaxRange,
81    pub(crate) enclosing_item: SyntaxRange,
82}
83
84impl CallLocation {
85    fn new(
86        expr_span: rustc_span::Span,
87        ident_span: rustc_span::Span,
88        enclosing_item_span: rustc_span::Span,
89        source_file: &SourceFile,
90    ) -> Option<Self> {
91        Some(CallLocation {
92            call_expr: SyntaxRange::new(expr_span, source_file)?,
93            call_ident: SyntaxRange::new(ident_span, source_file)?,
94            enclosing_item: SyntaxRange::new(enclosing_item_span, source_file)?,
95        })
96    }
97}
98
99#[derive(Encodable, Decodable, Debug, Clone)]
100pub(crate) struct CallData {
101    pub(crate) locations: Vec<CallLocation>,
102    pub(crate) url: String,
103    pub(crate) display_name: String,
104    pub(crate) edition: Edition,
105    pub(crate) is_bin: bool,
106}
107
108pub(crate) type FnCallLocations = FxIndexMap<PathBuf, CallData>;
109pub(crate) type AllCallLocations = FxIndexMap<DefPathHash, FnCallLocations>;
110
111/// Visitor for traversing a crate and finding instances of function calls.
112struct FindCalls<'a, 'tcx> {
113    cx: Context<'tcx>,
114    target_crates: Vec<CrateNum>,
115    calls: &'a mut AllCallLocations,
116    bin_crate: bool,
117}
118
119impl<'a, 'tcx> Visitor<'tcx> for FindCalls<'a, 'tcx>
120where
121    'tcx: 'a,
122{
123    type NestedFilter = nested_filter::OnlyBodies;
124
125    fn maybe_tcx(&mut self) -> Self::MaybeTyCtxt {
126        self.cx.tcx()
127    }
128
129    fn visit_expr(&mut self, ex: &'tcx hir::Expr<'tcx>) {
130        intravisit::walk_expr(self, ex);
131
132        let tcx = self.cx.tcx();
133
134        // If we visit an item that contains an expression outside a function body,
135        // then we need to exit before calling typeck (which will panic). See
136        // test/run-make/rustdoc-scrape-examples-invalid-expr for an example.
137        if tcx.hir_maybe_body_owned_by(ex.hir_id.owner.def_id).is_none() {
138            return;
139        }
140
141        // Get type of function if expression is a function call
142        let (ty, call_span, ident_span) = match ex.kind {
143            hir::ExprKind::Call(f, _) => {
144                let types = tcx.typeck(ex.hir_id.owner.def_id);
145
146                if let Some(ty) = types.node_type_opt(f.hir_id) {
147                    (ty, ex.span, f.span)
148                } else {
149                    trace!("node_type_opt({}) = None", f.hir_id);
150                    return;
151                }
152            }
153            hir::ExprKind::MethodCall(path, _, _, call_span) => {
154                let types = tcx.typeck(ex.hir_id.owner.def_id);
155                let Some(def_id) = types.type_dependent_def_id(ex.hir_id) else {
156                    trace!("type_dependent_def_id({}) = None", ex.hir_id);
157                    return;
158                };
159
160                let ident_span = path.ident.span;
161                (tcx.type_of(def_id).instantiate_identity(), call_span, ident_span)
162            }
163            _ => {
164                return;
165            }
166        };
167
168        // If this span comes from a macro expansion, then the source code may not actually show
169        // a use of the given item, so it would be a poor example. Hence, we skip all uses in
170        // macros.
171        if call_span.from_expansion() {
172            trace!("Rejecting expr from macro: {call_span:?}");
173            return;
174        }
175
176        // If the enclosing item has a span coming from a proc macro, then we also don't want to
177        // include the example.
178        let enclosing_item_span = tcx.hir_span_with_body(tcx.hir_get_parent_item(ex.hir_id).into());
179        if enclosing_item_span.from_expansion() {
180            trace!("Rejecting expr ({call_span:?}) from macro item: {enclosing_item_span:?}");
181            return;
182        }
183
184        // If the enclosing item doesn't actually enclose the call, this means we probably have a
185        // weird macro issue even though the spans aren't tagged as being from an expansion.
186        if !enclosing_item_span.contains(call_span) {
187            warn!(
188                "Attempted to scrape call at [{call_span:?}] whose enclosing item \
189                 [{enclosing_item_span:?}] doesn't contain the span of the call."
190            );
191            return;
192        }
193
194        // Similarly for the call w/ the function ident.
195        if !call_span.contains(ident_span) {
196            warn!(
197                "Attempted to scrape call at [{call_span:?}] whose identifier [{ident_span:?}] was \
198                 not contained in the span of the call."
199            );
200            return;
201        }
202
203        // Save call site if the function resolves to a concrete definition
204        if let ty::FnDef(def_id, _) = ty.kind() {
205            if self.target_crates.iter().all(|krate| *krate != def_id.krate) {
206                trace!("Rejecting expr from crate not being documented: {call_span:?}");
207                return;
208            }
209
210            let source_map = tcx.sess.source_map();
211            let file = source_map.lookup_char_pos(call_span.lo()).file;
212            let file_path = match file.name.clone() {
213                FileName::Real(real_filename) => real_filename.into_local_path(),
214                _ => None,
215            };
216
217            if let Some(file_path) = file_path {
218                let abs_path = match fs::canonicalize(file_path.clone()) {
219                    Ok(abs_path) => abs_path,
220                    Err(_) => {
221                        trace!("Could not canonicalize file path: {}", file_path.display());
222                        return;
223                    }
224                };
225
226                let cx = &self.cx;
227                let clean_span = crate::clean::types::Span::new(call_span);
228                let url = match cx.href_from_span(clean_span, false) {
229                    Some(url) => url,
230                    None => {
231                        trace!(
232                            "Rejecting expr ({call_span:?}) whose clean span ({clean_span:?}) \
233                             cannot be turned into a link"
234                        );
235                        return;
236                    }
237                };
238
239                let mk_call_data = || {
240                    let display_name = file_path.display().to_string();
241                    let edition = call_span.edition();
242                    let is_bin = self.bin_crate;
243
244                    CallData { locations: Vec::new(), url, display_name, edition, is_bin }
245                };
246
247                let fn_key = tcx.def_path_hash(*def_id);
248                let fn_entries = self.calls.entry(fn_key).or_default();
249
250                trace!("Including expr: {call_span:?}");
251                let enclosing_item_span =
252                    source_map.span_extend_to_prev_char(enclosing_item_span, '\n', false);
253                let location =
254                    match CallLocation::new(call_span, ident_span, enclosing_item_span, &file) {
255                        Some(location) => location,
256                        None => {
257                            trace!("Could not get serializable call location for {call_span:?}");
258                            return;
259                        }
260                    };
261                fn_entries.entry(abs_path).or_insert_with(mk_call_data).locations.push(location);
262            }
263        }
264    }
265}
266
267pub(crate) fn run(
268    krate: clean::Crate,
269    mut renderopts: config::RenderOptions,
270    cache: formats::cache::Cache,
271    tcx: TyCtxt<'_>,
272    options: ScrapeExamplesOptions,
273    bin_crate: bool,
274) {
275    let inner = move || -> Result<(), String> {
276        // Generates source files for examples
277        renderopts.no_emit_shared = true;
278        let (cx, _) = Context::init(krate, renderopts, cache, tcx, Default::default())
279            .map_err(|e| e.to_string())?;
280
281        // Collect CrateIds corresponding to provided target crates
282        // If two different versions of the crate in the dependency tree, then examples will be
283        // collected from both.
284        let all_crates = tcx
285            .crates(())
286            .iter()
287            .chain([&LOCAL_CRATE])
288            .map(|crate_num| (crate_num, tcx.crate_name(*crate_num)))
289            .collect::<Vec<_>>();
290        let target_crates = options
291            .target_crates
292            .into_iter()
293            .flat_map(|target| all_crates.iter().filter(move |(_, name)| name.as_str() == target))
294            .map(|(crate_num, _)| **crate_num)
295            .collect::<Vec<_>>();
296
297        debug!("All crates in TyCtxt: {all_crates:?}");
298        debug!("Scrape examples target_crates: {target_crates:?}");
299
300        // Run call-finder on all items
301        let mut calls = FxIndexMap::default();
302        let mut finder = FindCalls { calls: &mut calls, cx, target_crates, bin_crate };
303        tcx.hir_visit_all_item_likes_in_crate(&mut finder);
304
305        // The visitor might have found a type error, which we need to
306        // promote to a fatal error
307        if tcx.dcx().has_errors().is_some() {
308            return Err(String::from("Compilation failed, aborting rustdoc"));
309        }
310
311        // Sort call locations within a given file in document order
312        for fn_calls in calls.values_mut() {
313            for file_calls in fn_calls.values_mut() {
314                file_calls.locations.sort_by_key(|loc| loc.call_expr.byte_span.0);
315            }
316        }
317
318        // Save output to provided path
319        let mut encoder = FileEncoder::new(options.output_path).map_err(|e| e.to_string())?;
320        calls.encode(&mut encoder);
321        encoder.finish().map_err(|(_path, e)| e.to_string())?;
322
323        Ok(())
324    };
325
326    if let Err(e) = inner() {
327        tcx.dcx().fatal(e);
328    }
329}
330
331// Note: the DiagCtxt must be passed in explicitly because sess isn't available while parsing
332// options.
333pub(crate) fn load_call_locations(
334    with_examples: Vec<String>,
335    dcx: DiagCtxtHandle<'_>,
336) -> AllCallLocations {
337    let mut all_calls: AllCallLocations = FxIndexMap::default();
338    for path in with_examples {
339        // FIXME: Figure out why this line is causing this feature to crash in specific contexts.
340        // Full issue backlog is available here: <https://github.com/rust-lang/rust/pull/144600>.
341        //
342        // Can be checked with `tests/run-make/rustdoc-scrape-examples-paths`.
343        // loaded_paths.push(path.clone().into());
344        let bytes = match fs::read(&path) {
345            Ok(bytes) => bytes,
346            Err(e) => dcx.fatal(format!("failed to load examples: {e}")),
347        };
348        let Ok(mut decoder) = MemDecoder::new(&bytes, 0) else {
349            dcx.fatal(format!("Corrupt metadata encountered in {path}"))
350        };
351        let calls = AllCallLocations::decode(&mut decoder);
352
353        for (function, fn_calls) in calls.into_iter() {
354            all_calls.entry(function).or_default().extend(fn_calls.into_iter());
355        }
356    }
357
358    all_calls
359}