]> git.lizzy.rs Git - rust.git/blob - src/librustc/plugin/build.rs
Use ast attributes every where (remove HIR attributes).
[rust.git] / src / librustc / plugin / build.rs
1 // Copyright 2012-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 //! Used by `rustc` when compiling a plugin crate.
12
13 use syntax::ast;
14 use syntax::attr;
15 use syntax::codemap::Span;
16 use syntax::diagnostic;
17 use rustc_front::visit;
18 use rustc_front::visit::Visitor;
19 use rustc_front::hir;
20
21 struct RegistrarFinder {
22     registrars: Vec<(ast::NodeId, Span)> ,
23 }
24
25 impl<'v> Visitor<'v> for RegistrarFinder {
26     fn visit_item(&mut self, item: &hir::Item) {
27         if let hir::ItemFn(..) = item.node {
28             if attr::contains_name(&item.attrs,
29                                    "plugin_registrar") {
30                 self.registrars.push((item.id, item.span));
31             }
32         }
33
34         visit::walk_item(self, item);
35     }
36 }
37
38 /// Find the function marked with `#[plugin_registrar]`, if any.
39 pub fn find_plugin_registrar(diagnostic: &diagnostic::SpanHandler,
40                              krate: &hir::Crate)
41                              -> Option<ast::NodeId> {
42     let mut finder = RegistrarFinder { registrars: Vec::new() };
43     visit::walk_crate(&mut finder, krate);
44
45     match finder.registrars.len() {
46         0 => None,
47         1 => {
48             let (node_id, _) = finder.registrars.pop().unwrap();
49             Some(node_id)
50         },
51         _ => {
52             diagnostic.handler().err("multiple plugin registration functions found");
53             for &(_, span) in &finder.registrars {
54                 diagnostic.span_note(span, "one is here");
55             }
56             diagnostic.handler().abort_if_errors();
57             unreachable!();
58         }
59     }
60 }