use relay_protocol::{Annotated, Empty, FromValue, IntoValue, Object, Value};
use crate::processor::ProcessValue;
use crate::protocol::LenientString;
#[derive(Clone, Debug, Default, PartialEq, Empty, FromValue, IntoValue, ProcessValue)]
pub struct RuntimeContext {
pub runtime: Annotated<String>,
pub name: Annotated<String>,
pub version: Annotated<String>,
#[metastructure(pii = "maybe")]
pub build: Annotated<LenientString>,
#[metastructure(pii = "maybe")]
pub raw_description: Annotated<String>,
#[metastructure(additional_properties, retain = "true", pii = "maybe")]
pub other: Object<Value>,
}
impl super::DefaultContext for RuntimeContext {
fn default_key() -> &'static str {
"runtime"
}
fn from_context(context: super::Context) -> Option<Self> {
match context {
super::Context::Runtime(c) => Some(*c),
_ => None,
}
}
fn cast(context: &super::Context) -> Option<&Self> {
match context {
super::Context::Runtime(c) => Some(c),
_ => None,
}
}
fn cast_mut(context: &mut super::Context) -> Option<&mut Self> {
match context {
super::Context::Runtime(c) => Some(c),
_ => None,
}
}
fn into_context(self) -> super::Context {
super::Context::Runtime(Box::new(self))
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::protocol::Context;
#[test]
fn test_runtime_context_roundtrip() {
let json = r#"{
"runtime": "rustc 1.27.0",
"name": "rustc",
"version": "1.27.0",
"build": "stable",
"raw_description": "rustc 1.27.0 stable",
"other": "value",
"type": "runtime"
}"#;
let context = Annotated::new(Context::Runtime(Box::new(RuntimeContext {
runtime: Annotated::new("rustc 1.27.0".to_string()),
name: Annotated::new("rustc".to_string()),
version: Annotated::new("1.27.0".to_string()),
build: Annotated::new(LenientString("stable".to_string())),
raw_description: Annotated::new("rustc 1.27.0 stable".to_string()),
other: {
let mut map = Object::new();
map.insert(
"other".to_string(),
Annotated::new(Value::String("value".to_string())),
);
map
},
})));
assert_eq!(context, Annotated::from_json(json).unwrap());
assert_eq!(json, context.to_json_pretty().unwrap());
}
}