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
use std::path::Path;

use crate::{DsdlError, Result};

const DSDL_EXTENTION: &str = "dsdl";
const ERROR_DIECTORY: &str = "Expecting a DSDL file but received a directory instead";
const ERROR_EXTENTION: &str = "A DSDL file must have a dsdl extention";
const ERROR_FORMAT: &str = "DSDL file name format is not valid";
const ERROR_PORT_ID: &str = "Could not parse the DSDL file name fixed Port-ID";
const ERROR_MAJOR_VERSION: &str = "Could not parse the DSDL file name major version number";
const ERROR_MINOR_VERSION: &str = "Could not parse the DSDL file name minor version number";

pub struct FileName {
    port_id: u32,
    short_name: String,
    major_version: u32,
    minor_version: u32,
}

impl FileName {
    pub fn new(path: &Path) -> Result<Self> {
        // Make sure it's not a directory
        if path.is_dir() {
            return Err(DsdlError::FileName(ERROR_DIECTORY.to_string()));
        }

        // Make sure it has a dsdl extention
        match path.extension() {
            None => return Err(DsdlError::FileName(ERROR_EXTENTION.to_string())),
            Some(ext) => {
                if ext != DSDL_EXTENTION {
                    return Err(DsdlError::FileName(ERROR_EXTENTION.to_string()));
                }
            }
        }

        // split the file name into the various components
        let pieces: Vec<&str> = path
            .file_name()
            .unwrap()
            .to_str()
            .unwrap()
            .split('.')
            .collect();

        // mnake sure the number of components is correct
        let has_port = match pieces.len() {
            5 => true,
            4 => false,
            _ => return Err(DsdlError::FileName(ERROR_FORMAT.to_string())),
        };

        let mut position = 0;

        // get port number
        let mut port_id: u32 = 0;
        if has_port {
            match pieces[position].parse::<u32>() {
                Ok(value) => {
                    port_id = value;
                    position += 1;
                }
                Err(_) => return Err(DsdlError::FileName(ERROR_PORT_ID.to_string())),
            }
        }

        // get short name
        let short_name = pieces[position].to_string();
        position += 1;

        // get major version
        let major_version: u32;
        match pieces[position].parse::<u32>() {
            Ok(value) => {
                major_version = value;
                position += 1;
            }
            Err(_) => return Err(DsdlError::FileName(ERROR_MAJOR_VERSION.to_string())),
        }

        // get minor version
        let minor_version: u32 = match pieces[position].parse::<u32>() {
            Ok(value) => value,
            Err(_) => return Err(DsdlError::FileName(ERROR_MINOR_VERSION.to_string())),
        };

        Ok(FileName {
            port_id,
            short_name,
            major_version,
            minor_version,
        })
    }

    pub fn port_id(&self) -> Result<u32> {
        match self.port_id {
            0 => Err(DsdlError::NotDefined),
            _ => Ok(self.port_id),
        }
    }

    pub fn short_name(&self) -> String {
        self.short_name.clone()
    }

    pub fn minor_version(&self) -> u32 {
        self.minor_version
    }

    pub fn major_version(&self) -> u32 {
        self.major_version
    }
}

impl From<FileName> for String {
    fn from(file_name: FileName) -> Self {
        match file_name.port_id {
            0 => format!(
                "{}.{}.{}.{}",
                file_name.short_name,
                file_name.major_version,
                file_name.minor_version,
                DSDL_EXTENTION
            ),
            _ => format!(
                "{}.{}.{}.{}.{}",
                file_name.port_id,
                file_name.short_name,
                file_name.major_version,
                file_name.minor_version,
                DSDL_EXTENTION
            ),
        }
    }
}

#[cfg(test)]
mod test {
    use std::path::Path;

    use crate::{
        file_name::{
            ERROR_DIECTORY, ERROR_EXTENTION, ERROR_FORMAT, ERROR_MAJOR_VERSION,
            ERROR_MINOR_VERSION, ERROR_PORT_ID,
        },
        DsdlError, FileName,
    };

    #[test]
    fn test_directory() {
        // Arrange
        let target = Path::new("/");

        // Act
        let result = FileName::new(target);

        // Assert
        assert!(result.is_err());
        let err = result.err().unwrap();
        assert_eq!(err, DsdlError::FileName(ERROR_DIECTORY.to_string()));
    }

    #[test]
    fn test_invalid_extention() {
        // Arrange
        let target = Path::new("432.GetInfo.1.0.bad");

        // Act
        let result = FileName::new(target);

        // Assert
        assert!(result.is_err());
        let err = result.err().unwrap();
        assert_eq!(err, DsdlError::FileName(ERROR_EXTENTION.to_string()));
    }

    #[test]
    fn test_components() {
        // Arrange
        let targets = [
            Path::new("432.GetInfo.0.1.0.dsdl"),
            Path::new("GetInfo.1.dsdl"),
        ];

        for target in targets.iter() {
            // Act
            let result = FileName::new(target);

            // Assert
            assert!(result.is_err());
            let err = result.err().unwrap();
            assert_eq!(err, DsdlError::FileName(ERROR_FORMAT.to_string()));
        }
    }

    #[test]
    fn test_invalid_port() {
        // Arrange
        let target = Path::new("4O2.GetInfo.1.0.dsdl");

        // Act
        let result = FileName::new(target);

        // Assert
        assert!(result.is_err());
        let err = result.err().unwrap();
        assert_eq!(err, DsdlError::FileName(ERROR_PORT_ID.to_string()));
    }

    #[test]
    fn test_invalid_major_version() {
        // Arrange
        let target = Path::new("432.GetInfo.a.0.dsdl");

        // Act
        let result = FileName::new(target);

        // Assert
        assert!(result.is_err());
        let err = result.err().unwrap();
        assert_eq!(err, DsdlError::FileName(ERROR_MAJOR_VERSION.to_string()));
    }

    #[test]
    fn test_invalid_minor_version() {
        // Arrange
        let target = Path::new("432.GetInfo.1.a.dsdl");

        // Act
        let result = FileName::new(target);

        // Assert
        assert!(result.is_err());
        let err = result.err().unwrap();
        assert_eq!(err, DsdlError::FileName(ERROR_MINOR_VERSION.to_string()));
    }
}