use crate::error::Error;
use serde::{Deserialize, Serialize, de, ser};
use std::{fmt, str::FromStr};
#[derive(Clone, Debug, Eq, Hash, PartialEq, PartialOrd, Ord)]
#[non_exhaustive]
pub enum Category {
CodeExecution,
CryptoFailure,
DenialOfService,
FileDisclosure,
FormatInjection,
MemoryCorruption,
MemoryExposure,
PrivilegeEscalation,
ThreadSafety,
Other(String),
}
impl Category {
pub fn name(&self) -> &str {
match self {
Category::CodeExecution => "code-execution",
Category::CryptoFailure => "crypto-failure",
Category::DenialOfService => "denial-of-service",
Category::FileDisclosure => "file-disclosure",
Category::FormatInjection => "format-injection",
Category::MemoryCorruption => "memory-corruption",
Category::MemoryExposure => "memory-exposure",
Category::PrivilegeEscalation => "privilege-escalation",
Category::ThreadSafety => "thread-safety",
Category::Other(other) => other,
}
}
}
impl fmt::Display for Category {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.name())
}
}
impl FromStr for Category {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Error> {
Ok(match s {
"code-execution" => Category::CodeExecution,
"crypto-failure" => Category::CryptoFailure,
"denial-of-service" => Category::DenialOfService,
"file-disclosure" => Category::FileDisclosure,
"format-injection" => Category::FormatInjection,
"memory-corruption" => Category::MemoryCorruption,
"memory-exposure" => Category::MemoryExposure,
"privilege-escalation" => Category::PrivilegeEscalation,
"thread-safety" => Category::ThreadSafety,
other => Category::Other(other.to_owned()),
})
}
}
impl<'de> Deserialize<'de> for Category {
fn deserialize<D: de::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
use de::Error;
let string = String::deserialize(deserializer)?;
string.parse().map_err(D::Error::custom)
}
}
impl Serialize for Category {
fn serialize<S: ser::Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
self.to_string().serialize(serializer)
}
}