summary refs log tree commit diff
path: root/src/path.rs
blob: 7a81873dcc671ade11ccf2fda50f3e098e3afff4 (plain)
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
use crate::prelude::*;

lalrpop_mod!(pub parser, "/path/parser.rs");


#[derive(Debug)]
pub struct AbsoluteDirectoryPath {
  components: Vec<DirectoryName>,
}

#[derive(Debug)]
pub struct FileName(String);

#[derive(Debug)]
pub struct DirectoryName(String);

#[derive(Debug)]
pub struct GenericPath {
  components: Vec<GenericPathComponent>,
  starts_with_slash: bool,
  ends_with_slash: bool,
}

#[derive(Debug)]
pub enum GenericPathComponent {
  FileOrDirectoryName(String),
  CurrentDirectory,
  ParentDirectory,
}


impl std::fmt::Display for AbsoluteDirectoryPath {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    for component in &self.components {
      f.write_str("/")?;
      component.fmt(f)?;
    }

    f.write_str("/")?;

    Ok(())
  }
}


impl std::fmt::Display for FileName {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    match self {
      FileName(name) => {
        let std_path = std::path::Path::new(&name);
        f.write_fmt(format_args!("{}", std_path.display()))?;
      },
    }

    Ok(())
  }
}


impl std::fmt::Display for DirectoryName {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    match self {
      DirectoryName(name) => {
        let std_path = std::path::Path::new(&name);
        f.write_fmt(format_args!("{}", std_path.display()))?;
      },
    }

    Ok(())
  }
}


impl std::fmt::Display for GenericPath {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    if self.starts_with_slash {
      f.write_str("/")?;
    }

    let mut is_first = true;
    for component in &self.components {
      if !is_first {
        f.write_str("/")?;
      }

      component.fmt(f)?;

      is_first = false;
    }

    if self.ends_with_slash {
      f.write_str("/")?;
    }

    Ok(())
  }
}


impl std::fmt::Display for GenericPathComponent {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    match self {
      GenericPathComponent::FileOrDirectoryName(name) => {
        let std_path = std::path::Path::new(&name);
        f.write_fmt(format_args!("{}", std_path.display()))?;
      },
      GenericPathComponent::CurrentDirectory => {
        f.write_str(".")?;
      },
      GenericPathComponent::ParentDirectory => {
        f.write_str("..")?;
      },
    }

    Ok(())
  }
}


pub fn parse_path_list(path_list: &str)
  -> Result<Vec<AbsoluteDirectoryPath>>
{
  match parser::PathListParser::new().parse(path_list) {
    Ok(parsed_paths) => {
      let mut result = Vec::new();
      for generic_path in parsed_paths {
        let path = absolute_directory_path(generic_path)?;
        result.push(path);
      }
      Ok(result)
    },
   Err(original_error) => {
      match parser::PathListAllowingEmptyPathsParser::new()
        .parse(path_list)
      {
        Ok(_) => {
          Err(Error::PathListHasEmptyComponents(path_list.to_string()))
        },
        Err(_) => {
          Err(Error::Parse(original_error.to_string()))
        },
      }
    },
  }
}


pub fn absolute_directory_path(generic_path: GenericPath)
  -> Result<AbsoluteDirectoryPath>
{
  if !generic_path.starts_with_slash {
    return Err(Error::PathIsRelative(generic_path));
  }

  let mut flattened_components = Vec::new();
  for component in &generic_path.components {
    match component {
      GenericPathComponent::CurrentDirectory => { },
      GenericPathComponent::ParentDirectory => {
        if flattened_components.len() > 0 {
          flattened_components.pop();
        } else {
          return Err(Error::PathInvalid(generic_path));
        }
      },
      GenericPathComponent::FileOrDirectoryName(name) => {
        flattened_components.push(DirectoryName(name.to_string()));
      },
    }
  }

  if flattened_components.len() == 0 {
    return Err(Error::PathInvalid(generic_path));
  }

  Ok(AbsoluteDirectoryPath {
    components: flattened_components,
  })
}