bacnet-services 0.4.0

BACnet service request/response encode/decode per ASHRAE 135-2020
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
//! ReadRange service per ASHRAE 135-2020 Clause 15.8.
//!
//! Reads a range of items from a list or log-buffer property.

use bacnet_encoding::{primitives, tags};
use bacnet_types::enums::PropertyIdentifier;
use bacnet_types::error::Error;
use bacnet_types::primitives::{Date, ObjectIdentifier, Time};
use bytes::BytesMut;

/// Decode a tag from content and validate the slice bounds.
fn checked_slice<'a>(
    content: &'a [u8],
    offset: usize,
    context: &str,
) -> Result<(&'a [u8], usize), Error> {
    let (t, p) = tags::decode_tag(content, offset)?;
    let end = p + t.length as usize;
    if end > content.len() {
        return Err(Error::decoding(p, format!("{context} truncated")));
    }
    Ok((&content[p..end], end))
}

/// ReadRange-Request service parameters.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ReadRangeRequest {
    pub object_identifier: ObjectIdentifier,
    pub property_identifier: PropertyIdentifier,
    pub property_array_index: Option<u32>,
    /// Range specification: by-position, by-sequence-number, or by-time.
    pub range: Option<RangeSpec>,
}

/// Range specification for ReadRange.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RangeSpec {
    /// By position: reference_index, count.
    ByPosition { reference_index: u32, count: i32 },
    /// By sequence number: reference_seq, count.
    BySequenceNumber { reference_seq: u32, count: i32 },
    /// By time: reference_time (Date, Time), count.
    ByTime {
        reference_time: (Date, Time),
        count: i32,
    },
}

impl ReadRangeRequest {
    pub fn encode(&self, buf: &mut BytesMut) {
        // [0] objectIdentifier
        primitives::encode_ctx_object_id(buf, 0, &self.object_identifier);
        // [1] propertyIdentifier
        primitives::encode_ctx_enumerated(buf, 1, self.property_identifier.to_raw());
        // [2] propertyArrayIndex (optional)
        if let Some(idx) = self.property_array_index {
            primitives::encode_ctx_unsigned(buf, 2, idx as u64);
        }
        // Range specification
        if let Some(ref range) = self.range {
            match range {
                RangeSpec::ByPosition {
                    reference_index,
                    count,
                } => {
                    tags::encode_opening_tag(buf, 3);
                    primitives::encode_app_unsigned(buf, *reference_index as u64);
                    primitives::encode_app_signed(buf, *count);
                    tags::encode_closing_tag(buf, 3);
                }
                RangeSpec::BySequenceNumber {
                    reference_seq,
                    count,
                } => {
                    tags::encode_opening_tag(buf, 6);
                    primitives::encode_app_unsigned(buf, *reference_seq as u64);
                    primitives::encode_app_signed(buf, *count);
                    tags::encode_closing_tag(buf, 6);
                }
                RangeSpec::ByTime {
                    reference_time,
                    count,
                } => {
                    tags::encode_opening_tag(buf, 7);
                    primitives::encode_app_date(buf, &reference_time.0);
                    primitives::encode_app_time(buf, &reference_time.1);
                    primitives::encode_app_signed(buf, *count);
                    tags::encode_closing_tag(buf, 7);
                }
            }
        }
    }

    pub fn decode(data: &[u8]) -> Result<Self, Error> {
        let mut offset = 0;

        // [0] objectIdentifier
        let (tag, pos) = tags::decode_tag(data, offset)?;
        let end = pos + tag.length as usize;
        if end > data.len() {
            return Err(Error::decoding(
                pos,
                "ReadRange request truncated at object-id",
            ));
        }
        let object_identifier = ObjectIdentifier::decode(&data[pos..end])?;
        offset = end;

        // [1] propertyIdentifier
        let (tag, pos) = tags::decode_tag(data, offset)?;
        let end = pos + tag.length as usize;
        if end > data.len() {
            return Err(Error::decoding(
                pos,
                "ReadRange request truncated at property-id",
            ));
        }
        let property_identifier =
            PropertyIdentifier::from_raw(primitives::decode_unsigned(&data[pos..end])? as u32);
        offset = end;

        // [2] propertyArrayIndex (optional)
        let mut property_array_index = None;
        if offset < data.len() {
            let (opt_data, new_offset) = tags::decode_optional_context(data, offset, 2)?;
            if let Some(content) = opt_data {
                property_array_index = Some(primitives::decode_unsigned(content)? as u32);
                offset = new_offset;
            }
        }

        // Range specification (optional)
        let mut range = None;
        if offset < data.len() {
            let (tag, tag_end) = tags::decode_tag(data, offset)?;
            if tag.is_opening_tag(3) {
                // byPosition
                let (content, new_offset) = tags::extract_context_value(data, tag_end, 3)?;
                let (slice, inner_offset) =
                    checked_slice(content, 0, "ReadRange byPosition reference-index")?;
                let reference_index = primitives::decode_unsigned(slice)? as u32;
                let (slice, _) =
                    checked_slice(content, inner_offset, "ReadRange byPosition count")?;
                let count = primitives::decode_signed(slice)?;
                range = Some(RangeSpec::ByPosition {
                    reference_index,
                    count,
                });
                offset = new_offset;
            } else if tag.is_opening_tag(6) {
                // bySequenceNumber
                let (content, new_offset) = tags::extract_context_value(data, tag_end, 6)?;
                let (slice, inner_offset) =
                    checked_slice(content, 0, "ReadRange bySequenceNumber reference-seq")?;
                let reference_seq = primitives::decode_unsigned(slice)? as u32;
                let (slice, _) =
                    checked_slice(content, inner_offset, "ReadRange bySequenceNumber count")?;
                let count = primitives::decode_signed(slice)?;
                range = Some(RangeSpec::BySequenceNumber {
                    reference_seq,
                    count,
                });
                offset = new_offset;
            } else if tag.is_opening_tag(7) {
                // byTime
                let (content, new_offset) = tags::extract_context_value(data, tag_end, 7)?;
                let (slice, inner_offset) = checked_slice(content, 0, "ReadRange byTime date")?;
                let date = Date::decode(slice)?;
                let (slice, inner_offset) =
                    checked_slice(content, inner_offset, "ReadRange byTime time")?;
                let time = Time::decode(slice)?;
                let (slice, _) = checked_slice(content, inner_offset, "ReadRange byTime count")?;
                let count = primitives::decode_signed(slice)?;
                range = Some(RangeSpec::ByTime {
                    reference_time: (date, time),
                    count,
                });
                offset = new_offset;
            }
        }
        let _ = offset;

        Ok(Self {
            object_identifier,
            property_identifier,
            property_array_index,
            range,
        })
    }
}

/// ReadRange-ACK service parameters.
#[derive(Debug, Clone)]
pub struct ReadRangeAck {
    pub object_identifier: ObjectIdentifier,
    pub property_identifier: PropertyIdentifier,
    pub property_array_index: Option<u32>,
    /// Result flags: first_item, last_item, more_items.
    pub result_flags: (bool, bool, bool),
    pub item_count: u32,
    /// Raw item data (application-layer interprets content).
    pub item_data: Vec<u8>,
    /// Optional first sequence number (context tag [6]).
    pub first_sequence_number: Option<u32>,
}

impl ReadRangeAck {
    pub fn encode(&self, buf: &mut BytesMut) {
        // [0] objectIdentifier
        primitives::encode_ctx_object_id(buf, 0, &self.object_identifier);
        // [1] propertyIdentifier
        primitives::encode_ctx_enumerated(buf, 1, self.property_identifier.to_raw());
        // [2] propertyArrayIndex (optional)
        if let Some(idx) = self.property_array_index {
            primitives::encode_ctx_unsigned(buf, 2, idx as u64);
        }
        // [3] resultFlags — 3-bit bitstring
        let mut flags: u8 = 0;
        if self.result_flags.0 {
            flags |= 0x80;
        }
        if self.result_flags.1 {
            flags |= 0x40;
        }
        if self.result_flags.2 {
            flags |= 0x20;
        }
        primitives::encode_ctx_bit_string(buf, 3, 5, &[flags]);
        // [4] itemCount
        primitives::encode_ctx_unsigned(buf, 4, self.item_count as u64);
        // [5] itemData
        tags::encode_opening_tag(buf, 5);
        buf.extend_from_slice(&self.item_data);
        tags::encode_closing_tag(buf, 5);
        // [6] firstSequenceNumber (optional)
        if let Some(seq) = self.first_sequence_number {
            primitives::encode_ctx_unsigned(buf, 6, seq as u64);
        }
    }

    pub fn decode(data: &[u8]) -> Result<Self, Error> {
        let mut offset = 0;

        // [0] objectIdentifier
        let (tag, pos) = tags::decode_tag(data, offset)?;
        let end = pos + tag.length as usize;
        if end > data.len() {
            return Err(Error::decoding(pos, "ReadRange ACK truncated at object-id"));
        }
        let object_identifier = ObjectIdentifier::decode(&data[pos..end])?;
        offset = end;

        // [1] propertyIdentifier
        let (tag, pos) = tags::decode_tag(data, offset)?;
        let end = pos + tag.length as usize;
        if end > data.len() {
            return Err(Error::decoding(
                pos,
                "ReadRange ACK truncated at property-id",
            ));
        }
        let property_identifier =
            PropertyIdentifier::from_raw(primitives::decode_unsigned(&data[pos..end])? as u32);
        offset = end;

        // [2] propertyArrayIndex (optional)
        let mut property_array_index = None;
        let (opt_data, new_offset) = tags::decode_optional_context(data, offset, 2)?;
        if let Some(content) = opt_data {
            property_array_index = Some(primitives::decode_unsigned(content)? as u32);
            offset = new_offset;
        }

        // [3] resultFlags
        let (tag, pos) = tags::decode_tag(data, offset)?;
        let end = pos + tag.length as usize;
        if end > data.len() {
            return Err(Error::decoding(
                pos,
                "ReadRange ACK truncated at result-flags",
            ));
        }
        let (_, bits) = primitives::decode_bit_string(&data[pos..end])?;
        let b = bits.first().copied().unwrap_or(0);
        let result_flags = (b & 0x80 != 0, b & 0x40 != 0, b & 0x20 != 0);
        offset = end;

        // [4] itemCount
        let (tag, pos) = tags::decode_tag(data, offset)?;
        let end = pos + tag.length as usize;
        if end > data.len() {
            return Err(Error::decoding(
                pos,
                "ReadRange ACK truncated at item-count",
            ));
        }
        let item_count = primitives::decode_unsigned(&data[pos..end])? as u32;
        offset = end;

        // [5] itemData
        let (_tag, tag_end) = tags::decode_tag(data, offset)?;
        let (content, _new_offset) = tags::extract_context_value(data, tag_end, 5)?;
        let item_data = content.to_vec();
        let mut new_offset = _new_offset;

        // [6] firstSequenceNumber (optional)
        let mut first_sequence_number = None;
        if new_offset < data.len() {
            let (opt_data, after) = tags::decode_optional_context(data, new_offset, 6)?;
            if let Some(content) = opt_data {
                first_sequence_number = Some(primitives::decode_unsigned(content)? as u32);
                new_offset = after;
            }
        }
        let _ = new_offset;

        Ok(Self {
            object_identifier,
            property_identifier,
            property_array_index,
            result_flags,
            item_count,
            item_data,
            first_sequence_number,
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use bacnet_types::enums::ObjectType;
    use bacnet_types::primitives::{Date, Time};

    fn make_oid() -> ObjectIdentifier {
        ObjectIdentifier::new(ObjectType::TREND_LOG, 1).unwrap()
    }

    #[test]
    fn request_round_trip() {
        let req = ReadRangeRequest {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            range: Some(RangeSpec::ByPosition {
                reference_index: 1,
                count: 10,
            }),
        };
        let mut buf = BytesMut::new();
        req.encode(&mut buf);
        let decoded = ReadRangeRequest::decode(&buf).unwrap();
        assert_eq!(decoded.object_identifier, req.object_identifier);
        assert_eq!(decoded.property_identifier, req.property_identifier);
        assert_eq!(decoded.range, req.range);
    }

    #[test]
    fn request_no_range() {
        let req = ReadRangeRequest {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            range: None,
        };
        let mut buf = BytesMut::new();
        req.encode(&mut buf);
        let decoded = ReadRangeRequest::decode(&buf).unwrap();
        assert!(decoded.range.is_none());
    }

    #[test]
    fn request_by_sequence_number() {
        let req = ReadRangeRequest {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            range: Some(RangeSpec::BySequenceNumber {
                reference_seq: 100,
                count: -5,
            }),
        };
        let mut buf = BytesMut::new();
        req.encode(&mut buf);
        let decoded = ReadRangeRequest::decode(&buf).unwrap();
        assert_eq!(decoded.range, req.range);
    }

    #[test]
    fn ack_round_trip() {
        let ack = ReadRangeAck {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            result_flags: (true, false, true),
            item_count: 2,
            item_data: vec![0xAA, 0xBB, 0xCC],
            first_sequence_number: None,
        };
        let mut buf = BytesMut::new();
        ack.encode(&mut buf);
        let decoded = ReadRangeAck::decode(&buf).unwrap();
        assert_eq!(decoded.object_identifier, ack.object_identifier);
        assert_eq!(decoded.result_flags, (true, false, true));
        assert_eq!(decoded.item_count, 2);
        assert_eq!(decoded.item_data, vec![0xAA, 0xBB, 0xCC]);
        assert_eq!(decoded.first_sequence_number, None);
    }

    #[test]
    fn ack_round_trip_with_first_sequence_number() {
        let ack = ReadRangeAck {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            result_flags: (true, true, false),
            item_count: 5,
            item_data: vec![0x01, 0x02],
            first_sequence_number: Some(42),
        };
        let mut buf = BytesMut::new();
        ack.encode(&mut buf);
        let decoded = ReadRangeAck::decode(&buf).unwrap();
        assert_eq!(decoded.object_identifier, ack.object_identifier);
        assert_eq!(decoded.result_flags, (true, true, false));
        assert_eq!(decoded.item_count, 5);
        assert_eq!(decoded.item_data, vec![0x01, 0x02]);
        assert_eq!(decoded.first_sequence_number, Some(42));
    }

    #[test]
    fn request_by_time() {
        let req = ReadRangeRequest {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            range: Some(RangeSpec::ByTime {
                reference_time: (
                    Date {
                        year: 126, // 2026
                        month: 3,
                        day: 1,
                        day_of_week: 7, // Sunday
                    },
                    Time {
                        hour: 14,
                        minute: 30,
                        second: 0,
                        hundredths: 0,
                    },
                ),
                count: -10,
            }),
        };
        let mut buf = BytesMut::new();
        req.encode(&mut buf);
        let decoded = ReadRangeRequest::decode(&buf).unwrap();
        assert_eq!(decoded.range, req.range);
    }

    // -----------------------------------------------------------------------
    // Malformed-input decode error tests
    // -----------------------------------------------------------------------

    #[test]
    fn test_decode_read_range_request_empty_input() {
        assert!(ReadRangeRequest::decode(&[]).is_err());
    }

    #[test]
    fn test_decode_read_range_request_truncated_1_byte() {
        let req = ReadRangeRequest {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            range: Some(RangeSpec::ByPosition {
                reference_index: 1,
                count: 10,
            }),
        };
        let mut buf = BytesMut::new();
        req.encode(&mut buf);
        assert!(ReadRangeRequest::decode(&buf[..1]).is_err());
    }

    #[test]
    fn test_decode_read_range_request_truncated_3_bytes() {
        let req = ReadRangeRequest {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            range: Some(RangeSpec::ByPosition {
                reference_index: 1,
                count: 10,
            }),
        };
        let mut buf = BytesMut::new();
        req.encode(&mut buf);
        assert!(ReadRangeRequest::decode(&buf[..3]).is_err());
    }

    #[test]
    fn test_decode_read_range_request_invalid_tag() {
        assert!(ReadRangeRequest::decode(&[0xFF, 0xFF, 0xFF]).is_err());
    }

    #[test]
    fn test_decode_read_range_ack_empty_input() {
        assert!(ReadRangeAck::decode(&[]).is_err());
    }

    #[test]
    fn test_decode_read_range_ack_truncated_1_byte() {
        let ack = ReadRangeAck {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            result_flags: (true, false, true),
            item_count: 2,
            item_data: vec![0xAA, 0xBB, 0xCC],
            first_sequence_number: None,
        };
        let mut buf = BytesMut::new();
        ack.encode(&mut buf);
        assert!(ReadRangeAck::decode(&buf[..1]).is_err());
    }

    #[test]
    fn test_decode_read_range_ack_truncated_3_bytes() {
        let ack = ReadRangeAck {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            result_flags: (true, false, true),
            item_count: 2,
            item_data: vec![0xAA, 0xBB, 0xCC],
            first_sequence_number: None,
        };
        let mut buf = BytesMut::new();
        ack.encode(&mut buf);
        assert!(ReadRangeAck::decode(&buf[..3]).is_err());
    }

    #[test]
    fn test_decode_read_range_ack_truncated_half() {
        let ack = ReadRangeAck {
            object_identifier: make_oid(),
            property_identifier: PropertyIdentifier::LOG_BUFFER,
            property_array_index: None,
            result_flags: (true, false, true),
            item_count: 2,
            item_data: vec![0xAA, 0xBB, 0xCC],
            first_sequence_number: None,
        };
        let mut buf = BytesMut::new();
        ack.encode(&mut buf);
        let half = buf.len() / 2;
        assert!(ReadRangeAck::decode(&buf[..half]).is_err());
    }

    #[test]
    fn test_decode_read_range_ack_invalid_tag() {
        assert!(ReadRangeAck::decode(&[0xFF, 0xFF, 0xFF]).is_err());
    }

    #[test]
    fn read_range_request_truncated_inner_tag() {
        // Craft a ReadRangeRequest with truncated inner content in byPosition
        let data = [
            0x0C, 0x05, 0x00, 0x00, 0x01, // [0] object id (TrendLog:1)
            0x19, 0x83, // [1] property id (LOG_BUFFER=131)
            // Opening tag [3] byPosition
            0x3E, // Inner tag claiming 50 bytes but only 1 byte present
            0x21, 50, 0x01, // Closing tag [3]
            0x3F,
        ];
        assert!(ReadRangeRequest::decode(&data).is_err());
    }
}