rust/src/libsyntax/ext/source_util.rs

123 lines
4.0 KiB
Rust
Raw Normal View History

// 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.
use codemap;
use codemap::{FileMap, Loc, Pos, span};
use ext::base::*;
use ext::base;
use ext::build::{mk_base_vec_e, mk_uint, mk_u8, mk_base_str};
use print::pprust;
use core::io;
use core::prelude::*;
use core::result;
use core::str;
use core::vec;
2012-08-22 19:24:52 -05:00
/* line!(): expands to the current line number */
pub fn expand_line(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
base::check_zero_tts(cx, sp, tts, "line!");
2012-11-12 20:24:56 -06:00
let loc = cx.codemap().lookup_char_pos(sp.lo);
2013-01-22 18:45:27 -06:00
base::MRExpr(mk_uint(cx, sp, loc.line))
}
2012-08-22 19:24:52 -05:00
/* col!(): expands to the current column number */
pub fn expand_col(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
base::check_zero_tts(cx, sp, tts, "col!");
2012-11-12 20:24:56 -06:00
let loc = cx.codemap().lookup_char_pos(sp.lo);
2013-01-22 18:45:27 -06:00
base::MRExpr(mk_uint(cx, sp, loc.col.to_uint()))
}
2012-08-22 19:24:52 -05:00
/* file!(): expands to the current filename */
/* The filemap (`loc.file`) contains a bunch more information we could spit
* out if we wanted. */
pub fn expand_file(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
base::check_zero_tts(cx, sp, tts, "file!");
let Loc { file: @FileMap { name: filename, _ }, _ } =
2012-11-12 20:24:56 -06:00
cx.codemap().lookup_char_pos(sp.lo);
2013-01-22 18:45:27 -06:00
base::MRExpr(mk_base_str(cx, sp, filename))
}
pub fn expand_stringify(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
let s = pprust::tts_to_str(tts, cx.parse_sess().interner);
2013-01-22 18:45:27 -06:00
base::MRExpr(mk_base_str(cx, sp, s))
}
pub fn expand_mod(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
base::check_zero_tts(cx, sp, tts, "module_path!");
2013-01-22 18:45:27 -06:00
base::MRExpr(mk_base_str(cx, sp,
str::connect(cx.mod_path().map(
|x| cx.str_of(*x)), ~"::")))
}
pub fn expand_include(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
let file = get_single_str_from_tts(cx, sp, tts, "include!");
let p = parse::new_sub_parser_from_file(
cx.parse_sess(), cx.cfg(),
&res_rel_file(cx, sp, &Path(file)), sp);
2013-01-22 18:45:27 -06:00
base::MRExpr(p.parse_expr())
}
pub fn expand_include_str(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
let file = get_single_str_from_tts(cx, sp, tts, "include_str!");
let res = io::read_whole_file_str(&res_rel_file(cx, sp, &Path(file)));
2012-08-06 14:34:08 -05:00
match res {
2012-08-26 18:54:31 -05:00
result::Ok(_) => { /* Continue. */ }
result::Err(ref e) => {
cx.parse_sess().span_diagnostic.handler().fatal((*e));
}
}
2013-01-22 18:45:27 -06:00
base::MRExpr(mk_base_str(cx, sp, result::unwrap(res)))
}
pub fn expand_include_bin(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
2013-01-22 18:45:27 -06:00
-> base::MacResult {
let file = get_single_str_from_tts(cx, sp, tts, "include_bin!");
match io::read_whole_file(&res_rel_file(cx, sp, &Path(file))) {
2012-08-26 18:54:31 -05:00
result::Ok(src) => {
let u8_exprs = vec::map(src, |char| {
mk_u8(cx, sp, *char)
});
2013-01-22 18:45:27 -06:00
base::MRExpr(mk_base_vec_e(cx, sp, u8_exprs))
2012-05-18 12:03:27 -05:00
}
result::Err(ref e) => {
cx.parse_sess().span_diagnostic.handler().fatal((*e))
2012-05-18 12:03:27 -05:00
}
}
}
fn res_rel_file(cx: ext_ctxt, sp: codemap::span, arg: &Path) -> Path {
// NB: relative paths are resolved relative to the compilation unit
if !arg.is_absolute {
2012-11-12 20:24:56 -06:00
let cu = Path(cx.codemap().span_to_filename(sp));
cu.dir_path().push_many(arg.components)
} else {
copy *arg
}
}
//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
//