// Copyright 2014 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use std::cell::RefCell; use std::collections::HashMap; use ast; use ast::{Ident, Name, TokenTree}; use codemap::Span; use ext::base::{ExtCtxt, MacExpr, MacResult, MacItems}; use ext::build::AstBuilder; use parse::token; use ptr::P; local_data_key!(registered_diagnostics: RefCell>>) local_data_key!(used_diagnostics: RefCell>) fn with_registered_diagnostics(f: |&mut HashMap>| -> T) -> T { match registered_diagnostics.get() { Some(cell) => f(cell.borrow_mut().deref_mut()), None => { let mut map = HashMap::new(); let value = f(&mut map); registered_diagnostics.replace(Some(RefCell::new(map))); value } } } fn with_used_diagnostics(f: |&mut HashMap| -> T) -> T { match used_diagnostics.get() { Some(cell) => f(cell.borrow_mut().deref_mut()), None => { let mut map = HashMap::new(); let value = f(&mut map); used_diagnostics.replace(Some(RefCell::new(map))); value } } } pub fn expand_diagnostic_used<'cx>(ecx: &'cx mut ExtCtxt, span: Span, token_tree: &[TokenTree]) -> Box { let code = match token_tree { [ast::TtToken(_, token::Ident(code, _))] => code, _ => unreachable!() }; with_registered_diagnostics(|diagnostics| { if !diagnostics.contains_key(&code.name) { ecx.span_err(span, format!( "unknown diagnostic code {}; add to librustc/diagnostics.rs", token::get_ident(code).get() ).as_slice()); } () }); with_used_diagnostics(|diagnostics| { match diagnostics.insert(code.name, span) { Some(previous_span) => { ecx.span_warn(span, format!( "diagnostic code {} already used", token::get_ident(code).get() ).as_slice()); ecx.span_note(previous_span, "previous invocation"); }, None => () } () }); MacExpr::new(quote_expr!(ecx, ())) } pub fn expand_register_diagnostic<'cx>(ecx: &'cx mut ExtCtxt, span: Span, token_tree: &[TokenTree]) -> Box { let (code, description) = match token_tree { [ast::TtToken(_, token::Ident(ref code, _))] => { (code, None) }, [ast::TtToken(_, token::Ident(ref code, _)), ast::TtToken(_, token::Comma), ast::TtToken(_, token::Literal(token::StrRaw(description, _), None))] => { (code, Some(description)) } _ => unreachable!() }; with_registered_diagnostics(|diagnostics| { if diagnostics.insert(code.name, description).is_some() { ecx.span_err(span, format!( "diagnostic code {} already registered", token::get_ident(*code).get() ).as_slice()); } }); let sym = Ident::new(token::gensym(( "__register_diagnostic_".to_string() + token::get_ident(*code).get() ).as_slice())); MacItems::new(vec![quote_item!(ecx, mod $sym {}).unwrap()].into_iter()) } pub fn expand_build_diagnostic_array<'cx>(ecx: &'cx mut ExtCtxt, span: Span, token_tree: &[TokenTree]) -> Box { let name = match token_tree { [ast::TtToken(_, token::Ident(ref name, _))] => name, _ => unreachable!() }; let (count, expr) = with_used_diagnostics(|diagnostics_in_use| { with_registered_diagnostics(|diagnostics| { let descriptions: Vec> = diagnostics .iter().filter_map(|(code, description)| { if !diagnostics_in_use.contains_key(code) { ecx.span_warn(span, format!( "diagnostic code {} never used", token::get_name(*code).get() ).as_slice()); } description.map(|description| { ecx.expr_tuple(span, vec![ ecx.expr_str(span, token::get_name(*code)), ecx.expr_str(span, token::get_name(description)) ]) }) }).collect(); (descriptions.len(), ecx.expr_vec(span, descriptions)) }) }); MacItems::new(vec![quote_item!(ecx, pub static $name: [(&'static str, &'static str), ..$count] = $expr; ).unwrap()].into_iter()) }