2020-02-29 11:37:32 -06:00
|
|
|
use rustc_ast::ptr::P;
|
|
|
|
use rustc_ast::{ast, attr};
|
2019-12-29 08:23:55 -06:00
|
|
|
use rustc_expand::base::{ExtCtxt, Resolver};
|
|
|
|
use rustc_expand::expand::ExpansionConfig;
|
2020-01-11 08:03:15 -06:00
|
|
|
use rustc_session::parse::ParseSess;
|
2020-01-01 12:40:49 -06:00
|
|
|
use rustc_span::edition::Edition;
|
2019-12-31 11:15:40 -06:00
|
|
|
use rustc_span::hygiene::AstPass;
|
2020-01-01 12:30:57 -06:00
|
|
|
use rustc_span::symbol::{kw, sym, Ident, Symbol};
|
2019-12-31 11:15:40 -06:00
|
|
|
use rustc_span::DUMMY_SP;
|
2015-06-30 22:05:17 -05:00
|
|
|
|
2019-07-18 14:29:07 -05:00
|
|
|
pub fn inject(
|
2019-08-25 15:03:24 -05:00
|
|
|
mut krate: ast::Crate,
|
|
|
|
resolver: &mut dyn Resolver,
|
2019-09-05 09:05:58 -05:00
|
|
|
sess: &ParseSess,
|
2019-08-25 15:03:24 -05:00
|
|
|
alt_std_name: Option<Symbol>,
|
2019-07-18 14:29:07 -05:00
|
|
|
) -> (ast::Crate, Option<Symbol>) {
|
2019-09-05 09:05:58 -05:00
|
|
|
let rust_2018 = sess.edition >= Edition::Edition2018;
|
2018-08-10 08:01:32 -05:00
|
|
|
|
2018-03-30 06:06:34 -05:00
|
|
|
// the first name in this list is the crate name of the crate with the prelude
|
2019-08-25 15:03:24 -05:00
|
|
|
let names: &[Symbol] = if attr::contains_name(&krate.attrs, sym::no_core) {
|
2019-07-18 14:29:07 -05:00
|
|
|
return (krate, None);
|
2019-05-07 22:21:18 -05:00
|
|
|
} else if attr::contains_name(&krate.attrs, sym::no_std) {
|
|
|
|
if attr::contains_name(&krate.attrs, sym::compiler_builtins) {
|
2019-08-25 15:03:24 -05:00
|
|
|
&[sym::core]
|
2018-03-30 06:06:34 -05:00
|
|
|
} else {
|
2019-08-25 15:03:24 -05:00
|
|
|
&[sym::core, sym::compiler_builtins]
|
2018-03-30 06:06:34 -05:00
|
|
|
}
|
2017-12-12 13:57:58 -06:00
|
|
|
} else {
|
2019-08-25 15:03:24 -05:00
|
|
|
&[sym::std]
|
2016-09-28 17:28:19 -05:00
|
|
|
};
|
2013-08-29 14:10:02 -05:00
|
|
|
|
2019-08-28 04:41:29 -05:00
|
|
|
let expn_id = resolver.expansion_for_ast_pass(
|
2019-08-25 15:03:24 -05:00
|
|
|
DUMMY_SP,
|
|
|
|
AstPass::StdImports,
|
|
|
|
&[sym::prelude_import],
|
|
|
|
None,
|
|
|
|
);
|
2019-08-28 04:41:29 -05:00
|
|
|
let span = DUMMY_SP.with_def_site_ctxt(expn_id);
|
|
|
|
let call_site = DUMMY_SP.with_call_site_ctxt(expn_id);
|
2019-08-25 15:03:24 -05:00
|
|
|
|
2019-09-05 09:05:58 -05:00
|
|
|
let ecfg = ExpansionConfig::default("std_lib_injection".to_string());
|
|
|
|
let cx = ExtCtxt::new(sess, ecfg, resolver);
|
|
|
|
|
2018-04-16 14:28:30 -05:00
|
|
|
// .rev() to preserve ordering above in combination with insert(0, ...)
|
2019-09-05 09:05:58 -05:00
|
|
|
for &name in names.iter().rev() {
|
2019-12-22 16:42:04 -06:00
|
|
|
let ident = if rust_2018 { Ident::new(name, span) } else { Ident::new(name, call_site) };
|
|
|
|
krate.module.items.insert(
|
|
|
|
0,
|
|
|
|
cx.item(
|
|
|
|
span,
|
|
|
|
ident,
|
|
|
|
vec![cx.attribute(cx.meta_word(span, sym::macro_use))],
|
|
|
|
ast::ItemKind::ExternCrate(alt_std_name),
|
|
|
|
),
|
|
|
|
);
|
2018-03-30 06:06:34 -05:00
|
|
|
}
|
2017-12-12 13:57:58 -06:00
|
|
|
|
2019-09-05 09:05:58 -05:00
|
|
|
// The crates have been injected, the assumption is that the first one is
|
|
|
|
// the one with the prelude.
|
2018-03-30 06:06:34 -05:00
|
|
|
let name = names[0];
|
|
|
|
|
2019-09-05 09:05:58 -05:00
|
|
|
let import_path = if rust_2018 {
|
2019-12-22 16:42:04 -06:00
|
|
|
[name, sym::prelude, sym::v1].iter().map(|symbol| ast::Ident::new(*symbol, span)).collect()
|
2019-08-25 15:03:24 -05:00
|
|
|
} else {
|
2019-12-22 16:42:04 -06:00
|
|
|
[kw::PathRoot, name, sym::prelude, sym::v1]
|
|
|
|
.iter()
|
|
|
|
.map(|symbol| ast::Ident::new(*symbol, span))
|
|
|
|
.collect()
|
2019-08-25 15:03:24 -05:00
|
|
|
};
|
2019-07-06 13:02:45 -05:00
|
|
|
|
2019-09-05 09:05:58 -05:00
|
|
|
let use_item = cx.item(
|
|
|
|
span,
|
|
|
|
ast::Ident::invalid(),
|
|
|
|
vec![cx.attribute(cx.meta_word(span, sym::prelude_import))],
|
|
|
|
ast::ItemKind::Use(P(ast::UseTree {
|
|
|
|
prefix: cx.path(span, import_path),
|
2017-09-26 16:04:00 -05:00
|
|
|
kind: ast::UseTreeKind::Glob,
|
2017-08-07 00:54:09 -05:00
|
|
|
span,
|
2017-09-26 16:04:00 -05:00
|
|
|
})),
|
2019-09-05 09:05:58 -05:00
|
|
|
);
|
2019-08-25 15:03:24 -05:00
|
|
|
|
2019-09-05 09:05:58 -05:00
|
|
|
krate.module.items.insert(0, use_item);
|
2016-06-05 04:56:05 -05:00
|
|
|
|
2019-08-25 15:03:24 -05:00
|
|
|
(krate, Some(name))
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|