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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
#![doc = include_str!("../README.md")]
use chrono::{DateTime, Utc};
use jdk::StringHasher;
use serde::{Deserialize, Serialize};
use smol_str::SmolStr;
use std::{
fmt::{self, Display, Write},
hash::{BuildHasher, Hash, Hasher},
ops::Range,
str::FromStr,
};
pub mod effect;
pub mod entity;
pub mod entity_manager;
pub mod jdk;
/// Uniquely identifies the type of an Entity.
pub type EntityType = SmolStr;
/// Uniquely identifies an entity, or entity instance.
pub type EntityId = SmolStr;
/// Tags annotate an entity's events
pub type Tag = SmolStr;
/// Implemented by structures that can return a persistence id.
pub trait WithPersistenceId {
fn persistence_id(&self) -> &PersistenceId;
}
/// Implemented by structures that can return tags.
pub trait WithTags {
fn tags(&self) -> &[Tag];
}
/// A slice is deterministically defined based on the persistence id.
/// `NUMBER_OF_SLICES` is not configurable because changing the value would result in
/// different slice for a persistence id than what was used before, which would
/// result in invalid events_by_slices call on a source provider.
pub const NUMBER_OF_SLICES: u32 = 1024;
/// Split the total number of slices into ranges by the given `number_of_ranges`.
/// For example, `NUMBER_OF_SLICES` is 1024 and given 4 `number_of_ranges` this method will
/// return ranges (0 to 255), (256 to 511), (512 to 767) and (768 to 1023).
pub fn slice_ranges(number_of_ranges: u32) -> Vec<Range<u32>> {
let range_size = NUMBER_OF_SLICES / number_of_ranges;
assert!(
number_of_ranges * range_size == NUMBER_OF_SLICES,
"number_of_ranges must be a whole number divisor of numberOfSlices."
);
let mut ranges = Vec::with_capacity(number_of_ranges as usize);
for i in 0..number_of_ranges {
ranges.push(i * range_size..i * range_size + range_size)
}
ranges
}
/// A namespaced entity id given an entity type.
#[derive(Clone, Debug, Deserialize, PartialOrd, Ord, Serialize, PartialEq, Eq, Hash)]
pub struct PersistenceId {
pub entity_type: EntityType,
pub entity_id: EntityId,
}
impl PersistenceId {
pub fn new(entity_type: EntityType, entity_id: EntityId) -> Self {
Self {
entity_type,
entity_id,
}
}
pub fn slice(&self) -> u32 {
(self.jdk_string_hash() % NUMBER_OF_SLICES as i32).unsigned_abs()
}
pub fn jdk_string_hash(&self) -> i32 {
let mut hasher = StringHasher.build_hasher();
hasher.write(self.entity_type.as_bytes());
hasher.write(b"|");
hasher.write(self.entity_id.as_bytes());
hasher.finish() as i32
}
}
impl Display for PersistenceId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(&self.entity_type)?;
f.write_char('|')?;
f.write_str(&self.entity_id)
}
}
#[derive(Debug)]
pub struct PersistenceIdParseError;
impl FromStr for PersistenceId {
type Err = PersistenceIdParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let persistence_id = if let Some((entity_type, entity_id)) = s.split_once('|') {
PersistenceId {
entity_type: EntityType::from(entity_type),
entity_id: EntityId::from(entity_id),
}
} else {
PersistenceId {
entity_type: EntityType::from(""),
entity_id: EntityId::from(s),
}
};
Ok(persistence_id)
}
}
/// A message encapsulates a command that is addressed to a specific entity.
#[derive(Debug, PartialEq)]
pub struct Message<C> {
pub entity_id: EntityId,
pub command: C,
}
impl<C> Message<C> {
pub fn new<EI>(entity_id: EI, command: C) -> Self
where
EI: Into<EntityId>,
{
Self {
entity_id: entity_id.into(),
command,
}
}
}
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
pub struct TimestampOffset {
pub timestamp: DateTime<Utc>,
pub seq_nr: u64,
}
impl PartialOrd for TimestampOffset {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
self.timestamp.partial_cmp(&other.timestamp)
}
}
#[derive(Debug, Clone, PartialEq, PartialOrd, Deserialize, Serialize)]
pub enum Offset {
/// Corresponds to an ordered sequence number for the events. Note that the corresponding
/// offset of each event is provided in an Envelope,
/// which makes it possible to resume the stream at a later point from a given offset.
///
/// The `offset` is exclusive, i.e. the event with the exact same sequence number will not be included
/// in the returned stream. This means that you can use the offset that is returned in an `Envelope`
/// as the `offset` parameter in a subsequent query.
///
Sequence(u64),
/// Timestamp based offset. Since there can be several events for the same timestamp it keeps
/// track of what sequence numbers for every persistence id that have been seen at this specific timestamp.
///
/// The `offset` is exclusive, i.e. the event with the exact same sequence number will not be included
/// in the returned stream. This means that you can use the offset that is returned in `EventEnvelope`
/// as the `offset` parameter in a subsequent query.
Timestamp(TimestampOffset),
}
/// Implemented by structures that can return an offset.
pub trait WithOffset {
fn offset(&self) -> Offset;
}
/// Implemented by structures that can return a timestamp.
pub trait WithTimestamp {
fn timestamp(&self) -> &DateTime<Utc>;
}
/// Implemented by structures that can return a sequence number.
pub trait WithSeqNr {
fn seq_nr(&self) -> u64;
}
/// An event source descriptor
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum Source {
/// For backtracking events.
Backtrack,
/// For ordinary events.
Regular,
/// For PubSub events.
PubSub,
}
/// It is an error if there is a string representation that is not one of:
/// "" for ordinary events.
/// "BT" for backtracking events.
/// "PS" for PubSub events.
pub struct CannotSourceError;
impl FromStr for Source {
type Err = CannotSourceError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"" => Ok(Source::Regular),
"BT" => Ok(Source::Backtrack),
"PS" => Ok(Source::PubSub),
_ => Err(CannotSourceError),
}
}
}
/// Implemented by structures that can return a source.
pub trait WithSource {
fn source(&self) -> Source;
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_slice_for_persistence_id() {
assert_eq!(
PersistenceId::new(
EntityType::from("some-entity-type"),
EntityId::from("some-entity-id")
)
.slice(),
451
);
}
#[test]
fn test_parse_for_persistence_id() {
assert_eq!(
"some-entity-type|some-entity-id"
.parse::<PersistenceId>()
.unwrap(),
PersistenceId::new(
EntityType::from("some-entity-type"),
EntityId::from("some-entity-id")
)
);
}
#[test]
fn test_slice_ranges() {
assert_eq!(slice_ranges(4), vec![0..256, 256..512, 512..768, 768..1024]);
}
}