reinhardt-core 0.1.0

Core components for Reinhardt framework
Documentation
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
//! Transaction Support - Signals tied to database transaction lifecycle
//!
//! This module provides signal support for database transaction lifecycle events,
//! allowing receivers to be notified of transaction begin, commit, and rollback events.
//!
//! # Examples
//!
//! ```rust,no_run
//! use reinhardt_core::signals::transaction::{on_commit, on_rollback, TransactionSignals};
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! // Connect to transaction commit
//! on_commit().connect(|ctx| async move {
//!     println!("Transaction committed: {:?}", ctx);
//!     Ok(())
//! });
//!
//! // Use TransactionSignals for manual control
//! let tx_signals = TransactionSignals::new("tx_1");
//! tx_signals.send_begin().await?;
//! tx_signals.send_commit().await?;
//! # Ok(())
//! # }
//! ```

use super::core::SignalName;
use super::error::SignalError;
use super::registry::get_signal;
use super::signal::Signal;
use serde::{Deserialize, Serialize};

/// Transaction context passed to signal receivers
///
/// # Examples
///
/// ```
/// use reinhardt_core::signals::transaction::TransactionContext;
///
/// let ctx = TransactionContext::new("tx_123");
/// assert_eq!(ctx.transaction_id, "tx_123");
/// assert_eq!(ctx.savepoint_depth, 0);
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TransactionContext {
	/// Unique transaction identifier
	pub transaction_id: String,
	/// Savepoint depth for nested transactions
	pub savepoint_depth: usize,
	/// Optional savepoint name
	pub savepoint_name: Option<String>,
	/// Whether this is a nested transaction
	pub is_nested: bool,
}

impl TransactionContext {
	/// Create a new transaction context
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_core::signals::transaction::TransactionContext;
	///
	/// let ctx = TransactionContext::new("my_transaction");
	/// assert_eq!(ctx.transaction_id, "my_transaction");
	/// assert!(!ctx.is_nested);
	/// ```
	pub fn new(transaction_id: impl Into<String>) -> Self {
		Self {
			transaction_id: transaction_id.into(),
			savepoint_depth: 0,
			savepoint_name: None,
			is_nested: false,
		}
	}

	/// Create a nested transaction context
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_core::signals::transaction::TransactionContext;
	///
	/// let ctx = TransactionContext::nested("tx_1", 1, "sp_1");
	/// assert!(ctx.is_nested);
	/// assert_eq!(ctx.savepoint_depth, 1);
	/// assert_eq!(ctx.savepoint_name, Some("sp_1".to_string()));
	/// ```
	pub fn nested(
		transaction_id: impl Into<String>,
		depth: usize,
		savepoint_name: impl Into<String>,
	) -> Self {
		Self {
			transaction_id: transaction_id.into(),
			savepoint_depth: depth,
			savepoint_name: Some(savepoint_name.into()),
			is_nested: true,
		}
	}

	/// Enter a savepoint (increase nesting depth)
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_core::signals::transaction::TransactionContext;
	///
	/// let mut ctx = TransactionContext::new("tx_1");
	/// ctx.enter_savepoint("checkpoint_1");
	/// assert_eq!(ctx.savepoint_depth, 1);
	/// assert_eq!(ctx.savepoint_name, Some("checkpoint_1".to_string()));
	/// ```
	pub fn enter_savepoint(&mut self, name: impl Into<String>) {
		self.savepoint_depth += 1;
		self.savepoint_name = Some(name.into());
		self.is_nested = true;
	}

	/// Exit a savepoint (decrease nesting depth)
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_core::signals::transaction::TransactionContext;
	///
	/// let mut ctx = TransactionContext::nested("tx_1", 2, "sp_2");
	/// ctx.exit_savepoint();
	/// assert_eq!(ctx.savepoint_depth, 1);
	/// ```
	pub fn exit_savepoint(&mut self) {
		if self.savepoint_depth > 0 {
			self.savepoint_depth -= 1;
		}
		if self.savepoint_depth == 0 {
			self.savepoint_name = None;
			self.is_nested = false;
		}
	}
}

/// Transaction signal manager
///
/// Manages transaction lifecycle signals for a specific transaction
///
/// # Examples
///
/// ```
/// use reinhardt_core::signals::transaction::TransactionSignals;
///
/// let signals = TransactionSignals::new("transaction_1");
/// ```
pub struct TransactionSignals {
	context: TransactionContext,
}

impl TransactionSignals {
	/// Create a new transaction signal manager
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// let signals = TransactionSignals::new("tx_001");
	/// ```
	pub fn new(transaction_id: impl Into<String>) -> Self {
		Self {
			context: TransactionContext::new(transaction_id),
		}
	}

	/// Create a nested transaction signal manager
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// let signals = TransactionSignals::nested("tx_001", 1, "savepoint_1");
	/// ```
	pub fn nested(
		transaction_id: impl Into<String>,
		depth: usize,
		savepoint_name: impl Into<String>,
	) -> Self {
		Self {
			context: TransactionContext::nested(transaction_id, depth, savepoint_name),
		}
	}

	/// Get the transaction context
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// let signals = TransactionSignals::new("tx_001");
	/// let ctx = signals.context();
	/// assert_eq!(ctx.transaction_id, "tx_001");
	/// ```
	pub fn context(&self) -> &TransactionContext {
		&self.context
	}

	/// Send transaction begin signal
	///
	/// # Examples
	///
	/// ```rust,no_run
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// # #[tokio::main]
	/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
	/// let signals = TransactionSignals::new("tx_001");
	/// signals.send_begin().await?;
	/// # Ok(())
	/// # }
	/// ```
	pub async fn send_begin(&self) -> Result<(), SignalError> {
		on_begin().send(self.context.clone()).await
	}

	/// Send transaction commit signal
	///
	/// # Examples
	///
	/// ```rust,no_run
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// # #[tokio::main]
	/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
	/// let signals = TransactionSignals::new("tx_001");
	/// signals.send_commit().await?;
	/// # Ok(())
	/// # }
	/// ```
	pub async fn send_commit(&self) -> Result<(), SignalError> {
		on_commit().send(self.context.clone()).await
	}

	/// Send transaction rollback signal
	///
	/// # Examples
	///
	/// ```rust,no_run
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// # #[tokio::main]
	/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
	/// let signals = TransactionSignals::new("tx_001");
	/// signals.send_rollback().await?;
	/// # Ok(())
	/// # }
	/// ```
	pub async fn send_rollback(&self) -> Result<(), SignalError> {
		on_rollback().send(self.context.clone()).await
	}

	/// Enter a savepoint and send signal
	///
	/// # Examples
	///
	/// ```rust,no_run
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// # #[tokio::main]
	/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
	/// let mut signals = TransactionSignals::new("tx_001");
	/// signals.enter_savepoint("checkpoint_1").await?;
	/// # Ok(())
	/// # }
	/// ```
	pub async fn enter_savepoint(&mut self, name: impl Into<String>) -> Result<(), SignalError> {
		self.context.enter_savepoint(name);
		on_savepoint().send(self.context.clone()).await
	}

	/// Exit a savepoint and send signal
	///
	/// # Examples
	///
	/// ```rust,no_run
	/// use reinhardt_core::signals::transaction::TransactionSignals;
	///
	/// # #[tokio::main]
	/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
	/// let mut signals = TransactionSignals::nested("tx_001", 1, "sp_1");
	/// signals.exit_savepoint().await?;
	/// # Ok(())
	/// # }
	/// ```
	pub async fn exit_savepoint(&mut self) -> Result<(), SignalError> {
		self.context.exit_savepoint();
		on_savepoint_release().send(self.context.clone()).await
	}
}

/// Get the transaction begin signal
///
/// # Examples
///
/// ```
/// use reinhardt_core::signals::transaction::on_begin;
///
/// let signal = on_begin();
/// ```
pub fn on_begin() -> Signal<TransactionContext> {
	get_signal::<TransactionContext>(SignalName::custom("transaction_begin"))
}

/// Get the transaction commit signal
///
/// # Examples
///
/// ```
/// use reinhardt_core::signals::transaction::on_commit;
///
/// let signal = on_commit();
/// ```
pub fn on_commit() -> Signal<TransactionContext> {
	get_signal::<TransactionContext>(SignalName::custom("transaction_commit"))
}

/// Get the transaction rollback signal
///
/// # Examples
///
/// ```
/// use reinhardt_core::signals::transaction::on_rollback;
///
/// let signal = on_rollback();
/// ```
pub fn on_rollback() -> Signal<TransactionContext> {
	get_signal::<TransactionContext>(SignalName::custom("transaction_rollback"))
}

/// Get the savepoint create signal
///
/// # Examples
///
/// ```
/// use reinhardt_core::signals::transaction::on_savepoint;
///
/// let signal = on_savepoint();
/// ```
pub fn on_savepoint() -> Signal<TransactionContext> {
	get_signal::<TransactionContext>(SignalName::custom("transaction_savepoint"))
}

/// Get the savepoint release signal
///
/// # Examples
///
/// ```
/// use reinhardt_core::signals::transaction::on_savepoint_release;
///
/// let signal = on_savepoint_release();
/// ```
pub fn on_savepoint_release() -> Signal<TransactionContext> {
	get_signal::<TransactionContext>(SignalName::custom("transaction_savepoint_release"))
}

#[cfg(test)]
mod tests {
	use super::*;
	use parking_lot::Mutex;
	use std::sync::Arc;
	use std::sync::atomic::{AtomicUsize, Ordering};

	#[test]
	fn test_transaction_context_creation() {
		let ctx = TransactionContext::new("tx_1");
		assert_eq!(ctx.transaction_id, "tx_1");
		assert_eq!(ctx.savepoint_depth, 0);
		assert_eq!(ctx.savepoint_name, None);
		assert!(!ctx.is_nested);
	}

	#[test]
	fn test_transaction_context_nested() {
		let ctx = TransactionContext::nested("tx_1", 2, "sp_2");
		assert_eq!(ctx.transaction_id, "tx_1");
		assert_eq!(ctx.savepoint_depth, 2);
		assert_eq!(ctx.savepoint_name, Some("sp_2".to_string()));
		assert!(ctx.is_nested);
	}

	#[test]
	fn test_transaction_context_enter_savepoint() {
		let mut ctx = TransactionContext::new("tx_1");
		ctx.enter_savepoint("checkpoint_1");
		assert_eq!(ctx.savepoint_depth, 1);
		assert_eq!(ctx.savepoint_name, Some("checkpoint_1".to_string()));
		assert!(ctx.is_nested);
	}

	#[test]
	fn test_transaction_context_exit_savepoint() {
		let mut ctx = TransactionContext::nested("tx_1", 2, "sp_2");
		ctx.exit_savepoint();
		assert_eq!(ctx.savepoint_depth, 1);

		ctx.exit_savepoint();
		assert_eq!(ctx.savepoint_depth, 0);
		assert_eq!(ctx.savepoint_name, None);
		assert!(!ctx.is_nested);
	}

	#[tokio::test]
	async fn test_on_commit_signal() {
		let counter = Arc::new(AtomicUsize::new(0));
		let counter_clone = Arc::clone(&counter);

		on_commit().connect(move |_ctx| {
			let counter = Arc::clone(&counter_clone);
			async move {
				counter.fetch_add(1, Ordering::SeqCst);
				Ok(())
			}
		});

		let ctx = TransactionContext::new("tx_1");
		on_commit().send(ctx).await.unwrap();

		assert_eq!(counter.load(Ordering::SeqCst), 1);
	}

	#[tokio::test]
	async fn test_on_rollback_signal() {
		let counter = Arc::new(AtomicUsize::new(0));
		let counter_clone = Arc::clone(&counter);

		on_rollback().connect(move |_ctx| {
			let counter = Arc::clone(&counter_clone);
			async move {
				counter.fetch_add(1, Ordering::SeqCst);
				Ok(())
			}
		});

		let ctx = TransactionContext::new("tx_1");
		on_rollback().send(ctx).await.unwrap();

		assert_eq!(counter.load(Ordering::SeqCst), 1);
	}

	#[tokio::test]
	#[serial_test::serial]
	async fn test_transaction_signals_flow() {
		// Clean up before test
		on_begin().disconnect_all();
		on_commit().disconnect_all();

		let events = Arc::new(Mutex::new(Vec::new()));

		let e1 = events.clone();
		on_begin().connect(move |ctx| {
			let e = e1.clone();
			async move {
				e.lock().push(format!("begin:{}", ctx.transaction_id));
				Ok(())
			}
		});

		let e2 = events.clone();
		on_commit().connect(move |ctx| {
			let e = e2.clone();
			async move {
				e.lock().push(format!("commit:{}", ctx.transaction_id));
				Ok(())
			}
		});

		let signals = TransactionSignals::new("tx_test");
		signals.send_begin().await.unwrap();
		signals.send_commit().await.unwrap();

		let event_log = events.lock();
		assert_eq!(event_log.len(), 2);
		assert_eq!(event_log[0], "begin:tx_test");
		assert_eq!(event_log[1], "commit:tx_test");

		// Clean up after test
		on_begin().disconnect_all();
		on_commit().disconnect_all();
	}

	#[tokio::test]
	#[serial_test::serial]
	async fn test_savepoint_signals() {
		// Clean up before test
		on_savepoint().disconnect_all();
		on_savepoint_release().disconnect_all();

		let counter = Arc::new(AtomicUsize::new(0));

		let c1 = counter.clone();
		on_savepoint().connect(move |_| {
			let c = c1.clone();
			async move {
				c.fetch_add(1, Ordering::SeqCst);
				Ok(())
			}
		});

		let c2 = counter.clone();
		on_savepoint_release().connect(move |_| {
			let c = c2.clone();
			async move {
				c.fetch_add(10, Ordering::SeqCst);
				Ok(())
			}
		});

		let mut signals = TransactionSignals::new("tx_1");
		signals.enter_savepoint("sp_1").await.unwrap();
		signals.exit_savepoint().await.unwrap();

		assert_eq!(counter.load(Ordering::SeqCst), 11); // 1 + 10

		// Clean up after test
		on_savepoint().disconnect_all();
		on_savepoint_release().disconnect_all();
	}

	#[tokio::test]
	#[serial_test::serial]
	async fn test_nested_transaction_signals() {
		// Clean up before test
		on_savepoint().disconnect_all();

		let events = Arc::new(Mutex::new(Vec::new()));

		let e = events.clone();
		on_savepoint().connect(move |ctx| {
			let e = e.clone();
			async move {
				e.lock().push(format!(
					"savepoint:{}:depth:{}",
					ctx.savepoint_name.as_deref().unwrap_or(""),
					ctx.savepoint_depth
				));
				Ok(())
			}
		});

		let mut signals = TransactionSignals::new("tx_nested");
		signals.enter_savepoint("level_1").await.unwrap();
		signals.enter_savepoint("level_2").await.unwrap();

		let event_log = events.lock();
		assert_eq!(event_log.len(), 2);
		assert_eq!(event_log[0], "savepoint:level_1:depth:1");
		assert_eq!(event_log[1], "savepoint:level_2:depth:2");

		// Clean up after test
		on_savepoint().disconnect_all();
	}
}