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
use crate::{
    common::coerce_empty_value,
    error::{InvalidNameError, InvalidValueError},
};
use std::{fmt, str::FromStr};

/// The name of an attribute.
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct Name(String);

impl Name {
    /// Create a new `Name` from a String without validation.
    pub(crate) fn new(name: String) -> Self {
        Self(name)
    }
}

impl FromStr for Name {
    type Err = InvalidNameError;

    /// Create a new `Name` from a string slice.
    ///
    /// A valid name may consist of ASCII letters, digits and the characters "-", "_",
    /// while beginning with a letter and ending with a letter or a digit.
    ///
    /// # Errors
    /// Returns an error if the name is empty or invalid.
    fn from_str(name: &str) -> Result<Self, Self::Err> {
        if name.trim().is_empty() {
            return Err(InvalidNameError::Empty);
        } else if !name.is_ascii() {
            return Err(InvalidNameError::NonAscii);
        } else if !name.chars().next().unwrap().is_ascii_alphabetic() {
            return Err(InvalidNameError::NonAsciiAlphabeticFirstChar);
        } else if !name.chars().last().unwrap().is_ascii_alphanumeric() {
            return Err(InvalidNameError::NonAsciiAlphanumericLastChar);
        }

        Ok(Self(name.to_string()))
    }
}

impl PartialEq<&str> for Name {
    fn eq(&self, other: &&str) -> bool {
        self.0 == *other
    }
}

impl fmt::Display for Name {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

/// The value of an attribute.
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum Value {
    SingleLine(Option<String>),
    MultiLine(Vec<Option<String>>),
}

impl Value {
    fn validate(value: &str) -> Result<(), InvalidValueError> {
        if !value.is_ascii() {
            return Err(InvalidValueError::NonAscii);
        } else if value.chars().any(|c| c.is_ascii_control()) {
            return Err(InvalidValueError::ContainsControlChar);
        }

        Ok(())
    }

    /// Create a new `Value` from a String without validation.
    pub(crate) fn new_single(value: Option<String>) -> Self {
        Self::SingleLine(value)
    }

    /// Create a new `Value` from a vector of strings without validation.
    pub(crate) fn new_multi(values: Vec<Option<String>>) -> Self {
        Self::MultiLine(values)
    }

    /// The number of values contained within.
    pub fn len(&self) -> usize {
        match &self {
            Value::SingleLine(_) => 1,
            Value::MultiLine(values) => values.len(),
        }
    }
}

impl FromStr for Value {
    type Err = InvalidValueError;

    /// Create a new single line `Value` from a string slice.
    ///
    /// A valid value may consist of any ASCII character, excluding control characters.
    ///
    /// # Errors
    /// Returns an error if the value contains invalid characters.
    fn from_str(value: &str) -> Result<Self, Self::Err> {
        Self::validate(value)?;
        Ok(Self::SingleLine(
            coerce_empty_value(value).map(std::string::ToString::to_string),
        ))
    }
}

impl TryFrom<Vec<&str>> for Value {
    type Error = InvalidValueError;

    /// Create a new `Value` from a vector of string slices.
    ///
    /// A valid value may consist of any ASCII character, excluding control characters.
    ///
    /// # Errors
    /// Returns an error if a value contains invalid characters.
    fn try_from(values: Vec<&str>) -> Result<Self, Self::Error> {
        if values.len() == 1 {
            let value = values[0].parse()?;
            return Ok(value);
        }
        let values = values
            .into_iter()
            .map(|v| {
                Self::validate(v)?;
                Ok(coerce_empty_value(v).map(std::string::ToString::to_string))
            })
            .collect::<Result<Vec<Option<String>>, InvalidValueError>>()?;

        Ok(Self::MultiLine(values))
    }
}

impl IntoIterator for Value {
    type Item = Option<String>;
    type IntoIter = std::vec::IntoIter<Self::Item>;

    fn into_iter(self) -> Self::IntoIter {
        match self {
            Self::SingleLine(value) => vec![value].into_iter(),
            Self::MultiLine(values) => values.into_iter(),
        }
    }
}

impl PartialEq<&str> for Value {
    fn eq(&self, other: &&str) -> bool {
        match &self {
            Self::MultiLine(_) => false,
            Self::SingleLine(value) => match value {
                Some(value) => value == *other,
                None => coerce_empty_value(other).is_none(),
            },
        }
    }
}

impl PartialEq<Vec<&str>> for Value {
    fn eq(&self, other: &Vec<&str>) -> bool {
        match &self {
            Self::SingleLine(_) => false,
            Self::MultiLine(values) => {
                if values.len() != other.len() {
                    return false;
                }

                let other_coerced = other.iter().map(|&v| coerce_empty_value(v));

                for (s, o) in values.iter().zip(other_coerced) {
                    if s.as_deref() != o {
                        return false;
                    }
                }

                true
            }
        }
    }
}

impl PartialEq<Vec<Option<&str>>> for Value {
    fn eq(&self, other: &Vec<Option<&str>>) -> bool {
        match &self {
            Self::SingleLine(_) => false,
            Self::MultiLine(values) => {
                if values.len() != other.len() {
                    return false;
                }

                for (s, o) in values.iter().zip(other.iter()) {
                    if s.as_deref() != *o {
                        return false;
                    }
                }

                true
            }
        }
    }
}

#[derive(Debug, PartialEq, Eq, Clone)]
/// An attribute of an RPSL [`Object`](crate::Object).
pub struct Attribute {
    /// The name of the attribute.
    pub name: Name,
    /// The value(s) of the attribute.
    pub value: Value,
}

impl Attribute {
    /// Create a new attribute.
    #[must_use]
    pub fn new(name: Name, value: Value) -> Self {
        Self { name, value }
    }
}

impl fmt::Display for Attribute {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match &self.value {
            Value::SingleLine(value) => {
                writeln!(f, "{:16}{}", format!("{}:", self.name), {
                    match value {
                        Some(value) => value,
                        None => "",
                    }
                })
            }
            Value::MultiLine(values) => {
                writeln!(f, "{:16}{}", format!("{}:", self.name), {
                    match &values[0] {
                        Some(value) => value,
                        None => "",
                    }
                })?;

                let mut continuation_values = String::new();
                for value in &values[1..] {
                    continuation_values.push_str(&format!("{:16}{}\n", "", {
                        match &value {
                            Some(value) => value,
                            None => "",
                        }
                    }));
                }
                write!(f, "{continuation_values}")
            }
        }
    }
}

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

    #[test]
    fn name_from_str() {
        assert_eq!("role".parse::<Name>().unwrap().0, String::from("role"));
        assert_eq!("person".parse::<Name>().unwrap().0, String::from("person"));
    }

    proptest! {
        #[test]
        fn name_from_str_space_only_is_err(n in r"\s") {
            assert!(n.parse::<Name>().is_err());
        }

        #[test]
        fn name_from_str_non_ascii_is_err(n in r"[^[[:ascii:]]]") {
            assert!(n.parse::<Name>().is_err());
        }

        #[test]
        fn name_from_str_non_letter_first_char_is_err(n in r"[^a-zA-Z][[:ascii:]]*") {
            assert!(n.parse::<Name>().is_err());
        }

        #[test]
        fn name_from_str_non_letter_or_digit_last_char_is_err(n in r"[[:ascii:]]*[^a-zA-Z0-9]") {
            assert!(n.parse::<Name>().is_err());
        }
    }

    #[test]
    fn value_from_str() {
        let value = "This is a valid attribute value";
        assert_eq!(
            value.parse::<Value>().unwrap(),
            Value::SingleLine(Some(value.to_string()))
        );
    }

    #[test]
    fn value_from_empty_str() {
        let value = "   ";
        assert_eq!(value.parse::<Value>().unwrap(), Value::SingleLine(None));
    }

    #[test]
    fn value_len() {
        assert_eq!("single value".parse::<Value>().unwrap().len(), 1);
        assert_eq!(
            std::convert::TryInto::<Value>::try_into(vec!["multi", "value", "attribute"])
                .unwrap()
                .len(),
            3
        );
    }

    #[test]
    fn value_eq_is_eq() {
        assert_eq!(
            Value::SingleLine(Some("single value".to_string())),
            "single value"
        );
        assert_eq!(Value::SingleLine(None), " ");
        assert_eq!(
            Value::MultiLine(vec![
                Some("multi".to_string()),
                Some("value".to_string()),
                Some("attribute".to_string())
            ]),
            vec!["multi", "value", "attribute"]
        );
        assert_eq!(
            Value::MultiLine(vec![
                Some("multi".to_string()),
                None,
                Some("attribute".to_string())
            ]),
            vec!["multi", "    ", "attribute"]
        );
        assert_eq!(
            Value::MultiLine(vec![
                Some("multi".to_string()),
                Some("value".to_string()),
                Some("attribute".to_string())
            ]),
            vec![Some("multi"), Some("value"), Some("attribute")]
        );
        assert_eq!(
            Value::MultiLine(vec![
                Some("multi".to_string()),
                None,
                Some("attribute".to_string())
            ]),
            vec![Some("multi"), None, Some("attribute")]
        );
    }

    #[test]
    fn value_ne_is_ne() {
        assert_ne!(
            Value::SingleLine(Some("single value".to_string())),
            "other single value"
        );
        assert_ne!(Value::SingleLine(None), "not none");
        assert_ne!(
            Value::SingleLine(Some("single value".to_string())),
            vec!["other", "multi", "value", "attribute"]
        );
        assert_ne!(
            Value::MultiLine(vec![
                Some("multi".to_string()),
                Some("value".to_string()),
                Some("attribute".to_string())
            ]),
            vec!["other", "multi", "value", "attribute"]
        );
        assert_ne!(
            Value::MultiLine(vec![
                Some("multi".to_string()),
                Some("value".to_string()),
                Some("attribute".to_string())
            ]),
            vec![Some("multi"), None, Some("attribute")]
        );
        assert_ne!(
            Value::MultiLine(vec![
                Some("multi".to_string()),
                None,
                Some("attribute".to_string())
            ]),
            vec![Some("multi"), Some("    "), Some("attribute")]
        );
    }

    proptest! {
        #[test]
        fn value_from_str_non_ascii_is_err(v in r"[^[[:ascii:]]]") {
            assert!(v.parse::<Name>().is_err());
        }

        #[test]
        fn value_from_str_ascii_control_is_err(v in r"[[:cntrl:]]") {
            assert!(v.parse::<Name>().is_err());
        }
    }

    #[test]
    fn value_from_vec_of_str() {
        assert_eq!(
            Value::try_from(vec!["Packet Street 6", "128 Series of Tubes", "Internet"]).unwrap(),
            Value::MultiLine(vec![
                Some("Packet Street 6".to_string()),
                Some("128 Series of Tubes".to_string()),
                Some("Internet".to_string())
            ])
        );
        assert_eq!(
            Value::try_from(vec!["", "128 Series of Tubes", "Internet"]).unwrap(),
            Value::MultiLine(vec![
                None,
                Some("128 Series of Tubes".to_string()),
                Some("Internet".to_string())
            ])
        );
        assert_eq!(
            Value::try_from(vec!["", " ", "   "]).unwrap(),
            Value::MultiLine(vec![None, None, None])
        );
    }

    #[test]
    fn value_from_vec_w_1_value_is_single_line() {
        assert_eq!(
            Value::try_from(vec!["Packet Street 6"]).unwrap(),
            Value::SingleLine(Some("Packet Street 6".to_string()))
        );
    }

    #[test]
    fn attribute_display_single_line() {
        assert_eq!(
            Attribute::new("ASNumber".parse().unwrap(), "32934".parse().unwrap()).to_string(),
            "ASNumber:       32934\n"
        );
        assert_eq!(
            Attribute::new("ASName".parse().unwrap(), "FACEBOOK".parse().unwrap()).to_string(),
            "ASName:         FACEBOOK\n"
        );
        assert_eq!(
            Attribute::new("RegDate".parse().unwrap(), "2004-08-24".parse().unwrap()).to_string(),
            "RegDate:        2004-08-24\n"
        );
        assert_eq!(
            Attribute::new(
                "Ref".parse().unwrap(),
                "https://rdap.arin.net/registry/autnum/32934"
                    .parse()
                    .unwrap()
            )
            .to_string(),
            "Ref:            https://rdap.arin.net/registry/autnum/32934\n"
        );
    }

    #[test]
    fn attribute_display_multi_line() {
        assert_eq!(
            Attribute::new(
                "remarks".parse().unwrap(),
                vec![
                    "AS1299 is matching RPKI validation state and reject",
                    "invalid prefixes from peers and customers."
                ]
                .try_into()
                .unwrap()
            )
            .to_string(),
            concat!(
                "remarks:        AS1299 is matching RPKI validation state and reject\n",
                "                invalid prefixes from peers and customers.\n",
            )
        );
    }
}