use std::fmt;
use std::str::FromStr;
#[derive(Debug, Clone, Copy, Ord, PartialOrd, Eq, PartialEq)]
pub enum Version {
V1 = 1,
V2 = 2,
V3 = 3,
V4 = 4,
V5 = 5,
V6 = 6,
}
const CONTENT_TYPE_V1: &str = "application/vnd.restate.invocation.v1";
const CONTENT_TYPE_V2: &str = "application/vnd.restate.invocation.v2";
const CONTENT_TYPE_V3: &str = "application/vnd.restate.invocation.v3";
const CONTENT_TYPE_V4: &str = "application/vnd.restate.invocation.v4";
const CONTENT_TYPE_V5: &str = "application/vnd.restate.invocation.v5";
const CONTENT_TYPE_V6: &str = "application/vnd.restate.invocation.v6";
impl Version {
pub const fn content_type(&self) -> &'static str {
match self {
Version::V1 => CONTENT_TYPE_V1,
Version::V2 => CONTENT_TYPE_V2,
Version::V3 => CONTENT_TYPE_V3,
Version::V4 => CONTENT_TYPE_V4,
Version::V5 => CONTENT_TYPE_V5,
Version::V6 => CONTENT_TYPE_V6,
}
}
pub const fn minimum_supported_version() -> Self {
Version::V5
}
pub const fn maximum_supported_version() -> Self {
Version::V6
}
}
impl fmt::Display for Version {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.content_type())
}
}
#[derive(Debug, thiserror::Error)]
#[error("unsupported protocol version '{0}'")]
pub enum ContentTypeError {
#[error("unsupported protocol version '{0}'")]
RestateContentType(String),
#[error("unrecognized content-type '{0}', this is not a restate protocol content type. Make sure you're invoking the service though restate-server, rather than directly.")]
OtherContentType(String),
}
impl FromStr for Version {
type Err = ContentTypeError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
CONTENT_TYPE_V1 => Ok(Version::V1),
CONTENT_TYPE_V2 => Ok(Version::V2),
CONTENT_TYPE_V3 => Ok(Version::V3),
CONTENT_TYPE_V4 => Ok(Version::V4),
CONTENT_TYPE_V5 => Ok(Version::V5),
CONTENT_TYPE_V6 => Ok(Version::V6),
s if s.starts_with("application/vnd.restate.invocation.") => {
Err(ContentTypeError::RestateContentType(s.to_owned()))
}
s => Err(ContentTypeError::OtherContentType(s.to_owned())),
}
}
}