wasmer_wasix/runners/dcgi/
runner.rsuse std::{net::SocketAddr, sync::Arc};
use anyhow::Error;
use wasmer_journal::FilteredJournalBuilder;
use wcgi_host::CgiDialect;
use webc::metadata::Command;
use crate::{
bin_factory::BinaryPackage,
capabilities::Capabilities,
journal::DynJournal,
runners::{
dcgi::handler::Handler,
wcgi::{self, NoOpWcgiCallbacks, WcgiRunner},
MappedDirectory,
},
runtime::{DynRuntime, OverriddenRuntime},
Runtime,
};
use super::{DcgiCallbacks, DcgiInstanceFactory};
#[derive(Debug)]
pub struct DcgiRunner {
config: Config,
inner: wcgi::WcgiRunner,
}
impl DcgiRunner {
pub fn new(factory: DcgiInstanceFactory) -> Self {
let callbacks = DcgiCallbacks::new(factory, NoOpWcgiCallbacks);
DcgiRunner {
config: Config {
inner: wcgi::Config::new(callbacks.clone()),
},
inner: WcgiRunner::new(callbacks),
}
}
pub fn config(&mut self) -> &mut Config {
&mut self.config
}
#[tracing::instrument(skip_all)]
fn prepare_handler(
&mut self,
command_name: &str,
pkg: &BinaryPackage,
runtime: Arc<dyn Runtime + Send + Sync>,
) -> Result<Handler, Error> {
let inner: wcgi::Handler =
self.inner
.prepare_handler(command_name, pkg, true, CgiDialect::Rfc3875, runtime)?;
Ok(Handler::new(inner))
}
}
pub const DCGI_RUNNER_URI: &str = "https://webc.org/runner/dcgi";
impl crate::runners::Runner for DcgiRunner {
fn can_run_command(command: &Command) -> Result<bool, Error> {
Ok(command.runner.starts_with(DCGI_RUNNER_URI))
}
fn run_command(
&mut self,
command_name: &str,
pkg: &BinaryPackage,
runtime: Arc<DynRuntime>,
) -> Result<(), Error> {
let journals = runtime
.journals()
.clone()
.into_iter()
.map(|journal| {
let journal = FilteredJournalBuilder::new()
.with_ignore_memory(true)
.with_ignore_threads(true)
.with_ignore_core(true)
.with_ignore_snapshots(true)
.with_ignore_networking(true)
.with_ignore_stdio(true)
.build(journal);
Arc::new(journal) as Arc<DynJournal>
})
.collect::<Vec<_>>();
let runtime = OverriddenRuntime::new(runtime).with_journals(journals);
let runtime = Arc::new(runtime) as Arc<DynRuntime>;
let handler = self.prepare_handler(command_name, pkg, Arc::clone(&runtime))?;
self.inner.run_command_with_handler(handler, runtime)
}
}
#[derive(Debug)]
pub struct Config {
inner: wcgi::Config,
}
impl Config {
pub fn inner(&mut self) -> &mut wcgi::Config {
&mut self.inner
}
pub fn addr(&mut self, addr: SocketAddr) -> &mut Self {
self.inner.addr(addr);
self
}
pub fn arg(&mut self, arg: impl Into<String>) -> &mut Self {
self.inner.arg(arg);
self
}
pub fn args<A, S>(&mut self, args: A) -> &mut Self
where
A: IntoIterator<Item = S>,
S: Into<String>,
{
self.inner.args(args);
self
}
pub fn env(&mut self, name: impl Into<String>, value: impl Into<String>) -> &mut Self {
self.inner.env(name, value);
self
}
pub fn envs<I, K, V>(&mut self, variables: I) -> &mut Self
where
I: IntoIterator<Item = (K, V)>,
K: Into<String>,
V: Into<String>,
{
self.inner.envs(variables);
self
}
pub fn forward_host_env(&mut self) -> &mut Self {
self.inner.forward_host_env();
self
}
pub fn map_directory(&mut self, dir: MappedDirectory) -> &mut Self {
self.inner.map_directory(dir);
self
}
pub fn map_directories(
&mut self,
mappings: impl IntoIterator<Item = MappedDirectory>,
) -> &mut Self {
self.inner.map_directories(mappings);
self
}
pub fn callbacks(&mut self, callbacks: impl wcgi::Callbacks + 'static) -> &mut Self {
self.inner.callbacks(callbacks);
self
}
pub fn inject_package(&mut self, pkg: BinaryPackage) -> &mut Self {
self.inner.inject_package(pkg);
self
}
pub fn inject_packages(
&mut self,
packages: impl IntoIterator<Item = BinaryPackage>,
) -> &mut Self {
self.inner.inject_packages(packages);
self
}
pub fn capabilities(&mut self) -> &mut Capabilities {
self.inner.capabilities()
}
pub fn add_snapshot_trigger(&mut self, on: crate::journal::SnapshotTrigger) {
self.inner.add_snapshot_trigger(on);
}
pub fn add_default_snapshot_triggers(&mut self) -> &mut Self {
self.inner.add_default_snapshot_triggers();
self
}
pub fn has_snapshot_trigger(&self, on: crate::journal::SnapshotTrigger) -> bool {
self.inner.has_snapshot_trigger(on)
}
pub fn with_snapshot_interval(&mut self, period: std::time::Duration) -> &mut Self {
self.inner.with_snapshot_interval(period);
self
}
pub fn add_journal(&mut self, journal: Arc<crate::journal::DynJournal>) -> &mut Self {
self.inner.add_journal(journal);
self
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn send_and_sync() {
fn assert_send<T: Send>() {}
fn assert_sync<T: Sync>() {}
assert_send::<DcgiRunner>();
assert_sync::<DcgiRunner>();
}
}