hiroz-schema 0.1.0

ROS 2 type description schema types for hiroz
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
//! RIHS01 Type Hash Calculation
//!
//! This module implements the ROS2 RIHS01 (ROS IDL Hash Standard 01) type hashing algorithm.

use serde::Serialize;
use sha2::Digest;

use crate::TypeHash;
use crate::type_description::{TypeDescriptionMsg, to_hash_version};

/// Calculate RIHS01 hash for a TypeDescriptionMsg
///
/// This computes the SHA-256 hash of the JSON-serialized type description,
/// following the ROS 2 RIHS01 specification.
pub fn calculate_hash(msg: &TypeDescriptionMsg) -> TypeHash {
    // Exclude default_value from hash computation (ROS2's emit_field() doesn't include it)
    let hash_version = to_hash_version(msg);
    let json = to_ros2_json(&hash_version).expect("JSON serialization should not fail");

    let mut hasher = sha2::Sha256::new();
    hasher.update(json.as_bytes());
    let hash_bytes: [u8; 32] = hasher.finalize().into();

    TypeHash(hash_bytes)
}

/// Serialize to ROS2-compatible JSON format
///
/// ROS2 uses JSON with spaces after colons and commas: `{"key": "value", "key2": 2}`
/// This matches Python's default `json.dumps()` output.
pub fn to_ros2_json<T: Serialize>(value: &T) -> Result<String, serde_json::Error> {
    // Serialize to compact JSON
    let compact = serde_json::to_string(value)?;

    // Add spaces after : and , (matching Python's default json.dumps())
    let mut result = String::with_capacity(compact.len() + 100);
    let chars: Vec<char> = compact.chars().collect();

    for i in 0..chars.len() {
        result.push(chars[i]);

        // Add space after : or , if not already followed by a space
        if (chars[i] == ':' || chars[i] == ',') && i + 1 < chars.len() && chars[i + 1] != ' ' {
            result.push(' ');
        }
    }

    Ok(result)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{FieldDescription, FieldTypeDescription, TypeDescription, TypeId};

    #[test]
    fn test_to_ros2_json_spacing() {
        #[derive(Serialize)]
        struct Test {
            a: i32,
            b: String,
        }

        let t = Test {
            a: 42,
            b: "hello".to_string(),
        };

        let json = to_ros2_json(&t).unwrap();
        assert!(json.contains(": ")); // Space after colon
        assert!(json.contains(", ")); // Space after comma
        assert_eq!(json, r#"{"a": 42, "b": "hello"}"#);
    }

    #[test]
    fn test_calculate_hash_simple() {
        let msg = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "std_msgs/msg/String".to_string(),
                fields: vec![FieldDescription {
                    name: "data".to_string(),
                    field_type: FieldTypeDescription::primitive(TypeId::STRING),
                    default_value: String::new(),
                }],
            },
            referenced_type_descriptions: vec![],
        };

        let hash = calculate_hash(&msg);
        let rihs = hash.to_rihs_string();

        // Verify format
        assert!(rihs.starts_with("RIHS01_"));
        assert_eq!(rihs.len(), 7 + 64); // "RIHS01_" + 64 hex chars

        // Hash should be deterministic
        let hash2 = calculate_hash(&msg);
        assert_eq!(hash, hash2);
    }

    #[test]
    fn test_calculate_hash_with_nested() {
        let header_desc = TypeDescription {
            type_name: "std_msgs/msg/Header".to_string(),
            fields: vec![
                FieldDescription {
                    name: "stamp".to_string(),
                    field_type: FieldTypeDescription::nested(
                        TypeId::NESTED_TYPE,
                        "builtin_interfaces/msg/Time",
                    ),
                    default_value: String::new(),
                },
                FieldDescription {
                    name: "frame_id".to_string(),
                    field_type: FieldTypeDescription::primitive(TypeId::STRING),
                    default_value: String::new(),
                },
            ],
        };

        let time_desc = TypeDescription {
            type_name: "builtin_interfaces/msg/Time".to_string(),
            fields: vec![
                FieldDescription {
                    name: "sec".to_string(),
                    field_type: FieldTypeDescription::primitive(TypeId::INT32),
                    default_value: String::new(),
                },
                FieldDescription {
                    name: "nanosec".to_string(),
                    field_type: FieldTypeDescription::primitive(TypeId::UINT32),
                    default_value: String::new(),
                },
            ],
        };

        let msg = TypeDescriptionMsg {
            type_description: header_desc,
            referenced_type_descriptions: vec![time_desc],
        };

        let hash = calculate_hash(&msg);
        let rihs = hash.to_rihs_string();

        assert!(rihs.starts_with("RIHS01_"));
    }

    #[test]
    fn test_hash_excludes_default_value() {
        // Two messages that differ only in default_value should have same hash
        let msg1 = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "test/msg/Test".to_string(),
                fields: vec![FieldDescription {
                    name: "value".to_string(),
                    field_type: FieldTypeDescription::primitive(TypeId::INT32),
                    default_value: String::new(),
                }],
            },
            referenced_type_descriptions: vec![],
        };

        let msg2 = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "test/msg/Test".to_string(),
                fields: vec![FieldDescription {
                    name: "value".to_string(),
                    field_type: FieldTypeDescription::primitive(TypeId::INT32),
                    default_value: "42".to_string(), // Different default
                }],
            },
            referenced_type_descriptions: vec![],
        };

        let hash1 = calculate_hash(&msg1);
        let hash2 = calculate_hash(&msg2);

        assert_eq!(hash1, hash2, "Hash should not include default_value");
    }

    #[test]
    fn test_hash_std_msgs_string_deterministic() {
        // std_msgs/msg/String - verify hash is deterministic and well-formed
        // Note: To verify against ROS 2, run: ros2 interface show std_msgs/msg/String --show-hash
        let msg = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "std_msgs/msg/String".to_string(),
                fields: vec![FieldDescription {
                    name: "data".to_string(),
                    field_type: FieldTypeDescription::primitive(TypeId::STRING),
                    default_value: String::new(),
                }],
            },
            referenced_type_descriptions: vec![],
        };

        let hash1 = calculate_hash(&msg);
        let hash2 = calculate_hash(&msg);

        // Hash should be deterministic
        assert_eq!(hash1, hash2);

        // Hash should be valid RIHS01 format
        let rihs = hash1.to_rihs_string();
        assert!(rihs.starts_with("RIHS01_"));
        assert_eq!(rihs.len(), 7 + 64);

        // Verify our computed hash (for regression testing)
        assert_eq!(
            rihs,
            "RIHS01_df668c740482bbd48fb39d76a70dfd4bd59db1288021743503259e948f6b1a18"
        );
    }

    #[test]
    fn test_hash_builtin_time_deterministic() {
        // builtin_interfaces/msg/Time
        // Note: To verify against ROS 2, run: ros2 interface show builtin_interfaces/msg/Time --show-hash
        let msg = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "builtin_interfaces/msg/Time".to_string(),
                fields: vec![
                    FieldDescription {
                        name: "sec".to_string(),
                        field_type: FieldTypeDescription::primitive(TypeId::INT32),
                        default_value: String::new(),
                    },
                    FieldDescription {
                        name: "nanosec".to_string(),
                        field_type: FieldTypeDescription::primitive(TypeId::UINT32),
                        default_value: String::new(),
                    },
                ],
            },
            referenced_type_descriptions: vec![],
        };

        let hash1 = calculate_hash(&msg);
        let hash2 = calculate_hash(&msg);

        // Hash should be deterministic
        assert_eq!(hash1, hash2);

        // Hash should be valid RIHS01 format
        let rihs = hash1.to_rihs_string();
        assert!(rihs.starts_with("RIHS01_"));
        assert_eq!(rihs.len(), 7 + 64);

        // Verify our computed hash (for regression testing)
        assert_eq!(
            rihs,
            "RIHS01_b106235e25a4c5ed35098aa0a61a3ee9c9b18d197f398b0e4206cea9acf9c197"
        );
    }

    #[test]
    fn test_hash_empty_message() {
        // Empty message (like std_srvs/srv/Empty request/response)
        let msg = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "test_msgs/msg/Empty".to_string(),
                fields: vec![],
            },
            referenced_type_descriptions: vec![],
        };

        let hash = calculate_hash(&msg);
        let rihs = hash.to_rihs_string();

        // Empty messages should still produce valid hash
        assert!(rihs.starts_with("RIHS01_"));
        assert_eq!(rihs.len(), 7 + 64);
    }

    #[test]
    fn test_hash_with_arrays() {
        // Message with fixed array
        let msg = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "test_msgs/msg/Arrays".to_string(),
                fields: vec![
                    FieldDescription {
                        name: "float_array".to_string(),
                        field_type: FieldTypeDescription::array(TypeId::FLOAT64_ARRAY, 3),
                        default_value: String::new(),
                    },
                    FieldDescription {
                        name: "int_sequence".to_string(),
                        field_type: FieldTypeDescription::primitive(
                            TypeId::INT32_UNBOUNDED_SEQUENCE,
                        ),
                        default_value: String::new(),
                    },
                    FieldDescription {
                        name: "bounded_seq".to_string(),
                        field_type: FieldTypeDescription::array(TypeId::UINT8_BOUNDED_SEQUENCE, 10),
                        default_value: String::new(),
                    },
                ],
            },
            referenced_type_descriptions: vec![],
        };

        let hash = calculate_hash(&msg);
        let rihs = hash.to_rihs_string();

        assert!(rihs.starts_with("RIHS01_"));

        // Hash should be deterministic
        let hash2 = calculate_hash(&msg);
        assert_eq!(hash, hash2);
    }

    #[test]
    fn test_hash_with_bounded_string() {
        let msg = TypeDescriptionMsg {
            type_description: TypeDescription {
                type_name: "test_msgs/msg/BoundedString".to_string(),
                fields: vec![FieldDescription {
                    name: "bounded_data".to_string(),
                    field_type: FieldTypeDescription {
                        type_id: TypeId::STRING,
                        capacity: 0,
                        string_capacity: 256,
                        nested_type_name: String::new(),
                    },
                    default_value: String::new(),
                }],
            },
            referenced_type_descriptions: vec![],
        };

        let hash = calculate_hash(&msg);
        let rihs = hash.to_rihs_string();

        assert!(rihs.starts_with("RIHS01_"));
    }

    #[test]
    fn test_hash_referenced_types_order_matters() {
        // Referenced types must be sorted alphabetically for consistent hashing
        let type_a = TypeDescription {
            type_name: "pkg/msg/TypeA".to_string(),
            fields: vec![FieldDescription {
                name: "value".to_string(),
                field_type: FieldTypeDescription::primitive(TypeId::INT32),
                default_value: String::new(),
            }],
        };

        let type_b = TypeDescription {
            type_name: "pkg/msg/TypeB".to_string(),
            fields: vec![FieldDescription {
                name: "value".to_string(),
                field_type: FieldTypeDescription::primitive(TypeId::FLOAT64),
                default_value: String::new(),
            }],
        };

        let main_type = TypeDescription {
            type_name: "pkg/msg/Main".to_string(),
            fields: vec![
                FieldDescription {
                    name: "a".to_string(),
                    field_type: FieldTypeDescription::nested(TypeId::NESTED_TYPE, "pkg/msg/TypeA"),
                    default_value: String::new(),
                },
                FieldDescription {
                    name: "b".to_string(),
                    field_type: FieldTypeDescription::nested(TypeId::NESTED_TYPE, "pkg/msg/TypeB"),
                    default_value: String::new(),
                },
            ],
        };

        // Order A, B
        let msg1 = TypeDescriptionMsg {
            type_description: main_type.clone(),
            referenced_type_descriptions: vec![type_a.clone(), type_b.clone()],
        };

        // Order B, A (should produce same hash after sorting)
        let msg2 = TypeDescriptionMsg {
            type_description: main_type,
            referenced_type_descriptions: vec![type_b, type_a],
        };

        let hash1 = calculate_hash(&msg1);
        let hash2 = calculate_hash(&msg2);

        // Note: The caller is responsible for sorting referenced_type_descriptions
        // If we want consistent hashing regardless of input order, we'd need to sort here
        // This test documents the current behavior
        assert_ne!(
            hash1, hash2,
            "Different order produces different hash (caller must sort)"
        );
    }

    #[test]
    fn test_hash_deeply_nested() {
        // Three-level nesting: Main -> Middle -> Inner
        let inner = TypeDescription {
            type_name: "pkg/msg/Inner".to_string(),
            fields: vec![FieldDescription {
                name: "value".to_string(),
                field_type: FieldTypeDescription::primitive(TypeId::FLOAT64),
                default_value: String::new(),
            }],
        };

        let middle = TypeDescription {
            type_name: "pkg/msg/Middle".to_string(),
            fields: vec![FieldDescription {
                name: "inner".to_string(),
                field_type: FieldTypeDescription::nested(TypeId::NESTED_TYPE, "pkg/msg/Inner"),
                default_value: String::new(),
            }],
        };

        let main = TypeDescription {
            type_name: "pkg/msg/Main".to_string(),
            fields: vec![FieldDescription {
                name: "middle".to_string(),
                field_type: FieldTypeDescription::nested(TypeId::NESTED_TYPE, "pkg/msg/Middle"),
                default_value: String::new(),
            }],
        };

        let msg = TypeDescriptionMsg {
            type_description: main,
            // Referenced types sorted alphabetically
            referenced_type_descriptions: vec![inner, middle],
        };

        let hash = calculate_hash(&msg);
        let rihs = hash.to_rihs_string();

        assert!(rihs.starts_with("RIHS01_"));

        // Should be deterministic
        let hash2 = calculate_hash(&msg);
        assert_eq!(hash, hash2);
    }

    #[test]
    fn test_json_field_order() {
        // Verify JSON field order matches ROS 2 expectations
        let td = TypeDescription {
            type_name: "test/msg/Test".to_string(),
            fields: vec![FieldDescription {
                name: "data".to_string(),
                field_type: FieldTypeDescription {
                    type_id: 6,
                    capacity: 0,
                    string_capacity: 0,
                    nested_type_name: String::new(),
                },
                default_value: String::new(),
            }],
        };

        let msg = TypeDescriptionMsg {
            type_description: td,
            referenced_type_descriptions: vec![],
        };

        let hash_version = to_hash_version(&msg);
        let json = to_ros2_json(&hash_version).unwrap();

        // Verify structure matches ROS 2 format
        assert!(json.contains("\"type_description\""));
        assert!(json.contains("\"referenced_type_descriptions\""));
        assert!(json.contains("\"type_name\""));
        assert!(json.contains("\"fields\""));
        assert!(json.contains("\"type\""));
        assert!(json.contains("\"type_id\""));
    }
}