2012-12-03 16:48:01 -08: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.
|
|
|
|
|
2013-05-17 15:28:44 -07:00
|
|
|
|
2012-10-15 14:56:42 -07:00
|
|
|
use driver::session::Session;
|
2012-12-23 17:41:37 -05:00
|
|
|
|
2013-06-28 18:32:26 -04:00
|
|
|
use std::vec;
|
2012-09-04 11:54:36 -07:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::attr;
|
2013-01-30 09:56:33 -08:00
|
|
|
use syntax::codemap::dummy_sp;
|
2013-05-24 19:35:29 -07:00
|
|
|
use syntax::codemap;
|
2013-08-29 12:10:02 -07:00
|
|
|
use syntax::fold::ast_fold;
|
2012-12-23 17:41:37 -05:00
|
|
|
use syntax::fold;
|
2013-08-07 09:47:28 -07:00
|
|
|
use syntax::opt_vec;
|
2013-11-24 23:08:53 -08:00
|
|
|
use syntax::util::small_vector::SmallVector;
|
2012-01-26 15:20:29 -08:00
|
|
|
|
2013-09-26 18:18:42 -07:00
|
|
|
static STD_VERSION: &'static str = "0.9-pre";
|
2012-12-23 17:41:37 -05:00
|
|
|
|
2013-09-27 19:46:09 -07:00
|
|
|
pub fn maybe_inject_libstd_ref(sess: Session, crate: ast::Crate)
|
|
|
|
-> ast::Crate {
|
|
|
|
if use_std(&crate) {
|
2013-05-17 13:12:42 -07:00
|
|
|
inject_libstd_ref(sess, crate)
|
2012-01-26 15:20:29 -08:00
|
|
|
} else {
|
|
|
|
crate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 07:38:55 +02:00
|
|
|
fn use_std(crate: &ast::Crate) -> bool {
|
|
|
|
!attr::contains_name(crate.attrs, "no_std")
|
2012-01-26 16:23:34 -08:00
|
|
|
}
|
2013-07-19 07:38:55 +02:00
|
|
|
|
2013-10-22 15:13:18 -07:00
|
|
|
fn use_uv(crate: &ast::Crate) -> bool {
|
|
|
|
!attr::contains_name(crate.attrs, "no_uv")
|
|
|
|
}
|
|
|
|
|
2013-07-19 21:51:37 +10:00
|
|
|
fn no_prelude(attrs: &[ast::Attribute]) -> bool {
|
|
|
|
attr::contains_name(attrs, "no_implicit_prelude")
|
2013-07-17 14:23:17 +10:00
|
|
|
}
|
2012-01-26 16:23:34 -08:00
|
|
|
|
2013-08-29 12:10:02 -07:00
|
|
|
fn spanned<T>(x: T) -> codemap::Spanned<T> {
|
|
|
|
codemap::Spanned {
|
|
|
|
node: x,
|
|
|
|
span: dummy_sp(),
|
2012-01-26 15:20:29 -08:00
|
|
|
}
|
2013-08-29 12:10:02 -07:00
|
|
|
}
|
2012-01-26 15:20:29 -08:00
|
|
|
|
2013-08-29 12:10:02 -07:00
|
|
|
struct StandardLibraryInjector {
|
|
|
|
sess: Session,
|
|
|
|
}
|
2012-12-23 17:41:37 -05:00
|
|
|
|
2013-08-29 12:10:02 -07:00
|
|
|
impl fold::ast_fold for StandardLibraryInjector {
|
2013-09-27 19:46:09 -07:00
|
|
|
fn fold_crate(&self, crate: ast::Crate) -> ast::Crate {
|
2013-08-29 12:10:02 -07:00
|
|
|
let version = STD_VERSION.to_managed();
|
2013-10-22 15:13:18 -07:00
|
|
|
let vers_item = attr::mk_name_value_item_str(@"vers", version);
|
|
|
|
let mut vis = ~[ast::view_item {
|
2013-08-29 12:10:02 -07:00
|
|
|
node: ast::view_item_extern_mod(self.sess.ident_of("std"),
|
|
|
|
None,
|
2013-10-22 15:13:18 -07:00
|
|
|
~[vers_item.clone()],
|
2013-08-29 12:10:02 -07:00
|
|
|
ast::DUMMY_NODE_ID),
|
2013-10-22 15:13:18 -07:00
|
|
|
attrs: ~[],
|
2013-08-29 12:10:02 -07:00
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp()
|
2013-10-22 15:13:18 -07:00
|
|
|
}];
|
|
|
|
|
|
|
|
if use_uv(&crate) && !*self.sess.building_library {
|
2013-12-13 19:35:31 -08:00
|
|
|
vis.push(ast::view_item {
|
|
|
|
node: ast::view_item_extern_mod(self.sess.ident_of("green"),
|
|
|
|
None,
|
|
|
|
~[vers_item],
|
|
|
|
ast::DUMMY_NODE_ID),
|
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp()
|
|
|
|
});
|
2013-10-22 15:13:18 -07:00
|
|
|
vis.push(ast::view_item {
|
|
|
|
node: ast::view_item_extern_mod(self.sess.ident_of("rustuv"),
|
|
|
|
None,
|
|
|
|
~[vers_item],
|
|
|
|
ast::DUMMY_NODE_ID),
|
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp()
|
|
|
|
});
|
|
|
|
}
|
2013-08-29 12:10:02 -07:00
|
|
|
|
2013-10-22 15:13:18 -07:00
|
|
|
vis.push_all(crate.module.view_items);
|
2013-08-29 12:10:02 -07:00
|
|
|
let mut new_module = ast::_mod {
|
|
|
|
view_items: vis,
|
|
|
|
..crate.module.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
if !no_prelude(crate.attrs) {
|
|
|
|
// only add `use std::prelude::*;` if there wasn't a
|
|
|
|
// `#[no_implicit_prelude];` at the crate level.
|
|
|
|
new_module = self.fold_mod(&new_module);
|
|
|
|
}
|
|
|
|
|
|
|
|
ast::Crate {
|
|
|
|
module: new_module,
|
2013-09-27 19:46:09 -07:00
|
|
|
..crate
|
2013-08-29 12:10:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-24 23:08:53 -08:00
|
|
|
fn fold_item(&self, item: @ast::item) -> SmallVector<@ast::item> {
|
2013-08-29 12:10:02 -07:00
|
|
|
if !no_prelude(item.attrs) {
|
|
|
|
// only recur if there wasn't `#[no_implicit_prelude];`
|
|
|
|
// on this item, i.e. this means that the prelude is not
|
|
|
|
// implicitly imported though the whole subtree
|
|
|
|
fold::noop_fold_item(item, self)
|
|
|
|
} else {
|
2013-11-24 23:08:53 -08:00
|
|
|
SmallVector::one(item)
|
2013-08-29 12:10:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fold_mod(&self, module: &ast::_mod) -> ast::_mod {
|
|
|
|
let prelude_path = ast::Path {
|
|
|
|
span: dummy_sp(),
|
|
|
|
global: false,
|
|
|
|
segments: ~[
|
|
|
|
ast::PathSegment {
|
|
|
|
identifier: self.sess.ident_of("std"),
|
2013-10-29 06:03:32 -04:00
|
|
|
lifetimes: opt_vec::Empty,
|
2013-08-29 12:10:02 -07:00
|
|
|
types: opt_vec::Empty,
|
|
|
|
},
|
|
|
|
ast::PathSegment {
|
|
|
|
identifier: self.sess.ident_of("prelude"),
|
2013-10-29 06:03:32 -04:00
|
|
|
lifetimes: opt_vec::Empty,
|
2013-08-29 12:10:02 -07:00
|
|
|
types: opt_vec::Empty,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
let vp = @spanned(ast::view_path_glob(prelude_path,
|
|
|
|
ast::DUMMY_NODE_ID));
|
|
|
|
let vi2 = ast::view_item {
|
|
|
|
node: ast::view_item_use(~[vp]),
|
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let vis = vec::append(~[vi2], module.view_items);
|
|
|
|
|
|
|
|
// FIXME #2543: Bad copy.
|
|
|
|
let new_module = ast::_mod {
|
|
|
|
view_items: vis,
|
|
|
|
..(*module).clone()
|
|
|
|
};
|
|
|
|
fold::noop_fold_mod(&new_module, self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-27 19:46:09 -07:00
|
|
|
fn inject_libstd_ref(sess: Session, crate: ast::Crate) -> ast::Crate {
|
2013-08-29 12:10:02 -07:00
|
|
|
let fold = StandardLibraryInjector {
|
|
|
|
sess: sess,
|
|
|
|
};
|
2013-09-27 19:46:09 -07:00
|
|
|
fold.fold_crate(crate)
|
2012-01-26 15:20:29 -08:00
|
|
|
}
|