use crate::{
BusinessProcessModelAndNotation,
element::BPMNElementTrait,
marking::{BPMNRootMarking, BPMNSubMarking, Token},
parser::parser_state::GlobalIndex,
semantics::TransitionIndex,
traits::{
objectable::{BPMNObject, EMPTY_FLOWS},
processable::Processable,
transitionable::{
Transitionable, execute_transition_parallel_split,
transition_2_produced_tokens_concurrent_split,
},
},
};
use anyhow::{Result, anyhow};
use bitvec::{bitvec, prelude::BitVec};
use ebi_activity_key::Activity;
use ebi_arithmetic::{Fraction, One};
#[derive(Debug, Clone)]
pub struct BPMNParallelGateway {
pub(crate) global_index: GlobalIndex,
pub(crate) id: String,
pub(crate) local_index: usize,
pub(crate) incoming_sequence_flows: Vec<usize>,
pub(crate) outgoing_sequence_flows: Vec<usize>,
}
impl BPMNElementTrait for BPMNParallelGateway {
fn add_incoming_sequence_flow(&mut self, flow_index: usize) -> Result<()> {
self.incoming_sequence_flows.push(flow_index);
Ok(())
}
fn add_outgoing_sequence_flow(&mut self, flow_index: usize) -> Result<()> {
self.outgoing_sequence_flows.push(flow_index);
Ok(())
}
fn add_incoming_message_flow(&mut self, _flow_index: usize) -> Result<()> {
Err(anyhow!("gateways cannot have incoming message flows"))
}
fn add_outgoing_message_flow(&mut self, _flow_index: usize) -> Result<()> {
Err(anyhow!("gateways cannot have outgoing message flows"))
}
fn verify_structural_correctness(
&self,
_parent: &dyn Processable,
_bpmn: &BusinessProcessModelAndNotation,
) -> Result<()> {
Ok(())
}
}
impl BPMNObject for BPMNParallelGateway {
fn local_index(&self) -> usize {
self.local_index
}
fn global_index(&self) -> GlobalIndex {
self.global_index
}
fn activity(&self) -> Option<Activity> {
None
}
fn id(&self) -> &str {
&self.id
}
fn is_unconstrained_start_event(
&self,
_bpmn: &BusinessProcessModelAndNotation,
) -> Result<bool> {
Ok(false)
}
fn is_end_event(&self) -> bool {
false
}
fn incoming_sequence_flows(&self) -> &[usize] {
&self.incoming_sequence_flows
}
fn outgoing_sequence_flows(&self) -> &[usize] {
&self.outgoing_sequence_flows
}
fn incoming_message_flows(&self) -> &[usize] {
&EMPTY_FLOWS
}
fn outgoing_message_flows(&self) -> &[usize] {
&EMPTY_FLOWS
}
fn can_start_process_instance(&self, _bpmn: &BusinessProcessModelAndNotation) -> Result<bool> {
Ok(self.incoming_sequence_flows().len() == 0)
}
fn outgoing_message_flows_always_have_tokens(&self) -> bool {
false
}
fn outgoing_messages_cannot_be_removed(&self) -> bool {
false
}
fn incoming_messages_are_ignored(&self) -> bool {
false
}
fn can_have_incoming_sequence_flows(&self) -> bool {
true
}
fn can_have_outgoing_sequence_flows(&self) -> bool {
true
}
}
impl Transitionable for BPMNParallelGateway {
fn number_of_transitions(&self, _marking: &BPMNSubMarking) -> usize {
1
}
fn enabled_transitions(
&self,
_root_marking: &BPMNRootMarking,
sub_marking: &BPMNSubMarking,
_parent: &dyn Processable,
_bpmn: &BusinessProcessModelAndNotation,
) -> Result<BitVec> {
if self.incoming_sequence_flows.is_empty() {
if sub_marking.element_index_2_tokens[self.local_index] == 0 {
return Ok(bitvec![0;1]);
}
} else {
for incoming_sequence_flow in &self.incoming_sequence_flows {
if sub_marking.sequence_flow_2_tokens[*incoming_sequence_flow] == 0 {
return Ok(bitvec![0;1]);
}
}
}
Ok(bitvec![1;1])
}
fn execute_transition(
&self,
_transition_index: TransitionIndex,
_root_marking: &mut BPMNRootMarking,
sub_marking: &mut BPMNSubMarking,
_parent: &dyn Processable,
_bpmn: &BusinessProcessModelAndNotation,
) -> Result<()> {
if self.incoming_sequence_flows.is_empty() {
sub_marking.element_index_2_tokens[self.local_index] -= 1;
} else {
for incoming_sequence_flow in &self.incoming_sequence_flows {
sub_marking.sequence_flow_2_tokens[*incoming_sequence_flow] -= 1;
}
}
execute_transition_parallel_split!(self, sub_marking);
Ok(())
}
fn transition_activity(
&self,
_transition_index: TransitionIndex,
_marking: &BPMNSubMarking,
) -> Option<Activity> {
None
}
fn transition_debug(
&self,
transition_index: TransitionIndex,
_marking: &BPMNSubMarking,
_bpmn: &BusinessProcessModelAndNotation,
) -> Option<String> {
Some(format!(
"parallel gateway `{}`; internal transition {}",
self.id, transition_index
))
}
fn transition_probabilistic_penalty(
&self,
_transition_index: TransitionIndex,
_marking: &BPMNSubMarking,
_parent: &dyn Processable,
) -> Option<Fraction> {
Some(Fraction::one())
}
fn transition_2_consumed_tokens(
&self,
_transition_index: TransitionIndex,
_root_marking: &BPMNRootMarking,
_sub_marking: &BPMNSubMarking,
parent: &dyn Processable,
_bpmn: &BusinessProcessModelAndNotation,
) -> Result<Vec<Token>> {
if self.incoming_sequence_flows.is_empty() {
Ok(vec![Token::Element(self.global_index())])
} else {
Ok(self
.incoming_sequence_flows
.iter()
.filter_map(|sequence_flow_local_index| {
let sequence_flow = parent
.sequence_flows_non_recursive()
.get(*sequence_flow_local_index)?;
Some(Token::SequenceFlow(sequence_flow.global_index()))
})
.collect())
}
}
fn transition_2_produced_tokens(
&self,
_transition_index: TransitionIndex,
_marking: &BPMNRootMarking,
_sub_marking: &BPMNSubMarking,
parent: &dyn Processable,
_bpmn: &BusinessProcessModelAndNotation,
) -> Result<Vec<Token>> {
Ok(transition_2_produced_tokens_concurrent_split!(self, parent))
}
}