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.
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
use core::prelude::*;
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
use driver::session::Session;
|
2012-12-23 16:41:37 -06:00
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use core::vec;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::attr;
|
2013-01-30 11:56:33 -06:00
|
|
|
use syntax::codemap::dummy_sp;
|
2013-05-24 21:35:29 -05:00
|
|
|
use syntax::codemap;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::fold;
|
2012-01-26 17:20:29 -06:00
|
|
|
|
2013-05-17 15:12:42 -05:00
|
|
|
static STD_VERSION: &'static str = "0.7-pre";
|
2012-12-23 16:41:37 -06:00
|
|
|
|
2013-05-17 15:12:42 -05:00
|
|
|
pub fn maybe_inject_libstd_ref(sess: Session, crate: @ast::crate)
|
|
|
|
-> @ast::crate {
|
|
|
|
if use_std(crate) {
|
|
|
|
inject_libstd_ref(sess, crate)
|
2012-01-26 17:20:29 -06:00
|
|
|
} else {
|
|
|
|
crate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
fn use_std(crate: &ast::crate) -> bool {
|
2013-05-17 15:12:42 -05:00
|
|
|
!attr::attrs_contains_name(crate.node.attrs, "no_std")
|
2012-01-26 18:23:34 -06:00
|
|
|
}
|
|
|
|
|
2013-06-27 08:04:22 -05:00
|
|
|
fn inject_libstd_ref(sess: Session, crate: &ast::crate) -> @ast::crate {
|
2013-02-20 19:07:17 -06:00
|
|
|
fn spanned<T:Copy>(x: T) -> codemap::spanned<T> {
|
2013-01-30 11:56:33 -06:00
|
|
|
codemap::spanned { node: x, span: dummy_sp() }
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|
|
|
|
|
2013-01-08 16:00:45 -06:00
|
|
|
let precursor = @fold::AstFoldFns {
|
2012-12-23 16:41:37 -06:00
|
|
|
fold_crate: |crate, span, fld| {
|
|
|
|
let n1 = sess.next_node_id();
|
2013-01-13 18:51:48 -06:00
|
|
|
let vi1 = @ast::view_item {
|
2013-02-17 20:45:00 -06:00
|
|
|
node: ast::view_item_extern_mod(
|
2013-05-18 18:43:04 -05:00
|
|
|
sess.ident_of("std"), ~[], n1),
|
2013-01-13 18:51:48 -06:00
|
|
|
attrs: ~[
|
|
|
|
spanned(ast::attribute_ {
|
|
|
|
style: ast::attr_inner,
|
2013-02-25 08:19:44 -06:00
|
|
|
value: @spanned(ast::meta_name_value(
|
2013-06-12 12:02:55 -05:00
|
|
|
@"vers",
|
|
|
|
spanned(ast::lit_str(STD_VERSION.to_managed()))
|
2013-01-13 18:51:48 -06:00
|
|
|
)),
|
|
|
|
is_sugared_doc: false
|
|
|
|
})
|
|
|
|
],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp()
|
|
|
|
};
|
2012-12-23 16:41:37 -06:00
|
|
|
|
|
|
|
let vis = vec::append(~[vi1], crate.module.view_items);
|
2013-01-15 18:05:20 -06:00
|
|
|
let mut new_module = ast::_mod {
|
2013-01-07 16:16:52 -06:00
|
|
|
view_items: vis,
|
|
|
|
../*bad*/copy crate.module
|
|
|
|
};
|
2013-02-18 00:20:36 -06:00
|
|
|
new_module = fld.fold_mod(&new_module);
|
2012-12-23 16:41:37 -06:00
|
|
|
|
2013-01-18 16:21:31 -06:00
|
|
|
// FIXME #2543: Bad copy.
|
2013-02-18 00:20:36 -06:00
|
|
|
let new_crate = ast::crate_ {
|
|
|
|
module: new_module,
|
|
|
|
..copy *crate
|
|
|
|
};
|
2012-12-23 16:41:37 -06:00
|
|
|
(new_crate, span)
|
|
|
|
},
|
|
|
|
fold_mod: |module, fld| {
|
|
|
|
let n2 = sess.next_node_id();
|
|
|
|
|
2013-03-26 19:00:35 -05:00
|
|
|
let prelude_path = @ast::Path {
|
2013-01-08 21:37:25 -06:00
|
|
|
span: dummy_sp(),
|
|
|
|
global: false,
|
|
|
|
idents: ~[
|
2013-05-18 18:43:04 -05:00
|
|
|
sess.ident_of("std"),
|
2013-05-02 03:16:07 -05:00
|
|
|
sess.ident_of("prelude")
|
2013-01-08 21:37:25 -06:00
|
|
|
],
|
|
|
|
rp: None,
|
|
|
|
types: ~[]
|
|
|
|
};
|
|
|
|
|
|
|
|
let vp = @spanned(ast::view_path_glob(prelude_path, n2));
|
2013-02-17 20:45:00 -06:00
|
|
|
let vi2 = @ast::view_item { node: ast::view_item_use(~[vp]),
|
2013-01-13 18:51:48 -06:00
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp() };
|
2012-12-23 16:41:37 -06:00
|
|
|
|
|
|
|
let vis = vec::append(~[vi2], module.view_items);
|
2013-01-07 16:16:52 -06:00
|
|
|
|
2013-01-18 16:21:31 -06:00
|
|
|
// FIXME #2543: Bad copy.
|
2013-02-18 00:20:36 -06:00
|
|
|
let new_module = ast::_mod {
|
|
|
|
view_items: vis,
|
|
|
|
..copy *module
|
|
|
|
};
|
|
|
|
fold::noop_fold_mod(&new_module, fld)
|
2012-12-23 16:41:37 -06:00
|
|
|
},
|
|
|
|
..*fold::default_ast_fold()
|
|
|
|
};
|
|
|
|
|
|
|
|
let fold = fold::make_fold(precursor);
|
2013-02-18 00:20:36 -06:00
|
|
|
@fold.fold_crate(crate)
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|