cloacina 0.11.1

A Rust library for resilient task execution and orchestration.
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
/*
 *  Copyright 2025-2026 Colliery Software
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

//! Unified Execution Event DAL with runtime backend selection
//!
//! This module provides CRUD operations for ExecutionEvent entities that work with
//! both PostgreSQL and SQLite backends, selecting the appropriate implementation
//! at runtime based on the database connection type.
//!
//! Execution events form an append-only audit trail of all task and workflow
//! state transitions for debugging, compliance, and replay capability.

use super::models::{NewUnifiedDeliveryOutbox, NewUnifiedExecutionEvent, UnifiedExecutionEvent};
use super::DAL;
use crate::database::schema::unified::{delivery_outbox, execution_events};
use crate::database::universal_types::{UniversalBinary, UniversalTimestamp, UniversalUuid};
use crate::error::ValidationError;
use crate::models::execution_event::{ExecutionEvent, ExecutionEventType, NewExecutionEvent};
use diesel::prelude::*;

/// Substrate (CLOACI-I-0115 / T-0629): build the `delivery_outbox` row that
/// gets inserted in the same transaction as the event, so a subscribed CLI /
/// future SDK receives the event over the substrate WS. Recipient is keyed by
/// `workflow_execution_id` (convention: `exec_events:<uuid>`). Payload is JSON
/// of the fields the consumer displays — sequence_num is intentionally omitted
/// (substrate row id provides arrival ordering).
fn build_event_outbox_row(
    event_id: UniversalUuid,
    new_event: &NewExecutionEvent,
    now: UniversalTimestamp,
) -> Result<NewUnifiedDeliveryOutbox, ValidationError> {
    let payload = serde_json::json!({
        "id": event_id.0.to_string(),
        "workflow_execution_id": new_event.workflow_execution_id.0.to_string(),
        "task_execution_id": new_event.task_execution_id.map(|u| u.0.to_string()),
        "event_type": new_event.event_type.as_str(),
        "event_data": new_event.event_data.as_deref(),
        "created_at": now.0.to_rfc3339(),
    });
    let bytes = serde_json::to_vec(&payload).map_err(|e| {
        ValidationError::ConnectionPool(format!("execution_event outbox payload: {}", e))
    })?;
    Ok(NewUnifiedDeliveryOutbox {
        recipient: format!("exec_events:{}", new_event.workflow_execution_id.0),
        kind: "execution_event".to_string(),
        tenant_id: new_event.tenant_id.clone(),
        payload: UniversalBinary::from(bytes),
        delivery_state: "pending".to_string(),
        delivery_attempts: 0,
        created_at: now,
    })
}

/// Data access layer for execution event operations with runtime backend selection.
///
/// This DAL provides methods for creating and querying execution events,
/// which track all state transitions for tasks and workflow executions.
#[derive(Clone)]
pub struct ExecutionEventDAL<'a> {
    dal: &'a DAL,
}

// Several methods on this impl block are kept as future admin/ops
// surface (per T-0565): `list_by_task`, `list_by_type`, `get_recent`,
// `count_by_workflow`. They have zero in-tree callers today but are
// preserved as the "deliberately complete CRUD surface" the audit
// flagged. Re-promote to `pub` if a real consumer arrives.
#[allow(dead_code)]
impl<'a> ExecutionEventDAL<'a> {
    /// Creates a new ExecutionEventDAL instance.
    pub fn new(dal: &'a DAL) -> Self {
        Self { dal }
    }

    /// Creates a new execution event record.
    ///
    /// Events are append-only and never updated after creation. Each event
    /// receives a monotonically increasing sequence number for ordering.
    pub async fn create(
        &self,
        new_event: NewExecutionEvent,
    ) -> Result<ExecutionEvent, ValidationError> {
        crate::dispatch_backend!(
            self.dal.backend(),
            self.create_postgres(new_event).await,
            self.create_sqlite(new_event).await
        )
    }

    #[cfg(feature = "postgres")]
    async fn create_postgres(
        &self,
        new_event: NewExecutionEvent,
    ) -> Result<ExecutionEvent, ValidationError> {
        let conn = self
            .dal
            .database
            .get_postgres_connection()
            .await
            .map_err(|e| ValidationError::ConnectionPool(e.to_string()))?;

        let id = UniversalUuid::new_v4();
        let now = UniversalTimestamp::now();

        // Build the outbox row BEFORE moving fields into `new_unified`
        // (`NewExecutionEvent` is not Copy and we need its fields still
        // accessible for the substrate payload).
        let outbox_row = build_event_outbox_row(id, &new_event, now)?;
        let new_unified = NewUnifiedExecutionEvent {
            id,
            workflow_execution_id: new_event.workflow_execution_id,
            task_execution_id: new_event.task_execution_id,
            event_type: new_event.event_type,
            event_data: new_event.event_data,
            worker_id: new_event.worker_id,
            created_at: now,
            request_id: new_event.request_id,
            runner_id: new_event.runner_id,
            tenant_id: new_event.tenant_id,
        };
        let result: UnifiedExecutionEvent = conn
            .interact(move |conn| {
                conn.transaction::<_, diesel::result::Error, _>(|conn| {
                    let event: UnifiedExecutionEvent = diesel::insert_into(execution_events::table)
                        .values(&new_unified)
                        .get_result(conn)?;
                    diesel::insert_into(delivery_outbox::table)
                        .values(&outbox_row)
                        .execute(conn)?;
                    Ok(event)
                })
            })
            .await
            .map_err(|e| ValidationError::ConnectionPool(e.to_string()))??;

        Ok(result.into())
    }

    #[cfg(feature = "sqlite")]
    async fn create_sqlite(
        &self,
        new_event: NewExecutionEvent,
    ) -> Result<ExecutionEvent, ValidationError> {
        let conn = self
            .dal
            .database
            .get_sqlite_connection()
            .await
            .map_err(|e| ValidationError::ConnectionPool(e.to_string()))?;

        let id = UniversalUuid::new_v4();
        let now = UniversalTimestamp::now();

        // Build the outbox row BEFORE moving fields into `new_unified`
        // (`NewExecutionEvent` is not Copy and we need its fields still
        // accessible for the substrate payload).
        let outbox_row = build_event_outbox_row(id, &new_event, now)?;
        let new_unified = NewUnifiedExecutionEvent {
            id,
            workflow_execution_id: new_event.workflow_execution_id,
            task_execution_id: new_event.task_execution_id,
            event_type: new_event.event_type,
            event_data: new_event.event_data,
            worker_id: new_event.worker_id,
            created_at: now,
            request_id: new_event.request_id,
            runner_id: new_event.runner_id,
            tenant_id: new_event.tenant_id,
        };

        // Wrap both inserts + the post-commit select in a single interact so
        // they share one SQLite connection (and thus one transaction for the
        // inserts). SQLite doesn't support RETURNING here, so we fetch the
        // row by id after the txn commits — sequence_num is auto-assigned.
        let result: UnifiedExecutionEvent = conn
            .interact(move |conn| {
                conn.transaction::<_, diesel::result::Error, _>(|conn| {
                    diesel::insert_into(execution_events::table)
                        .values(&new_unified)
                        .execute(conn)?;
                    diesel::insert_into(delivery_outbox::table)
                        .values(&outbox_row)
                        .execute(conn)?;
                    Ok(())
                })?;
                execution_events::table
                    .filter(execution_events::id.eq(id))
                    .first::<UnifiedExecutionEvent>(conn)
            })
            .await
            .map_err(|e| ValidationError::ConnectionPool(e.to_string()))??;

        Ok(result.into())
    }

    /// Gets all execution events for a specific workflow execution, ordered by sequence.
    pub async fn list_by_workflow(
        &self,
        workflow_execution_id: UniversalUuid,
    ) -> Result<Vec<ExecutionEvent>, ValidationError> {
        let results: Vec<UnifiedExecutionEvent> = crate::interact_on_backend!(self.dal, |conn| {
            execution_events::table
                .filter(execution_events::workflow_execution_id.eq(workflow_execution_id))
                .order(execution_events::sequence_num.asc())
                .load(conn)
        })?;

        Ok(results.into_iter().map(Into::into).collect())
    }

    /// Gets all execution events for a specific task execution, ordered by sequence.
    pub(crate) async fn list_by_task(
        &self,
        task_execution_id: UniversalUuid,
    ) -> Result<Vec<ExecutionEvent>, ValidationError> {
        let results: Vec<UnifiedExecutionEvent> = crate::interact_on_backend!(self.dal, |conn| {
            execution_events::table
                .filter(execution_events::task_execution_id.eq(task_execution_id))
                .order(execution_events::sequence_num.asc())
                .load(conn)
        })?;

        Ok(results.into_iter().map(Into::into).collect())
    }

    /// Gets execution events by type for monitoring and analysis.
    pub(crate) async fn list_by_type(
        &self,
        event_type: ExecutionEventType,
        limit: i64,
    ) -> Result<Vec<ExecutionEvent>, ValidationError> {
        let event_type_str = event_type.as_str().to_string();
        let results: Vec<UnifiedExecutionEvent> = crate::interact_on_backend!(self.dal, |conn| {
            execution_events::table
                .filter(execution_events::event_type.eq(event_type_str))
                .order(execution_events::created_at.desc())
                .limit(limit)
                .load(conn)
        })?;

        Ok(results.into_iter().map(Into::into).collect())
    }

    /// Gets recent execution events for monitoring purposes.
    pub(crate) async fn get_recent(
        &self,
        limit: i64,
    ) -> Result<Vec<ExecutionEvent>, ValidationError> {
        let results: Vec<UnifiedExecutionEvent> = crate::interact_on_backend!(self.dal, |conn| {
            execution_events::table
                .order(execution_events::created_at.desc())
                .limit(limit)
                .load(conn)
        })?;

        Ok(results.into_iter().map(Into::into).collect())
    }

    /// Deletes execution events older than the specified timestamp.
    ///
    /// Used for retention policy enforcement to prevent unbounded table growth.
    /// Returns the number of deleted events.
    pub async fn delete_older_than(
        &self,
        cutoff: UniversalTimestamp,
    ) -> Result<usize, ValidationError> {
        let deleted: usize = crate::interact_on_backend!(self.dal, |conn| {
            diesel::delete(execution_events::table.filter(execution_events::created_at.lt(cutoff)))
                .execute(conn)
        })?;

        Ok(deleted)
    }

    /// Counts total execution events for a workflow execution.
    pub(crate) async fn count_by_workflow(
        &self,
        workflow_execution_id: UniversalUuid,
    ) -> Result<i64, ValidationError> {
        let count: i64 = crate::interact_on_backend!(self.dal, |conn| {
            execution_events::table
                .filter(execution_events::workflow_execution_id.eq(workflow_execution_id))
                .count()
                .get_result(conn)
        })?;

        Ok(count)
    }

    /// Counts execution events older than the specified timestamp.
    ///
    /// Used for dry-run mode to preview how many events would be deleted.
    pub async fn count_older_than(
        &self,
        cutoff: UniversalTimestamp,
    ) -> Result<i64, ValidationError> {
        let count: i64 = crate::interact_on_backend!(self.dal, |conn| {
            execution_events::table
                .filter(execution_events::created_at.lt(cutoff))
                .count()
                .get_result(conn)
        })?;

        Ok(count)
    }
}

#[cfg(all(test, feature = "sqlite"))]
mod substrate_producer_tests {
    use super::*;
    use crate::database::Database;
    use crate::models::workflow_execution::NewWorkflowExecution;

    async fn unique_dal() -> DAL {
        let url = format!(
            "file:event_outbox_producer_test_{}?mode=memory&cache=shared",
            uuid::Uuid::new_v4()
        );
        let db = Database::new(&url, "", 5);
        db.run_migrations()
            .await
            .expect("migrations should succeed");
        DAL::new(db)
    }

    async fn make_wf_exec(dal: &DAL) -> UniversalUuid {
        dal.workflow_execution()
            .create(NewWorkflowExecution {
                workflow_name: "exec-events-producer-test".into(),
                workflow_version: "1.0".into(),
                status: "Running".into(),
                context_id: None,
            })
            .await
            .unwrap()
            .id
    }

    /// Creating an execution event also enqueues a `delivery_outbox` row with
    /// the matching recipient + tenant + JSON payload — the in-txn enqueue
    /// promised in T-0625 (REQ-1.1.1), here landed on its first real producer.
    #[tokio::test]
    async fn event_create_also_enqueues_delivery_outbox_row() {
        let dal = unique_dal().await;
        let wf_id = make_wf_exec(&dal).await;

        let event = dal
            .execution_event()
            .create(NewExecutionEvent {
                workflow_execution_id: wf_id,
                task_execution_id: None,
                event_type: "task_started".into(),
                event_data: Some(r#"{"task":"alpha"}"#.into()),
                worker_id: None,
                request_id: None,
                runner_id: None,
                tenant_id: Some("t1".into()),
            })
            .await
            .unwrap();

        let expected_recipient = format!("exec_events:{}", wf_id.0);
        let pending = dal.delivery_outbox().list_pending(10).await.unwrap();
        assert_eq!(pending.len(), 1, "exactly one outbox row per event");
        let row = &pending[0];
        assert_eq!(row.recipient, expected_recipient);
        assert_eq!(row.kind, "execution_event");
        assert_eq!(row.tenant_id.as_deref(), Some("t1"));

        // Payload is JSON with the displayable event fields. Decode to check.
        let parsed: serde_json::Value = serde_json::from_slice(&row.payload).unwrap();
        assert_eq!(parsed["id"], event.id.0.to_string());
        assert_eq!(parsed["event_type"], "task_started");
        assert_eq!(parsed["event_data"], r#"{"task":"alpha"}"#);
        assert_eq!(parsed["workflow_execution_id"], wf_id.0.to_string());
    }

    /// Two events for the same workflow produce two distinct outbox rows under
    /// the same recipient — proves the producer doesn't dedupe or replace.
    #[tokio::test]
    async fn two_events_produce_two_outbox_rows_for_same_recipient() {
        let dal = unique_dal().await;
        let wf_id = make_wf_exec(&dal).await;

        for et in &["task_started", "task_completed"] {
            dal.execution_event()
                .create(NewExecutionEvent {
                    workflow_execution_id: wf_id,
                    task_execution_id: None,
                    event_type: (*et).into(),
                    event_data: None,
                    worker_id: None,
                    request_id: None,
                    runner_id: None,
                    tenant_id: None,
                })
                .await
                .unwrap();
        }

        let recipient = format!("exec_events:{}", wf_id.0);
        let rows = dal
            .delivery_outbox()
            .list_open_for_recipient(&recipient, 10)
            .await
            .unwrap();
        assert_eq!(rows.len(), 2);
        // Substrate row id is monotonic — preserves event ordering for the recipient.
        assert!(rows[0].id < rows[1].id);
    }
}