2014-05-24 18:16:10 -05:00
|
|
|
// Copyright 2012-2013 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.
|
|
|
|
|
2014-12-30 21:10:46 -06:00
|
|
|
//! Used by `rustc` when loading a plugin, or a crate with exported macros.
|
2014-05-26 16:48:54 -05:00
|
|
|
|
2014-11-15 19:30:33 -06:00
|
|
|
use session::Session;
|
2014-12-09 10:03:05 -06:00
|
|
|
use metadata::creader::{CrateOrString, CrateReader};
|
2014-05-26 16:48:54 -05:00
|
|
|
use plugin::registry::Registry;
|
2014-05-24 18:16:10 -05:00
|
|
|
|
|
|
|
use std::mem;
|
2015-01-27 14:20:58 -06:00
|
|
|
use std::env;
|
2014-06-08 22:12:10 -05:00
|
|
|
use std::dynamic_lib::DynamicLibrary;
|
2015-01-01 18:37:47 -06:00
|
|
|
use std::collections::HashSet;
|
2014-05-24 18:16:10 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::attr;
|
2015-01-03 00:21:28 -06:00
|
|
|
use syntax::codemap::Span;
|
2015-01-01 18:37:47 -06:00
|
|
|
use syntax::parse::token;
|
2015-01-02 20:26:00 -06:00
|
|
|
use syntax::ptr::P;
|
2014-05-24 18:16:10 -05:00
|
|
|
use syntax::visit;
|
|
|
|
use syntax::visit::Visitor;
|
|
|
|
use syntax::attr::AttrMetaMethods;
|
|
|
|
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Pointer to a registrar function.
|
|
|
|
pub type PluginRegistrarFun =
|
|
|
|
fn(&mut Registry);
|
|
|
|
|
2015-01-02 20:26:00 -06:00
|
|
|
pub struct PluginRegistrar {
|
|
|
|
pub fun: PluginRegistrarFun,
|
|
|
|
pub args: P<ast::MetaItem>,
|
|
|
|
}
|
|
|
|
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Information about loaded plugins.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub struct Plugins {
|
2014-12-30 21:10:46 -06:00
|
|
|
/// Imported macros.
|
|
|
|
pub macros: Vec<ast::MacroDef>,
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Registrars, as function pointers.
|
2015-01-02 20:26:00 -06:00
|
|
|
pub registrars: Vec<PluginRegistrar>,
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
|
|
|
|
2014-12-09 11:25:37 -06:00
|
|
|
pub struct PluginLoader<'a> {
|
2014-05-24 18:16:10 -05:00
|
|
|
sess: &'a Session,
|
2015-01-03 00:21:28 -06:00
|
|
|
span_whitelist: HashSet<Span>,
|
2014-12-21 01:02:38 -06:00
|
|
|
reader: CrateReader<'a>,
|
2014-12-09 11:25:37 -06:00
|
|
|
pub plugins: Plugins,
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PluginLoader<'a> {
|
|
|
|
fn new(sess: &'a Session) -> PluginLoader<'a> {
|
|
|
|
PluginLoader {
|
|
|
|
sess: sess,
|
2014-12-21 01:02:38 -06:00
|
|
|
reader: CrateReader::new(sess),
|
2015-01-03 00:21:28 -06:00
|
|
|
span_whitelist: HashSet::new(),
|
2014-05-24 18:16:10 -05:00
|
|
|
plugins: Plugins {
|
|
|
|
macros: vec!(),
|
|
|
|
registrars: vec!(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Read plugin metadata and dynamically load registrar functions.
|
2014-07-19 23:54:37 -05:00
|
|
|
pub fn load_plugins(sess: &Session, krate: &ast::Crate,
|
2014-12-09 11:25:37 -06:00
|
|
|
addl_plugins: Option<Vec<String>>) -> Plugins {
|
2014-05-24 18:16:10 -05:00
|
|
|
let mut loader = PluginLoader::new(sess);
|
2015-01-03 00:21:28 -06:00
|
|
|
|
|
|
|
// We need to error on `#[macro_use] extern crate` when it isn't at the
|
|
|
|
// crate root, because `$crate` won't work properly. Identify these by
|
|
|
|
// spans, because the crate map isn't set up yet.
|
2015-01-31 11:20:46 -06:00
|
|
|
for item in &krate.module.items {
|
2014-12-23 13:33:44 -06:00
|
|
|
if let ast::ItemExternCrate(_) = item.node {
|
|
|
|
loader.span_whitelist.insert(item.span);
|
|
|
|
}
|
2015-01-03 00:21:28 -06:00
|
|
|
}
|
|
|
|
|
2014-09-12 05:10:30 -05:00
|
|
|
visit::walk_crate(&mut loader, krate);
|
2014-07-19 23:54:37 -05:00
|
|
|
|
2014-12-09 11:25:37 -06:00
|
|
|
if let Some(plugins) = addl_plugins {
|
2015-02-01 20:53:25 -06:00
|
|
|
for plugin in plugins {
|
|
|
|
loader.load_plugin(CrateOrString::Str(&plugin),
|
2014-12-09 11:25:37 -06:00
|
|
|
None, None, None)
|
2014-07-19 23:54:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-09 11:25:37 -06:00
|
|
|
return loader.plugins;
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
|
|
|
|
2014-07-09 16:48:12 -05:00
|
|
|
// note that macros aren't expanded yet, and therefore macros can't add plugins.
|
2014-09-09 17:54:36 -05:00
|
|
|
impl<'a, 'v> Visitor<'v> for PluginLoader<'a> {
|
2014-12-23 13:33:44 -06:00
|
|
|
fn visit_item(&mut self, item: &ast::Item) {
|
2014-12-31 21:48:39 -06:00
|
|
|
// We're only interested in `extern crate`.
|
2014-12-23 13:33:44 -06:00
|
|
|
match item.node {
|
|
|
|
ast::ItemExternCrate(_) => {}
|
|
|
|
_ => {
|
|
|
|
visit::walk_item(self, item);
|
|
|
|
return;
|
|
|
|
}
|
2014-12-31 21:48:39 -06:00
|
|
|
}
|
|
|
|
|
2014-12-31 22:43:46 -06:00
|
|
|
// Parse the attributes relating to macro / plugin loading.
|
2015-01-02 20:26:00 -06:00
|
|
|
let mut plugin_attr = None;
|
2015-01-02 14:50:45 -06:00
|
|
|
let mut macro_selection = Some(HashSet::new()); // None => load all
|
2015-01-01 18:37:47 -06:00
|
|
|
let mut reexport = HashSet::new();
|
2015-01-31 11:20:46 -06:00
|
|
|
for attr in &item.attrs {
|
2014-12-31 22:43:46 -06:00
|
|
|
let mut used = true;
|
2015-02-03 17:03:39 -06:00
|
|
|
match &attr.name()[] {
|
2014-12-31 22:43:46 -06:00
|
|
|
"phase" => {
|
|
|
|
self.sess.span_err(attr.span, "#[phase] is deprecated; use \
|
|
|
|
#[macro_use], #[plugin], and/or #[no_link]");
|
|
|
|
}
|
2015-01-02 20:26:00 -06:00
|
|
|
"plugin" => {
|
|
|
|
if plugin_attr.is_some() {
|
|
|
|
self.sess.span_err(attr.span, "#[plugin] specified multiple times");
|
|
|
|
}
|
|
|
|
plugin_attr = Some(attr.node.value.clone());
|
|
|
|
}
|
2015-01-02 14:50:45 -06:00
|
|
|
"macro_use" => {
|
|
|
|
let names = attr.meta_item_list();
|
|
|
|
if names.is_none() {
|
|
|
|
// no names => load all
|
|
|
|
macro_selection = None;
|
|
|
|
}
|
|
|
|
if let (Some(sel), Some(names)) = (macro_selection.as_mut(), names) {
|
2015-01-31 11:20:46 -06:00
|
|
|
for name in names {
|
2015-01-02 14:50:45 -06:00
|
|
|
if let ast::MetaWord(ref name) = name.node {
|
|
|
|
sel.insert(name.clone());
|
|
|
|
} else {
|
|
|
|
self.sess.span_err(name.span, "bad macro import");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-01 18:37:47 -06:00
|
|
|
"macro_reexport" => {
|
|
|
|
let names = match attr.meta_item_list() {
|
|
|
|
Some(names) => names,
|
|
|
|
None => {
|
|
|
|
self.sess.span_err(attr.span, "bad macro reexport");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-31 11:20:46 -06:00
|
|
|
for name in names {
|
2015-01-01 18:37:47 -06:00
|
|
|
if let ast::MetaWord(ref name) = name.node {
|
|
|
|
reexport.insert(name.clone());
|
|
|
|
} else {
|
|
|
|
self.sess.span_err(name.span, "bad macro reexport");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-31 22:43:46 -06:00
|
|
|
_ => used = false,
|
2014-12-31 21:48:39 -06:00
|
|
|
}
|
2014-12-31 22:43:46 -06:00
|
|
|
if used {
|
|
|
|
attr::mark_used(attr);
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
2014-12-31 21:48:39 -06:00
|
|
|
}
|
|
|
|
|
2014-12-23 13:33:44 -06:00
|
|
|
self.load_plugin(CrateOrString::Krate(item),
|
|
|
|
plugin_attr,
|
|
|
|
macro_selection,
|
|
|
|
Some(reexport))
|
2014-12-09 10:44:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_mac(&mut self, _: &ast::Mac) {
|
|
|
|
// bummer... can't see plugins inside macros.
|
|
|
|
// do nothing.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PluginLoader<'a> {
|
|
|
|
pub fn load_plugin<'b>(&mut self,
|
|
|
|
c: CrateOrString<'b>,
|
|
|
|
plugin_attr: Option<P<ast::MetaItem>>,
|
|
|
|
macro_selection: Option<HashSet<token::InternedString>>,
|
2014-12-09 11:25:37 -06:00
|
|
|
reexport: Option<HashSet<token::InternedString>>) {
|
2014-12-31 21:48:39 -06:00
|
|
|
let mut macros = vec![];
|
|
|
|
let mut registrar = None;
|
|
|
|
|
2014-12-09 11:25:37 -06:00
|
|
|
let load_macros = match (macro_selection.as_ref(), reexport.as_ref()) {
|
|
|
|
(Some(sel), Some(re)) => sel.len() != 0 || re.len() != 0,
|
|
|
|
_ => true,
|
2015-01-02 14:50:45 -06:00
|
|
|
};
|
2015-01-02 20:26:00 -06:00
|
|
|
let load_registrar = plugin_attr.is_some();
|
2015-01-02 14:50:45 -06:00
|
|
|
|
2014-12-09 10:44:08 -06:00
|
|
|
if let CrateOrString::Krate(vi) = c {
|
|
|
|
if load_macros && !self.span_whitelist.contains(&vi.span) {
|
|
|
|
self.sess.span_err(vi.span, "an `extern crate` loading macros must be at \
|
|
|
|
the crate root");
|
|
|
|
}
|
|
|
|
}
|
2015-01-03 00:21:28 -06:00
|
|
|
|
2014-12-31 22:43:46 -06:00
|
|
|
if load_macros || load_registrar {
|
2014-12-09 10:44:08 -06:00
|
|
|
let pmd = self.reader.read_plugin_metadata(c);
|
2014-12-31 22:43:46 -06:00
|
|
|
if load_macros {
|
|
|
|
macros = pmd.exported_macros();
|
|
|
|
}
|
|
|
|
if load_registrar {
|
|
|
|
registrar = pmd.plugin_registrar();
|
|
|
|
}
|
2014-12-31 21:48:39 -06:00
|
|
|
}
|
|
|
|
|
2015-01-31 19:03:04 -06:00
|
|
|
for mut def in macros {
|
2015-01-02 14:50:45 -06:00
|
|
|
let name = token::get_ident(def.ident);
|
|
|
|
def.use_locally = match macro_selection.as_ref() {
|
|
|
|
None => true,
|
|
|
|
Some(sel) => sel.contains(&name),
|
|
|
|
};
|
2014-12-09 11:25:37 -06:00
|
|
|
def.export = if let Some(ref re) = reexport {
|
|
|
|
re.contains(&name)
|
|
|
|
} else {
|
|
|
|
false // Don't reexport macros from crates loaded from the command line
|
|
|
|
};
|
2015-01-01 18:37:47 -06:00
|
|
|
self.plugins.macros.push(def);
|
|
|
|
}
|
|
|
|
|
2014-12-31 21:48:39 -06:00
|
|
|
if let Some((lib, symbol)) = registrar {
|
2014-12-09 10:44:08 -06:00
|
|
|
let fun = self.dylink_registrar(c, lib, symbol);
|
2015-01-02 20:26:00 -06:00
|
|
|
self.plugins.registrars.push(PluginRegistrar {
|
|
|
|
fun: fun,
|
|
|
|
args: plugin_attr.unwrap(),
|
|
|
|
});
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
|
|
|
}
|
2014-12-31 21:48:39 -06:00
|
|
|
|
2014-05-24 18:16:10 -05:00
|
|
|
// Dynamically link a registrar function into the compiler process.
|
2014-12-09 10:44:08 -06:00
|
|
|
fn dylink_registrar<'b>(&mut self,
|
|
|
|
c: CrateOrString<'b>,
|
2015-01-02 20:26:00 -06:00
|
|
|
path: Path,
|
|
|
|
symbol: String) -> PluginRegistrarFun {
|
2014-05-24 18:16:10 -05:00
|
|
|
// Make sure the path contains a / or the linker will search for it.
|
2015-01-27 14:20:58 -06:00
|
|
|
let path = env::current_dir().unwrap().join(&path);
|
2014-05-24 18:16:10 -05:00
|
|
|
|
|
|
|
let lib = match DynamicLibrary::open(Some(&path)) {
|
|
|
|
Ok(lib) => lib,
|
|
|
|
// this is fatal: there are almost certainly macros we need
|
|
|
|
// inside this crate, so continue would spew "macro undefined"
|
|
|
|
// errors
|
2014-12-09 10:44:08 -06:00
|
|
|
Err(err) => {
|
|
|
|
if let CrateOrString::Krate(cr) = c {
|
|
|
|
self.sess.span_fatal(cr.span, &err[])
|
|
|
|
} else {
|
|
|
|
self.sess.fatal(&err[])
|
|
|
|
}
|
|
|
|
}
|
2014-05-24 18:16:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
unsafe {
|
2014-06-12 16:08:44 -05:00
|
|
|
let registrar =
|
2015-01-07 10:58:31 -06:00
|
|
|
match lib.symbol(&symbol[]) {
|
2014-06-12 16:08:44 -05:00
|
|
|
Ok(registrar) => {
|
2014-06-25 14:47:34 -05:00
|
|
|
mem::transmute::<*mut u8,PluginRegistrarFun>(registrar)
|
2014-06-12 16:08:44 -05:00
|
|
|
}
|
2014-05-24 18:16:10 -05:00
|
|
|
// again fatal if we can't register macros
|
2014-12-09 10:44:08 -06:00
|
|
|
Err(err) => {
|
|
|
|
if let CrateOrString::Krate(cr) = c {
|
|
|
|
self.sess.span_fatal(cr.span, &err[])
|
|
|
|
} else {
|
|
|
|
self.sess.fatal(&err[])
|
|
|
|
}
|
|
|
|
}
|
2014-05-24 18:16:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// Intentionally leak the dynamic library. We can't ever unload it
|
|
|
|
// since the library can make things that will live arbitrarily long
|
|
|
|
// (e.g. an @-box cycle or a task).
|
|
|
|
mem::forget(lib);
|
|
|
|
|
2015-01-02 20:26:00 -06:00
|
|
|
registrar
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|