2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-05-11 14:20:14 -04:00
|
|
|
|
|
|
|
// This file defines the public interface for dynamically loaded plugins.
|
|
|
|
|
|
|
|
// The plugin needs to do all interaction with the CLI crate through trait
|
|
|
|
// objects and function pointers. This ensures that no concrete internal methods
|
|
|
|
// (such as register_op and the closures created by it) can end up in the plugin
|
|
|
|
// shared library itself, which would cause segfaults when the plugin is
|
|
|
|
// unloaded and all functions in the plugin library are unmapped from memory.
|
|
|
|
|
|
|
|
pub use crate::Op;
|
|
|
|
pub use crate::OpId;
|
|
|
|
pub use crate::ZeroCopyBuf;
|
|
|
|
|
|
|
|
pub type InitFn = fn(&mut dyn Interface);
|
|
|
|
|
2020-07-08 11:23:50 -04:00
|
|
|
pub type DispatchOpFn = fn(&mut dyn Interface, &mut [ZeroCopyBuf]) -> Op;
|
2020-05-11 14:20:14 -04:00
|
|
|
|
|
|
|
pub trait Interface {
|
|
|
|
fn register_op(&mut self, name: &str, dispatcher: DispatchOpFn) -> OpId;
|
|
|
|
}
|