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
use std::fmt;

use serde::{Deserialize, Serialize};

use super::{CapabilityMapV1, StringWebcIdent};

#[doc(inline)]
pub use wcgi_host::CgiDialect;

/// Spawn a new workload on demand.
#[derive(Serialize, Deserialize, PartialEq, Eq, Clone, Debug, schemars::JsonSchema)]
pub struct WorkloadV2 {
    pub source: StringWebcIdent,
    #[serde(default)]
    pub capabilities: CapabilityMapV1,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum RunnerKind {
    Wasi,
    Wcgi,
}

impl RunnerKind {
    pub fn ipv6_only(&self) -> bool {
        match self {
            Self::Wcgi => true,
            _ => false,
        }
    }
}

impl fmt::Display for RunnerKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Wasi => write!(f, "wasi"),
            Self::Wcgi => write!(f, "wcgi"),
        }
    }
}