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
use crate::activity::{CommandOutput, ExeScriptCommand}; use chrono::{NaiveDateTime, Utc}; use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] pub struct RuntimeEvent { pub batch_id: String, pub index: usize, pub timestamp: NaiveDateTime, pub kind: RuntimeEventKind, } impl RuntimeEvent { pub fn new(batch_id: String, index: usize, kind: RuntimeEventKind) -> Self { RuntimeEvent { batch_id, index, kind, timestamp: Utc::now().naive_utc(), } } pub fn started(batch_id: String, idx: usize, command: ExeScriptCommand) -> Self { Self::new(batch_id, idx, RuntimeEventKind::Started { command }) } pub fn finished( batch_id: String, idx: usize, return_code: i32, message: Option<String>, ) -> Self { Self::new( batch_id, idx, RuntimeEventKind::Finished { return_code, message, }, ) } pub fn stdout(batch_id: String, idx: usize, out: CommandOutput) -> Self { Self::new(batch_id, idx, RuntimeEventKind::StdOut(out)) } pub fn stderr(batch_id: String, idx: usize, out: CommandOutput) -> Self { Self::new(batch_id, idx, RuntimeEventKind::StdErr(out)) } } #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "lowercase")] pub enum RuntimeEventKind { Started { command: ExeScriptCommand, }, Finished { return_code: i32, message: Option<String>, }, StdOut(CommandOutput), StdErr(CommandOutput), }