spin_factors/factor.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
use std::any::Any;
use wasmtime::component::{Linker, ResourceTable};
use crate::{prepare::FactorInstanceBuilder, App, Error, PrepareContext, RuntimeFactors};
/// A contained (i.e., "factored") piece of runtime functionality.
pub trait Factor: Any + Sized {
/// The particular runtime configuration relevant to this factor.
///
/// Runtime configuration allows for user-provided customization of the
/// factor's behavior on a per-app basis.
type RuntimeConfig;
/// The application state of this factor.
///
/// This state *may* be cached by the runtime across multiple requests.
type AppState: Sync;
/// The builder of instance state for this factor.
type InstanceBuilder: FactorInstanceBuilder;
/// Initializes this `Factor` for a runtime once at runtime startup.
///
/// This will be called at most once, before any call to
/// [`Factor::prepare`]. `InitContext` provides access to a wasmtime
/// `Linker`, so this is where any bindgen `add_to_linker` calls go.
///
/// The type parameter `T` here is the same as the [`wasmtime::Store`] type
/// parameter `T`, which will contain the [`RuntimeFactors::InstanceState`].
fn init<T: Send + 'static>(&mut self, mut ctx: InitContext<T, Self>) -> anyhow::Result<()> {
_ = &mut ctx;
Ok(())
}
/// Performs factor-specific validation and configuration for the given
/// [`App`].
///
/// `ConfigureAppContext` gives access to:
/// - The `spin_app::App`
/// - This factors's `RuntimeConfig`
/// - The `AppState` for any factors configured before this one
///
/// A runtime may - but is not required to - reuse the returned config
/// across multiple instances. Because this method may be called
/// per-instantiation, it should avoid any blocking operations that could
/// unnecessarily delay execution.
///
/// This method may be called without any call to `init` or `prepare` in
/// cases where only validation is needed (e.g., `spin doctor`).
fn configure_app<T: RuntimeFactors>(
&self,
ctx: ConfigureAppContext<T, Self>,
) -> anyhow::Result<Self::AppState>;
/// Creates a new `FactorInstanceBuilder`, which will later build
/// per-instance state for this factor.
///
/// This method is given access to the app component being instantiated and
/// to any other factors' instance builders that have already been prepared.
/// As such, this is the primary place for inter-factor dependencies to be
/// used.
fn prepare<T: RuntimeFactors>(
&self,
ctx: PrepareContext<T, Self>,
) -> anyhow::Result<Self::InstanceBuilder>;
}
/// The instance state of the given [`Factor`] `F`.
pub type FactorInstanceState<F> =
<<F as Factor>::InstanceBuilder as FactorInstanceBuilder>::InstanceState;
pub(crate) type GetDataFn<T, U> = fn(&mut T) -> &mut FactorInstanceState<U>;
pub(crate) type GetDataWithTableFn<T, U> =
fn(&mut T) -> (&mut FactorInstanceState<U>, &mut ResourceTable);
/// An InitContext is passed to [`Factor::init`], giving access to the global
/// common [`wasmtime::component::Linker`].
pub struct InitContext<'a, T, U: Factor> {
pub(crate) linker: &'a mut Linker<T>,
pub(crate) get_data: GetDataFn<T, U>,
pub(crate) get_data_with_table: GetDataWithTableFn<T, U>,
}
impl<'a, T, U: Factor> InitContext<'a, T, U> {
#[doc(hidden)]
pub fn new(
linker: &'a mut Linker<T>,
get_data: GetDataFn<T, U>,
get_data_with_table: GetDataWithTableFn<T, U>,
) -> Self {
Self {
linker,
get_data,
get_data_with_table,
}
}
/// Returns a mutable reference to the [`wasmtime::component::Linker`].
pub fn linker(&mut self) -> &mut Linker<T> {
self.linker
}
/// Returns a function that can be used to get the instance state for this factor.
pub fn get_data_fn(&self) -> GetDataFn<T, U> {
self.get_data
}
/// Returns a function that can be used to get the instance state for this
/// factor along with the instance's [`ResourceTable`].
pub fn get_data_with_table_fn(&self) -> GetDataWithTableFn<T, U> {
self.get_data_with_table
}
/// Convenience method to link a binding to the linker.
pub fn link_bindings(
&mut self,
add_to_linker: impl Fn(
&mut Linker<T>,
fn(&mut T) -> &mut FactorInstanceState<U>,
) -> anyhow::Result<()>,
) -> anyhow::Result<()> {
add_to_linker(self.linker, self.get_data)
}
}
pub struct ConfigureAppContext<'a, T: RuntimeFactors, F: Factor> {
app: &'a App,
app_state: &'a T::AppState,
runtime_config: Option<F::RuntimeConfig>,
}
impl<'a, T: RuntimeFactors, F: Factor> ConfigureAppContext<'a, T, F> {
#[doc(hidden)]
pub fn new(
app: &'a App,
app_state: &'a T::AppState,
runtime_config: Option<F::RuntimeConfig>,
) -> crate::Result<Self> {
Ok(Self {
app,
app_state,
runtime_config,
})
}
/// Get the [`App`] being configured.
pub fn app(&self) -> &'a App {
self.app
}
/// Get the app state related to the given factor.
pub fn app_state<U: Factor>(&self) -> crate::Result<&'a U::AppState> {
T::app_state::<U>(self.app_state).ok_or(Error::no_such_factor::<U>())
}
/// Get a reference to the runtime configuration for the given factor.
pub fn runtime_config(&self) -> Option<&F::RuntimeConfig> {
self.runtime_config.as_ref()
}
/// Take ownership of the runtime configuration for the given factor.
pub fn take_runtime_config(&mut self) -> Option<F::RuntimeConfig> {
self.runtime_config.take()
}
}
#[doc(hidden)]
pub struct ConfiguredApp<T: RuntimeFactors> {
app: App,
app_state: T::AppState,
}
impl<T: RuntimeFactors> ConfiguredApp<T> {
#[doc(hidden)]
pub fn new(app: App, app_state: T::AppState) -> Self {
Self { app, app_state }
}
/// Get the configured [`App`].
pub fn app(&self) -> &App {
&self.app
}
/// Get the configured app's state related to the given factor.
pub fn app_state<U: Factor>(&self) -> crate::Result<&U::AppState> {
T::app_state::<U>(&self.app_state).ok_or(Error::no_such_factor::<U>())
}
}