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
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
//! Commit hooks for executing custom logic before and after transaction commits.
//!
//! This module provides the [`CommitHook`] trait and supporting types that allow you to
//! register hooks that execute during the commit lifecycle of a transaction. This is useful for:
//!
//! - Publishing events to message queues after successful commits
//! - Updating caches
//! - Triggering side effects that should only occur if the transaction succeeds
//! - Accumulating operations across multiple entity updates in a transaction
//!
//! # Hook Lifecycle
//!
//! 1. **Registration**: Hooks are registered using [`AtomicOperation::add_commit_hook()`]
//! 2. **Merging**: Multiple hooks of the same type may be merged via [`CommitHook::merge()`]
//! 3. **Pre-commit**: [`CommitHook::pre_commit()`] executes before the transaction commits
//! 4. **Commit**: The underlying database transaction is committed
//! 5. **Post-commit**: [`CommitHook::post_commit()`] executes after successful commit
//!
//! If the commit **fails** instead — either a later hook's `pre_commit` errors (the
//! transaction is rolled back first) or the `COMMIT` itself errors — then
//! [`CommitHook::on_rollback()`] is fired on every hook whose `pre_commit` had already
//! completed, in registration order, in place of `post_commit`. It is a synchronous,
//! infallible, signal-only callback (see its docs).
//!
//! # Hook Ordering
//!
//! Hooks execute in **registration order** — per hook, not per type:
//!
//! 1. Hooks run in the order they were added to the operation, regardless of their
//! type. A hook that refuses to merge ([`CommitHook::merge()`] returns `false`)
//! executes at its own (later) registration position, even when an earlier hook
//! of the same type exists.
//! 2. A hook that merges executes at the position of the hook it merged into (the
//! earlier one). For always-merging hook types this means the type's position is
//! anchored by its **first** registration in the operation; all later
//! registrations fold into that position.
//! 3. [`CommitHook::post_commit()`] hooks run in the same order as their
//! [`CommitHook::pre_commit()`] counterparts (registration order).
//! 4. A hook's `pre_commit` may itself register further hooks — see
//! [`AtomicOperation::add_commit_hook()`] on the [`HookOperation`] it is handed.
//! Those join the **tail of the same commit pass** rather than freezing the set
//! before the first `pre_commit` runs. See "Re-entrant Registration" below.
//!
//! Registration order is the base order; [`CommitHook::runs_after()`] is the one
//! sanctioned refinement — it can only *delay* a hook until still-pending instances
//! of its declared dependency types have executed, never advance it:
//!
//! 5. A hook may declare hook **types** it must run after via
//! [`CommitHook::runs_after()`]. While any still-pending instance of a declared
//! type remains in the queue, the hook is deferred to the back and re-checked
//! later; once no declared type is still pending it runs. This is evaluated
//! dynamically on every attempt, so it composes with re-entrant staging — a
//! dependency staged mid-pass re-blocks a hook that already deferred past it.
//! 6. Among hooks with no unsatisfied `runs_after` dependency, registration order
//! (points 1-3 above) is preserved. Execution remains fully deterministic.
//! 7. A dependency type that never registers, or whose instances have all already
//! executed, imposes no constraint — deferral is vacuous in both cases.
//! 8. Declared dependencies that cannot all be satisfied (a cycle, direct or
//! transitive) fail the commit loudly with a protocol error instead of hanging —
//! see [`CommitHook::runs_after()`].
//!
//! # Re-entrant Registration
//!
//! [`AtomicOperation::add_commit_hook()`] succeeds on the [`HookOperation`] passed to
//! a `pre_commit` that is running as part of a real commit pass — a hook can register
//! more hooks, and they join the pass instead of being silently dropped or forced to
//! run outside the commit lifecycle:
//!
//! - A newly-registered hook merges into a **still-pending** hook of the same type,
//! keeping that hook's queue position — indistinguishable from having registered it
//! there directly. An **already-executed** hook of that type is never a merge
//! target (its `pre_commit` already ran), so registering that type again after its
//! own execution always starts a fresh instance, which runs its own `pre_commit`
//! later in the same pass.
//! - A bound ([`MAX_HOOK_GENERATIONS`] re-entrant generations) guards against a
//! registration cycle (A registers B, B registers A, …), which would otherwise grow
//! the queue forever inside an open transaction. Exceeding it fails the commit
//! loudly instead of hanging.
//! - This only applies to a real commit pass. [`CommitHook::force_execute_pre_commit()`]
//! — the escape hatch for ops that don't support hooks at all — still returns
//! `Err` from `add_commit_hook`, because there is no pass for a registered hook to
//! join; its `post_commit`/`on_rollback` would simply never run.
//! - A hook deferred by [`CommitHook::runs_after()`] is still **pending**, so it
//! remains a merge target for re-entrant staging exactly like any other
//! not-yet-executed hook. This is what lets a producer's `pre_commit` stage work
//! into a consumer hook that declared `runs_after` the producer's type: the
//! consumer is waiting (deferred) rather than gone, so the staged instance merges
//! into it — one execution — instead of starting a fresh generation.
//!
//! # Savepoints
//!
//! Hooks registered on a [`SavepointOp`] are staged and only enter the parent
//! operation's set — through the same registration/merge path — when the savepoint
//! is released; a rolled-back savepoint discards them. No callback runs at a
//! savepoint boundary, so the lifecycle above is unchanged: one `pre_commit` pass at
//! the parent's commit, `post_commit` only after a durable `COMMIT`. See
//! [`SavepointOp`] for details.
//!
//! [`SavepointOp`]: super::SavepointOp
//!
//! # Examples
//!
//! ## Hook with Database Operations and Channel-Based Publishing
//!
//! This example shows a complete event publishing hook that:
//! - Stores events in the database during pre-commit (within the transaction)
//! - Sends events to a channel during post-commit for async processing
//! - Merges multiple hook instances to batch operations
//!
//! Note: `post_commit()` is synchronous and cannot fail, so it's best used for
//! fire-and-forget operations like sending to channels. A background task can then
//! handle the async work of publishing to external systems.
//!
//! ```
//! use es_entity::{AtomicOperation, operation::hooks::{CommitHook, HookOperation, PreCommitRet}};
//!
//! #[derive(Debug, Clone)]
//! struct Event {
//! entity_id: uuid::Uuid,
//! event_type: String,
//! }
//!
//! #[derive(Debug)]
//! struct EventPublisher {
//! events: Vec<Event>,
//! // Channel sender for publishing events to a background processor
//! // In production, this might be tokio::sync::mpsc::Sender or similar
//! tx: std::sync::mpsc::Sender<Event>,
//! }
//!
//! impl CommitHook for EventPublisher {
//! async fn pre_commit(self, mut op: HookOperation<'_>)
//! -> Result<PreCommitRet<'_, Self>, sqlx::Error>
//! {
//! // Store events in the database within the transaction
//! // If the transaction fails, these inserts will be rolled back
//! for event in &self.events {
//! sqlx::query!(
//! "INSERT INTO hook_events (entity_id, event_type, created_at) VALUES ($1, $2, NOW())",
//! event.entity_id,
//! event.event_type
//! )
//! .execute(op.as_executor())
//! .await?;
//! }
//!
//! PreCommitRet::ok(self, op)
//! }
//!
//! fn post_commit(self) {
//! // Send events to a channel for async processing
//! // This only runs if the transaction succeeded
//! // Channel sends are fast and don't block; a background task handles publishing
//! for event in self.events {
//! // In production, handle send failures appropriately (logging, metrics, etc.)
//! // The channel might be bounded to apply backpressure
//! let _ = self.tx.send(event);
//! }
//! }
//!
//! fn merge(&mut self, other: &mut Self) -> bool {
//! // Merge multiple EventPublisher hooks into one to batch operations
//! self.events.append(&mut other.events);
//! true
//! }
//! }
//!
//! // Separate background task for async event publishing
//! // async fn event_publisher_task(mut rx: tokio::sync::mpsc::Receiver<Event>) {
//! // while let Some(event) = rx.recv().await {
//! // // Publish to Kafka, RabbitMQ, webhooks, etc.
//! // // Handle failures with retries, dead-letter queues, etc.
//! // match publish_to_external_system(&event).await {
//! // Ok(_) => log::info!("Published event: {:?}", event),
//! // Err(e) => log::error!("Failed to publish event: {:?}", e),
//! // }
//! // }
//! // }
//! ```
//!
//! ## Usage
//!
//! ```no_run
//! # use es_entity::{AtomicOperation, DbOp, operation::hooks::{CommitHook, HookOperation, PreCommitRet}};
//! # use es_entity::db;
//! # #[derive(Debug, Clone)]
//! # struct Event { entity_id: uuid::Uuid, event_type: String }
//! # #[derive(Debug)]
//! # struct EventPublisher { events: Vec<Event>, tx: std::sync::mpsc::Sender<Event> }
//! # impl CommitHook for EventPublisher {
//! # async fn pre_commit(self, mut op: HookOperation<'_>) -> Result<PreCommitRet<'_, Self>, sqlx::Error> {
//! # for event in &self.events {
//! # sqlx::query!(
//! # "INSERT INTO hook_events (entity_id, event_type, created_at) VALUES ($1, $2, NOW())",
//! # event.entity_id, event.event_type
//! # ).execute(op.as_executor()).await?;
//! # }
//! # PreCommitRet::ok(self, op)
//! # }
//! # fn post_commit(self) { for event in self.events { let _ = self.tx.send(event); } }
//! # fn merge(&mut self, other: &mut Self) -> bool { self.events.append(&mut other.events); true }
//! # }
//! # async fn example(pool: db::Pool) -> Result<(), sqlx::Error> {
//! let user_id = uuid::Uuid::nil();
//! let (tx, _rx) = std::sync::mpsc::channel();
//! let mut op = DbOp::init(&pool).await?;
//!
//! // Add first hook
//! op.add_commit_hook(EventPublisher {
//! events: vec![Event { entity_id: user_id, event_type: "user.created".to_string() }],
//! tx: tx.clone(),
//! }).expect("could not add hook");
//!
//! // Add second hook - will merge with the first
//! op.add_commit_hook(EventPublisher {
//! events: vec![Event { entity_id: user_id, event_type: "email.sent".to_string() }],
//! tx: tx.clone(),
//! }).expect("could not add hook");
//!
//! // Both hooks merge into one, events are stored in DB, then sent to channel
//! op.commit().await?;
//! # Ok(())
//! # }
//! ```
use ;
use cratedb;
use AtomicOperation;
/// Type alias for boxed async futures.
pub type BoxFuture<'a, T> = ;
/// Trait for implementing custom commit hooks that execute before and after transaction commits.
///
/// Hooks execute in order: [`pre_commit()`](Self::pre_commit) → database commit → [`post_commit()`](Self::post_commit).
/// Multiple hooks of the same type can be merged via [`merge()`](Self::merge).
///
/// Hooks registered on the same operation execute in registration order — see the
/// [module-level documentation](self#hook-ordering) for the full ordering contract
/// and a complete example. [`runs_after()`](Self::runs_after) lets a hook refine
/// that order by declaring dependency types it must run after.
/// Wrapper around a database connection passed to [`CommitHook::pre_commit()`].
///
/// Implements [`AtomicOperation`] to allow executing database queries within the
/// transaction. Whether it also supports registering *further* commit hooks depends
/// on how it was constructed — see the `staged` field below and "Re-entrant
/// Registration" in the [module docs](self).
/// Return type for [`CommitHook::pre_commit()`].
///
/// Use [`PreCommitRet::ok()`] to construct: `PreCommitRet::ok(self, op)`.
// --- Object-safe internal trait ---
/// Hooks are stored in a single flat insertion-ordered vec so that
/// [`execute_pre`](Self::execute_pre) runs them in registration order — per hook,
/// not per type. See the [module-level documentation](self#hook-ordering) for the
/// ordering contract.
pub
/// Maximum number of re-entrant "generations" a single commit pass will execute.
/// Generation 0 is the hook set registered on the operation before `commit()`
/// starts; a hook staged by a generation-*N* hook's `pre_commit` is generation
/// *N*+1. Bounds a registration cycle (A registers B, B registers A, …), which
/// would otherwise grow the queue forever inside an open transaction — see the
/// [module docs](self#re-entrant-registration).
pub const MAX_HOOK_GENERATIONS: u8 = 8;
/// Merges `hook` into a still-pending hook of the same type — keeping that hook's
/// queue position and generation — or appends it fresh at `generation`. The
/// deferred-execution counterpart of [`CommitHooks::push_or_merge`]: only hooks that
/// have not yet run their `pre_commit` are eligible merge targets, so a type that
/// already executed this pass always gets a fresh instance rather than retroactively
/// absorbing new work into a hook whose `pre_commit` already returned.
///
/// Errors if the fresh instance would exceed [`MAX_HOOK_GENERATIONS`] — the loud,
/// bounded failure mode for a registration cycle instead of an unbounded queue
/// inside an open transaction.