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
//! EDIFACT writer — serializes [`Segment`]s to wire format.
use crate::{error::EdifactError, model::Segment, tokenizer::ServiceStringAdvice};
use std::borrow::Cow;
use std::io::Write;
/// Streaming EDIFACT writer.
///
/// Wraps any [`Write`] implementation and serializes segments one at a time.
/// Call [`Writer::finish`] to flush and get the underlying writer back.
pub struct Writer<W: Write> {
inner: W,
ssa: ServiceStringAdvice,
/// Running count of segments written. `u64` to prevent silent overflow on
/// pathological inputs (a `u32` would wrap after ~4 billion segments).
segment_count: u64,
}
impl<W: Write> Writer<W> {
/// Create a new writer with default EDIFACT delimiters.
pub fn new(inner: W) -> Self {
Self {
inner,
ssa: ServiceStringAdvice::default(),
segment_count: 0,
}
}
/// Create a writer with custom delimiters and write a UNA segment first.
pub fn with_una(mut inner: W, ssa: ServiceStringAdvice) -> Result<Self, EdifactError> {
// All five active service characters must be mutually distinct, non-whitespace,
// and within the ASCII range so they never bisect multi-byte UTF-8 sequences.
if !ssa.is_valid() {
return Err(EdifactError::InvalidUna);
}
// UNA: component_sep, element_sep, decimal_mark, release_char, space, segment_term
let una = [
b'U',
b'N',
b'A',
ssa.component_sep,
ssa.element_sep,
ssa.decimal_mark,
ssa.release_char,
b' ',
ssa.segment_term,
];
inner.write_all(&una)?;
Ok(Self {
inner,
ssa,
segment_count: 0,
})
}
/// Write a single segment.
pub fn write_segment(&mut self, seg: &Segment<'_>) -> Result<(), EdifactError> {
// Tag
self.inner.write_all(seg.tag.as_bytes())?;
for element in &seg.elements {
// Element separator
self.inner.write_all(&[self.ssa.element_sep])?;
let mut first_component = true;
for (component, _) in &element.components {
if !first_component {
self.inner.write_all(&[self.ssa.component_sep])?;
}
first_component = false;
self.write_escaped(component)?;
}
}
// Segment terminator
self.inner.write_all(&[self.ssa.segment_term])?;
self.segment_count += 1;
Ok(())
}
/// Write a raw segment from tag + element string slices.
///
/// Each element string is split on the **active component-separator byte** from the
/// configured [`ServiceStringAdvice`][crate::ServiceStringAdvice] to identify component
/// boundaries. The default component separator is `:` (0x3A), but this can differ when a
/// non-default `UNA` string was used to construct the writer.
///
/// # Delimiter dependency
///
/// Callers that embed the literal `:` character in element strings rely on `:` being
/// the component separator. When the writer uses a non-default delimiter set, `:` will
/// **not** be treated as a component boundary and the segment will be written incorrectly.
///
/// **UTF-8 safety**: EDIFACT syntax requires all delimiter bytes to be single-byte ASCII
/// characters (values 0x00–0x7F). Non-ASCII delimiter bytes would bisect multi-byte UTF-8
/// sequences in data values and produce malformed output. All fields of
/// [`ServiceStringAdvice`][crate::ServiceStringAdvice] must therefore hold ASCII byte values.
///
/// To produce correct output regardless of the active delimiter, prefer
/// [`Self::write_segment_parts`] which accepts pre-split component slices.
pub fn write_raw(&mut self, tag: &str, elements: &[&str]) -> Result<(), EdifactError> {
self.inner.write_all(tag.as_bytes())?;
let comp_sep = self.ssa.component_sep;
for el in elements {
self.inner.write_all(&[self.ssa.element_sep])?;
// Byte-level split: EDIFACT delimiters are always single bytes.
let mut parts = el.as_bytes().split(|&b| b == comp_sep);
if let Some(first) = parts.next() {
// INVARIANT: input is valid UTF-8 and we split on a single-byte ASCII
// delimiter, so each part remains a valid UTF-8 slice.
self.write_escaped(
std::str::from_utf8(first).map_err(|_| EdifactError::InvalidUtf8)?,
)?;
}
for part in parts {
self.inner.write_all(&[comp_sep])?;
self.write_escaped(
std::str::from_utf8(part).map_err(|_| EdifactError::InvalidUtf8)?,
)?;
}
}
self.inner.write_all(&[self.ssa.segment_term])?;
self.segment_count += 1;
Ok(())
}
/// Write a segment from a tag and pre-split element/component data.
///
/// `elements` is a slice of elements; each element is a sequence of component strings.
/// This avoids the lifetime constraints of [`Self::write_segment`] when building
/// segments from runtime-owned data (e.g. inside [`crate::WriterEmitter`]).
pub fn write_segment_parts<E>(&mut self, tag: &str, elements: &[E]) -> Result<(), EdifactError>
where
E: AsRef<[String]>,
{
self.inner.write_all(tag.as_bytes())?;
for element in elements {
self.inner.write_all(&[self.ssa.element_sep])?;
let mut first = true;
for comp in element.as_ref() {
if !first {
self.inner.write_all(&[self.ssa.component_sep])?;
}
first = false;
self.write_escaped(comp.as_str())?;
}
}
self.inner.write_all(&[self.ssa.segment_term])?;
self.segment_count += 1;
Ok(())
}
/// Flush and return the underlying writer.
pub fn finish(mut self) -> Result<W, EdifactError> {
self.inner.flush()?;
Ok(self.inner)
}
/// Write the `UNT` segment and return the inner writer.
///
/// The segment count written into `UNT` element 1 (DE 0074) is the number of
/// segments already written **plus one** for the `UNT` segment itself, which
/// EDIFACT requires to be included in the count alongside `UNH`.
///
/// # Errors
///
/// Returns an error if writing fails. Do **not** call [`write_raw`][Self::write_raw] or
/// [`write_segment`][Self::write_segment] after `finish_unt` — the writer is consumed.
pub fn finish_unt(mut self, message_ref: &str) -> Result<W, EdifactError> {
// DE 0074: count includes UNH and UNT themselves.
let count = self.segment_count + 1;
let count_str = count.to_string();
self.write_raw("UNT", &[count_str.as_str(), message_ref])?;
self.finish()
}
/// Returns the total number of segments written so far.
pub fn segment_count(&self) -> u64 {
self.segment_count
}
/// Returns the active [`ServiceStringAdvice`] (delimiter configuration).
pub fn service_string_advice(&self) -> ServiceStringAdvice {
self.ssa
}
/// Escape a value string for inclusion in an EDIFACT segment.
///
/// Any character in `value` that matches the active element separator,
/// component separator, release character, or segment terminator is escaped
/// by prefixing it with the release character (default `?`).
///
/// Returns a borrowed `Cow::Borrowed(value)` when no escaping is needed,
/// avoiding an allocation on the fast path.
///
/// # Example
///
/// ```rust,ignore
/// let writer = Writer::new(std::io::sink());
/// // '+' must be escaped since it is the default element separator.
/// assert_eq!(writer.escape_value("price+tax"), "price?+tax");
/// ```
pub fn escape_value<'v>(&self, value: &'v str) -> Cow<'v, str> {
let (elem, comp, release, term) = (
self.ssa.element_sep,
self.ssa.component_sep,
self.ssa.release_char,
self.ssa.segment_term,
);
let bytes = value.as_bytes();
let needs_escape = bytes
.iter()
.any(|&b| b == elem || b == comp || b == release || b == term);
if !needs_escape {
return Cow::Borrowed(value);
}
let mut out = Vec::with_capacity(value.len() + 4);
let mut last = 0;
let mut pos = 0;
while pos < bytes.len() {
let remaining = &bytes[pos..];
let hit_ecr = memchr::memchr3(elem, comp, release, remaining);
let hit_t = memchr::memchr(term, remaining);
let hit = match (hit_ecr, hit_t) {
(None, None) => break,
(Some(a), None) => a,
(None, Some(b)) => b,
(Some(a), Some(b)) => a.min(b),
};
let abs = pos + hit;
out.extend_from_slice(&bytes[last..abs]);
out.push(release);
out.push(bytes[abs]);
last = abs + 1;
pos = abs + 1;
}
out.extend_from_slice(&bytes[last..]);
// SAFETY:
// 1. `value` is a valid `&str`, so `bytes` is valid UTF-8 to start.
// 2. `self.ssa.release_char` is a single-byte ASCII value (0x21–0x7E),
// enforced at construction time by `ServiceStringAdvice::is_valid()`
// (called in `Writer::with_una`; the default SSA hardcodes `?` = 0x3F).
// Inserting a single ASCII byte cannot split or corrupt a multi-byte
// UTF-8 sequence, because ASCII bytes always have the high bit clear
// while continuation bytes of multi-byte sequences always have the high
// bit set (0x80–0xBF).
// 3. All other bytes are copied verbatim from the valid UTF-8 source.
Cow::Owned(
String::from_utf8(out).expect(
"escape_value: output is not valid UTF-8; this is a bug in the escape logic",
),
)
}
/// Write only the segment tag bytes — no element separator or terminator.
///
/// Used by [`crate::WriterEmitter`] for eager, zero-allocation event writing.
#[inline]
pub(crate) fn write_tag_only(&mut self, tag: &str) -> Result<(), EdifactError> {
self.inner.write_all(tag.as_bytes())?;
Ok(())
}
/// Write one element separator byte.
#[inline]
pub(crate) fn write_element_sep(&mut self) -> Result<(), EdifactError> {
self.inner.write_all(&[self.ssa.element_sep])?;
Ok(())
}
/// Write one component separator byte.
#[inline]
pub(crate) fn write_component_sep(&mut self) -> Result<(), EdifactError> {
self.inner.write_all(&[self.ssa.component_sep])?;
Ok(())
}
/// Write the segment terminator and increment the internal segment counter.
#[inline]
pub(crate) fn write_segment_term_and_count(&mut self) -> Result<(), EdifactError> {
self.inner.write_all(&[self.ssa.segment_term])?;
self.segment_count += 1;
Ok(())
}
/// Write a value, escaping any delimiter characters.
pub(crate) fn write_escaped(&mut self, value: &str) -> Result<(), EdifactError> {
let (elem, comp, release, term) = (
self.ssa.element_sep,
self.ssa.component_sep,
self.ssa.release_char,
self.ssa.segment_term,
);
let bytes = value.as_bytes();
let mut last = 0;
let mut pos = 0;
while pos < bytes.len() {
// Use memchr3 for three delimiters + memchr for the fourth to avoid
// a manual byte-by-byte scan.
let remaining = &bytes[pos..];
let hit_ecr = memchr::memchr3(elem, comp, release, remaining);
let hit_t = memchr::memchr(term, remaining);
let hit = match (hit_ecr, hit_t) {
(None, None) => break,
(Some(a), None) => a,
(None, Some(b)) => b,
(Some(a), Some(b)) => a.min(b),
};
let abs = pos + hit;
if abs > last {
self.inner.write_all(&bytes[last..abs])?;
}
self.inner.write_all(&[release, bytes[abs]])?;
last = abs + 1;
pos = abs + 1;
}
self.inner.write_all(&bytes[last..])?;
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::model::Element;
#[test]
fn write_and_parse_simple_segment() {
let segs: Vec<Segment<'static>> = vec![Segment::new(
"BGM",
vec![Element::of(&["220"]), Element::of(&["ORDER123"])],
)];
let bytes = crate::segments_to_bytes(&segs).unwrap();
let s = std::str::from_utf8(&bytes).unwrap();
assert!(s.starts_with("BGM+220+ORDER123'"));
}
#[test]
fn release_char_escaped() {
let segs: Vec<Segment<'static>> = vec![Segment::new(
"FTX",
vec![Element::of(&["value+with+delimiters"])],
)];
let bytes = crate::segments_to_bytes(&segs).unwrap();
let s = std::str::from_utf8(&bytes).unwrap();
// The `+` in the value must be escaped as `?+`
assert!(s.contains("?+"), "escape missing: {s}");
}
#[test]
fn round_trip_preserves_values() {
let segs: Vec<Segment<'static>> = vec![
Segment::new(
"UNB",
vec![
Element::of(&["UNOA", "1"]),
Element::of(&["SENDER"]),
Element::of(&["RECEIVER"]),
],
),
Segment::new("UNZ", vec![Element::of(&["0"]), Element::of(&["1"])]),
];
let bytes = crate::segments_to_bytes(&segs).unwrap();
let rt: Vec<crate::OwnedSegment> = crate::parser::from_reader(std::io::Cursor::new(&bytes))
.expect("round-trip parse failed");
assert_eq!(rt[0].tag, "UNB");
assert_eq!(rt[0].as_borrowed().element_str(0), Some("UNOA"));
assert_eq!(rt[1].tag, "UNZ");
}
/// Verify that `Writer::with_una` uses the configured delimiters throughout,
/// and that `write_segment_parts` (the delimiter-agnostic API) produces correct
/// component separators even with a non-default UNA.
#[test]
fn with_una_non_default_delimiters() {
use crate::tokenizer::ServiceStringAdvice;
// Custom UNA: comp_sep=| elem_sep=! esc=? dec_mark=, seg_term=~
let ssa = ServiceStringAdvice {
component_sep: b'|',
element_sep: b'!',
release_char: b'?',
decimal_mark: b',',
segment_term: b'~',
};
let buf = Vec::new();
let mut writer = Writer::with_una(buf, ssa).expect("writer creation failed");
// write_segment_parts: pre-split; no hard-coded `:` in element strings
writer
.write_segment_parts(
"BGM",
&[
vec!["220".to_owned(), "SUB1".to_owned()],
vec!["PO1".to_owned()],
],
)
.expect("write failed");
let out = writer.finish().expect("finish failed");
let s = std::str::from_utf8(&out).unwrap();
// Output must use `!` as element separator, `|` as component separator, `~` as terminator.
// The writer also emits a UNA header when with_una is used.
assert!(s.contains("BGM"), "BGM segment missing: {s}");
// Slice after UNA so assertions target segment output, not UNA header bytes.
let after_una = s.find("BGM").map(|i| &s[i..]).unwrap_or(s);
assert!(
after_una.contains('!'),
"missing element sep in segment: {after_una}"
);
assert!(
after_una.contains('|'),
"missing component sep in segment: {after_una}"
);
assert!(
after_una.ends_with('~'),
"missing segment term in segment: {after_una}"
);
// Decimal mark appears in the UNA header (no decimal-bearing values in this segment).
assert!(s.contains(','), "missing decimal mark in UNA: {s}");
assert!(!s.contains('+'), "default element sep leaked: {s}");
assert!(!s.contains(':'), "default component sep leaked: {s}");
// segment_term '~' is not the default; ensure no default ' leaks (UNA itself aside)
assert!(
!after_una.contains('\''),
"default segment term leaked after UNA: {after_una}"
);
}
}