]>
Commit | Line | Data |
---|---|---|
1a4d82fc JJ |
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; | |
b039eaaf | 14 | use syntax::attr; |
1a4d82fc | 15 | use syntax::codemap::Span; |
9cc50fc6 | 16 | use syntax::errors; |
7453a54e | 17 | use rustc::dep_graph::DepNode; |
54a0048b SL |
18 | use rustc::hir::map::Map; |
19 | use rustc::hir::intravisit::Visitor; | |
20 | use rustc::hir; | |
1a4d82fc JJ |
21 | |
22 | struct RegistrarFinder { | |
23 | registrars: Vec<(ast::NodeId, Span)> , | |
24 | } | |
25 | ||
26 | impl<'v> Visitor<'v> for RegistrarFinder { | |
e9174d1e SL |
27 | fn visit_item(&mut self, item: &hir::Item) { |
28 | if let hir::ItemFn(..) = item.node { | |
85aaf69f | 29 | if attr::contains_name(&item.attrs, |
1a4d82fc JJ |
30 | "plugin_registrar") { |
31 | self.registrars.push((item.id, item.span)); | |
32 | } | |
33 | } | |
1a4d82fc JJ |
34 | } |
35 | } | |
36 | ||
37 | /// Find the function marked with `#[plugin_registrar]`, if any. | |
9cc50fc6 | 38 | pub fn find_plugin_registrar(diagnostic: &errors::Handler, |
7453a54e | 39 | hir_map: &Map) |
e9174d1e | 40 | -> Option<ast::NodeId> { |
7453a54e SL |
41 | let _task = hir_map.dep_graph.in_task(DepNode::PluginRegistrar); |
42 | let krate = hir_map.krate(); | |
43 | ||
1a4d82fc | 44 | let mut finder = RegistrarFinder { registrars: Vec::new() }; |
92a42be0 | 45 | krate.visit_all_items(&mut finder); |
1a4d82fc JJ |
46 | |
47 | match finder.registrars.len() { | |
48 | 0 => None, | |
49 | 1 => { | |
50 | let (node_id, _) = finder.registrars.pop().unwrap(); | |
51 | Some(node_id) | |
52 | }, | |
53 | _ => { | |
9cc50fc6 | 54 | let mut e = diagnostic.struct_err("multiple plugin registration functions found"); |
85aaf69f | 55 | for &(_, span) in &finder.registrars { |
9cc50fc6 | 56 | e.span_note(span, "one is here"); |
1a4d82fc | 57 | } |
9cc50fc6 SL |
58 | e.emit(); |
59 | diagnostic.abort_if_errors(); | |
1a4d82fc JJ |
60 | unreachable!(); |
61 | } | |
62 | } | |
63 | } |