sim-lib-operation-gate 0.4.0

Domain-neutral capability and exact-approval gate for effectful SIM operations.
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
//! Durable operation intent, dispatch, and raw performer receipts.

use std::fmt;

use crate::{operation_error::OperationError, operation_wire::*};
use sim_kernel::{CapabilityName, ContentId, Datum, Symbol};

pub(crate) const INTENT_TAG: &str = "intent-v1";
pub(crate) const GRANT_TAG: &str = "grant-v1";
pub(crate) const ATTEMPT_TAG: &str = "attempt-v1";
pub(crate) const DISPATCH_TAG: &str = "dispatch-v1";
pub(crate) const RECEIPT_TAG: &str = "performer-receipt-v1";

/// Replay rule bound into immutable operation intent.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ReplayPolicy {
    /// A later reconciliation phase may prove that repeat performance is safe.
    Idempotent,
    /// A durable dispatch is an at-most-once barrier, even without an acknowledgement.
    ExactlyOnce,
}

impl ReplayPolicy {
    pub(crate) fn datum(self) -> Datum {
        Datum::Symbol(Symbol::qualified(
            "operation",
            match self {
                Self::Idempotent => "idempotent",
                Self::ExactlyOnce => "exactly-once",
            },
        ))
    }

    pub(crate) fn from_datum(datum: &Datum) -> Result<Self, OperationError> {
        match datum {
            Datum::Symbol(value) if *value == Symbol::qualified("operation", "idempotent") => {
                Ok(Self::Idempotent)
            }
            Datum::Symbol(value) if *value == Symbol::qualified("operation", "exactly-once") => {
                Ok(Self::ExactlyOnce)
            }
            _ => Err(OperationError::NonCanonical("replay policy")),
        }
    }
}

/// Stable identity derived only from canonical immutable operation intent.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct OperationId(pub(crate) ContentId);

/// Identity of canonical operation intent.
pub type OperationIntentId = OperationId;

impl OperationId {
    /// Borrows the kernel semantic content identity.
    pub const fn content_id(&self) -> &ContentId {
        &self.0
    }
}

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

/// Canonical semantic intent whose identity survives grants, attempts, and leases.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct OperationIntent {
    pub(crate) id: OperationId,
    pub(crate) operation: String,
    pub(crate) target: Datum,
    pub(crate) intended_result: Datum,
    pub(crate) replay_policy: ReplayPolicy,
}

impl OperationIntent {
    /// Constructs and identifies one immutable intent.
    pub fn new(
        operation: impl Into<String>,
        target: Datum,
        intended_result: Datum,
        replay_policy: ReplayPolicy,
    ) -> Result<Self, OperationError> {
        let operation = operation.into();
        if operation.is_empty() {
            return Err(OperationError::EmptyOperation);
        }
        let datum = intent_datum(&operation, &target, &intended_result, replay_policy);
        Ok(Self {
            id: OperationId(content_id(&datum)?),
            operation,
            target,
            intended_result,
            replay_policy,
        })
    }

    /// Returns the stable operation identity.
    pub const fn id(&self) -> &OperationId {
        &self.id
    }

    /// Returns the open domain operation name.
    pub fn operation(&self) -> &str {
        &self.operation
    }

    /// Returns the exact semantic target.
    pub const fn target(&self) -> &Datum {
        &self.target
    }

    /// Returns the intended semantic postcondition.
    pub const fn intended_result(&self) -> &Datum {
        &self.intended_result
    }

    /// Returns the replay rule bound into this intent.
    pub const fn replay_policy(&self) -> ReplayPolicy {
        self.replay_policy
    }

    /// Returns the exact canonical value whose id is [`Self::id`].
    pub fn canonical_datum(&self) -> Datum {
        intent_datum(
            &self.operation,
            &self.target,
            &self.intended_result,
            self.replay_policy,
        )
    }

    pub(crate) fn verify(&self) -> Result<(), OperationError> {
        if content_id(&self.canonical_datum())? != self.id.0 {
            return Err(OperationError::ContradictoryIntent);
        }
        Ok(())
    }

    pub(crate) fn from_datum(datum: &Datum) -> Result<Self, OperationError> {
        let fields = node_fields(datum, INTENT_TAG, 4)?;
        let operation = string_field(fields, "operation")?.to_owned();
        let target = field(fields, "target")?.clone();
        let intended_result = field(fields, "intended-result")?.clone();
        let replay_policy = ReplayPolicy::from_datum(field(fields, "replay-policy")?)?;
        let value = Self::new(operation, target, intended_result, replay_policy)?;
        if value.canonical_datum() != *datum {
            return Err(OperationError::NonCanonical("operation intent"));
        }
        Ok(value)
    }
}

/// Identity of one separately recorded least-authority grant.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct OperationGrantId(pub(crate) ContentId);

impl OperationGrantId {
    /// Borrows the grant's semantic content identity.
    pub const fn content_id(&self) -> &ContentId {
        &self.0
    }
}

/// Exact authority presented for one operation.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct OperationGrant {
    pub(crate) id: OperationGrantId,
    pub(crate) operation: OperationId,
    pub(crate) capability: CapabilityName,
    pub(crate) authority: Datum,
}

impl OperationGrant {
    /// Constructs a grant independently of any writer lease or attempt.
    pub fn new(
        operation: OperationId,
        capability: CapabilityName,
        authority: Datum,
    ) -> Result<Self, OperationError> {
        let datum = grant_datum(&operation, &capability, &authority);
        Ok(Self {
            id: OperationGrantId(content_id(&datum)?),
            operation,
            capability,
            authority,
        })
    }

    /// Returns the grant identity.
    pub const fn id(&self) -> &OperationGrantId {
        &self.id
    }

    /// Returns the operation this grant can authorize.
    pub const fn operation(&self) -> &OperationId {
        &self.operation
    }

    /// Returns the exact capability recorded by the grant.
    pub const fn capability(&self) -> &CapabilityName {
        &self.capability
    }

    /// Returns the canonical authority evidence supplied by the caller.
    pub const fn authority(&self) -> &Datum {
        &self.authority
    }

    /// Returns the grant's canonical semantic value.
    pub fn canonical_datum(&self) -> Datum {
        grant_datum(&self.operation, &self.capability, &self.authority)
    }

    pub(crate) fn verify(&self) -> Result<(), OperationError> {
        if content_id(&self.canonical_datum())? != self.id.0 {
            return Err(OperationError::NonCanonical("operation grant"));
        }
        Ok(())
    }

    pub(crate) fn from_datum(datum: &Datum) -> Result<Self, OperationError> {
        let fields = node_fields(datum, GRANT_TAG, 3)?;
        let operation = OperationId(id_from_datum(field(fields, "operation")?)?);
        let capability = CapabilityName::new(string_field(fields, "capability")?);
        let authority = field(fields, "authority")?.clone();
        let value = Self::new(operation, capability, authority)?;
        if value.canonical_datum() != *datum {
            return Err(OperationError::NonCanonical("operation grant"));
        }
        Ok(value)
    }
}

/// Identity of one attempt record, kept separate from the operation id.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct OperationAttemptId(pub(crate) ContentId);

/// One caller-selected attempt ordinal for a stable operation.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct OperationAttempt {
    pub(crate) id: OperationAttemptId,
    pub(crate) operation: OperationId,
    pub(crate) ordinal: u64,
}

impl OperationAttempt {
    /// Constructs an attempt whose identity contains no writer lease.
    pub fn new(operation: OperationId, ordinal: u64) -> Result<Self, OperationError> {
        let datum = attempt_datum(&operation, ordinal);
        Ok(Self {
            id: OperationAttemptId(content_id(&datum)?),
            operation,
            ordinal,
        })
    }

    /// Returns the attempt identity.
    pub const fn id(&self) -> &OperationAttemptId {
        &self.id
    }

    /// Returns the stable operation attempted.
    pub const fn operation(&self) -> &OperationId {
        &self.operation
    }

    /// Returns the caller-selected attempt ordinal.
    pub const fn ordinal(&self) -> u64 {
        self.ordinal
    }

    /// Returns the attempt's canonical semantic value.
    pub fn canonical_datum(&self) -> Datum {
        attempt_datum(&self.operation, self.ordinal)
    }

    pub(crate) fn verify(&self) -> Result<(), OperationError> {
        if content_id(&self.canonical_datum())? != self.id.0 {
            return Err(OperationError::NonCanonical("operation attempt"));
        }
        Ok(())
    }

    pub(crate) fn from_datum(datum: &Datum) -> Result<Self, OperationError> {
        let fields = node_fields(datum, ATTEMPT_TAG, 2)?;
        let operation = OperationId(id_from_datum(field(fields, "operation")?)?);
        let ordinal = u64_field(fields, "ordinal")?;
        let value = Self::new(operation, ordinal)?;
        if value.canonical_datum() != *datum {
            return Err(OperationError::NonCanonical("operation attempt"));
        }
        Ok(value)
    }
}

impl OperationAttemptId {
    /// Borrows the attempt's semantic content identity.
    pub const fn content_id(&self) -> &ContentId {
        &self.0
    }
}

/// Identity of a dispatch durably recorded before a performer is called.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct DispatchId(pub(crate) ContentId);

impl DispatchId {
    /// Borrows the dispatch's semantic content identity.
    pub const fn content_id(&self) -> &ContentId {
        &self.0
    }
}

/// Exact durable handoff to an injected performer.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct OperationDispatch {
    pub(crate) id: DispatchId,
    pub(crate) operation: OperationId,
    pub(crate) grant: OperationGrantId,
    pub(crate) attempt: OperationAttemptId,
}

impl OperationDispatch {
    pub(crate) fn new(
        operation: OperationId,
        grant: OperationGrantId,
        attempt: OperationAttemptId,
    ) -> Result<Self, OperationError> {
        let datum = dispatch_datum(&operation, &grant, &attempt);
        Ok(Self {
            id: DispatchId(content_id(&datum)?),
            operation,
            grant,
            attempt,
        })
    }

    /// Returns the durable dispatch identity.
    pub const fn id(&self) -> &DispatchId {
        &self.id
    }

    /// Returns the stable operation identity.
    pub const fn operation(&self) -> &OperationId {
        &self.operation
    }

    /// Returns the exact separately persisted grant identity.
    pub const fn grant(&self) -> &OperationGrantId {
        &self.grant
    }

    /// Returns the exact separately persisted attempt identity.
    pub const fn attempt(&self) -> &OperationAttemptId {
        &self.attempt
    }

    /// Returns the dispatch's canonical semantic value.
    pub fn canonical_datum(&self) -> Datum {
        dispatch_datum(&self.operation, &self.grant, &self.attempt)
    }

    pub(crate) fn from_datum(datum: &Datum) -> Result<Self, OperationError> {
        let fields = node_fields(datum, DISPATCH_TAG, 3)?;
        let operation = OperationId(id_from_datum(field(fields, "operation")?)?);
        let grant = OperationGrantId(id_from_datum(field(fields, "grant")?)?);
        let attempt = OperationAttemptId(id_from_datum(field(fields, "attempt")?)?);
        let value = Self::new(operation, grant, attempt)?;
        if value.canonical_datum() != *datum {
            return Err(OperationError::NonCanonical("operation dispatch"));
        }
        Ok(value)
    }
}

/// Identity of a raw performer acknowledgement.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct PerformerReceiptId(pub(crate) ContentId);

impl PerformerReceiptId {
    /// Borrows the receipt's semantic content identity.
    pub const fn content_id(&self) -> &ContentId {
        &self.0
    }
}

/// Raw performer acknowledgement bound to one durable dispatch.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct PerformerReceipt {
    pub(crate) id: PerformerReceiptId,
    pub(crate) dispatch: DispatchId,
    pub(crate) raw: Datum,
}

impl PerformerReceipt {
    pub(crate) fn new(dispatch: DispatchId, raw: Datum) -> Result<Self, OperationError> {
        let datum = receipt_datum(&dispatch, &raw);
        Ok(Self {
            id: PerformerReceiptId(content_id(&datum)?),
            dispatch,
            raw,
        })
    }

    /// Returns the raw receipt identity.
    pub const fn id(&self) -> &PerformerReceiptId {
        &self.id
    }

    /// Returns the dispatch acknowledged by the performer.
    pub const fn dispatch(&self) -> &DispatchId {
        &self.dispatch
    }

    /// Returns the uninterpreted canonical performer response.
    pub const fn raw(&self) -> &Datum {
        &self.raw
    }

    /// Returns the receipt's canonical semantic value.
    pub fn canonical_datum(&self) -> Datum {
        receipt_datum(&self.dispatch, &self.raw)
    }

    pub(crate) fn from_datum(datum: &Datum) -> Result<Self, OperationError> {
        let fields = node_fields(datum, RECEIPT_TAG, 2)?;
        let dispatch = DispatchId(id_from_datum(field(fields, "dispatch")?)?);
        let raw = field(fields, "raw")?.clone();
        let value = Self::new(dispatch, raw)?;
        if value.canonical_datum() != *datum {
            return Err(OperationError::NonCanonical("performer receipt"));
        }
        Ok(value)
    }
}

/// The three durable states delivered by the operation-log phase.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum DurableOperationState {
    /// Canonical intent and its separate grant are durable.
    IntentPersisted {
        /// Exact semantic intent identity.
        intent: OperationIntentId,
    },
    /// Dispatch is durable; recovery must not call the performer again.
    Dispatched {
        /// Exact semantic intent identity.
        intent: OperationIntentId,
        /// Exact dispatch identity.
        dispatch: DispatchId,
    },
    /// The raw performer acknowledgement is durable.
    ReceiptPersisted {
        /// Exact dispatch identity.
        dispatch: DispatchId,
        /// Exact raw receipt identity.
        receipt: PerformerReceiptId,
    },
}

/// Result of one injected performer call.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum PerformerResponse {
    /// The performer returned a canonical raw acknowledgement.
    Receipt(Datum),
    /// Performance may have occurred, but no acknowledgement arrived.
    AcknowledgementMissing,
}

/// Effect boundary used only after a matching dispatch is durable.
pub trait OperationPerformer {
    /// Performs one dispatch and returns an uninterpreted response.
    fn perform(&mut self, dispatch: &OperationDispatch) -> PerformerResponse;
}