2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-09-10 17:35:21 -05:00
|
|
|
use ast;
|
|
|
|
use attr;
|
|
|
|
use codemap::DUMMY_SP;
|
|
|
|
use codemap;
|
|
|
|
use fold::Folder;
|
|
|
|
use fold;
|
|
|
|
use parse::token::InternedString;
|
|
|
|
use parse::token::special_idents;
|
|
|
|
use parse::token;
|
|
|
|
use ptr::P;
|
|
|
|
use util::small_vector::SmallVector;
|
2012-01-26 17:20:29 -06:00
|
|
|
|
2014-05-20 23:25:42 -05:00
|
|
|
use std::mem;
|
|
|
|
|
2014-11-14 15:55:57 -06:00
|
|
|
pub fn maybe_inject_crates_ref(krate: ast::Crate, alt_std_name: Option<String>)
|
2013-09-27 21:46:09 -05:00
|
|
|
-> ast::Crate {
|
2014-02-05 15:15:24 -06:00
|
|
|
if use_std(&krate) {
|
2014-11-14 15:55:57 -06:00
|
|
|
inject_crates_ref(krate, alt_std_name)
|
2014-01-24 01:40:54 -06:00
|
|
|
} else {
|
2014-02-05 15:15:24 -06:00
|
|
|
krate
|
2014-01-24 01:40:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-10 17:35:21 -05:00
|
|
|
pub fn maybe_inject_prelude(krate: ast::Crate) -> ast::Crate {
|
2014-02-05 15:15:24 -06:00
|
|
|
if use_std(&krate) {
|
2014-09-10 17:35:21 -05:00
|
|
|
inject_prelude(krate)
|
2012-01-26 17:20:29 -06:00
|
|
|
} else {
|
2014-02-05 15:15:24 -06:00
|
|
|
krate
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-05 15:15:24 -06:00
|
|
|
fn use_std(krate: &ast::Crate) -> bool {
|
2014-02-28 17:25:15 -06:00
|
|
|
!attr::contains_name(krate.attrs.as_slice(), "no_std")
|
2012-01-26 18:23:34 -06:00
|
|
|
}
|
2013-07-19 00:38:55 -05:00
|
|
|
|
2013-07-19 06:51:37 -05:00
|
|
|
fn no_prelude(attrs: &[ast::Attribute]) -> bool {
|
|
|
|
attr::contains_name(attrs, "no_implicit_prelude")
|
2013-07-16 23:23:17 -05:00
|
|
|
}
|
2012-01-26 18:23:34 -06:00
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
struct StandardLibraryInjector<'a> {
|
2014-09-10 17:35:21 -05:00
|
|
|
alt_std_name: Option<String>,
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
2012-12-23 16:41:37 -06:00
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
impl<'a> fold::Folder for StandardLibraryInjector<'a> {
|
2014-05-20 23:25:42 -05:00
|
|
|
fn fold_crate(&mut self, mut krate: ast::Crate) -> ast::Crate {
|
2014-07-20 00:40:39 -05:00
|
|
|
|
2014-09-01 10:59:23 -05:00
|
|
|
// The name to use in `extern crate "name" as std;`
|
2014-09-10 17:35:21 -05:00
|
|
|
let actual_crate_name = match self.alt_std_name {
|
2014-07-20 00:40:39 -05:00
|
|
|
Some(ref s) => token::intern_and_get_ident(s.as_slice()),
|
|
|
|
None => token::intern_and_get_ident("std"),
|
|
|
|
};
|
|
|
|
|
2014-02-28 17:25:15 -06:00
|
|
|
let mut vis = vec!(ast::ViewItem {
|
2014-03-07 01:57:45 -06:00
|
|
|
node: ast::ViewItemExternCrate(token::str_to_ident("std"),
|
2014-07-20 00:40:39 -05:00
|
|
|
Some((actual_crate_name, ast::CookedStr)),
|
2014-06-06 15:21:18 -05:00
|
|
|
ast::DUMMY_NODE_ID),
|
2014-02-28 17:25:15 -06:00
|
|
|
attrs: vec!(
|
2014-05-20 02:07:24 -05:00
|
|
|
attr::mk_attr_outer(attr::mk_attr_id(), attr::mk_list_item(
|
2014-01-21 12:08:10 -06:00
|
|
|
InternedString::new("phase"),
|
2014-02-28 17:25:15 -06:00
|
|
|
vec!(
|
2014-05-24 18:16:10 -05:00
|
|
|
attr::mk_word_item(InternedString::new("plugin")),
|
2014-01-21 12:08:10 -06:00
|
|
|
attr::mk_word_item(InternedString::new("link")
|
2014-02-28 17:25:15 -06:00
|
|
|
))))),
|
2014-01-16 15:27:27 -06:00
|
|
|
vis: ast::Inherited,
|
2014-01-01 00:53:22 -06:00
|
|
|
span: DUMMY_SP
|
2014-02-28 17:25:15 -06:00
|
|
|
});
|
2013-10-22 17:13:18 -05:00
|
|
|
|
2014-04-16 00:32:35 -05:00
|
|
|
// `extern crate` must be precede `use` items
|
2014-05-20 23:25:42 -05:00
|
|
|
mem::swap(&mut vis, &mut krate.module.view_items);
|
2014-10-15 01:05:01 -05:00
|
|
|
krate.module.view_items.extend(vis.into_iter());
|
2014-05-20 23:25:42 -05:00
|
|
|
|
|
|
|
// don't add #![no_std] here, that will block the prelude injection later.
|
|
|
|
// Add it during the prelude injection instead.
|
|
|
|
|
|
|
|
// Add #![feature(phase)] here, because we use #[phase] on extern crate std.
|
2014-05-20 02:07:24 -05:00
|
|
|
let feat_phase_attr = attr::mk_attr_inner(attr::mk_attr_id(),
|
|
|
|
attr::mk_list_item(
|
2014-05-20 23:25:42 -05:00
|
|
|
InternedString::new("feature"),
|
|
|
|
vec![attr::mk_word_item(InternedString::new("phase"))],
|
|
|
|
));
|
2014-05-21 00:07:42 -05:00
|
|
|
// std_inject runs after feature checking so manually mark this attr
|
|
|
|
attr::mark_used(&feat_phase_attr);
|
2014-05-20 23:25:42 -05:00
|
|
|
krate.attrs.push(feat_phase_attr);
|
|
|
|
|
|
|
|
krate
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
2014-01-24 01:40:54 -06:00
|
|
|
}
|
|
|
|
|
2014-11-14 15:55:57 -06:00
|
|
|
fn inject_crates_ref(krate: ast::Crate, alt_std_name: Option<String>) -> ast::Crate {
|
2014-01-24 01:40:54 -06:00
|
|
|
let mut fold = StandardLibraryInjector {
|
2014-09-10 17:35:21 -05:00
|
|
|
alt_std_name: alt_std_name,
|
2014-01-24 01:40:54 -06:00
|
|
|
};
|
2014-02-05 15:15:24 -06:00
|
|
|
fold.fold_crate(krate)
|
2014-01-24 01:40:54 -06:00
|
|
|
}
|
|
|
|
|
2014-06-06 08:51:42 -05:00
|
|
|
struct PreludeInjector<'a>;
|
2014-01-24 01:40:54 -06:00
|
|
|
|
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
impl<'a> fold::Folder for PreludeInjector<'a> {
|
2014-05-20 23:25:42 -05:00
|
|
|
fn fold_crate(&mut self, mut krate: ast::Crate) -> ast::Crate {
|
|
|
|
// Add #![no_std] here, so we don't re-inject when compiling pretty-printed source.
|
|
|
|
// This must happen here and not in StandardLibraryInjector because this
|
|
|
|
// fold happens second.
|
|
|
|
|
2014-05-20 02:07:24 -05:00
|
|
|
let no_std_attr = attr::mk_attr_inner(attr::mk_attr_id(),
|
|
|
|
attr::mk_word_item(InternedString::new("no_std")));
|
2014-05-21 00:07:42 -05:00
|
|
|
// std_inject runs after feature checking so manually mark this attr
|
|
|
|
attr::mark_used(&no_std_attr);
|
2014-05-20 23:25:42 -05:00
|
|
|
krate.attrs.push(no_std_attr);
|
|
|
|
|
2014-02-28 17:25:15 -06:00
|
|
|
if !no_prelude(krate.attrs.as_slice()) {
|
2014-01-24 01:40:54 -06:00
|
|
|
// only add `use std::prelude::*;` if there wasn't a
|
2014-04-14 10:30:31 -05:00
|
|
|
// `#![no_implicit_prelude]` at the crate level.
|
2014-04-16 00:32:35 -05:00
|
|
|
// fold_mod() will insert glob path.
|
2014-05-20 02:07:24 -05:00
|
|
|
let globs_attr = attr::mk_attr_inner(attr::mk_attr_id(),
|
|
|
|
attr::mk_list_item(
|
2014-04-16 00:32:35 -05:00
|
|
|
InternedString::new("feature"),
|
|
|
|
vec!(
|
|
|
|
attr::mk_word_item(InternedString::new("globs")),
|
|
|
|
)));
|
2014-05-21 00:07:42 -05:00
|
|
|
// std_inject runs after feature checking so manually mark this attr
|
|
|
|
attr::mark_used(&globs_attr);
|
2014-05-20 23:25:42 -05:00
|
|
|
krate.attrs.push(globs_attr);
|
2014-04-16 00:32:35 -05:00
|
|
|
|
2014-09-07 12:09:06 -05:00
|
|
|
krate.module = self.fold_mod(krate.module);
|
2014-01-24 01:40:54 -06:00
|
|
|
}
|
2014-05-20 23:25:42 -05:00
|
|
|
krate
|
2014-01-24 01:40:54 -06:00
|
|
|
}
|
2013-08-29 14:10:02 -05:00
|
|
|
|
2014-09-07 12:09:06 -05:00
|
|
|
fn fold_item(&mut self, item: P<ast::Item>) -> SmallVector<P<ast::Item>> {
|
2014-02-28 17:25:15 -06:00
|
|
|
if !no_prelude(item.attrs.as_slice()) {
|
2014-04-14 10:30:31 -05:00
|
|
|
// only recur if there wasn't `#![no_implicit_prelude]`
|
2013-08-29 14:10:02 -05:00
|
|
|
// on this item, i.e. this means that the prelude is not
|
|
|
|
// implicitly imported though the whole subtree
|
2014-09-07 12:09:06 -05:00
|
|
|
fold::noop_fold_item(item, self)
|
2013-08-29 14:10:02 -05:00
|
|
|
} else {
|
2013-11-25 01:08:53 -06:00
|
|
|
SmallVector::one(item)
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-07 12:09:06 -05:00
|
|
|
fn fold_mod(&mut self, ast::Mod {inner, view_items, items}: ast::Mod) -> ast::Mod {
|
2013-08-29 14:10:02 -05:00
|
|
|
let prelude_path = ast::Path {
|
2014-01-01 00:53:22 -06:00
|
|
|
span: DUMMY_SP,
|
2013-08-29 14:10:02 -05:00
|
|
|
global: false,
|
2014-02-28 17:25:15 -06:00
|
|
|
segments: vec!(
|
2013-08-29 14:10:02 -05:00
|
|
|
ast::PathSegment {
|
2014-02-13 23:07:09 -06:00
|
|
|
identifier: token::str_to_ident("std"),
|
2014-11-03 20:52:52 -06:00
|
|
|
parameters: ast::PathParameters::none(),
|
2013-08-29 14:10:02 -05:00
|
|
|
},
|
|
|
|
ast::PathSegment {
|
2014-02-13 23:07:09 -06:00
|
|
|
identifier: token::str_to_ident("prelude"),
|
2014-11-03 20:52:52 -06:00
|
|
|
parameters: ast::PathParameters::none(),
|
2014-02-28 17:25:15 -06:00
|
|
|
}),
|
2013-08-29 14:10:02 -05:00
|
|
|
};
|
|
|
|
|
2014-09-07 12:09:06 -05:00
|
|
|
let (crates, uses) = view_items.partitioned(|x| {
|
|
|
|
match x.node {
|
|
|
|
ast::ViewItemExternCrate(..) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// add prelude after any `extern crate` but before any `use`
|
|
|
|
let mut view_items = crates;
|
|
|
|
let vp = P(codemap::dummy_spanned(ast::ViewPathGlob(prelude_path, ast::DUMMY_NODE_ID)));
|
|
|
|
view_items.push(ast::ViewItem {
|
2014-04-26 08:33:45 -05:00
|
|
|
node: ast::ViewItemUse(vp),
|
2014-09-07 12:09:06 -05:00
|
|
|
attrs: vec![ast::Attribute {
|
2014-08-12 22:31:30 -05:00
|
|
|
span: DUMMY_SP,
|
|
|
|
node: ast::Attribute_ {
|
|
|
|
id: attr::mk_attr_id(),
|
|
|
|
style: ast::AttrOuter,
|
2014-09-07 12:09:06 -05:00
|
|
|
value: P(ast::MetaItem {
|
2014-08-12 22:31:30 -05:00
|
|
|
span: DUMMY_SP,
|
|
|
|
node: ast::MetaWord(token::get_name(
|
|
|
|
special_idents::prelude_import.name)),
|
2014-09-07 12:09:06 -05:00
|
|
|
}),
|
2014-08-12 22:31:30 -05:00
|
|
|
is_sugared_doc: false,
|
|
|
|
},
|
2014-09-07 12:09:06 -05:00
|
|
|
}],
|
2014-01-16 15:27:27 -06:00
|
|
|
vis: ast::Inherited,
|
2014-01-01 00:53:22 -06:00
|
|
|
span: DUMMY_SP,
|
2014-04-16 00:32:35 -05:00
|
|
|
});
|
2014-10-15 01:05:01 -05:00
|
|
|
view_items.extend(uses.into_iter());
|
2013-08-29 14:10:02 -05:00
|
|
|
|
2014-09-07 12:09:06 -05:00
|
|
|
fold::noop_fold_mod(ast::Mod {
|
|
|
|
inner: inner,
|
2014-04-16 00:32:35 -05:00
|
|
|
view_items: view_items,
|
2014-09-07 12:09:06 -05:00
|
|
|
items: items
|
|
|
|
}, self)
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-10 17:35:21 -05:00
|
|
|
fn inject_prelude(krate: ast::Crate) -> ast::Crate {
|
2014-06-06 08:51:42 -05:00
|
|
|
let mut fold = PreludeInjector;
|
2014-02-05 15:15:24 -06:00
|
|
|
fold.fold_crate(krate)
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|