|
| 1 | +// Copyright 2013 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution and at |
| 3 | +// http://rust-lang.org/COPYRIGHT. |
| 4 | +// |
| 5 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +// option. This file may not be copied, modified, or distributed |
| 9 | +// except according to those terms. |
| 10 | + |
| 11 | +/* The compiler code necessary to support the fourcc! extension. */ |
| 12 | + |
| 13 | +// fourcc!() is called with a single 4-character string, and an optional ident |
| 14 | +// that is either `big` or `little`. If the ident is omitted it is assumed to |
| 15 | +// be the platform-native value. It returns a u32. |
| 16 | + |
| 17 | +use ast; |
| 18 | +use attr::contains; |
| 19 | +use codemap::{Span, mk_sp}; |
| 20 | +use ext::base::*; |
| 21 | +use ext::base; |
| 22 | +use ext::build::AstBuilder; |
| 23 | +use parse; |
| 24 | +use parse::token; |
| 25 | + |
| 26 | +use std::ascii::AsciiCast; |
| 27 | + |
| 28 | +pub fn expand_syntax_ext(cx: @ExtCtxt, sp: Span, tts: &[ast::token_tree]) -> base::MacResult { |
| 29 | + let (expr, endian) = parse_tts(cx, tts); |
| 30 | + |
| 31 | + let little = match endian { |
| 32 | + None => target_endian_little(cx, sp), |
| 33 | + Some(Ident{ident, span}) => match cx.str_of(ident).as_slice() { |
| 34 | + "little" => true, |
| 35 | + "big" => false, |
| 36 | + _ => { |
| 37 | + cx.span_err(span, "invalid endian directive in fourcc!"); |
| 38 | + target_endian_little(cx, sp) |
| 39 | + } |
| 40 | + } |
| 41 | + }; |
| 42 | + |
| 43 | + let s = match expr.node { |
| 44 | + // expression is a literal |
| 45 | + ast::ExprLit(lit) => match lit.node { |
| 46 | + // string literal |
| 47 | + ast::lit_str(s) => { |
| 48 | + if !s.is_ascii() { |
| 49 | + cx.span_err(expr.span, "non-ascii string literal in fourcc!"); |
| 50 | + } else if s.len() != 4 { |
| 51 | + cx.span_err(expr.span, "string literal with len != 4 in fourcc!"); |
| 52 | + } |
| 53 | + s |
| 54 | + } |
| 55 | + _ => { |
| 56 | + cx.span_err(expr.span, "unsupported literal in fourcc!"); |
| 57 | + return MRExpr(cx.expr_lit(sp, ast::lit_uint(0u64, ast::ty_u32))); |
| 58 | + } |
| 59 | + }, |
| 60 | + _ => { |
| 61 | + cx.span_err(expr.span, "non-literal in fourcc!"); |
| 62 | + return MRExpr(cx.expr_lit(sp, ast::lit_uint(0u64, ast::ty_u32))); |
| 63 | + } |
| 64 | + }; |
| 65 | + |
| 66 | + let mut val = 0u32; |
| 67 | + if little { |
| 68 | + for byte in s.byte_rev_iter().take(4) { |
| 69 | + val = (val << 8) | (byte as u32); |
| 70 | + } |
| 71 | + } else { |
| 72 | + for byte in s.byte_iter().take(4) { |
| 73 | + val = (val << 8) | (byte as u32); |
| 74 | + } |
| 75 | + } |
| 76 | + let e = cx.expr_lit(sp, ast::lit_uint(val as u64, ast::ty_u32)); |
| 77 | + MRExpr(e) |
| 78 | +} |
| 79 | + |
| 80 | +struct Ident { |
| 81 | + ident: ast::Ident, |
| 82 | + span: Span |
| 83 | +} |
| 84 | + |
| 85 | +fn parse_tts(cx: @ExtCtxt, tts: &[ast::token_tree]) -> (@ast::Expr, Option<Ident>) { |
| 86 | + let p = parse::new_parser_from_tts(cx.parse_sess(), cx.cfg(), tts.to_owned()); |
| 87 | + let ex = p.parse_expr(); |
| 88 | + let id = if *p.token == token::EOF { |
| 89 | + None |
| 90 | + } else { |
| 91 | + p.expect(&token::COMMA); |
| 92 | + let lo = p.span.lo; |
| 93 | + let ident = p.parse_ident(); |
| 94 | + let hi = p.last_span.hi; |
| 95 | + Some(Ident{ident: ident, span: mk_sp(lo, hi)}) |
| 96 | + }; |
| 97 | + if *p.token != token::EOF { |
| 98 | + p.unexpected(); |
| 99 | + } |
| 100 | + (ex, id) |
| 101 | +} |
| 102 | + |
| 103 | +fn target_endian_little(cx: @ExtCtxt, sp: Span) -> bool { |
| 104 | + let meta = cx.meta_name_value(sp, @"target_endian", ast::lit_str(@"little")); |
| 105 | + contains(cx.cfg(), meta) |
| 106 | +} |
0 commit comments