xportrs 0.0.8

CDISC-compliant XPT file generation and parsing library 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
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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
//! Validation issue types.
//!
//! This module defines the [`Issue`] enum for representing validation problems.
//! Each variant is a specific issue type with its own data.

use std::fmt;
use std::path::PathBuf;

/// A validation issue found during XPT generation or reading.
///
/// Each variant represents a specific type of issue with relevant context data.
/// The issue's code, [`Severity`], and message are derived from the variant.
///
/// # Example
///
/// ```
/// use xportrs::{Issue, Severity};
///
/// // Issues are returned from validation
/// let issues = vec![
///     Issue::VariableNameTooLong {
///         variable: "TOOLONGNAME".into(),
///         max: 8,
///         actual: 11,
///     },
/// ];
///
/// // Filter and display errors
/// for issue in &issues {
///     if issue.is_error() {
///         eprintln!("{}", issue);
///     }
/// }
/// ```
#[derive(Debug, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum Issue {
    // =========================================================================
    // XPT v5 Structural Issues
    // =========================================================================
    /// Dataset name exceeds maximum byte length.
    DatasetNameTooLong {
        /// The dataset name.
        dataset: String,
        /// Maximum allowed bytes.
        max: usize,
        /// Actual byte length.
        actual: usize,
    },

    /// Dataset label exceeds maximum byte length.
    DatasetLabelTooLong {
        /// The dataset name.
        dataset: String,
        /// Maximum allowed bytes.
        max: usize,
        /// Actual byte length.
        actual: usize,
    },

    /// Variable name exceeds maximum byte length.
    VariableNameTooLong {
        /// The variable name.
        variable: String,
        /// Maximum allowed bytes.
        max: usize,
        /// Actual byte length.
        actual: usize,
    },

    /// Variable label exceeds maximum byte length.
    VariableLabelTooLong {
        /// The variable name.
        variable: String,
        /// Maximum allowed bytes.
        max: usize,
        /// Actual byte length.
        actual: usize,
    },

    /// Numeric variable has incorrect length (must be 8).
    NumericWrongLength {
        /// The variable name.
        variable: String,
        /// Expected length (8).
        expected: usize,
        /// Actual length.
        actual: usize,
    },

    /// Character variable length is below minimum.
    CharacterLengthTooShort {
        /// The variable name.
        variable: String,
        /// Minimum allowed length.
        min: usize,
        /// Actual length.
        actual: usize,
    },

    /// Character variable length exceeds maximum.
    CharacterLengthTooLong {
        /// The variable name.
        variable: String,
        /// Maximum allowed length.
        max: usize,
        /// Actual length.
        actual: usize,
    },

    /// Row length is inconsistent with sum of variable lengths.
    RowLenInconsistent {
        /// Recorded row length.
        recorded: usize,
        /// Computed row length.
        computed: usize,
    },

    // =========================================================================
    // Agency-Specific Issues
    // =========================================================================
    /// Dataset name does not match required pattern.
    DatasetNamePatternMismatch {
        /// The dataset name.
        dataset: String,
        /// Agency name.
        agency: &'static str,
        /// Required pattern.
        pattern: String,
    },

    /// Variable name does not match required pattern.
    VariableNamePatternMismatch {
        /// The variable name.
        variable: String,
        /// Agency name.
        agency: &'static str,
        /// Required pattern.
        pattern: String,
    },

    /// Dataset name does not match file stem.
    DatasetNameFileStemMismatch {
        /// The dataset name.
        dataset: String,
        /// The file stem.
        stem: String,
    },

    /// Dataset name contains non-ASCII characters.
    NonAsciiDatasetName {
        /// The dataset name.
        dataset: String,
    },

    /// Variable name contains non-ASCII characters.
    NonAsciiVariableName {
        /// The variable name.
        variable: String,
    },

    /// Dataset label contains non-ASCII characters.
    NonAsciiDatasetLabel {
        /// The dataset name.
        dataset: String,
    },

    /// Variable label contains non-ASCII characters.
    NonAsciiVariableLabel {
        /// The variable name.
        variable: String,
    },

    /// Dataset name exceeds agency byte limit.
    AgencyDatasetNameTooLong {
        /// The dataset name.
        dataset: String,
        /// Maximum allowed bytes.
        max: usize,
        /// Actual byte length.
        actual: usize,
    },

    /// Variable name exceeds agency byte limit.
    AgencyVariableNameTooLong {
        /// The variable name.
        variable: String,
        /// Maximum allowed bytes.
        max: usize,
        /// Actual byte length.
        actual: usize,
    },

    /// Label exceeds agency byte limit.
    AgencyLabelTooLong {
        /// The name (dataset or variable).
        name: String,
        /// Whether this is a dataset (true) or variable (false).
        is_dataset: bool,
        /// Maximum allowed bytes.
        max: usize,
        /// Actual byte length.
        actual: usize,
    },

    /// Character value length exceeds agency policy limit.
    CharacterValueLengthExceeded {
        /// The variable name.
        variable: String,
        /// The variable's length.
        length: usize,
        /// Agency name.
        agency: &'static str,
        /// Maximum policy limit.
        max: usize,
    },

    /// Warning when a label contains multi-byte characters and is near the byte limit.
    ///
    /// This warning helps users catch potential truncation issues when using
    /// non-ASCII characters (Japanese, Chinese, etc.) in labels.
    MultiByteLabelNearLimit {
        /// The name (dataset or variable).
        name: String,
        /// Whether this is a dataset (true) or variable (false).
        is_dataset: bool,
        /// Current byte count.
        byte_count: usize,
        /// Maximum allowed bytes.
        max_bytes: usize,
        /// Character count (for context).
        char_count: usize,
    },

    // =========================================================================
    // CDISC Metadata Issues
    // =========================================================================
    /// Variable is missing a label.
    ///
    /// Per Pinnacle 21 rule SD0063, this is a warning (not an error).
    /// Labels are recommended for FDA reviewer clarity but not strictly
    /// required for compliance per SDTM-IG v3.3+.
    MissingVariableLabel {
        /// The variable name.
        variable: String,
    },

    /// Dataset is missing a label.
    ///
    /// Per Pinnacle 21 rule SD0063A, this is a warning (not an error).
    MissingDatasetLabel {
        /// The dataset name.
        dataset: String,
    },

    /// Invalid format syntax.
    ///
    /// The format string could not be parsed as a valid SAS format.
    InvalidFormatSyntax {
        /// The variable name.
        variable: String,
        /// The invalid format string.
        format: String,
        /// Error message explaining why parsing failed.
        reason: String,
    },
}

impl Issue {
    /// Returns the [`Severity`] of this issue.
    #[must_use]
    pub const fn severity(&self) -> Severity {
        match self {
            // Warnings - things that don't block generation but should be addressed
            Self::CharacterValueLengthExceeded { .. }
            | Self::MultiByteLabelNearLimit { .. }
            | Self::MissingVariableLabel { .. }
            | Self::MissingDatasetLabel { .. } => Severity::Warning,
            // Everything else is an error
            _ => Severity::Error,
        }
    }

    /// Returns the target of this issue (dataset, variable, or none).
    #[must_use]
    pub(crate) fn target(&self) -> Option<Target> {
        match self {
            // Dataset targets
            Self::DatasetNameTooLong { dataset, .. }
            | Self::DatasetLabelTooLong { dataset, .. }
            | Self::DatasetNamePatternMismatch { dataset, .. }
            | Self::DatasetNameFileStemMismatch { dataset, .. }
            | Self::NonAsciiDatasetName { dataset }
            | Self::NonAsciiDatasetLabel { dataset }
            | Self::AgencyDatasetNameTooLong { dataset, .. }
            | Self::MissingDatasetLabel { dataset } => Some(Target::Dataset(dataset.clone())),

            // Variable targets
            Self::VariableNameTooLong { variable, .. }
            | Self::VariableLabelTooLong { variable, .. }
            | Self::NumericWrongLength { variable, .. }
            | Self::CharacterLengthTooShort { variable, .. }
            | Self::CharacterLengthTooLong { variable, .. }
            | Self::VariableNamePatternMismatch { variable, .. }
            | Self::NonAsciiVariableName { variable }
            | Self::NonAsciiVariableLabel { variable }
            | Self::AgencyVariableNameTooLong { variable, .. }
            | Self::CharacterValueLengthExceeded { variable, .. }
            | Self::MissingVariableLabel { variable }
            | Self::InvalidFormatSyntax { variable, .. } => {
                Some(Target::Variable(variable.clone()))
            }

            // Special case for label (can be either dataset or variable)
            Self::AgencyLabelTooLong {
                name, is_dataset, ..
            }
            | Self::MultiByteLabelNearLimit {
                name, is_dataset, ..
            } => {
                if *is_dataset {
                    Some(Target::Dataset(name.clone()))
                } else {
                    Some(Target::Variable(name.clone()))
                }
            }

            // No target
            Self::RowLenInconsistent { .. } => None,
        }
    }

    /// Returns `true` if this is a [`Severity::Error`].
    #[must_use]
    pub const fn is_error(&self) -> bool {
        matches!(self.severity(), Severity::Error)
    }

    /// Returns `true` if this is a [`Severity::Warning`].
    #[must_use]
    pub const fn is_warning(&self) -> bool {
        matches!(self.severity(), Severity::Warning)
    }
}

impl fmt::Display for Issue {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        // Format: [SEVERITY] message (target)
        write!(f, "[{}] ", self.severity())?;

        // Write the message based on variant
        match self {
            // Dataset name too long (both structural and agency)
            Self::DatasetNameTooLong {
                dataset,
                max,
                actual,
            }
            | Self::AgencyDatasetNameTooLong {
                dataset,
                max,
                actual,
            } => {
                write!(
                    f,
                    "dataset name '{}' exceeds {} bytes (has {} bytes)",
                    dataset, max, actual
                )?;
            }

            // Variable name too long (both structural and agency)
            Self::VariableNameTooLong {
                variable,
                max,
                actual,
            }
            | Self::AgencyVariableNameTooLong {
                variable,
                max,
                actual,
            } => {
                write!(
                    f,
                    "variable name '{}' exceeds {} bytes (has {} bytes)",
                    variable, max, actual
                )?;
            }

            Self::DatasetLabelTooLong { max, actual, .. } => {
                write!(
                    f,
                    "dataset label exceeds {} bytes (has {} bytes)",
                    max, actual
                )?;
            }

            Self::VariableLabelTooLong { max, actual, .. } => {
                write!(
                    f,
                    "variable label exceeds {} bytes (has {} bytes)",
                    max, actual
                )?;
            }

            Self::NumericWrongLength {
                variable,
                expected,
                actual,
            } => {
                write!(
                    f,
                    "numeric variable '{}' must have length {} (has {})",
                    variable, expected, actual
                )?;
            }

            Self::CharacterLengthTooShort {
                variable,
                min,
                actual,
            } => {
                write!(
                    f,
                    "character variable '{}' must have length >= {} (has {})",
                    variable, min, actual
                )?;
            }

            Self::CharacterLengthTooLong {
                variable,
                max,
                actual,
            } => {
                write!(
                    f,
                    "character variable '{}' must have length <= {} (has {})",
                    variable, max, actual
                )?;
            }

            Self::RowLenInconsistent { recorded, computed } => {
                write!(
                    f,
                    "row_len inconsistency: recorded {} but computed {}",
                    recorded, computed
                )?;
            }

            Self::DatasetNamePatternMismatch {
                dataset,
                agency,
                pattern,
            } => {
                write!(
                    f,
                    "dataset name '{}' does not match {} required pattern '{}'",
                    dataset, agency, pattern
                )?;
            }

            Self::VariableNamePatternMismatch {
                variable,
                agency,
                pattern,
            } => {
                write!(
                    f,
                    "variable name '{}' does not match {} required pattern '{}'",
                    variable, agency, pattern
                )?;
            }

            Self::DatasetNameFileStemMismatch { dataset, stem } => {
                write!(
                    f,
                    "dataset name '{}' does not match file stem '{}'",
                    dataset, stem
                )?;
            }

            Self::NonAsciiDatasetName { dataset } => {
                write!(
                    f,
                    "dataset name '{}' contains non-ASCII characters",
                    dataset
                )?;
            }

            Self::NonAsciiVariableName { variable } => {
                write!(
                    f,
                    "variable name '{}' contains non-ASCII characters",
                    variable
                )?;
            }

            Self::NonAsciiDatasetLabel { .. } => {
                write!(f, "dataset label contains non-ASCII characters")?;
            }

            Self::NonAsciiVariableLabel { variable } => {
                write!(
                    f,
                    "variable '{}' label contains non-ASCII characters",
                    variable
                )?;
            }

            Self::AgencyLabelTooLong {
                name,
                is_dataset,
                max,
                actual,
            } => {
                let kind = if *is_dataset { "dataset" } else { "variable" };
                write!(
                    f,
                    "{} '{}' label exceeds {} bytes (has {} bytes)",
                    kind, name, max, actual
                )?;
            }
            Self::CharacterValueLengthExceeded {
                variable,
                length,
                agency,
                max,
            } => {
                write!(
                    f,
                    "character variable '{}' length {} exceeds {} policy limit of {} bytes",
                    variable, length, agency, max
                )?;
            }
            Self::MultiByteLabelNearLimit {
                name,
                is_dataset,
                byte_count,
                max_bytes,
                char_count,
            } => {
                let kind = if *is_dataset { "dataset" } else { "variable" };
                write!(
                    f,
                    "{} '{}' label uses {} of {} bytes ({} characters) - approaching limit with multi-byte characters",
                    kind, name, byte_count, max_bytes, char_count
                )?;
            }

            Self::MissingVariableLabel { variable } => {
                write!(
                    f,
                    "variable '{}' is missing a label (recommended for FDA submissions)",
                    variable
                )?;
            }

            Self::MissingDatasetLabel { dataset } => {
                write!(
                    f,
                    "dataset '{}' is missing a label (recommended for FDA submissions)",
                    dataset
                )?;
            }

            Self::InvalidFormatSyntax {
                variable,
                format,
                reason,
            } => {
                write!(
                    f,
                    "variable '{}' has invalid format '{}': {}",
                    variable, format, reason
                )?;
            }
        }

        // Append target if present
        if let Some(ref target) = self.target() {
            write!(f, " ({})", target)?;
        }

        Ok(())
    }
}

/// The severity level of a validation [`Issue`].
///
/// Severities are ordered from least to most severe: [`Severity::Info`] < [`Severity::Warning`] < [`Severity::Error`].
///
/// # Example
///
/// ```
/// use xportrs::Severity;
///
/// // Filter issues by severity
/// fn print_high_priority(severity: Severity) {
///     if severity >= Severity::Warning {
///         println!("[{}] Needs attention", severity);
///     }
/// }
///
/// print_high_priority(Severity::Error);   // Prints
/// print_high_priority(Severity::Warning); // Prints
/// print_high_priority(Severity::Info);    // Silent
/// ```
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[non_exhaustive]
pub enum Severity {
    /// Informational message (does not block generation).
    Info,
    /// Warning (does not block generation, but indicates potential issues).
    Warning,
    /// Error (blocks generation in strict mode).
    Error,
}

impl fmt::Display for Severity {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Info => write!(f, "INFO"),
            Self::Warning => write!(f, "WARN"),
            Self::Error => write!(f, "ERROR"),
        }
    }
}

/// The target of a validation issue.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[allow(dead_code)]
pub enum Target {
    /// A dataset by name.
    Dataset(String),
    /// A variable by name.
    Variable(String),
    /// A file by path.
    File(PathBuf),
}

impl fmt::Display for Target {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Dataset(name) => write!(f, "dataset: {}", name),
            Self::Variable(name) => write!(f, "variable: {}", name),
            Self::File(path) => write!(f, "file: {}", path.display()),
        }
    }
}

/// Extension trait for working with collections of [`Issue`] items.
#[allow(dead_code)]
pub trait IssueCollection {
    /// Returns `true` if there are any [`Severity::Error`] issues.
    fn has_errors(&self) -> bool;

    /// Returns `true` if there are any [`Severity::Warning`] issues.
    fn has_warnings(&self) -> bool;

    /// Returns an iterator over [`Severity::Error`] issues.
    fn errors(&self) -> impl Iterator<Item = &Issue>;

    /// Returns an iterator over [`Severity::Warning`] issues.
    fn warnings(&self) -> impl Iterator<Item = &Issue>;
}

impl IssueCollection for [Issue] {
    fn has_errors(&self) -> bool {
        self.iter().any(Issue::is_error)
    }

    fn has_warnings(&self) -> bool {
        self.iter().any(Issue::is_warning)
    }

    fn errors(&self) -> impl Iterator<Item = &Issue> {
        self.iter().filter(|i| i.is_error())
    }

    fn warnings(&self) -> impl Iterator<Item = &Issue> {
        self.iter().filter(|i| i.is_warning())
    }
}

impl IssueCollection for Vec<Issue> {
    fn has_errors(&self) -> bool {
        self.as_slice().has_errors()
    }

    fn has_warnings(&self) -> bool {
        self.as_slice().has_warnings()
    }

    fn errors(&self) -> impl Iterator<Item = &Issue> {
        self.as_slice().errors()
    }

    fn warnings(&self) -> impl Iterator<Item = &Issue> {
        self.as_slice().warnings()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_issue_display() {
        let issue = Issue::VariableNameTooLong {
            variable: "TOOLONGVARIABLENAME".into(),
            max: 8,
            actual: 19,
        };

        let display = format!("{}", issue);
        assert!(display.contains("ERROR"));
        assert!(display.contains("TOOLONGVARIABLENAME"));
        assert!(display.contains("exceeds 8 bytes"));
    }

    #[test]
    fn test_issue_collection() {
        let issues = vec![
            Issue::DatasetNameTooLong {
                dataset: "TOOLONG".into(),
                max: 8,
                actual: 10,
            },
            Issue::CharacterValueLengthExceeded {
                variable: "VAR".into(),
                length: 300,
                agency: "FDA",
                max: 200,
            },
        ];

        assert!(issues.has_errors());
        assert!(issues.has_warnings());
        assert_eq!(issues.errors().count(), 1);
        assert_eq!(issues.warnings().count(), 1);
    }
}