Chekov

A CQRS/ES framework for building application in Rust


[![Actions Status](https://github.com/freyskeyd/chekov/workflows/CI/badge.svg)](https://github.com/Freyskeyd/chekov/actions) [![Coverage Status](https://coveralls.io/repos/github/Freyskeyd/chekov/badge.svg?branch=master&service=github)](https://coveralls.io/github/Freyskeyd/chekov?branch=master) [![dependency status](https://deps.rs/repo/github/freyskeyd/chekov/status.svg)](https://deps.rs/repo/github/freyskeyd/chekov) [![Crates.io](https://img.shields.io/crates/v/chekov.svg)](https://crates.io/crates/chekov) [![doc.rs](https://docs.rs/chekov/badge.svg)](https://docs.rs/chekov) [![doc-latest](https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square)](https://freyskeyd.github.io/chekov/chekov/)

Table of Contents


Features

Getting started

Choosing an EventStore backend

Chekov works only with Postgres backend for now. The choice is easy to make!

But some more backends need to be implemented, see the related issue.

Defining Aggregates

An Aggregate is a struct that hold a domain state. Here's an example of a UserAggregate:

```rust

[derive(Default, Aggregate)]

[aggregate(identity = "user")]

struct User { userid: Option, accountid: Option, }

/// Define an Executor for the CreateUser command /// The result is a list of events in case of success impl CommandExecutor for User { fn execute(cmd: CreateUser, state: &Self) -> Result, CommandExecutorError> { Ok(vec![UserCreated { userid: cmd.userid, accountid: cmd.account_id, }]) } }

/// Define an Applier for the UserCreated event /// Applier is a mutation action on the aggregate

[chekov::applier]

impl EventApplier for User { fn apply(&mut self, event: &UserCreated) -> Result<(), ApplyError> { self.userid = Some(event.userid); self.accountid = Some(event.accountid);

Ok(())

} }

```

Defining Commands

You need to create a struct per command, any type of struct can implement Command but we advise to use struct for a better readability.

A command can only produce (or not) one type of events and it targets a single Aggregate. A command must have a single and unique identifier that is used to route the command to the right target.

```rust

[derive(Debug, Command)]

[command(event = "UserCreated", aggregate = "User")]

struct CreateUser { #[command(identifier)] userid: Uuid, accountid: Uuid, } ```

Defining Events

An Event can be a struct or an enum.

```rust

[derive(Event, Deserialize, Serialize)]

struct UserCreated { userid: Uuid, accountid: Uuid, } ```

Defining Saga

Not implemented yet