oxide-batch-repository 0.5.0

Internal OxideBatch implementation crate; use oxide-batch instead
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
//! Durable flow-decision records exchanged with a metadata repository.
//!
//! A flow decision is repository-authoritative and append-only: the runtime
//! validates and proposes one transition, and the adapter allocates its
//! identity and commits it. The records below carry no engine, runtime, or plan
//! type, so a metadata adapter can persist and replay them without depending on
//! the flow engine that produced them.

use std::fmt;
use std::num::NonZeroU64;
use std::time::SystemTime;

use oxide_batch_core::{
    DomainError, ExecutionContext, ExitCode, FlowTarget, IdentifierKind, JobExecutionId, NodeId,
    StepExecution, StepExecutionId,
};

/// Opaque durable identifier of one selected transition.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct FlowDecisionId(NonZeroU64);

impl FlowDecisionId {
    /// Constructs a positive flow-decision identifier.
    ///
    /// # Errors
    ///
    /// Returns [`DomainError::ZeroIdentifier`] for zero.
    pub fn new(value: u64) -> Result<Self, DomainError> {
        NonZeroU64::new(value)
            .map(Self)
            .ok_or(DomainError::ZeroIdentifier {
                kind: IdentifierKind::FlowDecision,
            })
    }

    /// Returns the numeric identifier.
    #[must_use]
    pub const fn get(self) -> u64 {
        self.0.get()
    }
}

impl fmt::Display for FlowDecisionId {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.get().fmt(formatter)
    }
}

/// Positive, execution-local ordering of selected transitions.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct FlowDecisionSequence(NonZeroU64);

impl FlowDecisionSequence {
    /// Constructs a positive sequence.
    ///
    /// # Errors
    ///
    /// Returns [`DomainError::ZeroIdentifier`] for zero.
    ///
    /// [`DomainError::ZeroIdentifier`]: DomainError::ZeroIdentifier
    pub fn new(value: u64) -> Result<Self, DomainError> {
        NonZeroU64::new(value)
            .map(Self)
            .ok_or(DomainError::ZeroIdentifier {
                kind: IdentifierKind::FlowDecisionSequence,
            })
    }

    /// Returns the numeric sequence.
    #[must_use]
    pub const fn get(self) -> u64 {
        self.0.get()
    }
}

/// Why one transition was selected.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[non_exhaustive]
pub enum FlowTransitionKind {
    /// A newly executed step produced the observed outcome.
    StepExit,
    /// A deterministic decider produced the observed outcome.
    Decider,
    /// Restart reused a completed step without invoking it.
    CompletedStepReuse,
    /// A bounded local split joined durable branch results in declared order.
    SplitAggregate,
}

impl FlowTransitionKind {
    /// Returns the stable durable code of this transition kind.
    #[doc(hidden)]
    #[must_use]
    pub const fn durable_code(self) -> &'static str {
        match self {
            Self::StepExit => "STEP_EXIT",
            Self::Decider => "DECIDER",
            Self::CompletedStepReuse => "COMPLETED_STEP_REUSE",
            Self::SplitAggregate => "SPLIT_AGGREGATE",
        }
    }

    /// Reads one stable durable transition-kind code.
    #[doc(hidden)]
    #[must_use]
    pub fn from_durable_code(value: &str) -> Option<Self> {
        match value {
            "STEP_EXIT" => Some(Self::StepExit),
            "DECIDER" => Some(Self::Decider),
            "COMPLETED_STEP_REUSE" => Some(Self::CompletedStepReuse),
            "SPLIT_AGGREGATE" => Some(Self::SplitAggregate),
            _ => None,
        }
    }
}

/// One append-only, repository-authoritative selected transition.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct FlowDecision {
    id: FlowDecisionId,
    job_execution_id: JobExecutionId,
    sequence: FlowDecisionSequence,
    source_node_id: NodeId,
    source_step_execution_id: Option<StepExecutionId>,
    kind: FlowTransitionKind,
    observed_outcome: ExitCode,
    target: FlowTarget,
    plan_fingerprint: [u8; 32],
    input_digest: [u8; 32],
    reused_decision_id: Option<FlowDecisionId>,
    decided_at: SystemTime,
}

impl FlowDecision {
    /// Reconstructs one durable flow decision an adapter allocated.
    #[allow(clippy::too_many_arguments)]
    #[doc(hidden)]
    #[must_use]
    pub const fn new(
        id: FlowDecisionId,
        job_execution_id: JobExecutionId,
        sequence: FlowDecisionSequence,
        source_node_id: NodeId,
        source_step_execution_id: Option<StepExecutionId>,
        kind: FlowTransitionKind,
        observed_outcome: ExitCode,
        target: FlowTarget,
        plan_fingerprint: [u8; 32],
        input_digest: [u8; 32],
        reused_decision_id: Option<FlowDecisionId>,
        decided_at: SystemTime,
    ) -> Self {
        Self {
            id,
            job_execution_id,
            sequence,
            source_node_id,
            source_step_execution_id,
            kind,
            observed_outcome,
            target,
            plan_fingerprint,
            input_digest,
            reused_decision_id,
            decided_at,
        }
    }

    /// Returns the repository-owned identifier.
    #[must_use]
    pub const fn id(&self) -> FlowDecisionId {
        self.id
    }

    /// Returns the execution that recorded this traversal.
    #[must_use]
    pub const fn job_execution_id(&self) -> JobExecutionId {
        self.job_execution_id
    }

    /// Returns the execution-local ordering.
    #[must_use]
    pub const fn sequence(&self) -> FlowDecisionSequence {
        self.sequence
    }

    /// Borrows the source logical node.
    #[must_use]
    pub const fn source_node_id(&self) -> &NodeId {
        &self.source_node_id
    }

    /// Returns the step attempt whose durable result was observed, if any.
    #[must_use]
    pub const fn source_step_execution_id(&self) -> Option<StepExecutionId> {
        self.source_step_execution_id
    }

    /// Returns why this transition was selected.
    #[must_use]
    pub const fn kind(&self) -> FlowTransitionKind {
        self.kind
    }

    /// Borrows the bounded observed outcome.
    #[must_use]
    pub const fn observed_outcome(&self) -> &ExitCode {
        &self.observed_outcome
    }

    /// Borrows the selected node or terminal.
    #[must_use]
    pub const fn target(&self) -> &FlowTarget {
        &self.target
    }

    /// Returns the exact plan fingerprint under which the choice was made.
    #[must_use]
    pub const fn plan_fingerprint(&self) -> &[u8; 32] {
        &self.plan_fingerprint
    }

    /// Returns the value-redacted durable-input digest.
    #[must_use]
    pub const fn input_digest(&self) -> &[u8; 32] {
        &self.input_digest
    }

    /// Returns the prior committed decision reused by restart, if any.
    #[must_use]
    pub const fn reused_decision_id(&self) -> Option<FlowDecisionId> {
        self.reused_decision_id
    }

    /// Returns the injected facade-clock timestamp.
    #[must_use]
    pub const fn decided_at(&self) -> SystemTime {
        self.decided_at
    }
}

/// A validated transition awaiting repository allocation and commit.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct FlowDecisionRequest {
    job_execution_id: JobExecutionId,
    sequence: FlowDecisionSequence,
    source_node_id: NodeId,
    source_step_execution_id: Option<StepExecutionId>,
    kind: FlowTransitionKind,
    observed_outcome: ExitCode,
    target: FlowTarget,
    plan_fingerprint: [u8; 32],
    input_digest: [u8; 32],
    reused_decision_id: Option<FlowDecisionId>,
    decided_at: SystemTime,
}

impl FlowDecisionRequest {
    /// Builds one validated transition awaiting allocation and commit.
    #[allow(clippy::too_many_arguments)]
    #[doc(hidden)]
    #[must_use]
    pub const fn new(
        job_execution_id: JobExecutionId,
        sequence: FlowDecisionSequence,
        source_node_id: NodeId,
        source_step_execution_id: Option<StepExecutionId>,
        kind: FlowTransitionKind,
        observed_outcome: ExitCode,
        target: FlowTarget,
        plan_fingerprint: [u8; 32],
        input_digest: [u8; 32],
        reused_decision_id: Option<FlowDecisionId>,
        decided_at: SystemTime,
    ) -> Self {
        Self {
            job_execution_id,
            sequence,
            source_node_id,
            source_step_execution_id,
            kind,
            observed_outcome,
            target,
            plan_fingerprint,
            input_digest,
            reused_decision_id,
            decided_at,
        }
    }

    /// Returns the execution that will own the append.
    #[must_use]
    pub const fn job_execution_id(&self) -> JobExecutionId {
        self.job_execution_id
    }
    /// Returns the expected execution-local append sequence.
    #[must_use]
    pub const fn sequence(&self) -> FlowDecisionSequence {
        self.sequence
    }
    /// Borrows the selected transition's source node.
    #[must_use]
    pub const fn source_node_id(&self) -> &NodeId {
        &self.source_node_id
    }
    /// Returns the durable source step, when the source is a step.
    #[must_use]
    pub const fn source_step_execution_id(&self) -> Option<StepExecutionId> {
        self.source_step_execution_id
    }
    /// Returns why the runtime selected this transition.
    #[must_use]
    pub const fn kind(&self) -> FlowTransitionKind {
        self.kind
    }
    /// Borrows the bounded outcome used for selection.
    #[must_use]
    pub const fn observed_outcome(&self) -> &ExitCode {
        &self.observed_outcome
    }
    /// Borrows the selected node or terminal.
    #[must_use]
    pub const fn target(&self) -> &FlowTarget {
        &self.target
    }
    /// Returns the exact persisted plan fingerprint.
    #[must_use]
    pub const fn plan_fingerprint(&self) -> &[u8; 32] {
        &self.plan_fingerprint
    }
    /// Returns the value-redacted durable-input digest.
    #[must_use]
    pub const fn input_digest(&self) -> &[u8; 32] {
        &self.input_digest
    }
    /// Returns the exact prior decision reused by restart, when present.
    #[must_use]
    pub const fn reused_decision_id(&self) -> Option<FlowDecisionId> {
        self.reused_decision_id
    }
    /// Returns the injected facade-clock decision time.
    #[must_use]
    pub const fn decided_at(&self) -> SystemTime {
        self.decided_at
    }

    /// Materializes the immutable record after an adapter allocates its ID.
    ///
    /// Repository implementations should call this only after validating the
    /// request against the persisted plan and committing its append rules.
    #[must_use]
    pub fn materialize(&self, id: FlowDecisionId) -> FlowDecision {
        FlowDecision::new(
            id,
            self.job_execution_id,
            self.sequence,
            self.source_node_id.clone(),
            self.source_step_execution_id,
            self.kind,
            self.observed_outcome.clone(),
            self.target.clone(),
            self.plan_fingerprint,
            self.input_digest,
            self.reused_decision_id,
            self.decided_at,
        )
    }
}

/// Latest durable attempt for one logical step, used to reconstruct restart.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct FlowStepState {
    node_id: NodeId,
    execution: StepExecution,
    context: Option<ExecutionContext>,
}

impl FlowStepState {
    /// Constructs adapter-supplied latest logical-step state.
    ///
    /// Repository implementations must verify that `execution` belongs to the
    /// requested job instance and `node_id` before returning this value.
    #[must_use]
    pub const fn new(
        node_id: NodeId,
        execution: StepExecution,
        context: Option<ExecutionContext>,
    ) -> Self {
        Self {
            node_id,
            execution,
            context,
        }
    }

    /// Borrows the stable step logical identifier.
    #[must_use]
    pub const fn node_id(&self) -> &NodeId {
        &self.node_id
    }

    /// Borrows the latest step attempt.
    #[must_use]
    pub const fn execution(&self) -> &StepExecution {
        &self.execution
    }

    /// Borrows committed step context when the adapter exposes it.
    #[must_use]
    pub const fn context(&self) -> Option<&ExecutionContext> {
        self.context.as_ref()
    }
}