monoloop-contracts 0.1.1

Shared identities, dialect descriptors, errors, and port contracts for Monoloop
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
//! Correlation identities. Opaque wrappers — no ambient current identity.
//!
//! Public string newtypes reject empty, oversized, and control-character values.

use serde::{Deserialize, Serialize};
use std::fmt;
use thiserror::Error;
use uuid::Uuid;

/// Maximum bytes for opaque string identities and tool names.
pub const MAX_IDENTITY_BYTES: usize = 256;

/// Identity construction failure (safe, closed).
#[derive(Clone, Debug, Error, PartialEq, Eq)]
pub enum IdentityError {
    /// Empty string rejected.
    #[error("identity must be non-empty")]
    Empty,
    /// Exceeds [`MAX_IDENTITY_BYTES`].
    #[error("identity exceeds maximum length of {MAX_IDENTITY_BYTES} bytes")]
    TooLong,
    /// Contains a Unicode control character.
    #[error("identity must not contain control characters")]
    ControlCharacter,
}

/// Validate a bounded opaque identity string.
pub fn validate_identity_string(value: &str) -> Result<(), IdentityError> {
    if value.is_empty() {
        return Err(IdentityError::Empty);
    }
    if value.len() > MAX_IDENTITY_BYTES {
        return Err(IdentityError::TooLong);
    }
    if value.chars().any(|c| c.is_control()) {
        return Err(IdentityError::ControlCharacter);
    }
    Ok(())
}

fn validated_string(value: impl Into<String>) -> Result<String, IdentityError> {
    let s = value.into();
    validate_identity_string(&s)?;
    Ok(s)
}

/// Local logical transport attachment identity for one connection scope.
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct ConnectionId(String);

impl ConnectionId {
    /// Create a connection id from an explicit caller-supplied string.
    ///
    /// # Panics
    ///
    /// Panics if `value` fails identity validation. Prefer [`Self::try_new`].
    pub fn new(value: impl Into<String>) -> Self {
        Self::try_new(value).expect("ConnectionId::new requires a valid identity string")
    }

    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Allocate a random connection id (for tests and callers without an injector).
    pub fn generate() -> Self {
        Self(Uuid::new_v4().to_string())
    }

    /// Borrow the underlying string.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl fmt::Display for ConnectionId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&self.0)
    }
}

/// Monoloop run correlation identity.
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct MonoloopRunId(String);

impl MonoloopRunId {
    /// Create from an explicit value.
    ///
    /// # Panics
    ///
    /// Panics if `value` fails identity validation. Prefer [`Self::try_new`].
    pub fn new(value: impl Into<String>) -> Self {
        Self::try_new(value).expect("MonoloopRunId::new requires a valid identity string")
    }

    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Allocate a random run id.
    pub fn generate() -> Self {
        Self(Uuid::new_v4().to_string())
    }

    /// One-to-one derivation from a transaction id (internal component correlation).
    pub fn from_transaction(id: &TransactionId) -> Self {
        Self(format!("txn:{}", id.as_uuid()))
    }

    /// Borrow the underlying string.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl Default for MonoloopRunId {
    fn default() -> Self {
        Self::generate()
    }
}

impl fmt::Display for MonoloopRunId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&self.0)
    }
}

/// Opaque externally owned session identity (e.g. Grok `sessionId`).
///
/// Monoloop compares and routes this value; it does not invent a competing ID
/// or derive authority from its contents.
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct ExternalSessionId(String);

impl ExternalSessionId {
    /// Wrap an external system's authoritative session id.
    ///
    /// # Panics
    ///
    /// Panics if `value` fails identity validation. Prefer [`Self::try_new`].
    pub fn new(value: impl Into<String>) -> Self {
        Self::try_new(value).expect("ExternalSessionId::new requires a valid identity string")
    }

    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Borrow the opaque value.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl fmt::Display for ExternalSessionId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        // Display redacts by default; Display is for tests/safe logs only.
        f.write_str("<external-session>")
    }
}

/// Grok Build's authoritative `sessionId` — the sole session correlation identity
/// for the Grok connector profile.
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct GrokSessionId(ExternalSessionId);

impl GrokSessionId {
    /// Wrap a Grok-returned session id.
    ///
    /// # Panics
    ///
    /// Panics if `value` fails identity validation. Prefer [`Self::try_new`].
    pub fn new(value: impl Into<String>) -> Self {
        Self::try_new(value).expect("GrokSessionId::new requires a valid identity string")
    }

    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(ExternalSessionId::try_new(value)?))
    }

    /// Borrow the opaque session id string (for protocol routing only).
    pub fn as_str(&self) -> &str {
        self.0.as_str()
    }

    /// View as a generic external session id.
    pub fn as_external(&self) -> &ExternalSessionId {
        &self.0
    }

    /// Convert into a generic external session id.
    pub fn into_external(self) -> ExternalSessionId {
        self.0
    }
}

impl From<GrokSessionId> for ExternalSessionId {
    fn from(value: GrokSessionId) -> Self {
        value.0
    }
}

/// Caller/request correlation identity (opaque, no authority).
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct RequestId(String);

impl RequestId {
    /// Create from an explicit value.
    ///
    /// # Panics
    ///
    /// Panics if `value` fails identity validation. Prefer [`Self::try_new`].
    pub fn new(value: impl Into<String>) -> Self {
        Self::try_new(value).expect("RequestId::new requires a valid identity string")
    }

    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Allocate a random request id.
    pub fn generate() -> Self {
        Self(Uuid::new_v4().to_string())
    }

    /// Borrow the underlying string.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

/// Admitted transaction identity (Monoloop-generated, never reused).
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct TransactionId(Uuid);

impl TransactionId {
    /// Allocate a fresh transaction id.
    pub fn generate() -> Self {
        Self(Uuid::new_v4())
    }

    /// Wrap an existing UUID (admission / tests).
    pub fn from_uuid(id: Uuid) -> Self {
        Self(id)
    }

    /// Borrow the UUID.
    pub fn as_uuid(&self) -> Uuid {
        self.0
    }

    /// Stable string form (not a secret).
    pub fn as_str(&self) -> String {
        self.0.to_string()
    }
}

impl fmt::Display for TransactionId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

/// One provider request/response exchange inside a transaction.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct ExchangeId(Uuid);

impl ExchangeId {
    /// Allocate a fresh exchange id.
    pub fn generate() -> Self {
        Self(Uuid::new_v4())
    }

    /// Wrap an existing UUID.
    pub fn from_uuid(id: Uuid) -> Self {
        Self(id)
    }

    /// Borrow the UUID.
    pub fn as_uuid(&self) -> Uuid {
        self.0
    }
}

impl fmt::Display for ExchangeId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

/// Caller-visible session / correlation identity for transaction routing.
///
/// For external-agent Channels this is the validated external session string.
/// For direct-LLM Channels it is ephemeral routing only (no provider history).
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct SessionId(String);

impl SessionId {
    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Allocate a random direct-LLM session id.
    pub fn generate() -> Self {
        Self(Uuid::new_v4().to_string())
    }

    /// Borrow the underlying string.
    pub fn as_str(&self) -> &str {
        &self.0
    }

    /// View as an external session id with identical bytes.
    pub fn as_external(&self) -> ExternalSessionId {
        ExternalSessionId(self.0.clone())
    }

    /// Convert into an external session id with identical bytes.
    pub fn into_external(self) -> ExternalSessionId {
        ExternalSessionId(self.0)
    }

    /// Build from an external session id with identical bytes.
    pub fn from_external(id: &ExternalSessionId) -> Self {
        Self(id.0.clone())
    }
}

impl fmt::Display for SessionId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("<session>")
    }
}

/// Channel identity (caller-selected; never ambient).
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct ChannelId(String);

impl ChannelId {
    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Borrow the underlying string.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl fmt::Display for ChannelId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&self.0)
    }
}

/// Session exclusion and session-directed control key.
///
/// Equal session strings on different Channels are distinct keys.
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct SessionKey {
    /// Selected Channel.
    pub channel_id: ChannelId,
    /// Session correlation identity on that Channel.
    pub session_id: SessionId,
}

impl SessionKey {
    /// Construct a session key from validated components.
    pub fn new(channel_id: ChannelId, session_id: SessionId) -> Self {
        Self {
            channel_id,
            session_id,
        }
    }
}

/// Stable host-registry tool identity (selection key on requests).
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct ToolId(String);

impl ToolId {
    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Borrow the underlying string.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl fmt::Display for ToolId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&self.0)
    }
}

/// Tool name as exposed to models / MCP (distinct from [`ToolId`]).
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct ToolName(String);

impl ToolName {
    /// Fallible constructor.
    pub fn try_new(value: impl Into<String>) -> Result<Self, IdentityError> {
        Ok(Self(validated_string(value)?))
    }

    /// Borrow the underlying string.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl fmt::Display for ToolName {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&self.0)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn rejects_empty_and_control() {
        assert_eq!(SessionId::try_new(""), Err(IdentityError::Empty));
        assert_eq!(
            ChannelId::try_new("a\nb"),
            Err(IdentityError::ControlCharacter)
        );
        assert!(ToolId::try_new("x".repeat(MAX_IDENTITY_BYTES + 1)).is_err());
    }

    #[test]
    fn session_key_isolates_channels() {
        let a = SessionKey::new(
            ChannelId::try_new("ch-a").unwrap(),
            SessionId::try_new("same-sess").unwrap(),
        );
        let b = SessionKey::new(
            ChannelId::try_new("ch-b").unwrap(),
            SessionId::try_new("same-sess").unwrap(),
        );
        assert_ne!(a, b);
        assert_eq!(a.session_id.as_str(), b.session_id.as_str());
    }

    #[test]
    fn session_external_round_trip_bytes() {
        let ext = ExternalSessionId::try_new("provider-abc").unwrap();
        let sid = SessionId::from_external(&ext);
        assert_eq!(sid.as_str(), ext.as_str());
        assert_eq!(sid.into_external().as_str(), "provider-abc");
    }

    #[test]
    fn transaction_id_serializes() {
        let id = TransactionId::generate();
        let json = serde_json::to_string(&id).unwrap();
        let back: TransactionId = serde_json::from_str(&json).unwrap();
        assert_eq!(id, back);
    }
}