step-io 0.1.0-alpha.1

STEP (ISO 10303) file I/O for Rust.
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
//! Unit context emission: SI length / plane-angle / solid-angle leaves plus
//! the enclosing `GLOBAL_UNIT_ASSIGNED_CONTEXT` complex entity.

use super::WriteBuffer;
use crate::ir::{AngleUnit, LengthUnit, SolidAngleUnit, UnitContext};
use crate::parser::entity::Attribute;
use crate::writer::entity::{WriterBody, WriterEntity};

impl WriteBuffer<'_> {
    pub(in crate::writer::buffer) fn emit_unit_context(&mut self, units: UnitContext) -> u64 {
        if let Some(n) = self.global_unit_context_id {
            return n;
        }
        let length = self.emit_length_unit(units.length);
        let angle = self.emit_angle_unit(units.plane_angle);
        let solid = self.emit_solid_angle_unit(units.solid_angle);

        // ISO 10303-21:2016 §11.2.5.1 — complex entity parts serialize in
        // alphabetical order. Final order with uncertainty present:
        //   GEOMETRIC_REPRESENTATION_CONTEXT
        //   GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT   (UNCERTAINTY < UNIT)
        //   GLOBAL_UNIT_ASSIGNED_CONTEXT
        //   REPRESENTATION_CONTEXT
        let mut parts = vec![
            (
                "GEOMETRIC_REPRESENTATION_CONTEXT".into(),
                vec![Attribute::Integer(3)],
            ),
            (
                "GLOBAL_UNIT_ASSIGNED_CONTEXT".into(),
                vec![Attribute::List(vec![
                    Attribute::EntityRef(length),
                    Attribute::EntityRef(angle),
                    Attribute::EntityRef(solid),
                ])],
            ),
            (
                "REPRESENTATION_CONTEXT".into(),
                vec![
                    Attribute::String(String::new()),
                    Attribute::String(String::new()),
                ],
            ),
        ];
        if let Some(value) = units.length_uncertainty {
            let unc = self.emit_uncertainty_measure(value, length);
            parts.insert(
                1,
                (
                    "GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT".into(),
                    vec![Attribute::List(vec![Attribute::EntityRef(unc)])],
                ),
            );
        }

        let ctx = self.fresh();
        self.entities.push(WriterEntity {
            id: ctx,
            body: WriterBody::Complex { parts },
        });
        self.global_unit_context_id = Some(ctx);
        ctx
    }

    fn emit_uncertainty_measure(&mut self, value: f64, length_unit: u64) -> u64 {
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Simple {
                name: "UNCERTAINTY_MEASURE_WITH_UNIT".into(),
                attrs: vec![
                    Attribute::Typed {
                        type_name: "LENGTH_MEASURE".into(),
                        value: Box::new(Attribute::Real(value)),
                    },
                    Attribute::EntityRef(length_unit),
                    Attribute::String("distance_accuracy_value".into()),
                    Attribute::String("confusion accuracy".into()),
                ],
            },
        });
        n
    }

    fn emit_length_unit(&mut self, unit: LengthUnit) -> u64 {
        if let Some(n) = self.length_unit_id {
            return n;
        }
        match unit {
            LengthUnit::Millimetre => self.emit_plain_si_length(Some("MILLI")),
            LengthUnit::Centimetre => self.emit_plain_si_length(Some("CENTI")),
            LengthUnit::Metre => self.emit_plain_si_length(None),
            LengthUnit::Inch => self.emit_conversion_based_length("INCH", 25.4),
            LengthUnit::Foot => self.emit_conversion_based_length("FOOT", 304.8),
        }
    }

    /// Emit a plain SI-based length unit and cache the id as `length_unit_id`.
    fn emit_plain_si_length(&mut self, prefix: Option<&'static str>) -> u64 {
        let si_attrs = match prefix {
            Some(p) => vec![Attribute::Enum(p.into()), Attribute::Enum("METRE".into())],
            None => vec![Attribute::Unset, Attribute::Enum("METRE".into())],
        };
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Complex {
                parts: vec![
                    ("LENGTH_UNIT".into(), vec![]),
                    ("NAMED_UNIT".into(), vec![Attribute::Derived]),
                    ("SI_UNIT".into(), si_attrs),
                ],
            },
        });
        self.length_unit_id = Some(n);
        n
    }

    /// Emit a MILLI-METRE-based SI length unit without populating
    /// `length_unit_id` — used internally as the base for a
    /// `CONVERSION_BASED_UNIT` length chain.
    fn emit_base_si_millimetre(&mut self) -> u64 {
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Complex {
                parts: vec![
                    ("LENGTH_UNIT".into(), vec![]),
                    ("NAMED_UNIT".into(), vec![Attribute::Derived]),
                    (
                        "SI_UNIT".into(),
                        vec![
                            Attribute::Enum("MILLI".into()),
                            Attribute::Enum("METRE".into()),
                        ],
                    ),
                ],
            },
        });
        n
    }

    /// Emit the length-flavour `DIMENSIONAL_EXPONENTS` (1,0,0,0,0,0,0), cached.
    fn emit_length_dim_exponents(&mut self) -> u64 {
        if let Some(n) = self.length_dim_exp_id {
            return n;
        }
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Simple {
                name: "DIMENSIONAL_EXPONENTS".into(),
                attrs: vec![
                    Attribute::Real(1.0),
                    Attribute::Real(0.0),
                    Attribute::Real(0.0),
                    Attribute::Real(0.0),
                    Attribute::Real(0.0),
                    Attribute::Real(0.0),
                    Attribute::Real(0.0),
                ],
            },
        });
        self.length_dim_exp_id = Some(n);
        n
    }

    /// Emit the dimensionless `DIMENSIONAL_EXPONENTS` (0,0,0,0,0,0,0), cached.
    fn emit_dimensionless_exponents(&mut self) -> u64 {
        if let Some(n) = self.dimensionless_dim_exp_id {
            return n;
        }
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Simple {
                name: "DIMENSIONAL_EXPONENTS".into(),
                attrs: vec![Attribute::Real(0.0); 7],
            },
        });
        self.dimensionless_dim_exp_id = Some(n);
        n
    }

    /// Emit a `CONVERSION_BASED_UNIT` length chain (base SI MILLI-METRE,
    /// `DIMENSIONAL_EXPONENTS`, `LENGTH_MEASURE_WITH_UNIT`, outer CBU complex).
    /// Returns the outer CBU id and caches it as `length_unit_id`.
    fn emit_conversion_based_length(&mut self, name: &str, mm_per_unit: f64) -> u64 {
        let base_si = self.emit_base_si_millimetre();
        let dim_exp = self.emit_length_dim_exponents();
        let measure = self.fresh();
        self.entities.push(WriterEntity {
            id: measure,
            body: WriterBody::Simple {
                name: "LENGTH_MEASURE_WITH_UNIT".into(),
                attrs: vec![Attribute::Real(mm_per_unit), Attribute::EntityRef(base_si)],
            },
        });
        let outer = self.fresh();
        self.entities.push(WriterEntity {
            id: outer,
            body: WriterBody::Complex {
                parts: vec![
                    (
                        "CONVERSION_BASED_UNIT".into(),
                        vec![
                            Attribute::String(name.into()),
                            Attribute::EntityRef(measure),
                        ],
                    ),
                    ("LENGTH_UNIT".into(), vec![]),
                    ("NAMED_UNIT".into(), vec![Attribute::EntityRef(dim_exp)]),
                ],
            },
        });
        self.length_unit_id = Some(outer);
        outer
    }

    fn emit_angle_unit(&mut self, unit: AngleUnit) -> u64 {
        if let Some(n) = self.angle_unit_id {
            return n;
        }
        match unit {
            AngleUnit::Radian => self.emit_plain_si_radian(),
            AngleUnit::Degree => self.emit_conversion_based_degree(),
        }
    }

    fn emit_plain_si_radian(&mut self) -> u64 {
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Complex {
                parts: vec![
                    (
                        "SI_UNIT".into(),
                        vec![Attribute::Unset, Attribute::Enum("RADIAN".into())],
                    ),
                    ("NAMED_UNIT".into(), vec![Attribute::Derived]),
                    ("PLANE_ANGLE_UNIT".into(), vec![]),
                ],
            },
        });
        self.angle_unit_id = Some(n);
        n
    }

    /// Emit a bare SI radian entity (not cached in `angle_unit_id`) — used
    /// as the base inside a Degree `CONVERSION_BASED_UNIT` chain.
    fn emit_base_si_radian(&mut self) -> u64 {
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Complex {
                parts: vec![
                    ("NAMED_UNIT".into(), vec![Attribute::Derived]),
                    ("PLANE_ANGLE_UNIT".into(), vec![]),
                    (
                        "SI_UNIT".into(),
                        vec![Attribute::Unset, Attribute::Enum("RADIAN".into())],
                    ),
                ],
            },
        });
        n
    }

    fn emit_conversion_based_degree(&mut self) -> u64 {
        let base_si = self.emit_base_si_radian();
        let dim_exp = self.emit_dimensionless_exponents();
        let measure = self.fresh();
        self.entities.push(WriterEntity {
            id: measure,
            body: WriterBody::Simple {
                name: "PLANE_ANGLE_MEASURE_WITH_UNIT".into(),
                attrs: vec![
                    Attribute::Real(std::f64::consts::PI / 180.0),
                    Attribute::EntityRef(base_si),
                ],
            },
        });
        let outer = self.fresh();
        self.entities.push(WriterEntity {
            id: outer,
            body: WriterBody::Complex {
                parts: vec![
                    (
                        "CONVERSION_BASED_UNIT".into(),
                        vec![
                            Attribute::String("DEGREE".into()),
                            Attribute::EntityRef(measure),
                        ],
                    ),
                    ("NAMED_UNIT".into(), vec![Attribute::EntityRef(dim_exp)]),
                    ("PLANE_ANGLE_UNIT".into(), vec![]),
                ],
            },
        });
        self.angle_unit_id = Some(outer);
        outer
    }

    fn emit_solid_angle_unit(&mut self, _unit: SolidAngleUnit) -> u64 {
        if let Some(n) = self.solid_angle_unit_id {
            return n;
        }
        let parts = vec![
            (
                "SI_UNIT".into(),
                vec![Attribute::Unset, Attribute::Enum("STERADIAN".into())],
            ),
            ("NAMED_UNIT".into(), vec![Attribute::Derived]),
            ("SOLID_ANGLE_UNIT".into(), vec![]),
        ];
        let n = self.fresh();
        self.entities.push(WriterEntity {
            id: n,
            body: WriterBody::Complex { parts },
        });
        self.solid_angle_unit_id = Some(n);
        n
    }
}

#[cfg(test)]
mod tests {
    use crate::ir::{AngleUnit, LengthUnit, SolidAngleUnit, StepModel, UnitContext};
    use crate::parse;
    use crate::reader::ReaderContext;

    fn model_with_units(units: UnitContext) -> StepModel {
        StepModel {
            units: Some(units),
            ..StepModel::default()
        }
    }

    #[test]
    fn writes_length_unit_inch_as_conversion_based_unit() {
        let model = model_with_units(UnitContext {
            length: LengthUnit::Inch,
            plane_angle: AngleUnit::Radian,
            solid_angle: SolidAngleUnit::Steradian,
            length_uncertainty: None,
        });
        let out = model.write_to_string().expect("write");
        assert!(out.contains("CONVERSION_BASED_UNIT('INCH'"), "{out}");
        assert!(out.contains("LENGTH_MEASURE_WITH_UNIT(25.4"), "{out}");
        assert!(out.contains("DIMENSIONAL_EXPONENTS(1."), "{out}");
        assert!(out.contains("(.MILLI.,.METRE.)"), "{out}");
    }

    #[test]
    fn writes_length_unit_foot_as_conversion_based_unit() {
        let model = model_with_units(UnitContext {
            length: LengthUnit::Foot,
            plane_angle: AngleUnit::Radian,
            solid_angle: SolidAngleUnit::Steradian,
            length_uncertainty: None,
        });
        let out = model.write_to_string().expect("write");
        assert!(out.contains("CONVERSION_BASED_UNIT('FOOT'"), "{out}");
        assert!(out.contains("LENGTH_MEASURE_WITH_UNIT(304.8"), "{out}");
        assert!(out.contains("(.MILLI.,.METRE.)"), "{out}");
    }

    #[test]
    fn writes_angle_unit_degree_as_conversion_based_unit() {
        let model = model_with_units(UnitContext {
            length: LengthUnit::Millimetre,
            plane_angle: AngleUnit::Degree,
            solid_angle: SolidAngleUnit::Steradian,
            length_uncertainty: None,
        });
        let out = model.write_to_string().expect("write");
        assert!(out.contains("CONVERSION_BASED_UNIT('DEGREE'"), "{out}");
        assert!(
            out.contains("PLANE_ANGLE_MEASURE_WITH_UNIT(0.017453"),
            "{out}"
        );
        assert!(out.contains("DIMENSIONAL_EXPONENTS(0."), "{out}");
    }

    #[test]
    fn writes_millimetre_omits_conversion_based_unit() {
        let model = model_with_units(UnitContext {
            length: LengthUnit::Millimetre,
            plane_angle: AngleUnit::Radian,
            solid_angle: SolidAngleUnit::Steradian,
            length_uncertainty: None,
        });
        let out = model.write_to_string().expect("write");
        assert!(
            !out.contains("CONVERSION_BASED_UNIT"),
            "plain mm should not wrap in CBU: {out}"
        );
        assert!(out.contains("(.MILLI.,.METRE.)"), "{out}");
    }

    #[test]
    fn writes_centimetre_omits_conversion_based_unit() {
        let model = model_with_units(UnitContext {
            length: LengthUnit::Centimetre,
            plane_angle: AngleUnit::Radian,
            solid_angle: SolidAngleUnit::Steradian,
            length_uncertainty: None,
        });
        let out = model.write_to_string().expect("write");
        assert!(!out.contains("CONVERSION_BASED_UNIT"), "{out}");
        assert!(out.contains("(.CENTI.,.METRE.)"), "{out}");
    }

    #[test]
    fn writes_metre_omits_conversion_based_unit() {
        let model = model_with_units(UnitContext {
            length: LengthUnit::Metre,
            plane_angle: AngleUnit::Radian,
            solid_angle: SolidAngleUnit::Steradian,
            length_uncertainty: None,
        });
        let out = model.write_to_string().expect("write");
        assert!(!out.contains("CONVERSION_BASED_UNIT"), "{out}");
        assert!(out.contains("SI_UNIT($,.METRE.)"), "{out}");
    }

    /// Writer output must re-parse into an identical `UnitContext` — confirms
    /// reader/writer are paired for every supported unit flavour.
    #[test]
    fn non_metric_units_survive_write_then_read() {
        let cases = [
            UnitContext {
                length: LengthUnit::Inch,
                plane_angle: AngleUnit::Radian,
                solid_angle: SolidAngleUnit::Steradian,
                length_uncertainty: None,
            },
            UnitContext {
                length: LengthUnit::Foot,
                plane_angle: AngleUnit::Radian,
                solid_angle: SolidAngleUnit::Steradian,
                length_uncertainty: None,
            },
            UnitContext {
                length: LengthUnit::Metre,
                plane_angle: AngleUnit::Degree,
                solid_angle: SolidAngleUnit::Steradian,
                length_uncertainty: None,
            },
        ];
        for unit in cases {
            let model = model_with_units(unit);
            let text = model.write_to_string().expect("write");
            let graph = parse(&text).expect("re-parse");
            let back = ReaderContext::convert(&graph);
            assert!(
                back.warnings.is_empty(),
                "warnings for {unit:?}: {:#?}",
                back.warnings
            );
            assert_eq!(
                back.model.units,
                Some(unit),
                "unit not preserved for {unit:?}"
            );
        }
    }
}