cloacina 0.10.0

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
425
426
427
428
429
430
431
432
433
434
435
436
/*
 *  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 Task Outbox DAL with runtime backend selection
//!
//! This module provides operations for the task outbox, which is used for
//! work distribution. The outbox is transient - entries are deleted immediately
//! when workers claim tasks.
//!
//! Note: The primary outbox insertion happens in `mark_ready()` within the same
//! transaction as the status update. This DAL provides additional operations
//! for claiming and cleanup.

use super::models::{NewUnifiedTaskOutbox, UnifiedTaskOutbox};
use super::DAL;
use crate::database::schema::unified::task_outbox;
use crate::database::universal_types::{UniversalTimestamp, UniversalUuid};
use crate::error::ValidationError;
use crate::models::task_outbox::{NewTaskOutbox, TaskOutbox};
use diesel::prelude::*;

/// Data access layer for task outbox operations with runtime backend selection.
///
/// The outbox provides reliable work distribution by:
/// 1. Inserting entries atomically with task status updates
/// 2. Enabling push notifications (Postgres LISTEN/NOTIFY)
/// 3. Supporting polling for SQLite
/// 4. Deleting entries when tasks are claimed
#[derive(Clone)]
pub struct TaskOutboxDAL<'a> {
    dal: &'a DAL,
}

impl<'a> TaskOutboxDAL<'a> {
    /// Creates a new TaskOutboxDAL instance.
    pub fn new(dal: &'a DAL) -> Self {
        Self { dal }
    }

    /// Creates a new outbox entry.
    ///
    /// Note: Prefer using the transactional insertion in `mark_ready()` instead
    /// of calling this directly, to ensure atomicity with status updates.
    pub async fn create(&self, new_entry: NewTaskOutbox) -> Result<TaskOutbox, ValidationError> {
        let now = UniversalTimestamp::now();
        let new_unified = NewUnifiedTaskOutbox {
            task_execution_id: new_entry.task_execution_id,
            created_at: now,
        };

        let result: UnifiedTaskOutbox = crate::interact_on_backend!(self.dal, |conn| {
            diesel::insert_into(task_outbox::table)
                .values(&new_unified)
                .get_result(conn)
        })?;

        Ok(TaskOutbox {
            id: result.id,
            task_execution_id: result.task_execution_id,
            created_at: result.created_at,
        })
    }

    /// Deletes an outbox entry by task execution ID.
    ///
    /// This is called when a task is claimed to remove it from the work queue.
    pub async fn delete_by_task(
        &self,
        task_execution_id: UniversalUuid,
    ) -> Result<(), ValidationError> {
        crate::interact_on_backend!(self.dal, |conn| {
            diesel::delete(
                task_outbox::table.filter(task_outbox::task_execution_id.eq(task_execution_id)),
            )
            .execute(conn)
        })?;

        Ok(())
    }

    /// Lists all pending outbox entries (for polling-based claiming).
    ///
    /// Returns entries ordered by creation time (oldest first).
    pub async fn list_pending(&self, limit: i64) -> Result<Vec<TaskOutbox>, ValidationError> {
        let results: Vec<UnifiedTaskOutbox> = crate::interact_on_backend!(self.dal, |conn| {
            task_outbox::table
                .order(task_outbox::created_at.asc())
                .limit(limit)
                .load(conn)
        })?;

        Ok(results
            .into_iter()
            .map(|r| TaskOutbox {
                id: r.id,
                task_execution_id: r.task_execution_id,
                created_at: r.created_at,
            })
            .collect())
    }

    /// Counts pending outbox entries (for monitoring).
    pub async fn count_pending(&self) -> Result<i64, ValidationError> {
        let count: i64 = crate::interact_on_backend!(self.dal, |conn| {
            task_outbox::table.count().get_result(conn)
        })?;

        Ok(count)
    }

    /// Deletes stale outbox entries older than the specified timestamp.
    /// Currently exercised only by tests in this file; production code
    /// uses `claim_ready_tasks` which has its own age handling.
    #[cfg(test)]
    pub(crate) async fn delete_older_than(
        &self,
        cutoff: UniversalTimestamp,
    ) -> Result<i64, ValidationError> {
        let deleted: usize = crate::interact_on_backend!(self.dal, |conn| {
            diesel::delete(task_outbox::table.filter(task_outbox::created_at.lt(cutoff)))
                .execute(conn)
        })?;

        Ok(deleted as i64)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::database::Database;
    use crate::models::task_execution::NewTaskExecution;
    use crate::models::task_outbox::NewTaskOutbox;
    use crate::models::workflow_execution::NewWorkflowExecution;

    #[cfg(feature = "sqlite")]
    async fn unique_dal() -> DAL {
        let url = format!(
            "file:outbox_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)
    }

    /// Helper: create a workflow execution + task, mark it ready (which inserts into outbox),
    /// and return the task execution ID.
    #[cfg(feature = "sqlite")]
    async fn create_ready_task(dal: &DAL, task_name: &str) -> UniversalUuid {
        let wf_exec = dal
            .workflow_execution()
            .create(NewWorkflowExecution {
                workflow_name: "test_workflow".into(),
                workflow_version: "1.0".into(),
                status: "Running".into(),
                context_id: None,
            })
            .await
            .unwrap();

        let task = dal
            .task_execution()
            .create(NewTaskExecution {
                workflow_execution_id: wf_exec.id,
                task_name: task_name.into(),
                status: "NotStarted".into(),
                attempt: 1,
                max_attempts: 3,
                trigger_rules: r#"{"type":"Always"}"#.into(),
                task_configuration: "{}".into(),
            })
            .await
            .unwrap();

        dal.task_execution().mark_ready(task.id).await.unwrap();

        task.id
    }

    // ── create + list_pending ──────────────────────────────────────

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_create_outbox_entry() {
        let dal = unique_dal().await;
        let task_id = create_ready_task(&dal, "task_create_test").await;

        let pending = dal.task_outbox().list_pending(10).await.unwrap();
        assert_eq!(pending.len(), 1);
        assert_eq!(pending[0].task_execution_id, task_id);
    }

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_list_pending_empty() {
        let dal = unique_dal().await;
        let pending = dal.task_outbox().list_pending(10).await.unwrap();
        assert!(pending.is_empty());
    }

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_list_pending_respects_limit() {
        let dal = unique_dal().await;
        create_ready_task(&dal, "task_a").await;
        create_ready_task(&dal, "task_b").await;
        create_ready_task(&dal, "task_c").await;

        let page = dal.task_outbox().list_pending(2).await.unwrap();
        assert_eq!(page.len(), 2);

        let all = dal.task_outbox().list_pending(100).await.unwrap();
        assert_eq!(all.len(), 3);
    }

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_list_pending_ordered_oldest_first() {
        let dal = unique_dal().await;
        create_ready_task(&dal, "first").await;
        create_ready_task(&dal, "second").await;

        let pending = dal.task_outbox().list_pending(10).await.unwrap();
        assert_eq!(pending.len(), 2);
        // Verify ordered oldest first (created_at[0] <= created_at[1])
        let t0: chrono::DateTime<chrono::Utc> = pending[0].created_at.into();
        let t1: chrono::DateTime<chrono::Utc> = pending[1].created_at.into();
        assert!(t0 <= t1);
    }

    // ── count_pending ──────────────────────────────────────────────

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_count_pending_empty() {
        let dal = unique_dal().await;
        let count = dal.task_outbox().count_pending().await.unwrap();
        assert_eq!(count, 0);
    }

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_count_pending_after_inserts() {
        let dal = unique_dal().await;
        create_ready_task(&dal, "t1").await;
        create_ready_task(&dal, "t2").await;

        let count = dal.task_outbox().count_pending().await.unwrap();
        assert_eq!(count, 2);
    }

    // ── delete_by_task ─────────────────────────────────────────────

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_delete_by_task() {
        let dal = unique_dal().await;
        let task_id = create_ready_task(&dal, "to_delete").await;

        // Verify it exists
        let count_before = dal.task_outbox().count_pending().await.unwrap();
        assert_eq!(count_before, 1);

        // Delete it
        dal.task_outbox().delete_by_task(task_id).await.unwrap();

        let count_after = dal.task_outbox().count_pending().await.unwrap();
        assert_eq!(count_after, 0);
    }

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_delete_by_task_nonexistent() {
        let dal = unique_dal().await;
        // Deleting a nonexistent entry should not error
        let bogus = UniversalUuid::new_v4();
        dal.task_outbox().delete_by_task(bogus).await.unwrap();
    }

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_delete_by_task_only_removes_target() {
        let dal = unique_dal().await;
        let task_a = create_ready_task(&dal, "keep_me").await;
        let task_b = create_ready_task(&dal, "delete_me").await;

        dal.task_outbox().delete_by_task(task_b).await.unwrap();

        let remaining = dal.task_outbox().list_pending(10).await.unwrap();
        assert_eq!(remaining.len(), 1);
        assert_eq!(remaining[0].task_execution_id, task_a);
    }

    // ── delete_older_than ──────────────────────────────────────────

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_delete_older_than() {
        let dal = unique_dal().await;
        create_ready_task(&dal, "old_task").await;

        // Use a cutoff in the future so all current entries are "older than" it
        let future_cutoff =
            UniversalTimestamp::from(chrono::Utc::now() + chrono::Duration::hours(1));

        let deleted = dal
            .task_outbox()
            .delete_older_than(future_cutoff)
            .await
            .unwrap();
        assert_eq!(deleted, 1);

        let count = dal.task_outbox().count_pending().await.unwrap();
        assert_eq!(count, 0);
    }

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_delete_older_than_keeps_recent() {
        let dal = unique_dal().await;
        create_ready_task(&dal, "recent_task").await;

        // Use a cutoff in the past so nothing is older
        let past_cutoff = UniversalTimestamp::from(chrono::Utc::now() - chrono::Duration::hours(1));

        let deleted = dal
            .task_outbox()
            .delete_older_than(past_cutoff)
            .await
            .unwrap();
        assert_eq!(deleted, 0);

        let count = dal.task_outbox().count_pending().await.unwrap();
        assert_eq!(count, 1);
    }

    // ── direct create (bypassing mark_ready) ───────────────────────

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_direct_create() {
        let dal = unique_dal().await;
        // Create a workflow execution + task first (FK constraint)
        let wf_exec = dal
            .workflow_execution()
            .create(NewWorkflowExecution {
                workflow_name: "p".into(),
                workflow_version: "1".into(),
                status: "Running".into(),
                context_id: None,
            })
            .await
            .unwrap();
        let task = dal
            .task_execution()
            .create(NewTaskExecution {
                workflow_execution_id: wf_exec.id,
                task_name: "direct".into(),
                status: "NotStarted".into(),
                attempt: 1,
                max_attempts: 1,
                trigger_rules: r#"{"type":"Always"}"#.into(),
                task_configuration: "{}".into(),
            })
            .await
            .unwrap();

        let entry = dal
            .task_outbox()
            .create(NewTaskOutbox {
                task_execution_id: task.id,
            })
            .await
            .unwrap();

        assert_eq!(entry.task_execution_id, task.id);
        assert_eq!(dal.task_outbox().count_pending().await.unwrap(), 1);
    }

    // ── integration: mark_ready populates outbox ───────────────────

    #[cfg(feature = "sqlite")]
    #[tokio::test]
    async fn test_mark_ready_populates_outbox() {
        let dal = unique_dal().await;
        let wf_exec = dal
            .workflow_execution()
            .create(NewWorkflowExecution {
                workflow_name: "p".into(),
                workflow_version: "1".into(),
                status: "Running".into(),
                context_id: None,
            })
            .await
            .unwrap();
        let task = dal
            .task_execution()
            .create(NewTaskExecution {
                workflow_execution_id: wf_exec.id,
                task_name: "ready_test".into(),
                status: "NotStarted".into(),
                attempt: 1,
                max_attempts: 1,
                trigger_rules: r#"{"type":"Always"}"#.into(),
                task_configuration: "{}".into(),
            })
            .await
            .unwrap();

        // Before mark_ready: no outbox entries
        assert_eq!(dal.task_outbox().count_pending().await.unwrap(), 0);

        dal.task_execution().mark_ready(task.id).await.unwrap();

        // After mark_ready: exactly one outbox entry
        let pending = dal.task_outbox().list_pending(10).await.unwrap();
        assert_eq!(pending.len(), 1);
        assert_eq!(pending[0].task_execution_id, task.id);
    }
}