logline-core 0.1.1

The Conceptual Atom of Verifiable Action — LogLine Protocol implementation
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
477
478
479
480
481
482
483
484
485
486
487
488
//! # logline-core
//!
//! The Conceptual Atom of Verifiable Action — Paper I §3 (9-field tuple, lifecycle, invariants, Ghost Records)
//!
//! See [README.md](https://github.com/LogLine-Foundation/logline-core/blob/main/README.md) for full documentation.

#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(not(feature = "std"), no_std)]
#![forbid(unsafe_code)]

#[cfg(not(feature = "std"))]
extern crate alloc;

#[cfg(not(feature = "std"))]
use alloc::{string::String, vec::Vec};
#[cfg(feature = "std")]
use std::{string::String, vec::Vec};

mod builder;
mod consequence;
mod ghost;
mod payload;
mod signature;
mod status;
mod verb;

pub use builder::LogLineBuilder;
pub use consequence::{Escalation, FailureHandling, Outcome};
pub use ghost::GhostRecord;
pub use payload::Payload;
pub use signature::{SignError, Signable, Signature, Signer};
pub use status::Status;
pub use verb::{Verb, VerbRegistry};

use thiserror::Error;

/// Número rígido de campos do átomo conceitual (Paper I §3).
pub const TUPLE_FIELD_COUNT: usize = 9;

/// Erros que podem ocorrer ao manipular um `LogLine`.
///
/// Todos os erros são retornados como `LogLineError` e podem ser convertidos
/// em strings legíveis usando `Display` (via `thiserror`).
#[derive(Error, Debug, PartialEq)]
pub enum LogLineError {
    /// Um invariant obrigatório está faltando ou vazio.
    ///
    /// Os invariants obrigatórios são: `if_ok`, `if_doubt`, `if_not`.
    #[error("Missing consequence invariant: {0}")]
    MissingInvariant(&'static str),
    /// Um campo obrigatório está faltando.
    ///
    /// Campos obrigatórios: `who`, `did`, `when`.
    #[error("Missing field: {0}")]
    MissingField(&'static str),
    /// Tentativa de transição de status inválida.
    ///
    /// O lifecycle permite apenas: `DRAFT → PENDING → COMMITTED` ou `DRAFT/PENDING → GHOST`.
    #[error("Invalid status transition: {from:?} → {to:?}")]
    InvalidTransition { from: Status, to: Status },
    /// Tentativa de abandonar um LogLine que já está `Committed`.
    ///
    /// LogLines `Committed` são imutáveis e não podem ser abandonados.
    #[error("Cannot ghost a committed LogLine")]
    AlreadyCommitted,
    /// Erro durante a assinatura do LogLine.
    #[error("Signing error")]
    Signing,
}

/// O "átomo" LogLine — 9-field tuple rígido.
///
/// Representa uma ação verificável com lifecycle determinístico e invariants obrigatórios.
/// Conforme Paper I §3, cada LogLine deve ter exatamente 9 campos e seguir o lifecycle
/// `DRAFT → PENDING → COMMITTED | GHOST`.
///
/// # Exemplo
///
/// ```rust
/// use logline_core::*;
///
/// let line = LogLine::builder()
///     .who("did:ubl:alice")
///     .did(Verb::Approve)
///     .this(Payload::Text("purchase:123".into()))
///     .when(1_735_671_234)
///     .if_ok(Outcome { label: "approved".into(), effects: vec!["emit_receipt".into()] })
///     .if_doubt(Escalation { label: "manual_review".into(), route_to: "auditor".into() })
///     .if_not(FailureHandling { label: "rejected".into(), action: "notify".into() })
///     .build_draft()?;
/// # Ok::<(), LogLineError>(())
/// ```
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct LogLine {
    /// Identidade do agente que executa a ação (DID futuro, ex: `did:ubl:...`).
    pub who: String,
    /// Verbo canônico ou custom (Paper I: validar contra ALLOWED_ACTIONS via VerbRegistry).
    pub did: Verb,
    /// Carga útil mínima/typed (Paper I: JSON estrito validado por schema do verbo).
    pub this: Payload,
    /// Unix timestamp em nanosegundos (interno). Na serialização canônica JSON✯Atomic será ISO8601.
    pub when: u64,
    /// Identidade que confirma a ação. Paper I: obrigatório para ações de Risk Level 3+ (L3+).
    pub confirmed_by: Option<String>,
    /// Consequência positiva obrigatória (Paper I: invariante obrigatório).
    pub if_ok: Outcome,
    /// Via de dúvida obrigatória (Paper I: invariante obrigatório).
    pub if_doubt: Escalation,
    /// Fallback/erro obrigatório (Paper I: invariante obrigatório).
    pub if_not: FailureHandling,
    /// Estado do lifecycle rígido: `DRAFT → PENDING → COMMITTED | GHOST`.
    pub status: Status,
    // pub signature: Option<Signature> // (futuro)
}

impl LogLine {
    /// Cria um novo builder para construir um `LogLine` passo a passo.
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// let builder = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Transfer);
    /// ```
    pub fn builder() -> LogLineBuilder {
        LogLineBuilder::new()
    }

    /// Verifica invariants do 9-tuple (Paper I §3).
    ///
    /// Valida que todos os campos obrigatórios estão presentes e não vazios:
    /// - `who` não pode ser vazio
    /// - `when` deve ser > 0
    /// - `if_ok`, `if_doubt`, `if_not` devem estar presentes e não vazios
    ///
    /// # Erros
    ///
    /// Retorna `LogLineError::MissingField` ou `LogLineError::MissingInvariant`
    /// se algum invariant não for satisfeito.
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Approve)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "auditor".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "notify".into() })
    ///     .build_draft()?;
    ///
    /// assert!(line.verify_invariants().is_ok());
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn verify_invariants(&self) -> Result<(), LogLineError> {
        if self.who.is_empty() {
            return Err(LogLineError::MissingField("who"));
        }
        if self.when == 0 {
            return Err(LogLineError::MissingField("when"));
        }
        if self.if_ok.is_empty() {
            return Err(LogLineError::MissingInvariant("if_ok"));
        }
        if self.if_doubt.is_empty() {
            return Err(LogLineError::MissingInvariant("if_doubt"));
        }
        if self.if_not.is_empty() {
            return Err(LogLineError::MissingInvariant("if_not"));
        }
        Ok(())
    }

    /// Assina o LogLine (DRAFT ou PENDING). Paper I: "nada acontece sem estar assinado".
    ///
    /// A assinatura é calculada sobre os bytes determinísticos retornados por
    /// `to_signable_bytes()`. Retorna `self` para method chaining.
    ///
    /// # Erros
    ///
    /// - `LogLineError::InvalidTransition` se o status não for `Draft` ou `Pending`
    /// - `LogLineError::Signing` se a assinatura falhar
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// struct NoopSigner;
    /// impl Signer for NoopSigner {
    ///     fn sign(&self, _msg: &[u8]) -> Result<Signature, SignError> {
    ///         Ok(Signature { alg: "none".into(), bytes: vec![] })
    ///     }
    /// }
    ///
    /// let signer = NoopSigner;
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Approve)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "auditor".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "notify".into() })
    ///     .build_draft()?
    ///     .sign(&signer)?;
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn sign(self, signer: &dyn Signer) -> Result<Self, LogLineError> {
        match self.status {
            Status::Draft | Status::Pending => {
                let _sig = signer
                    .sign(&self.to_signable_bytes())
                    .map_err(|_| LogLineError::Signing)?;
                // self.signature = Some(sig); // quando ativarmos
                Ok(self)
            }
            _ => Err(LogLineError::InvalidTransition {
                from: self.status,
                to: Status::Committed,
            }),
        }
    }

    /// Congela o DRAFT em PENDING (pronto para sign/commit/ghost).
    ///
    /// Valida os invariants antes de fazer a transição. Após `freeze()`, o LogLine
    /// está pronto para ser assinado e commitado, ou abandonado como Ghost.
    ///
    /// # Erros
    ///
    /// - `LogLineError::InvalidTransition` se o status não for `Draft`
    /// - `LogLineError::MissingField` ou `LogLineError::MissingInvariant` se os invariants falharem
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Approve)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "auditor".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "notify".into() })
    ///     .build_draft()?
    ///     .freeze()?;
    ///
    /// assert_eq!(line.status, Status::Pending);
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn freeze(mut self) -> Result<Self, LogLineError> {
        status::ensure(Status::Draft, Status::Pending, self.status)?;
        self.verify_invariants()?;
        self.status = Status::Pending;
        Ok(self)
    }

    /// Congela com validação de verbo contra ALLOWED_ACTIONS (Paper I: verbo deve estar no registro).
    ///
    /// Equivalente a `freeze()`, mas valida primeiro se o verbo (`did`) está permitido
    /// no sistema através do `VerbRegistry`. Útil para implementar políticas de segurança
    /// onde apenas verbos específicos são permitidos.
    ///
    /// # Erros
    ///
    /// - `LogLineError::MissingField("did (unknown verb)")` se o verbo não estiver no registro
    /// - Erros de `freeze()` se os invariants falharem
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// struct SimpleRegistry;
    /// impl VerbRegistry for SimpleRegistry {
    ///     fn is_allowed(&self, verb: &Verb) -> bool {
    ///         matches!(verb, Verb::Transfer | Verb::Approve)
    ///     }
    /// }
    ///
    /// let registry = SimpleRegistry;
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Approve)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "auditor".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "notify".into() })
    ///     .build_draft()?
    ///     .freeze_with_registry(&registry)?;
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn freeze_with_registry(self, registry: &dyn VerbRegistry) -> Result<Self, LogLineError> {
        if !registry.is_allowed(&self.did) {
            return Err(LogLineError::MissingField("did (unknown verb)"));
        }
        self.freeze()
    }

    /// Commit final (PENDING → COMMITTED). Paper I: requer assinatura obrigatória.
    ///
    /// Transiciona o LogLine de `Pending` para `Committed`, assinando os bytes determinísticos.
    /// Uma vez `Committed`, o LogLine não pode mais ser modificado ou abandonado.
    ///
    /// # Erros
    ///
    /// - `LogLineError::InvalidTransition` se o status não for `Pending`
    /// - `LogLineError::Signing` se a assinatura falhar
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// struct NoopSigner;
    /// impl Signer for NoopSigner {
    ///     fn sign(&self, _msg: &[u8]) -> Result<Signature, SignError> {
    ///         Ok(Signature { alg: "none".into(), bytes: vec![] })
    ///     }
    /// }
    ///
    /// let signer = NoopSigner;
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Approve)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "auditor".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "notify".into() })
    ///     .build_draft()?
    ///     .freeze()?
    ///     .commit(&signer)?;
    ///
    /// assert_eq!(line.status, Status::Committed);
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn commit(mut self, signer: &dyn Signer) -> Result<Self, LogLineError> {
        status::ensure(Status::Pending, Status::Committed, self.status)?;
        // Futuro: bytes canônicos JSON✯Atomic; por ora, ordem estável de campos:
        let _sig = signer
            .sign(&self.to_signable_bytes())
            .map_err(|_| LogLineError::Signing)?;
        // self.signature = Some(sig); // quando ativarmos
        self.status = Status::Committed;
        Ok(self)
    }

    /// Abandona intenção: DRAFT/PENDING → GHOST (forensics).
    ///
    /// Versão sem assinatura (compatibilidade). Para versão assinada, use `abandon_signed()`.
    /// Cria um `GhostRecord` que preserva o LogLine original para análise forense.
    ///
    /// # Erros
    ///
    /// - `LogLineError::AlreadyCommitted` se o LogLine já estiver `Committed`
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Deploy)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "qa".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "rollback".into() })
    ///     .build_draft()?;
    ///
    /// let ghost = line.abandon(Some("user_cancelled".into()))?;
    /// assert_eq!(ghost.status, Status::Ghost);
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn abandon(self, reason: Option<String>) -> Result<GhostRecord, LogLineError> {
        match self.status {
            Status::Committed => Err(LogLineError::AlreadyCommitted),
            Status::Draft | Status::Pending => Ok(GhostRecord::from(self, reason)),
            _ => Ok(GhostRecord::from(self, reason)),
        }
    }

    /// Abandona intenção assinada: DRAFT/PENDING → GHOST (forensics).
    ///
    /// Paper I: attempt já nasce assinado, então o abandon também deve ser assinado.
    /// Versão recomendada que assina o LogLine antes de criar o GhostRecord.
    ///
    /// # Erros
    ///
    /// - `LogLineError::AlreadyCommitted` se o LogLine já estiver `Committed`
    /// - `LogLineError::Signing` se a assinatura falhar
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// struct NoopSigner;
    /// impl Signer for NoopSigner {
    ///     fn sign(&self, _msg: &[u8]) -> Result<Signature, SignError> {
    ///         Ok(Signature { alg: "none".into(), bytes: vec![] })
    ///     }
    /// }
    ///
    /// let signer = NoopSigner;
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Deploy)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "qa".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "rollback".into() })
    ///     .build_draft()?;
    ///
    /// let ghost = line.abandon_signed(&signer, Some("timeout".into()))?;
    /// assert_eq!(ghost.status, Status::Ghost);
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn abandon_signed(
        self,
        signer: &dyn Signer,
        reason: Option<String>,
    ) -> Result<GhostRecord, LogLineError> {
        match self.status {
            Status::Committed => Err(LogLineError::AlreadyCommitted),
            Status::Draft | Status::Pending => {
                let _sig = signer
                    .sign(&self.to_signable_bytes())
                    .map_err(|_| LogLineError::Signing)?;
                Ok(GhostRecord::from(self, reason))
            }
            _ => Ok(GhostRecord::from(self, reason)),
        }
    }

    /// Bytes determinísticos "suficientes" para v0.1 (placeholder).
    ///
    /// Gera uma representação determinística dos campos principais do LogLine
    /// para assinatura. Em versões futuras, isso será substituído por bytes canônicos
    /// JSON✯Atomic (via `json_atomic`).
    ///
    /// Formato atual: `who|verb|when|status|confirmed_by|this.kind`
    ///
    /// # Exemplo
    ///
    /// ```rust
    /// use logline_core::*;
    ///
    /// let line = LogLine::builder()
    ///     .who("did:ubl:alice")
    ///     .did(Verb::Approve)
    ///     .when(1_735_671_234)
    ///     .if_ok(Outcome { label: "ok".into(), effects: vec![] })
    ///     .if_doubt(Escalation { label: "doubt".into(), route_to: "auditor".into() })
    ///     .if_not(FailureHandling { label: "not".into(), action: "notify".into() })
    ///     .build_draft()?;
    ///
    /// let bytes = line.to_signable_bytes();
    /// assert!(!bytes.is_empty());
    /// # Ok::<(), LogLineError>(())
    /// ```
    pub fn to_signable_bytes(&self) -> Vec<u8> {
        // Ordem fixa: who|verb|when|status|confirmed_by|this.kind
        let mut out = Vec::new();
        out.extend_from_slice(self.who.as_bytes());
        out.extend_from_slice(b"|");
        out.extend_from_slice(self.did.as_str().as_bytes());
        out.extend_from_slice(b"|");
        out.extend_from_slice(self.when.to_string().as_bytes());
        out.extend_from_slice(b"|");
        out.extend_from_slice(self.status.as_str().as_bytes());
        out.extend_from_slice(b"|");
        if let Some(c) = &self.confirmed_by {
            out.extend_from_slice(c.as_bytes());
        }
        out.extend_from_slice(b"|");
        out.extend_from_slice(self.this.kind().as_bytes());
        out
    }
}