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.
|
|
|
|
|
2015-02-11 21:53:10 -06:00
|
|
|
//! Used by `rustc` when loading a plugin.
|
2014-05-26 16:48:54 -05:00
|
|
|
|
2014-11-15 19:30:33 -06:00
|
|
|
use session::Session;
|
2015-02-11 20:43:16 -06:00
|
|
|
use metadata::creader::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-02-23 12:59:17 -06:00
|
|
|
use std::os;
|
2014-06-08 22:12:10 -05:00
|
|
|
use std::dynamic_lib::DynamicLibrary;
|
2015-02-06 15:56:38 -06:00
|
|
|
use std::borrow::ToOwned;
|
2014-05-24 18:16:10 -05:00
|
|
|
use syntax::ast;
|
2015-02-06 15:56:38 -06:00
|
|
|
use syntax::codemap::{Span, COMMAND_LINE_SP};
|
2015-01-02 20:26:00 -06:00
|
|
|
use syntax::ptr::P;
|
2014-05-24 18:16:10 -05:00
|
|
|
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,
|
2015-02-06 15:56:38 -06:00
|
|
|
pub args: Vec<P<ast::MetaItem>>,
|
2015-01-02 20:26:00 -06:00
|
|
|
}
|
|
|
|
|
2015-02-11 21:53:10 -06:00
|
|
|
struct PluginLoader<'a> {
|
2014-05-24 18:16:10 -05:00
|
|
|
sess: &'a Session,
|
2014-12-21 01:02:38 -06:00
|
|
|
reader: CrateReader<'a>,
|
2015-02-11 21:53:10 -06:00
|
|
|
plugins: Vec<PluginRegistrar>,
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
|
|
|
|
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,
|
2015-02-11 21:53:10 -06:00
|
|
|
addl_plugins: Option<Vec<String>>) -> Vec<PluginRegistrar> {
|
2014-05-24 18:16:10 -05:00
|
|
|
let mut loader = PluginLoader::new(sess);
|
2015-01-03 00:21:28 -06:00
|
|
|
|
2015-02-06 15:56:38 -06:00
|
|
|
for attr in &krate.attrs {
|
|
|
|
if !attr.check_name("plugin") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let plugins = match attr.meta_item_list() {
|
|
|
|
Some(xs) => xs,
|
|
|
|
None => {
|
|
|
|
sess.span_err(attr.span, "malformed plugin attribute");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
for plugin in plugins {
|
|
|
|
if plugin.value_str().is_some() {
|
|
|
|
sess.span_err(attr.span, "malformed plugin attribute");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let args = plugin.meta_item_list().map(ToOwned::to_owned).unwrap_or_default();
|
2015-02-11 20:43:16 -06:00
|
|
|
loader.load_plugin(plugin.span, &*plugin.name(), args);
|
2015-02-06 15:56:38 -06: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 {
|
2015-02-11 20:43:16 -06:00
|
|
|
loader.load_plugin(COMMAND_LINE_SP, &plugin, vec![]);
|
2014-07-19 23:54:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-11 21:53:10 -06:00
|
|
|
loader.plugins
|
2014-12-09 10:44:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PluginLoader<'a> {
|
2015-02-11 21:53:10 -06:00
|
|
|
fn new(sess: &'a Session) -> PluginLoader<'a> {
|
|
|
|
PluginLoader {
|
|
|
|
sess: sess,
|
|
|
|
reader: CrateReader::new(sess),
|
|
|
|
plugins: vec![],
|
2015-02-10 21:30:33 -06:00
|
|
|
}
|
2015-02-06 15:56:38 -06:00
|
|
|
}
|
|
|
|
|
2015-02-11 21:53:10 -06:00
|
|
|
fn load_plugin(&mut self, span: Span, name: &str, args: Vec<P<ast::MetaItem>>) {
|
2015-02-11 20:43:16 -06:00
|
|
|
let registrar = self.reader.find_plugin_registrar(span, name);
|
2015-01-01 18:37:47 -06:00
|
|
|
|
2014-12-31 21:48:39 -06:00
|
|
|
if let Some((lib, symbol)) = registrar {
|
2015-02-11 20:43:16 -06:00
|
|
|
let fun = self.dylink_registrar(span, lib, symbol);
|
2015-02-11 21:53:10 -06:00
|
|
|
self.plugins.push(PluginRegistrar {
|
2015-01-02 20:26:00 -06:00
|
|
|
fun: fun,
|
2015-02-06 15:56:38 -06:00
|
|
|
args: args,
|
2015-01-02 20:26:00 -06:00
|
|
|
});
|
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.
|
2015-02-11 20:43:16 -06:00
|
|
|
fn dylink_registrar(&mut self,
|
|
|
|
span: Span,
|
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-02-23 12:59:17 -06:00
|
|
|
let path = os::getcwd().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) => {
|
2015-02-18 13:48:57 -06:00
|
|
|
self.sess.span_fatal(span, &err[..])
|
2014-12-09 10:44:08 -06:00
|
|
|
}
|
2014-05-24 18:16:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
unsafe {
|
2014-06-12 16:08:44 -05:00
|
|
|
let registrar =
|
2015-02-18 13:48:57 -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) => {
|
2015-02-18 13:48:57 -06:00
|
|
|
self.sess.span_fatal(span, &err[..])
|
2014-12-09 10:44:08 -06:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|