jammi-wire 0.31.0

The Jammi gRPC wire substrate: generated jammi.v1 tonic stubs, proto↔domain conversions, and the shared session transport
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
//! `CatalogService` proto↔domain conversions for the control-plane surface
//! that names sources, models, and topics.
//!
//! Sources / models: maps the wire `SourceKind` / `FileFormat` /
//! `SourceConnection` / `SourceDescriptor` / `Model` onto the engine's
//! [`SourceType`], [`FileFormat`], [`SourceConnection`], [`SourceDescriptor`],
//! and [`ModelDescriptor`]. Only the URL + format cross the wire on a connection —
//! cloud credentials are server-side, so the connection decode fills the rest
//! from `Default`.
//!
//! Topics: maps the wire `Topic` listing message onto the engine's
//! [`TopicDefinition`]. The schema rides as a schema-only Arrow IPC stream (the
//! same framing `RegisterTopicRequest.schema` uses).
//!
//! The engine types are foreign (they live in `jammi-db`), so the enum decodes
//! are free functions taking the **proto** message (a local generated type)
//! rather than orphan-rule-blocked `TryFrom<i32>` impls; the connection /
//! result-table message conversions are `From`/`TryFrom` impls because the
//! proto message is local. A `SourceDescriptor`'s embedded result tables reuse
//! the embedding service's self-describing `ResultTable` shape — the same shape
//! `GenerateEmbeddings` returns — so there is one source-of-truth for the
//! embedding numbers, not a parallel one.

use std::collections::BTreeMap;
use std::str::FromStr;

use jammi_db::catalog::model_repo::ModelDescriptor;
use jammi_db::catalog::source_repo::SourceDescriptor;
use jammi_db::source::{FileFormat, SourceConnection, SourceType};
use jammi_db::trigger::ids::TopicId;
use jammi_db::trigger::TopicDefinition;
use jammi_db::TenantId;
use tonic::Status;

use crate::proto::catalog as pb;
use crate::proto::embedding as embedding_pb;
use crate::{decode_ipc_schema, encode_ipc_stream, result_table_from_proto};

// === sources / models =====================================================

/// Map the proto `SourceKind` discriminant onto the engine's [`SourceType`].
/// An unspecified or unknown kind is rejected — a registration with no backend
/// is a client error, not a silent default.
///
/// The engine's `SourceType` lives in `jammi-db`, so this is a free function
/// taking the raw `i32` rather than `impl TryFrom<i32> for SourceType` (both
/// types would be foreign — orphan-rule-blocked); it mirrors
/// [`super::model_task_from_proto`].
pub fn source_type_from_proto(kind: i32) -> Result<SourceType, Status> {
    match pb::SourceKind::try_from(kind) {
        Ok(pb::SourceKind::File) => Ok(SourceType::File),
        Ok(pb::SourceKind::Postgres) => Ok(SourceType::Postgres),
        Ok(pb::SourceKind::Mysql) => Ok(SourceType::Mysql),
        Ok(pb::SourceKind::Unspecified) | Err(_) => {
            Err(Status::invalid_argument("source_kind must be specified"))
        }
    }
}

/// Encode the engine's [`SourceType`] onto the proto `SourceKind` discriminant —
/// the inverse of [`source_type_from_proto`], for the the remote client
/// send side. Total: every engine source type maps to a concrete wire variant
/// (the engine type has no unspecified state). Mirrors
/// [`super::model_task_to_proto`].
pub fn source_type_to_proto(source_type: SourceType) -> pb::SourceKind {
    match source_type {
        SourceType::File => pb::SourceKind::File,
        SourceType::Postgres => pb::SourceKind::Postgres,
        SourceType::Mysql => pb::SourceKind::Mysql,
    }
}

/// Build the engine's [`SourceConnection`] from the proto message. Only the URL
/// and format are carried on the wire; cloud credentials are server-side, so
/// the rest comes from `Default`.
impl TryFrom<pb::SourceConnection> for SourceConnection {
    type Error = Status;

    fn try_from(conn: pb::SourceConnection) -> Result<Self, Self::Error> {
        let url = if conn.url.is_empty() {
            None
        } else {
            Some(conn.url)
        };
        Ok(SourceConnection {
            url,
            format: file_format_from_proto(conn.format)?,
            ..Default::default()
        })
    }
}

/// Encode the engine's [`SourceConnection`] into the proto message for an
/// `AddSource` request — the inverse of the decode above, for the
/// the remote client send side. Only the URL + format cross the wire
/// (matching what the decode reads back): cloud credentials, file-extension
/// overrides, and driver options are server-side and have no wire field, so the
/// send side does not carry them. A `None` URL encodes as the empty string the
/// decode reads back as `None`; an unset format encodes as
/// `FILE_FORMAT_UNSPECIFIED`, which the decode maps to "let the engine infer".
impl From<SourceConnection> for pb::SourceConnection {
    fn from(conn: SourceConnection) -> Self {
        pb::SourceConnection {
            url: conn.url.unwrap_or_default(),
            format: file_format_to_proto(conn.format) as i32,
        }
    }
}

/// Map the engine's [`FileFormat`] onto the proto enum — the inverse of
/// [`file_format_from_proto`]. An absent format encodes as
/// `FILE_FORMAT_UNSPECIFIED` (the decode reads that back as "let the engine
/// infer").
fn file_format_to_proto(format: Option<FileFormat>) -> pb::FileFormat {
    match format {
        Some(FileFormat::Parquet) => pb::FileFormat::Parquet,
        Some(FileFormat::Csv) => pb::FileFormat::Csv,
        Some(FileFormat::Json) => pb::FileFormat::Json,
        Some(FileFormat::Avro) => pb::FileFormat::Avro,
        None => pb::FileFormat::Unspecified,
    }
}

/// Map the proto [`FileFormat`] enum onto the engine's [`FileFormat`]; an
/// unspecified/unknown format means "let the engine infer" → `None`.
fn file_format_from_proto(format: i32) -> Result<Option<FileFormat>, Status> {
    match pb::FileFormat::try_from(format) {
        Ok(pb::FileFormat::Parquet) => Ok(Some(FileFormat::Parquet)),
        Ok(pb::FileFormat::Csv) => Ok(Some(FileFormat::Csv)),
        Ok(pb::FileFormat::Json) => Ok(Some(FileFormat::Json)),
        Ok(pb::FileFormat::Avro) => Ok(Some(FileFormat::Avro)),
        Ok(pb::FileFormat::Unspecified) | Err(_) => Ok(None),
    }
}

/// Encode the engine's [`SourceDescriptor`] into the wire message: the registry
/// identity (`source_id` / `kind` / `status`) plus each embedding result table
/// in the same self-describing [`embedding_pb::ResultTable`] shape
/// `GenerateEmbeddings` returns — one source-of-truth for the embedding numbers,
/// not a parallel one.
impl From<SourceDescriptor> for pb::SourceDescriptor {
    fn from(descriptor: SourceDescriptor) -> Self {
        pb::SourceDescriptor {
            source_id: descriptor.source_id,
            kind: source_type_to_proto(descriptor.source_type) as i32,
            status: descriptor.status,
            result_tables: descriptor
                .result_tables
                .into_iter()
                .map(embedding_pb::ResultTable::from)
                .collect(),
        }
    }
}

/// Reconstruct the engine's [`SourceDescriptor`] from the wire message — the
/// inverse of the encode above, for the the remote client receive side.
/// The kind decodes through the shared [`source_type_from_proto`] (an
/// unspecified/unknown backend is the faithful `invalid_argument`), and each
/// result table through [`result_table_from_proto`], so a remote
/// `describe_source` rebuilds the same descriptor a local one returns.
pub fn source_descriptor_from_proto(
    descriptor: pb::SourceDescriptor,
) -> Result<SourceDescriptor, Status> {
    Ok(SourceDescriptor {
        source_id: descriptor.source_id,
        source_type: source_type_from_proto(descriptor.kind)?,
        status: descriptor.status,
        result_tables: descriptor
            .result_tables
            .into_iter()
            .map(result_table_from_proto)
            .collect::<Result<_, Status>>()?,
    })
}

/// Encode the engine's [`ModelDescriptor`] onto the wire `Model` — the client-
/// observable projection a `ListModels` / `DescribeModel` response carries. The
/// descriptor is already the curated client projection (`model_id` / `backend` /
/// `task` / `status`), so this is a field-for-field encode with no
/// server-internal bookkeeping to drop — that was dropped where the projection
/// was built, mirroring how [`SourceDescriptor`] projects a `SourceRecord`. The
/// `task` rides the shared [`super::model_task_to_proto`] vocabulary.
///
/// [`SourceDescriptor`]: jammi_db::catalog::source_repo::SourceDescriptor
pub fn model_to_proto(descriptor: &ModelDescriptor) -> pb::Model {
    pb::Model {
        model_id: descriptor.model_id.clone(),
        backend: descriptor.backend.clone(),
        task: super::model_task_to_proto(descriptor.task) as i32,
        status: descriptor.status.clone(),
    }
}

/// Reconstruct the engine's [`ModelDescriptor`] from the wire `Model` — the
/// inverse of [`model_to_proto`], for the remote client receive side. The wire
/// `Model` carries exactly the descriptor's fields, so the round-trip is
/// lossless: there is no server-internal bookkeeping to synthesize. The message
/// is self-describing in `task`, so an out-of-range / unspecified task surfaces
/// as the faithful `invalid_argument` the shared decoder builds.
pub fn model_from_proto(model: pb::Model) -> Result<ModelDescriptor, Status> {
    let task = super::model_task_from_proto(model.task)?;
    Ok(ModelDescriptor {
        model_id: model.model_id,
        backend: model.backend,
        task,
        status: model.status,
    })
}

// === topics ===============================================================

/// Encode a [`TopicDefinition`] onto the wire `Topic` a `ListTopics` page
/// carries — the send side of the materialized listing. The schema rides as a
/// schema-only Arrow IPC stream (the same framing `RegisterTopicRequest.schema`
/// uses). Fallible only on the schema encode.
pub fn topic_to_proto(topic: &TopicDefinition) -> Result<pb::Topic, Status> {
    let schema = encode_ipc_stream(&topic.schema, &[])?;
    Ok(pb::Topic {
        topic_id: topic.id.to_string(),
        name: topic.name.clone(),
        schema,
        tenant_id: topic.tenant.map(|t| t.to_string()).unwrap_or_default(),
        broker_metadata: topic.broker_metadata.clone().into_iter().collect(),
    })
}

/// Reconstruct the [`TopicDefinition`] from the wire `Topic` — the inverse of
/// [`topic_to_proto`], for the the remote client `list_topics` read side.
/// Fallible: the id and (non-empty) tenant are re-parsed and the schema is
/// decoded from its IPC framing, so a corrupt page surfaces as a `Status` rather
/// than a fabricated definition.
pub fn topic_from_proto(wire: pb::Topic) -> Result<TopicDefinition, Status> {
    let id = TopicId::from_str(&wire.topic_id)
        .map_err(|e| Status::invalid_argument(format!("invalid topic_id: {e}")))?;
    let schema = decode_ipc_schema(&wire.schema)?;
    let tenant = if wire.tenant_id.is_empty() {
        None
    } else {
        Some(
            TenantId::from_str(&wire.tenant_id)
                .map_err(|e| Status::invalid_argument(format!("invalid tenant id: {e}")))?,
        )
    };
    let broker_metadata: BTreeMap<String, String> = wire.broker_metadata.into_iter().collect();
    Ok(TopicDefinition {
        id,
        name: wire.name,
        schema,
        tenant,
        broker_metadata,
    })
}

// === materialization contract =============================================

/// Map the engine's [`MatchVerdict`](jammi_db::store::manifest::MatchVerdict)
/// onto the proto `verdict` oneof so a remote `verify_materialization`
/// reconstructs the identical verdict the in-process path returns.
pub fn match_verdict_to_proto(
    verdict: jammi_db::store::manifest::MatchVerdict,
) -> pb::verify_materialization_response::Verdict {
    use jammi_db::store::manifest::MatchVerdict;
    use pb::verify_materialization_response as v;
    match verdict {
        MatchVerdict::Match => v::Verdict::Match(v::Match {}),
        MatchVerdict::Mismatch { expected, found } => {
            v::Verdict::Mismatch(v::Mismatch { expected, found })
        }
        MatchVerdict::MatchWithUnpinnedInputs { unpinned } => {
            v::Verdict::MatchWithUnpinnedInputs(v::MatchWithUnpinnedInputs { unpinned })
        }
        MatchVerdict::MissingManifest => v::Verdict::MissingManifest(v::MissingManifest {}),
    }
}

/// Reconstruct the engine's [`MatchVerdict`](jammi_db::store::manifest::MatchVerdict)
/// from the proto `verdict` oneof. An absent oneof is a malformed response —
/// the server always sets exactly one verdict — and is rejected as `Internal`.
pub fn match_verdict_from_proto(
    verdict: Option<pb::verify_materialization_response::Verdict>,
) -> Result<jammi_db::store::manifest::MatchVerdict, Status> {
    use jammi_db::store::manifest::MatchVerdict;
    use pb::verify_materialization_response as v;
    match verdict {
        Some(v::Verdict::Match(_)) => Ok(MatchVerdict::Match),
        Some(v::Verdict::Mismatch(m)) => Ok(MatchVerdict::Mismatch {
            expected: m.expected,
            found: m.found,
        }),
        Some(v::Verdict::MatchWithUnpinnedInputs(m)) => Ok(MatchVerdict::MatchWithUnpinnedInputs {
            unpinned: m.unpinned,
        }),
        Some(v::Verdict::MissingManifest(_)) => Ok(MatchVerdict::MissingManifest),
        None => Err(Status::internal(
            "VerifyMaterializationResponse carried no verdict",
        )),
    }
}

// === sensing layer (staleness + lineage) ==================================

/// Map the engine's [`StaleReason`](jammi_db::store::StaleReason) onto the proto
/// `reason` oneof.
fn stale_reason_to_proto(reason: jammi_db::store::StaleReason) -> pb::StaleReason {
    use jammi_db::store::StaleReason;
    use pb::stale_reason as r;
    let reason = match reason {
        StaleReason::DefinitionChanged { recorded, current } => {
            r::Reason::DefinitionChanged(r::DefinitionChanged { recorded, current })
        }
        StaleReason::InputAdvanced {
            source,
            recorded,
            current,
        } => r::Reason::InputAdvanced(r::InputAdvanced {
            source,
            recorded,
            current,
        }),
        StaleReason::InputVanished { source } => {
            r::Reason::InputVanished(r::InputVanished { source })
        }
    };
    pb::StaleReason {
        reason: Some(reason),
    }
}

/// Reconstruct the engine's [`StaleReason`](jammi_db::store::StaleReason) from
/// the proto `reason` oneof. An absent oneof is a malformed reason.
fn stale_reason_from_proto(
    reason: pb::StaleReason,
) -> Result<jammi_db::store::StaleReason, Status> {
    use jammi_db::store::StaleReason;
    use pb::stale_reason as r;
    match reason.reason {
        Some(r::Reason::DefinitionChanged(d)) => Ok(StaleReason::DefinitionChanged {
            recorded: d.recorded,
            current: d.current,
        }),
        Some(r::Reason::InputAdvanced(a)) => Ok(StaleReason::InputAdvanced {
            source: a.source,
            recorded: a.recorded,
            current: a.current,
        }),
        Some(r::Reason::InputVanished(v)) => Ok(StaleReason::InputVanished { source: v.source }),
        None => Err(Status::internal("StaleReason carried no reason")),
    }
}

/// Map the engine's [`Staleness`](jammi_db::store::Staleness) onto the proto
/// `staleness` oneof so a remote `staleness` reconstructs the identical verdict
/// the in-process path returns.
pub fn staleness_to_proto(
    verdict: jammi_db::store::Staleness,
) -> pb::staleness_response::Staleness {
    use jammi_db::store::Staleness;
    use pb::staleness_response as s;
    match verdict {
        Staleness::Fresh => s::Staleness::Fresh(s::Fresh {}),
        Staleness::Stale { reasons } => s::Staleness::Stale(s::Stale {
            reasons: reasons.into_iter().map(stale_reason_to_proto).collect(),
        }),
        Staleness::Undecidable {
            unpinned,
            decided_reasons,
        } => s::Staleness::Undecidable(s::Undecidable {
            unpinned,
            decided_reasons: decided_reasons
                .into_iter()
                .map(stale_reason_to_proto)
                .collect(),
        }),
        Staleness::MissingManifest => s::Staleness::MissingManifest(s::MissingManifest {}),
    }
}

/// Reconstruct the engine's [`Staleness`](jammi_db::store::Staleness) from the
/// proto `staleness` oneof. An absent oneof is a malformed response.
pub fn staleness_from_proto(
    verdict: Option<pb::staleness_response::Staleness>,
) -> Result<jammi_db::store::Staleness, Status> {
    use jammi_db::store::Staleness;
    use pb::staleness_response as s;
    match verdict {
        Some(s::Staleness::Fresh(_)) => Ok(Staleness::Fresh),
        Some(s::Staleness::Stale(st)) => Ok(Staleness::Stale {
            reasons: st
                .reasons
                .into_iter()
                .map(stale_reason_from_proto)
                .collect::<Result<_, _>>()?,
        }),
        Some(s::Staleness::Undecidable(u)) => Ok(Staleness::Undecidable {
            unpinned: u.unpinned,
            decided_reasons: u
                .decided_reasons
                .into_iter()
                .map(stale_reason_from_proto)
                .collect::<Result<_, _>>()?,
        }),
        Some(s::Staleness::MissingManifest(_)) => Ok(Staleness::MissingManifest),
        None => Err(Status::internal("StalenessResponse carried no staleness")),
    }
}

/// Map the engine's [`AnchorKind`](jammi_db::store::AnchorKind) onto the proto
/// enum.
fn anchor_kind_to_proto(kind: jammi_db::store::AnchorKind) -> pb::AnchorKind {
    use jammi_db::store::AnchorKind;
    match kind {
        AnchorKind::ResultDigest => pb::AnchorKind::ResultDigest,
        AnchorKind::MutableVersion => pb::AnchorKind::MutableVersion,
        AnchorKind::SourceVersion => pb::AnchorKind::SourceVersion,
        AnchorKind::UnpinnedAtInstant => pb::AnchorKind::UnpinnedAtInstant,
    }
}

/// Reconstruct the engine's [`AnchorKind`](jammi_db::store::AnchorKind) from the
/// proto enum. `UNSPECIFIED` (the proto3 zero value the engine never sends) is a
/// malformed edge.
fn anchor_kind_from_proto(kind: i32) -> Result<jammi_db::store::AnchorKind, Status> {
    use jammi_db::store::AnchorKind;
    match pb::AnchorKind::try_from(kind) {
        Ok(pb::AnchorKind::ResultDigest) => Ok(AnchorKind::ResultDigest),
        Ok(pb::AnchorKind::MutableVersion) => Ok(AnchorKind::MutableVersion),
        Ok(pb::AnchorKind::SourceVersion) => Ok(AnchorKind::SourceVersion),
        Ok(pb::AnchorKind::UnpinnedAtInstant) => Ok(AnchorKind::UnpinnedAtInstant),
        Ok(pb::AnchorKind::Unspecified) | Err(_) => Err(Status::internal(
            "DerivesFromEdge carried an unspecified anchor kind",
        )),
    }
}

/// Map an engine [`DerivesFromEdge`](jammi_db::store::DerivesFromEdge) onto its
/// proto message.
pub fn derives_from_edge_to_proto(edge: jammi_db::store::DerivesFromEdge) -> pb::DerivesFromEdge {
    pb::DerivesFromEdge {
        input: edge.input,
        derived: edge.derived,
        kind: anchor_kind_to_proto(edge.kind) as i32,
    }
}

/// Reconstruct an engine [`DerivesFromEdge`](jammi_db::store::DerivesFromEdge)
/// from its proto message.
pub fn derives_from_edge_from_proto(
    edge: pb::DerivesFromEdge,
) -> Result<jammi_db::store::DerivesFromEdge, Status> {
    Ok(jammi_db::store::DerivesFromEdge {
        input: edge.input,
        derived: edge.derived,
        kind: anchor_kind_from_proto(edge.kind)?,
    })
}