ng-gateway-sdk 0.1.0

SDK for building NG Gateway southward drivers and northward plugins.
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
use crate::{
    envelope::{EnvelopeEvent, EnvelopeKind, EnvelopeMeta, WireEnvelope},
    northward::{NorthwardData, NorthwardEvent},
};
use serde::{Deserialize, Deserializer, Serialize};
use serde_json::Value;
use thiserror::Error;

/// Strongly-typed northward envelope that derives `event.kind` from `payload`.
///
/// # Why this exists
/// The wire envelope (`WireEnvelope<T>`) is a stable boundary format. It is intentionally
/// generic and stores the discriminator separately (`event.kind`) from the payload object
/// (`payload.data`).
///
/// This type provides an ergonomic, strongly-typed representation for gateway/plugin code:
/// - Serialization automatically writes `event.kind` from the payload's authoritative mapping.
/// - Deserialization uses `event.kind` to select the correct payload type and validates it.
/// - Unknown kinds are preserved as raw JSON for forward compatibility.
#[derive(Debug, Clone)]
pub struct NorthwardEnvelope {
    /// Schema version for evolution.
    pub schema_version: u32,
    /// Optional metadata envelope (uplink typically includes it; downlink may omit it).
    pub envelope: Option<EnvelopeMeta>,
    /// Strongly-typed payload.
    pub payload: NorthwardEnvelopePayload,
}

impl NorthwardEnvelope {
    /// Create a v1 envelope.
    #[inline]
    pub fn v1(payload: NorthwardEnvelopePayload) -> Self {
        Self {
            schema_version: 1,
            envelope: None,
            payload,
        }
    }

    /// Attach envelope metadata.
    #[inline]
    pub fn with_meta(mut self, meta: EnvelopeMeta) -> Self {
        self.envelope = Some(meta);
        self
    }

    /// Return the derived `EnvelopeKind` for routing.
    #[inline]
    pub fn kind(&self) -> EnvelopeKind {
        self.payload.envelope_kind()
    }

    /// Return the derived `EnvelopeEvent` for wire encoding.
    #[inline]
    pub fn event(&self) -> EnvelopeEvent {
        EnvelopeEvent { kind: self.kind() }
    }
}

/// Borrowed view of a northward envelope for **zero-clone serialization** on hot paths.
///
/// # Performance rationale
/// Uplink encoding frequently serializes large telemetry payloads. Cloning `NorthwardData`
/// (especially `Vec<PointValue>`) would be wasteful. This type borrows the payload while keeping
/// the exact same wire format as `NorthwardEnvelope`.
#[derive(Debug, Clone)]
pub struct NorthwardEnvelopeRef<'a> {
    /// Schema version for evolution.
    pub schema_version: u32,
    /// Optional metadata envelope (owned, small).
    pub envelope: Option<EnvelopeMeta>,
    /// Borrowed payload.
    pub payload: NorthwardEnvelopePayloadRef<'a>,
}

impl<'a> NorthwardEnvelopeRef<'a> {
    /// Create a v1 envelope.
    #[inline]
    pub fn v1(payload: NorthwardEnvelopePayloadRef<'a>) -> Self {
        Self {
            schema_version: 1,
            envelope: None,
            payload,
        }
    }

    /// Attach envelope metadata.
    #[inline]
    pub fn with_meta(mut self, meta: EnvelopeMeta) -> Self {
        self.envelope = Some(meta);
        self
    }

    /// Return the derived `EnvelopeKind` for routing.
    #[inline]
    pub fn kind(&self) -> EnvelopeKind {
        self.payload.envelope_kind()
    }

    /// Return the derived `EnvelopeEvent` for wire encoding.
    #[inline]
    pub fn event(&self) -> EnvelopeEvent {
        EnvelopeEvent { kind: self.kind() }
    }
}

/// Strongly-typed payload for `NorthwardEnvelope`.
#[derive(Debug, Clone)]
pub enum NorthwardEnvelopePayload {
    /// Uplink data payload (Gateway -> platform).
    Data(NorthwardData),
    /// Downlink/control-plane event payload (platform -> Gateway via plugin).
    Event(NorthwardEvent),
    /// Unknown payload for forward compatibility.
    ///
    /// We preserve both the declared kind and the raw JSON payload to allow:
    /// - debugging / observability
    /// - pass-through routing
    /// - rolling upgrades (new producers with old consumers)
    Unknown { kind: EnvelopeKind, raw: Value },
}

/// Borrowed payload variants for `NorthwardEnvelopeRef`.
#[derive(Debug, Clone)]
pub enum NorthwardEnvelopePayloadRef<'a> {
    /// Uplink data payload (Gateway -> platform).
    Data(&'a NorthwardData),
    /// Downlink/control-plane event payload (platform -> Gateway via plugin).
    Event(&'a NorthwardEvent),
    /// Unknown payload for forward compatibility.
    Unknown { kind: EnvelopeKind, raw: &'a Value },
}

impl NorthwardEnvelopePayloadRef<'_> {
    /// Return the authoritative discriminator for this payload.
    #[inline]
    pub fn envelope_kind(&self) -> EnvelopeKind {
        match self {
            NorthwardEnvelopePayloadRef::Data(d) => d.envelope_kind(),
            NorthwardEnvelopePayloadRef::Event(e) => e.envelope_kind(),
            NorthwardEnvelopePayloadRef::Unknown { kind, .. } => *kind,
        }
    }
}

impl NorthwardEnvelopePayload {
    /// Return the authoritative discriminator for this payload.
    #[inline]
    pub fn envelope_kind(&self) -> EnvelopeKind {
        match self {
            NorthwardEnvelopePayload::Data(d) => d.envelope_kind(),
            NorthwardEnvelopePayload::Event(e) => e.envelope_kind(),
            NorthwardEnvelopePayload::Unknown { kind, .. } => *kind,
        }
    }
}

impl From<NorthwardData> for NorthwardEnvelopePayload {
    #[inline]
    fn from(value: NorthwardData) -> Self {
        Self::Data(value)
    }
}

impl From<NorthwardEvent> for NorthwardEnvelopePayload {
    #[inline]
    fn from(value: NorthwardEvent) -> Self {
        Self::Event(value)
    }
}

/// Errors produced when decoding a `NorthwardEnvelope` from a `WireEnvelope<Value>`.
#[derive(Debug, Error)]
pub enum NorthwardEnvelopeDecodeError {
    /// Failed to decode payload data for the declared kind.
    #[error("payload decode failed (kind={kind:?}): {source}")]
    PayloadDecode {
        /// Declared envelope kind.
        kind: EnvelopeKind,
        /// JSON decode error.
        #[source]
        source: serde_json::Error,
    },
}

/// Serialize `NorthwardData` payload as the inner object **without enum tagging**.
///
/// This is required because the discriminator already lives in `event.kind`.
struct NorthwardDataNoTag<'a>(&'a NorthwardData);

impl Serialize for NorthwardDataNoTag<'_> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        match self.0 {
            NorthwardData::DeviceConnected(d) => d.serialize(serializer),
            NorthwardData::DeviceDisconnected(d) => d.serialize(serializer),
            NorthwardData::Telemetry(t) => t.serialize(serializer),
            NorthwardData::Attributes(a) => a.serialize(serializer),
            NorthwardData::Alarm(a) => a.serialize(serializer),
            NorthwardData::RpcResponse(r) => r.serialize(serializer),
            NorthwardData::WritePointResponse(r) => r.serialize(serializer),
        }
    }
}

/// Serialize `NorthwardEvent` payload as the inner object **without enum tagging**.
///
/// This is required because the discriminator already lives in `event.kind`.
struct NorthwardEventNoTag<'a>(&'a NorthwardEvent);

impl Serialize for NorthwardEventNoTag<'_> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        match self.0 {
            NorthwardEvent::RpcResponseReceived(r) => r.serialize(serializer),
            NorthwardEvent::CommandReceived(c) => c.serialize(serializer),
            NorthwardEvent::WritePoint(w) => w.serialize(serializer),
        }
    }
}

struct NorthwardPayloadNoTag<'a>(&'a NorthwardEnvelopePayload);

impl Serialize for NorthwardPayloadNoTag<'_> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        match self.0 {
            NorthwardEnvelopePayload::Data(d) => NorthwardDataNoTag(d).serialize(serializer),
            NorthwardEnvelopePayload::Event(e) => NorthwardEventNoTag(e).serialize(serializer),
            NorthwardEnvelopePayload::Unknown { raw, .. } => raw.serialize(serializer),
        }
    }
}

#[derive(Serialize)]
struct WirePayloadView<'a> {
    data: NorthwardPayloadNoTag<'a>,
}

#[derive(Serialize)]
struct WireEnvelopeView<'a> {
    schema_version: u32,
    event: EnvelopeEvent,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    envelope: &'a Option<EnvelopeMeta>,
    payload: WirePayloadView<'a>,
}

impl Serialize for NorthwardEnvelope {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        let wire = WireEnvelopeView {
            schema_version: self.schema_version,
            event: self.event(),
            envelope: &self.envelope,
            payload: WirePayloadView {
                data: NorthwardPayloadNoTag(&self.payload),
            },
        };
        wire.serialize(serializer)
    }
}

struct NorthwardPayloadRefNoTag<'a>(&'a NorthwardEnvelopePayloadRef<'a>);

impl Serialize for NorthwardPayloadRefNoTag<'_> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        match self.0 {
            NorthwardEnvelopePayloadRef::Data(d) => NorthwardDataNoTag(d).serialize(serializer),
            NorthwardEnvelopePayloadRef::Event(e) => NorthwardEventNoTag(e).serialize(serializer),
            NorthwardEnvelopePayloadRef::Unknown { raw, .. } => raw.serialize(serializer),
        }
    }
}

#[derive(Serialize)]
struct WirePayloadRefView<'a> {
    data: NorthwardPayloadRefNoTag<'a>,
}

#[derive(Serialize)]
struct WireEnvelopeRefView<'a> {
    schema_version: u32,
    event: EnvelopeEvent,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    envelope: &'a Option<EnvelopeMeta>,
    payload: WirePayloadRefView<'a>,
}

impl Serialize for NorthwardEnvelopeRef<'_> {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        let wire = WireEnvelopeRefView {
            schema_version: self.schema_version,
            event: self.event(),
            envelope: &self.envelope,
            payload: WirePayloadRefView {
                data: NorthwardPayloadRefNoTag(&self.payload),
            },
        };
        wire.serialize(serializer)
    }
}

fn decode_payload_by_kind(
    kind: EnvelopeKind,
    raw: Value,
) -> Result<NorthwardEnvelopePayload, NorthwardEnvelopeDecodeError> {
    // NOTE: Types are re-exported at crate root, but referencing them through northward::model
    // keeps the mapping centralized and explicit.
    use crate::northward::model::{
        AlarmData, AttributeData, ClientRpcResponse, Command, DeviceConnectedData,
        DeviceDisconnectedData, ServerRpcResponse, TelemetryData, WritePoint, WritePointResponse,
    };

    match kind {
        // ===== uplink kinds =====
        EnvelopeKind::DeviceConnected => {
            let d: DeviceConnectedData = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Data(
                NorthwardData::DeviceConnected(d),
            ))
        }
        EnvelopeKind::DeviceDisconnected => {
            let d: DeviceDisconnectedData = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Data(
                NorthwardData::DeviceDisconnected(d),
            ))
        }
        EnvelopeKind::Telemetry => {
            let t: TelemetryData = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Data(NorthwardData::Telemetry(t)))
        }
        EnvelopeKind::Attributes => {
            let a: AttributeData = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Data(NorthwardData::Attributes(a)))
        }
        EnvelopeKind::Alarm => {
            let a: AlarmData = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Data(NorthwardData::Alarm(a)))
        }
        EnvelopeKind::RpcResponse => {
            let r: ClientRpcResponse = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Data(NorthwardData::RpcResponse(
                r,
            )))
        }
        EnvelopeKind::WritePointResponse => {
            let r: WritePointResponse = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Data(
                NorthwardData::WritePointResponse(r),
            ))
        }

        // ===== downlink kinds =====
        EnvelopeKind::WritePoint => {
            let w: WritePoint = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Event(NorthwardEvent::WritePoint(
                w,
            )))
        }
        EnvelopeKind::CommandReceived => {
            let c: Command = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Event(
                NorthwardEvent::CommandReceived(c),
            ))
        }
        EnvelopeKind::RpcResponseReceived => {
            let r: ServerRpcResponse = serde_json::from_value(raw)
                .map_err(|source| NorthwardEnvelopeDecodeError::PayloadDecode { kind, source })?;
            Ok(NorthwardEnvelopePayload::Event(
                NorthwardEvent::RpcResponseReceived(r),
            ))
        }
    }
}

impl TryFrom<WireEnvelope<Value>> for NorthwardEnvelope {
    type Error = NorthwardEnvelopeDecodeError;

    fn try_from(value: WireEnvelope<Value>) -> Result<Self, Self::Error> {
        let payload = decode_payload_by_kind(value.event.kind, value.payload.data)?;
        Ok(Self {
            schema_version: value.schema_version,
            envelope: value.envelope,
            payload,
        })
    }
}

impl<'de> Deserialize<'de> for NorthwardEnvelope {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        let wire: WireEnvelope<Value> = WireEnvelope::deserialize(deserializer)?;
        NorthwardEnvelope::try_from(wire).map_err(serde::de::Error::custom)
    }
}