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
use crate::aggregate::{AggregateIdOf, Generation, WithAggregateId};
use crate::event::NewEvent;
use crate::VersionedAggregate;
use serde::{Deserialize, Serialize};
use std::fmt::Debug;

pub type EventOf<H, C, A> = <H as HandleCommand<C, A>>::Event;

pub trait HandleCommand<C, A>
where
    A: WithAggregateId,
{
    type Event;
    type Error: std::error::Error;
    type Context;

    fn handle_command(
        &self,
        command: C,
        context: &Self::Context,
    ) -> Result<Vec<NewEvent<Self::Event, A>>, Self::Error>;
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DomainCommand<C, A>
where
    A: WithAggregateId,
{
    pub aggregate_id: AggregateIdOf<A>,
    pub aggregate_generation: Generation,
    pub data: C,
}

impl<C, A> From<(C, &VersionedAggregate<A>)> for DomainCommand<C, A>
where
    A: WithAggregateId,
{
    fn from((command, aggregate): (C, &VersionedAggregate<A>)) -> Self {
        Self {
            aggregate_id: aggregate.state().aggregate_id().clone(),
            aggregate_generation: aggregate.generation(),
            data: command,
        }
    }
}

impl<C, A> DomainCommand<C, A>
where
    A: WithAggregateId,
{
    pub fn new(
        aggregate_id: AggregateIdOf<A>,
        aggregate_generation: impl Into<Generation>,
        data: impl Into<C>,
    ) -> Self {
        Self {
            aggregate_id,
            aggregate_generation: aggregate_generation.into(),
            data: data.into(),
        }
    }
}