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-05-26 16:48:54 -05:00
|
|
|
//! Used by `rustc` when loading a plugin.
|
|
|
|
|
2014-05-24 18:16:10 -05:00
|
|
|
use driver::session::Session;
|
|
|
|
use metadata::creader::PluginMetadataReader;
|
2014-05-26 16:48:54 -05:00
|
|
|
use plugin::registry::Registry;
|
2014-05-24 18:16:10 -05:00
|
|
|
|
|
|
|
use std::mem;
|
|
|
|
use std::os;
|
2014-06-08 22:12:10 -05:00
|
|
|
use std::dynamic_lib::DynamicLibrary;
|
2014-05-24 18:16:10 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::attr;
|
|
|
|
use syntax::visit;
|
|
|
|
use syntax::visit::Visitor;
|
|
|
|
use syntax::ext::expand::ExportedMacros;
|
|
|
|
use syntax::attr::AttrMetaMethods;
|
|
|
|
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Plugin-related crate metadata.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub struct PluginMetadata {
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Source code of macros exported by the crate.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub macros: Vec<String>,
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Path to the shared library file.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub lib: Option<Path>,
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Symbol name of the plugin registrar function.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub registrar_symbol: Option<String>,
|
|
|
|
}
|
|
|
|
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Pointer to a registrar function.
|
|
|
|
pub type PluginRegistrarFun =
|
|
|
|
fn(&mut Registry);
|
|
|
|
|
|
|
|
/// Information about loaded plugins.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub struct Plugins {
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Source code of exported macros.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub macros: Vec<ExportedMacros>,
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Registrars, as function pointers.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub registrars: Vec<PluginRegistrarFun>,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PluginLoader<'a> {
|
|
|
|
sess: &'a Session,
|
|
|
|
reader: PluginMetadataReader<'a>,
|
|
|
|
plugins: Plugins,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PluginLoader<'a> {
|
|
|
|
fn new(sess: &'a Session) -> PluginLoader<'a> {
|
|
|
|
PluginLoader {
|
|
|
|
sess: sess,
|
|
|
|
reader: PluginMetadataReader::new(sess),
|
|
|
|
plugins: Plugins {
|
|
|
|
macros: vec!(),
|
|
|
|
registrars: vec!(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-26 16:48:54 -05:00
|
|
|
/// Read plugin metadata and dynamically load registrar functions.
|
2014-05-24 18:16:10 -05:00
|
|
|
pub fn load_plugins(sess: &Session, krate: &ast::Crate) -> Plugins {
|
|
|
|
let mut loader = PluginLoader::new(sess);
|
|
|
|
visit::walk_crate(&mut loader, krate, ());
|
|
|
|
loader.plugins
|
|
|
|
}
|
|
|
|
|
2014-07-09 16:48:12 -05:00
|
|
|
// note that macros aren't expanded yet, and therefore macros can't add plugins.
|
2014-05-24 18:16:10 -05:00
|
|
|
impl<'a> Visitor<()> for PluginLoader<'a> {
|
|
|
|
fn visit_view_item(&mut self, vi: &ast::ViewItem, _: ()) {
|
|
|
|
match vi.node {
|
|
|
|
ast::ViewItemExternCrate(name, _, _) => {
|
|
|
|
let mut plugin_phase = false;
|
|
|
|
|
|
|
|
for attr in vi.attrs.iter().filter(|a| a.check_name("phase")) {
|
|
|
|
let phases = attr.meta_item_list().unwrap_or(&[]);
|
|
|
|
if attr::contains_name(phases, "plugin") {
|
|
|
|
plugin_phase = true;
|
|
|
|
}
|
|
|
|
if attr::contains_name(phases, "syntax") {
|
|
|
|
plugin_phase = true;
|
|
|
|
self.sess.span_warn(attr.span,
|
|
|
|
"phase(syntax) is a deprecated synonym for phase(plugin)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !plugin_phase { return; }
|
|
|
|
|
|
|
|
let PluginMetadata { macros, lib, registrar_symbol } =
|
|
|
|
self.reader.read_plugin_metadata(vi);
|
|
|
|
|
|
|
|
self.plugins.macros.push(ExportedMacros {
|
|
|
|
crate_name: name,
|
|
|
|
macros: macros,
|
|
|
|
});
|
|
|
|
|
|
|
|
match (lib, registrar_symbol) {
|
|
|
|
(Some(lib), Some(symbol))
|
|
|
|
=> self.dylink_registrar(vi, lib, symbol),
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
2014-07-09 16:48:12 -05:00
|
|
|
fn visit_mac(&mut self, _: &ast::Mac, _:()) {
|
|
|
|
// bummer... can't see plugins inside macros.
|
|
|
|
// do nothing.
|
|
|
|
}
|
2014-05-24 18:16:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PluginLoader<'a> {
|
|
|
|
// Dynamically link a registrar function into the compiler process.
|
|
|
|
fn dylink_registrar(&mut self, vi: &ast::ViewItem, path: Path, symbol: String) {
|
|
|
|
// Make sure the path contains a / or the linker will search for it.
|
|
|
|
let path = os::make_absolute(&path);
|
|
|
|
|
|
|
|
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
|
|
|
|
Err(err) => self.sess.span_fatal(vi.span, err.as_slice())
|
|
|
|
};
|
|
|
|
|
|
|
|
unsafe {
|
2014-06-12 16:08:44 -05:00
|
|
|
let registrar =
|
2014-05-24 18:16:10 -05:00
|
|
|
match lib.symbol(symbol.as_slice()) {
|
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
|
|
|
|
Err(err) => self.sess.span_fatal(vi.span, err.as_slice())
|
|
|
|
};
|
|
|
|
|
|
|
|
self.plugins.registrars.push(registrar);
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|