use std::f64::INFINITY;
use serde::{Deserialize, Serialize};
use super::AsModel;
use super::ModelMessage;
use crate::input_modeling::random_variable::IndexRandomVariable;
use crate::simulator::Services;
use crate::utils::error::SimulationError;
use crate::utils::{populate_history_port, populate_snapshot_port};
#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ExclusiveGateway {
ports_in: PortsIn,
ports_out: PortsOut,
port_weights: IndexRandomVariable,
#[serde(default)]
state: State,
#[serde(default)]
snapshot: Metrics,
#[serde(default)]
history: Vec<Metrics>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
struct PortsIn {
flow_paths: Vec<String>,
snapshot: Option<String>,
history: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
struct PortsOut {
flow_paths: Vec<String>,
snapshot: Option<String>,
history: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
struct State {
event_list: Vec<ScheduledEvent>,
}
impl Default for State {
fn default() -> Self {
let initalization_event = ScheduledEvent {
time: 0.0,
event: Event::Run,
};
State {
event_list: vec![initalization_event],
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
enum Event {
Run,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
struct ScheduledEvent {
time: f64,
event: Event,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
struct Metrics {
last_job: Option<(String, String, f64)>, }
impl Default for Metrics {
fn default() -> Self {
Metrics { last_job: None }
}
}
impl ExclusiveGateway {
pub fn new(
flow_paths_in: Vec<String>,
flow_paths_out: Vec<String>,
port_weights: IndexRandomVariable,
snapshot_metrics: bool,
history_metrics: bool,
) -> Self {
Self {
ports_in: PortsIn {
flow_paths: flow_paths_in,
snapshot: populate_snapshot_port(snapshot_metrics),
history: populate_history_port(history_metrics),
},
ports_out: PortsOut {
flow_paths: flow_paths_out,
snapshot: populate_snapshot_port(snapshot_metrics),
history: populate_history_port(history_metrics),
},
port_weights,
state: Default::default(),
snapshot: Default::default(),
history: Default::default(),
}
}
fn need_snapshot_metrics(&self) -> bool {
self.ports_in.snapshot.is_some() && self.ports_out.snapshot.is_some()
}
fn need_historical_metrics(&self) -> bool {
self.need_snapshot_metrics()
&& self.ports_in.history.is_some()
&& self.ports_out.history.is_some()
}
}
impl AsModel for ExclusiveGateway {
fn status(&self) -> String {
String::from("Active")
}
fn events_ext(
&mut self,
incoming_message: ModelMessage,
services: &mut Services,
) -> Result<Vec<ModelMessage>, SimulationError> {
let mut outgoing_messages: Vec<ModelMessage> = Vec::new();
let port_number = self.port_weights.random_variate(services.uniform_rng())?;
if self.need_snapshot_metrics() {
self.snapshot.last_job = Some((
self.ports_out.flow_paths[port_number].clone(),
incoming_message.content.clone(),
services.global_time(),
));
}
if self.need_historical_metrics() {
self.history.push(self.snapshot.clone());
}
outgoing_messages.push(ModelMessage {
port_name: self.ports_out.flow_paths[port_number].clone(),
content: incoming_message.content,
});
Ok(outgoing_messages)
}
fn events_int(
&mut self,
_services: &mut Services,
) -> Result<Vec<ModelMessage>, SimulationError> {
let events = self.state.event_list.clone();
self.state.event_list = self
.state
.event_list
.iter()
.filter(|scheduled_event| scheduled_event.time != 0.0)
.cloned()
.collect();
events
.iter()
.filter(|scheduled_event| scheduled_event.time == 0.0)
.for_each(|scheduled_event| match scheduled_event.event {
Event::Run => {}
});
Ok(Vec::new())
}
fn time_advance(&mut self, time_delta: f64) {
self.state
.event_list
.iter_mut()
.for_each(|scheduled_event| {
scheduled_event.time -= time_delta;
});
}
fn until_next_event(&self) -> f64 {
self.state
.event_list
.iter()
.fold(INFINITY, |until_next_event, event| {
f64::min(until_next_event, event.time)
})
}
}