spin_app/lib.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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
//! Spin internal application interfaces
//!
//! This crate contains interfaces to Spin application configuration to be used
//! by crates that implement Spin execution environments: trigger executors and
//! host components, in particular.
#![deny(missing_docs)]
use std::collections::HashSet;
use serde::Deserialize;
use serde_json::Value;
use spin_locked_app::MetadataExt;
use locked::{ContentPath, LockedApp, LockedComponent, LockedComponentSource, LockedTrigger};
pub use spin_locked_app::locked;
pub use spin_locked_app::values;
pub use spin_locked_app::{Error, MetadataKey, Result};
pub use locked::Variable;
/// MetadataKey for extracting the application name.
pub const APP_NAME_KEY: MetadataKey = MetadataKey::new("name");
/// MetadataKey for extracting the application version.
pub const APP_VERSION_KEY: MetadataKey = MetadataKey::new("version");
/// MetadataKey for extracting the application description.
pub const APP_DESCRIPTION_KEY: MetadataKey = MetadataKey::new("description");
/// MetadataKey for extracting the OCI image digest.
pub const OCI_IMAGE_DIGEST_KEY: MetadataKey = MetadataKey::new("oci_image_digest");
/// Validation function type for ensuring that applications meet requirements
/// even with components filtered out.
pub type ValidatorFn = dyn Fn(&App, &[&str]) -> anyhow::Result<()>;
/// An `App` holds loaded configuration for a Spin application.
#[derive(Debug, Clone)]
pub struct App {
id: String,
locked: LockedApp,
}
impl App {
/// Returns a new app for the given runtime-specific identifier and locked
/// app.
pub fn new(id: impl Into<String>, locked: LockedApp) -> Self {
Self {
id: id.into(),
locked,
}
}
/// Returns a runtime-specific identifier for this app.
pub fn id(&self) -> &str {
&self.id
}
/// Deserializes typed metadata for this app.
///
/// Returns `Ok(None)` if there is no metadata for the given `key` and an
/// `Err` only if there _is_ a value for the `key` but the typed
/// deserialization failed.
pub fn get_metadata<'this, T: Deserialize<'this>>(
&'this self,
key: MetadataKey<T>,
) -> Result<Option<T>> {
self.locked.get_metadata(key)
}
/// Deserializes typed metadata for this app.
///
/// Like [`App::get_metadata`], but returns an error if there is
/// no metadata for the given `key`.
pub fn require_metadata<'this, T: Deserialize<'this>>(
&'this self,
key: MetadataKey<T>,
) -> Result<T> {
self.locked.require_metadata(key)
}
/// Returns an iterator of custom config [`Variable`]s defined for this app.
pub fn variables(&self) -> impl Iterator<Item = (&String, &Variable)> {
self.locked.variables.iter()
}
/// Returns an iterator of [`AppComponent`]s defined for this app.
pub fn components(&self) -> impl Iterator<Item = AppComponent<'_>> {
self.locked
.components
.iter()
.map(|locked| AppComponent { app: self, locked })
}
/// Returns the [`AppComponent`] with the given `component_id`, or `None`
/// if it doesn't exist.
pub fn get_component(&self, component_id: &str) -> Option<AppComponent<'_>> {
self.components()
.find(|component| component.locked.id == component_id)
}
/// Returns an iterator of [`AppTrigger`]s defined for this app.
pub fn triggers(&self) -> impl Iterator<Item = AppTrigger<'_>> + '_ {
self.locked
.triggers
.iter()
.map(|locked| AppTrigger { app: self, locked })
}
/// Returns the trigger metadata for a specific trigger type.
pub fn get_trigger_metadata<'this, T: Deserialize<'this>>(
&'this self,
trigger_type: &str,
) -> Result<Option<T>> {
let Some(value) = self.get_trigger_metadata_value(trigger_type) else {
return Ok(None);
};
let metadata = T::deserialize(value).map_err(|err| {
Error::MetadataError(format!(
"invalid metadata value for {trigger_type:?}: {err:?}"
))
})?;
Ok(Some(metadata))
}
fn get_trigger_metadata_value(&self, trigger_type: &str) -> Option<Value> {
if let Some(trigger_configs) = self.locked.metadata.get("triggers") {
// New-style: `{"triggers": {"<type>": {...}}}`
trigger_configs.get(trigger_type).cloned()
} else if self.locked.metadata["trigger"]["type"] == trigger_type {
// Old-style: `{"trigger": {"type": "<type>", ...}}`
let mut meta = self.locked.metadata["trigger"].clone();
meta.as_object_mut().unwrap().remove("type");
Some(meta)
} else {
None
}
}
/// Returns an iterator of [`AppTrigger`]s defined for this app with
/// the given `trigger_type`.
pub fn triggers_with_type<'a>(
&'a self,
trigger_type: &'a str,
) -> impl Iterator<Item = AppTrigger> {
self.triggers()
.filter(move |trigger| trigger.locked.trigger_type == trigger_type)
}
/// Returns an iterator of trigger IDs and deserialized trigger configs for
/// the given `trigger_type`.
pub fn trigger_configs<'a, T: Deserialize<'a>>(
&'a self,
trigger_type: &'a str,
) -> Result<impl IntoIterator<Item = (&'a str, T)>> {
self.triggers_with_type(trigger_type)
.map(|trigger| {
let config = trigger.typed_config::<T>()?;
Ok((trigger.id(), config))
})
.collect::<Result<Vec<_>>>()
}
/// Checks that the application does not have any host requirements
/// outside the supported set. The error case returns a comma-separated
/// list of unmet requirements.
pub fn ensure_needs_only(&self, supported: &[&str]) -> std::result::Result<(), String> {
self.locked.ensure_needs_only(supported)
}
/// Scrubs the locked app to only contain the given list of components
/// Introspects the LockedApp to find and selectively retain the triggers that correspond to those components
fn retain_components(
mut self,
retained_components: &[&str],
validators: &[&ValidatorFn],
) -> Result<LockedApp> {
self.validate_retained_components_exist(retained_components)?;
for validator in validators {
validator(&self, retained_components).map_err(Error::ValidationError)?;
}
let (component_ids, trigger_ids): (HashSet<String>, HashSet<String>) = self
.triggers()
.filter_map(|t| match t.component() {
Ok(comp) if retained_components.contains(&comp.id()) => {
Some((comp.id().to_owned(), t.id().to_owned()))
}
_ => None,
})
.collect();
self.locked
.components
.retain(|c| component_ids.contains(&c.id));
self.locked.triggers.retain(|t| trigger_ids.contains(&t.id));
Ok(self.locked)
}
/// Validates that all components specified to be retained actually exist in the app
fn validate_retained_components_exist(&self, retained_components: &[&str]) -> Result<()> {
let app_components = self
.components()
.map(|c| c.id().to_string())
.collect::<HashSet<_>>();
for c in retained_components {
if !app_components.contains(*c) {
return Err(Error::ValidationError(anyhow::anyhow!(
"Specified component \"{c}\" not found in application"
)));
}
}
Ok(())
}
}
/// An `AppComponent` holds configuration for a Spin application component.
pub struct AppComponent<'a> {
/// The app this component belongs to.
pub app: &'a App,
/// The locked component.
pub locked: &'a LockedComponent,
}
impl<'a> AppComponent<'a> {
/// Returns this component's app-unique ID.
pub fn id(&self) -> &str {
&self.locked.id
}
/// Returns this component's Wasm component or module source.
pub fn source(&self) -> &LockedComponentSource {
&self.locked.source
}
/// Returns an iterator of environment variable (key, value) pairs.
pub fn environment(&self) -> impl IntoIterator<Item = (&str, &str)> {
self.locked
.env
.iter()
.map(|(k, v)| (k.as_str(), v.as_str()))
}
/// Returns an iterator of [`ContentPath`]s for this component's configured
/// "directory mounts".
pub fn files(&self) -> std::slice::Iter<ContentPath> {
self.locked.files.iter()
}
/// Deserializes typed metadata for this component.
///
/// Returns `Ok(None)` if there is no metadata for the given `key` and an
/// `Err` only if there _is_ a value for the `key` but the typed
/// deserialization failed.
pub fn get_metadata<T: Deserialize<'a>>(&self, key: MetadataKey<T>) -> Result<Option<T>> {
self.locked.metadata.get_typed(key)
}
/// Deserializes typed metadata for this component.
///
/// Like [`AppComponent::get_metadata`], but returns an error if there is
/// no metadata for the given `key`.
pub fn require_metadata<'this, T: Deserialize<'this>>(
&'this self,
key: MetadataKey<T>,
) -> Result<T> {
self.locked.metadata.require_typed(key)
}
/// Returns an iterator of custom config values for this component.
pub fn config(&self) -> impl Iterator<Item = (&String, &String)> {
self.locked.config.iter()
}
}
/// An `AppTrigger` holds configuration for a Spin application trigger.
pub struct AppTrigger<'a> {
/// The app this trigger belongs to.
pub app: &'a App,
locked: &'a LockedTrigger,
}
impl<'a> AppTrigger<'a> {
/// Returns this trigger's app-unique ID.
pub fn id(&self) -> &'a str {
&self.locked.id
}
/// Returns the Trigger's type.
pub fn trigger_type(&self) -> &'a str {
&self.locked.trigger_type
}
/// Deserializes this trigger's configuration into a typed value.
pub fn typed_config<Config: Deserialize<'a>>(&self) -> Result<Config> {
Ok(Config::deserialize(&self.locked.trigger_config)?)
}
/// Returns a reference to the [`AppComponent`] configured for this trigger.
///
/// This is a convenience wrapper that looks up the component based on the
/// 'component' metadata value which is conventionally a component ID.
pub fn component(&self) -> Result<AppComponent<'a>> {
let id = &self.locked.id;
let common_config: CommonTriggerConfig = self.typed_config()?;
let component_id = common_config.component.ok_or_else(|| {
Error::MetadataError(format!("trigger {id:?} missing 'component' config field"))
})?;
self.app.get_component(&component_id).ok_or_else(|| {
Error::MetadataError(format!(
"missing component {component_id:?} configured for trigger {id:?}"
))
})
}
}
#[derive(Deserialize)]
struct CommonTriggerConfig {
component: Option<String>,
}
/// Scrubs the locked app to only contain the given list of components
/// Introspects the LockedApp to find and selectively retain the triggers that correspond to those components
pub fn retain_components(
locked: LockedApp,
components: &[&str],
validators: &[&ValidatorFn],
) -> Result<LockedApp> {
App::new("unused", locked).retain_components(components, validators)
}
#[cfg(test)]
mod test {
use spin_factors_test::build_locked_app;
use super::*;
fn does_nothing_validator(_: &App, _: &[&str]) -> anyhow::Result<()> {
Ok(())
}
#[tokio::test]
async fn test_retain_components_filtering_for_only_component_works() {
let manifest = toml::toml! {
spin_manifest_version = 2
[application]
name = "test-app"
[[trigger.test-trigger]]
component = "empty"
[component.empty]
source = "does-not-exist.wasm"
};
let mut locked_app = build_locked_app(&manifest).await.unwrap();
locked_app = retain_components(locked_app, &["empty"], &[&does_nothing_validator]).unwrap();
let components = locked_app
.components
.iter()
.map(|c| c.id.to_string())
.collect::<HashSet<_>>();
assert!(components.contains("empty"));
assert!(components.len() == 1);
}
}