1use 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
111struct 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 tcx.hir_maybe_body_owned_by(ex.hir_id.owner.def_id).is_none() {
138 return;
139 }
140
141 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 call_span.from_expansion() {
172 trace!("Rejecting expr from macro: {call_span:?}");
173 return;
174 }
175
176 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 !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 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 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 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 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 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 if tcx.dcx().has_errors().is_some() {
308 return Err(String::from("Compilation failed, aborting rustdoc"));
309 }
310
311 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 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
331pub(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 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}