]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/std_inject.rs
8ef2471318813383b198fe69361de27afc1e2fcf
[rust.git] / src / libsyntax / std_inject.rs
1 // Copyright 2012 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 use ast;
12 use attr;
13 use std::cell::Cell;
14 use ext::hygiene::{Mark, SyntaxContext};
15 use symbol::{Symbol, keywords};
16 use syntax_pos::{DUMMY_SP, Span};
17 use codemap::{ExpnInfo, NameAndSpan, MacroAttribute, dummy_spanned, respan};
18 use ptr::P;
19 use tokenstream::TokenStream;
20
21 /// Craft a span that will be ignored by the stability lint's
22 /// call to codemap's `is_internal` check.
23 /// The expanded code uses the unstable `#[prelude_import]` attribute.
24 fn ignored_span(sp: Span) -> Span {
25     let mark = Mark::fresh(Mark::root());
26     mark.set_expn_info(ExpnInfo {
27         call_site: DUMMY_SP,
28         callee: NameAndSpan {
29             format: MacroAttribute(Symbol::intern("std_inject")),
30             span: None,
31             allow_internal_unstable: true,
32             allow_internal_unsafe: false,
33         }
34     });
35     sp.with_ctxt(SyntaxContext::empty().apply_mark(mark))
36 }
37
38 pub fn injected_crate_name() -> Option<&'static str> {
39     INJECTED_CRATE_NAME.with(|name| name.get())
40 }
41
42 thread_local! {
43     static INJECTED_CRATE_NAME: Cell<Option<&'static str>> = Cell::new(None);
44 }
45
46 pub fn maybe_inject_crates_ref(mut krate: ast::Crate, alt_std_name: Option<&str>) -> ast::Crate {
47     let name = if attr::contains_name(&krate.attrs, "no_core") {
48         return krate;
49     } else if attr::contains_name(&krate.attrs, "no_std") {
50         "core"
51     } else {
52         "std"
53     };
54
55     INJECTED_CRATE_NAME.with(|opt_name| opt_name.set(Some(name)));
56
57     krate.module.items.insert(0, P(ast::Item {
58         attrs: vec![attr::mk_attr_outer(DUMMY_SP,
59                                         attr::mk_attr_id(),
60                                         attr::mk_word_item(Symbol::intern("macro_use")))],
61         vis: dummy_spanned(ast::VisibilityKind::Inherited),
62         node: ast::ItemKind::ExternCrate(alt_std_name.map(Symbol::intern)),
63         ident: ast::Ident::from_str(name),
64         id: ast::DUMMY_NODE_ID,
65         span: DUMMY_SP,
66         tokens: None,
67     }));
68
69     let span = ignored_span(DUMMY_SP);
70     krate.module.items.insert(0, P(ast::Item {
71         attrs: vec![ast::Attribute {
72             style: ast::AttrStyle::Outer,
73             path: ast::Path::from_ident(ast::Ident::new(Symbol::intern("prelude_import"), span)),
74             tokens: TokenStream::empty(),
75             id: attr::mk_attr_id(),
76             is_sugared_doc: false,
77             span,
78         }],
79         vis: respan(span.shrink_to_lo(), ast::VisibilityKind::Inherited),
80         node: ast::ItemKind::Use(P(ast::UseTree {
81             prefix: ast::Path {
82                 segments: [name, "prelude", "v1"].into_iter().map(|name| {
83                     ast::PathSegment::from_ident(ast::Ident::from_str(name))
84                 }).collect(),
85                 span,
86             },
87             kind: ast::UseTreeKind::Glob,
88             span,
89         })),
90         id: ast::DUMMY_NODE_ID,
91         ident: keywords::Invalid.ident(),
92         span,
93         tokens: None,
94     }));
95
96     krate
97 }