2013-08-07 00:50:23 -04:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 16:48:01 -08:00
|
|
|
// 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.
|
|
|
|
|
2011-05-04 19:05:16 -07:00
|
|
|
/*
|
2012-10-12 12:32:36 -07:00
|
|
|
* The compiler code necessary to support the env! extension. Eventually this
|
2011-05-04 19:05:16 -07:00
|
|
|
* should all get sucked into either the compiler syntax extension plugin
|
|
|
|
* interface.
|
|
|
|
*/
|
2012-12-23 17:41:37 -05:00
|
|
|
|
2013-02-25 14:11:21 -05:00
|
|
|
use ast;
|
2013-08-31 18:13:04 +02:00
|
|
|
use codemap::Span;
|
2012-12-13 13:05:22 -08:00
|
|
|
use ext::base::*;
|
2012-12-23 17:41:37 -05:00
|
|
|
use ext::base;
|
2013-05-18 00:19:28 +10:00
|
|
|
use ext::build::AstBuilder;
|
2012-12-23 17:41:37 -05:00
|
|
|
|
2013-06-24 20:40:33 -04:00
|
|
|
use std::os;
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
pub fn expand_option_env(cx: &mut ExtCtxt, sp: Span, tts: &[ast::TokenTree])
|
2013-08-15 02:06:33 -04:00
|
|
|
-> base::MacResult {
|
2014-01-18 01:53:10 +11:00
|
|
|
let var = match get_single_str_from_tts(cx, sp, tts, "option_env!") {
|
|
|
|
None => return MacResult::dummy_expr(),
|
|
|
|
Some(v) => v
|
|
|
|
};
|
2013-08-15 02:06:33 -04:00
|
|
|
|
|
|
|
let e = match os::getenv(var) {
|
|
|
|
None => quote_expr!(cx, ::std::option::None::<&'static str>),
|
|
|
|
Some(s) => quote_expr!(cx, ::std::option::Some($s))
|
|
|
|
};
|
|
|
|
MRExpr(e)
|
|
|
|
}
|
2012-05-14 15:32:32 -07:00
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
pub fn expand_env(cx: &mut ExtCtxt, sp: Span, tts: &[ast::TokenTree])
|
2013-08-07 00:50:23 -04:00
|
|
|
-> base::MacResult {
|
2014-01-18 01:53:10 +11:00
|
|
|
let exprs = match get_exprs_from_tts(cx, sp, tts) {
|
|
|
|
Some([]) => {
|
|
|
|
cx.span_err(sp, "env! takes 1 or 2 arguments");
|
|
|
|
return MacResult::dummy_expr();
|
|
|
|
}
|
|
|
|
None => return MacResult::dummy_expr(),
|
|
|
|
Some(exprs) => exprs
|
|
|
|
};
|
2013-08-07 00:50:23 -04:00
|
|
|
|
2014-01-18 01:53:10 +11:00
|
|
|
let var = match expr_to_str(cx, exprs[0], "expected string literal") {
|
|
|
|
None => return MacResult::dummy_expr(),
|
|
|
|
Some((v, _style)) => v
|
|
|
|
};
|
2013-08-07 00:50:23 -04:00
|
|
|
let msg = match exprs.len() {
|
2014-01-10 17:55:53 -08:00
|
|
|
1 => format!("environment variable `{}` not defined", var).to_managed(),
|
2013-10-08 02:49:10 +02:00
|
|
|
2 => {
|
2014-01-18 01:53:10 +11:00
|
|
|
match expr_to_str(cx, exprs[1], "expected string literal") {
|
|
|
|
None => return MacResult::dummy_expr(),
|
|
|
|
Some((s, _style)) => s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
cx.span_err(sp, "env! takes 1 or 2 arguments");
|
|
|
|
return MacResult::dummy_expr();
|
2013-10-08 02:49:10 +02:00
|
|
|
}
|
2013-08-07 00:50:23 -04:00
|
|
|
};
|
2011-05-06 16:30:39 -07:00
|
|
|
|
2012-12-12 17:08:09 -08:00
|
|
|
let e = match os::getenv(var) {
|
2014-01-18 01:53:10 +11:00
|
|
|
None => {
|
|
|
|
cx.span_err(sp, msg);
|
|
|
|
cx.expr_uint(sp, 0)
|
|
|
|
}
|
2013-08-15 02:06:33 -04:00
|
|
|
Some(s) => cx.expr_str(sp, s.to_managed())
|
2012-12-12 17:08:09 -08:00
|
|
|
};
|
2013-01-22 16:45:27 -08:00
|
|
|
MRExpr(e)
|
2011-05-04 19:05:16 -07:00
|
|
|
}
|