mig-assembly 0.1.60

MIG-guided EDIFACT tree assembly — parse RawSegments into typed MIG trees
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
use std::path::Path;

use quick_xml::events::Event;
use quick_xml::Reader;

use crate::AssemblyError;
use mig_types::schema::common::CodeDefinition;
use mig_types::schema::mig::*;

/// Parses a MIG XML file into a `MigSchema`.
///
/// The MIG XML uses element-name prefixes to distinguish types:
/// - `S_*` — segments (e.g., `S_UNH`, `S_BGM`)
/// - `G_*` — segment groups (e.g., `G_SG2`)
/// - `C_*` — composites (e.g., `C_S009`, `C_C002`)
/// - `D_*` — data elements (e.g., `D_0062`, `D_3035`)
/// - `M_*` — message containers (e.g., `M_UTILMD`)
/// - `Code` — code values within data elements
pub fn parse_mig(
    path: &Path,
    message_type: &str,
    variant: Option<&str>,
    format_version: &str,
) -> Result<MigSchema, AssemblyError> {
    if !path.exists() {
        return Err(AssemblyError::ParseError(format!(
            "file not found: {}",
            path.display()
        )));
    }

    let xml_content = std::fs::read_to_string(path).map_err(|e| {
        AssemblyError::ParseError(format!("IO error reading {}: {}", path.display(), e))
    })?;
    let mut reader = Reader::from_str(&xml_content);
    reader.config_mut().trim_text(true);

    let mut schema = MigSchema {
        message_type: message_type.to_string(),
        variant: variant.map(|v| v.to_string()),
        version: String::new(),
        publication_date: String::new(),
        author: "BDEW".to_string(),
        format_version: format_version.to_string(),
        source_file: path.to_string_lossy().to_string(),
        segments: Vec::new(),
        segment_groups: Vec::new(),
    };

    let mut buf = Vec::new();

    loop {
        match reader.read_event_into(&mut buf) {
            Ok(Event::Start(ref e)) => {
                let name = elem_name(e);

                if name.starts_with("M_") || name == "Uebertragungsdatei" {
                    for attr in e.attributes().flatten() {
                        let key = std::str::from_utf8(attr.key.as_ref()).unwrap_or("");
                        let val = attr.unescape_value().unwrap_or_default().to_string();
                        match key {
                            "Versionsnummer" if schema.version.is_empty() => schema.version = val,
                            "Veroeffentlichungsdatum" if schema.publication_date.is_empty() => {
                                schema.publication_date = val
                            }
                            "Author" => schema.author = val,
                            _ => {}
                        }
                    }
                } else if name.starts_with("S_") {
                    let segment = parse_segment_from_xml(&name, e, &mut reader, path)?;
                    schema.segments.push(segment);
                } else if name.starts_with("G_") {
                    let group = parse_group_from_xml(&name, e, &mut reader, path)?;
                    schema.segment_groups.push(group);
                }
            }
            Ok(Event::Eof) => break,
            Err(e) => {
                return Err(AssemblyError::ParseError(format!(
                    "XML parsing error in {}: {}",
                    path.display(),
                    e
                )))
            }
            _ => {}
        }
        buf.clear();
    }

    if schema.version.is_empty() {
        return Err(AssemblyError::ParseError(format!(
            "missing required attribute 'Versionsnummer' on element 'M_{}' in {}",
            message_type,
            path.display()
        )));
    }

    Ok(schema)
}

/// Extract the element name as an owned String from a BytesStart event.
fn elem_name(e: &quick_xml::events::BytesStart) -> String {
    let qname = e.name();
    std::str::from_utf8(qname.as_ref())
        .unwrap_or("")
        .to_string()
}

/// Extract the element name as an owned String from a BytesEnd event.
fn end_name(e: &quick_xml::events::BytesEnd) -> String {
    let qname = e.name();
    std::str::from_utf8(qname.as_ref())
        .unwrap_or("")
        .to_string()
}

fn get_attr(e: &quick_xml::events::BytesStart, key: &str) -> Option<String> {
    e.attributes()
        .flatten()
        .find(|a| a.key.as_ref() == key.as_bytes())
        .and_then(|a| a.unescape_value().ok().map(|v| v.to_string()))
}

fn get_attr_i32(e: &quick_xml::events::BytesStart, key: &str, default: i32) -> i32 {
    get_attr(e, key)
        .and_then(|v| v.parse().ok())
        .unwrap_or(default)
}

fn parse_segment_from_xml(
    element_name: &str,
    start: &quick_xml::events::BytesStart,
    reader: &mut Reader<&[u8]>,
    path: &Path,
) -> Result<MigSegment, AssemblyError> {
    let id = element_name
        .strip_prefix("S_")
        .unwrap_or(element_name)
        .to_string();

    let mut segment = MigSegment {
        id,
        name: get_attr(start, "Name").unwrap_or_default(),
        description: get_attr(start, "Description"),
        counter: get_attr(start, "Counter"),
        level: get_attr_i32(start, "Level", 0),
        number: get_attr(start, "Number"),
        max_rep_std: get_attr_i32(start, "MaxRep_Std", 1),
        max_rep_spec: get_attr_i32(start, "MaxRep_Specification", 1),
        status_std: get_attr(start, "Status_Std"),
        status_spec: get_attr(start, "Status_Specification"),
        example: get_attr(start, "Example"),
        data_elements: Vec::new(),
        composites: Vec::new(),
    };

    let mut position: usize = 0;
    let mut buf = Vec::new();

    loop {
        match reader.read_event_into(&mut buf) {
            Ok(Event::Start(ref e)) => {
                let name = elem_name(e);

                if name.starts_with("D_") {
                    let de = parse_data_element_from_xml(&name, e, reader, path, position)?;
                    segment.data_elements.push(de);
                    position += 1;
                } else if name.starts_with("C_") {
                    let comp = parse_composite_from_xml(&name, e, reader, path, position)?;
                    segment.composites.push(comp);
                    position += 1;
                }
            }
            Ok(Event::Empty(ref e)) => {
                let name = elem_name(e);

                if name.starts_with("D_") {
                    let de = MigDataElement {
                        id: name.strip_prefix("D_").unwrap_or(&name).to_string(),
                        name: get_attr(e, "Name").unwrap_or_default(),
                        description: get_attr(e, "Description"),
                        status_std: get_attr(e, "Status_Std"),
                        status_spec: get_attr(e, "Status_Specification"),
                        format_std: get_attr(e, "Format_Std"),
                        format_spec: get_attr(e, "Format_Specification"),
                        codes: Vec::new(),
                        position,
                    };
                    segment.data_elements.push(de);
                    position += 1;
                }
            }
            Ok(Event::End(ref e)) => {
                let name = end_name(e);
                if name == element_name {
                    break;
                }
            }
            Ok(Event::Eof) => break,
            Err(e) => {
                return Err(AssemblyError::ParseError(format!(
                    "XML parsing error in {}: {}",
                    path.display(),
                    e
                )))
            }
            _ => {}
        }
        buf.clear();
    }

    Ok(segment)
}

fn parse_group_from_xml(
    element_name: &str,
    start: &quick_xml::events::BytesStart,
    reader: &mut Reader<&[u8]>,
    path: &Path,
) -> Result<MigSegmentGroup, AssemblyError> {
    let id = element_name
        .strip_prefix("G_")
        .unwrap_or(element_name)
        .to_string();

    let mut group = MigSegmentGroup {
        id,
        name: get_attr(start, "Name").unwrap_or_default(),
        description: get_attr(start, "Description"),
        counter: get_attr(start, "Counter"),
        level: get_attr_i32(start, "Level", 0),
        max_rep_std: get_attr_i32(start, "MaxRep_Std", 1),
        max_rep_spec: get_attr_i32(start, "MaxRep_Specification", 1),
        status_std: get_attr(start, "Status_Std"),
        status_spec: get_attr(start, "Status_Specification"),
        segments: Vec::new(),
        nested_groups: Vec::new(),
        variant_code: None,
        variant_qualifier_position: None,
        variant_codes: vec![],
        merged_variant_count: None,
    };

    let mut buf = Vec::new();

    loop {
        match reader.read_event_into(&mut buf) {
            Ok(Event::Start(ref e)) => {
                let name = elem_name(e);

                if name.starts_with("S_") {
                    let seg = parse_segment_from_xml(&name, e, reader, path)?;
                    group.segments.push(seg);
                } else if name.starts_with("G_") {
                    let nested = parse_group_from_xml(&name, e, reader, path)?;
                    group.nested_groups.push(nested);
                }
            }
            Ok(Event::End(ref e)) => {
                let name = end_name(e);
                if name == element_name {
                    break;
                }
            }
            Ok(Event::Eof) => break,
            Err(e) => {
                return Err(AssemblyError::ParseError(format!(
                    "XML parsing error in {}: {}",
                    path.display(),
                    e
                )))
            }
            _ => {}
        }
        buf.clear();
    }

    Ok(group)
}

fn parse_composite_from_xml(
    element_name: &str,
    start: &quick_xml::events::BytesStart,
    reader: &mut Reader<&[u8]>,
    path: &Path,
    position: usize,
) -> Result<MigComposite, AssemblyError> {
    let id = element_name
        .strip_prefix("C_")
        .unwrap_or(element_name)
        .to_string();

    let mut composite = MigComposite {
        id,
        name: get_attr(start, "Name").unwrap_or_default(),
        description: get_attr(start, "Description"),
        status_std: get_attr(start, "Status_Std"),
        status_spec: get_attr(start, "Status_Specification"),
        data_elements: Vec::new(),
        position,
    };

    let mut component_position: usize = 0;
    let mut buf = Vec::new();

    loop {
        match reader.read_event_into(&mut buf) {
            Ok(Event::Start(ref e)) => {
                let name = elem_name(e);

                if name.starts_with("D_") {
                    let de =
                        parse_data_element_from_xml(&name, e, reader, path, component_position)?;
                    composite.data_elements.push(de);
                    component_position += 1;
                }
            }
            Ok(Event::Empty(ref e)) => {
                let name = elem_name(e);

                if name.starts_with("D_") {
                    let de = MigDataElement {
                        id: name.strip_prefix("D_").unwrap_or(&name).to_string(),
                        name: get_attr(e, "Name").unwrap_or_default(),
                        description: get_attr(e, "Description"),
                        status_std: get_attr(e, "Status_Std"),
                        status_spec: get_attr(e, "Status_Specification"),
                        format_std: get_attr(e, "Format_Std"),
                        format_spec: get_attr(e, "Format_Specification"),
                        codes: Vec::new(),
                        position: component_position,
                    };
                    composite.data_elements.push(de);
                    component_position += 1;
                }
            }
            Ok(Event::End(ref e)) => {
                let name = end_name(e);
                if name == element_name {
                    break;
                }
            }
            Ok(Event::Eof) => break,
            Err(e) => {
                return Err(AssemblyError::ParseError(format!(
                    "XML parsing error in {}: {}",
                    path.display(),
                    e
                )))
            }
            _ => {}
        }
        buf.clear();
    }

    Ok(composite)
}

fn parse_data_element_from_xml(
    element_name: &str,
    start: &quick_xml::events::BytesStart,
    reader: &mut Reader<&[u8]>,
    path: &Path,
    position: usize,
) -> Result<MigDataElement, AssemblyError> {
    let id = element_name
        .strip_prefix("D_")
        .unwrap_or(element_name)
        .to_string();

    let mut de = MigDataElement {
        id,
        name: get_attr(start, "Name").unwrap_or_default(),
        description: get_attr(start, "Description"),
        status_std: get_attr(start, "Status_Std"),
        status_spec: get_attr(start, "Status_Specification"),
        format_std: get_attr(start, "Format_Std"),
        format_spec: get_attr(start, "Format_Specification"),
        codes: Vec::new(),
        position,
    };

    let mut buf = Vec::new();

    loop {
        match reader.read_event_into(&mut buf) {
            Ok(Event::Start(ref e)) => {
                let name = elem_name(e);
                if name == "Code" {
                    let code = parse_code_from_xml(e, reader, path)?;
                    de.codes.push(code);
                }
            }
            Ok(Event::End(ref e)) => {
                let name = end_name(e);
                if name == element_name {
                    break;
                }
            }
            Ok(Event::Eof) => break,
            Err(e) => {
                return Err(AssemblyError::ParseError(format!(
                    "XML parsing error in {}: {}",
                    path.display(),
                    e
                )))
            }
            _ => {}
        }
        buf.clear();
    }

    Ok(de)
}

fn parse_code_from_xml(
    start: &quick_xml::events::BytesStart,
    reader: &mut Reader<&[u8]>,
    path: &Path,
) -> Result<CodeDefinition, AssemblyError> {
    let name = get_attr(start, "Name").unwrap_or_default();
    let description = get_attr(start, "Description");

    let mut value = String::new();
    let mut buf = Vec::new();

    loop {
        match reader.read_event_into(&mut buf) {
            Ok(Event::Text(ref t)) => {
                value = t.unescape().unwrap_or_default().trim().to_string();
            }
            Ok(Event::End(ref e)) => {
                let tag = end_name(e);
                if tag == "Code" {
                    break;
                }
            }
            Ok(Event::Eof) => break,
            Err(e) => {
                return Err(AssemblyError::ParseError(format!(
                    "XML parsing error in {}: {}",
                    path.display(),
                    e
                )))
            }
            _ => {}
        }
        buf.clear();
    }

    Ok(CodeDefinition {
        value,
        name,
        description,
    })
}