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
use super::file_handel::CommandFS;

impl<'a> CommandFS<'a> {
    pub fn whereami(&mut self) -> &str {
        match self.dir.to_str() {
            Some(path) => path,
            None => {
                self.err_msg = "Unable to know Path".to_string();
                ""
            }
        }
    }
    pub fn know_home_dir(&mut self) -> String {
        match homedir::get_my_home() {
            Ok(home_option) => match home_option {
                Some(home) => {
                    let home_bind = home.clone();
                    match home_bind.to_str() {
                        Some(x) => x.to_string(),
                        None => "".to_string(),
                    }
                }
                None => {
                    self.err_msg = "Somethings Wrong".to_string();
                    "".to_string()
                }
            },
            Err(error) => {
                self.err_msg = error.to_string();
                "".to_string()
            }
        }
    }
    pub fn dir_list(&mut self) -> Vec<String> {
        match self.dir.read_dir() {
            Ok(read_dir) => {
                let mut output = vec![];
                for dir in read_dir {
                    match dir {
                        Ok(dir_entry) => {
                            if dir_entry.path().is_dir() {
                                let len_path = match self.dir.to_str() {
                                    Some(str) => str.len(),
                                    None => 0,
                                };
                                output.push(
                                    dir_entry.path().display().to_string().as_str()[len_path..]
                                        .to_string(),
                                )
                            }
                        }
                        Err(error) => self.err_msg = error.to_string(),
                    }
                }
                return output;
            }
            Err(error) => {
                self.err_msg = error.to_string();
                vec![]
            }
        }
    }

    pub fn file_list(&mut self) -> Vec<String> {
        if !self.dir.is_dir() {
            self.err_msg = String::from(
                "!WARNING! Seems like Given path is file please set path to Directory on given",
            );
            vec![]
        } else {
            match self.dir.read_dir() {
                Ok(read_dir) => {
                    let mut output = vec![];
                    for dir in read_dir {
                        match dir {
                            Ok(dir_entry) => {
                                if !dir_entry.path().is_dir() {
                                    let len_path = match self.dir.to_str() {
                                        Some(str) => str.len(),
                                        None => 0,
                                    };
                                    output.push(
                                        dir_entry.path().display().to_string().as_str()[len_path..]
                                            .to_string(),
                                    )
                                }
                            }
                            Err(error) => self.err_msg = error.to_string(),
                        }
                    }
                    return output;
                }
                Err(error) => {
                    self.err_msg = error.to_string();
                    vec![]
                }
            }
        }
    }
    pub fn file_dir_list(&mut self) -> Vec<String> {
        if !self.dir.is_dir() {
            self.err_msg = String::from(
                "!WARNING! Seems like Given path is file please set path to Directory on given",
            );
            vec![]
        } else {
            match self.dir.read_dir() {
                Ok(read_dir) => {
                    let mut output = vec![];
                    for dir in read_dir {
                        match dir {
                            Ok(dir_entry) => {
                                let len_path = match self.dir.to_str() {
                                    Some(str) => str.len(),
                                    None => 0,
                                };
                                output.push(
                                    dir_entry.path().display().to_string().as_str()[len_path..]
                                        .to_string(),
                                )
                            }
                            Err(error) => self.err_msg = error.to_string(),
                        }
                    }
                    return output;
                }
                Err(error) => {
                    self.err_msg = error.to_string();
                    vec![]
                }
            }
        }
    }
    pub fn query_dir(&mut self, query: &'a str, accurate: bool) -> Vec<String> {
        let mut output = vec![];
        let mut listed_dir = self.dir_list();
        while listed_dir.len() != 0 {
            if accurate {
                match listed_dir.last() {
                    Some(x) => {
                        if x.matches(query).collect::<Vec<&str>>().len() != 0 {
                            output.push(x.to_string());
                            listed_dir.pop()
                        } else {
                            listed_dir.pop()
                        };
                    }
                    None => break,
                }
            } else {
                let char_q: Vec<char> = query.chars().collect();
                match listed_dir.last() {
                    Some(x) => {
                        if x.matches(query).collect::<Vec<&str>>().len() != 0 {
                            output.push(x.to_string());
                            listed_dir.pop()
                        } else {
                            let mut allow = false;
                            for each_char in char_q {
                                if x.matches(each_char).collect::<Vec<&str>>().len() != 0 {
                                    allow = true;
                                } else {
                                    allow = false;
                                    break;
                                }
                            }
                            if allow {
                                output.push(x.to_string());
                            }
                            listed_dir.pop()
                        };
                    }
                    None => break,
                }
            }
        }
        output
    }
    pub fn query_file(&mut self, query: &'a str, accurate: bool) -> Vec<String> {
        let mut output = vec![];
        let mut listed_file = self.file_list();
        while listed_file.len() != 0 {
            if accurate {
                match listed_file.last() {
                    Some(x) => {
                        if x.matches(query).collect::<Vec<&str>>().len() != 0 {
                            output.push(x.to_string());
                            listed_file.pop()
                        } else {
                            listed_file.pop()
                        };
                    }
                    None => break,
                }
            } else {
                let char_q: Vec<char> = query.chars().collect();
                match listed_file.last() {
                    Some(x) => {
                        if x.matches(query).collect::<Vec<&str>>().len() != 0 {
                            output.push(x.to_string());
                            listed_file.pop()
                        } else {
                            let mut allow = false;
                            for each_char in char_q {
                                if x.matches(each_char).collect::<Vec<&str>>().len() != 0 {
                                    allow = true;
                                } else {
                                    allow = false;
                                    break;
                                }
                            }
                            if allow {
                                output.push(x.to_string());
                            }
                            listed_file.pop()
                        };
                    }
                    None => break,
                }
            }
        }
        output
    }
    pub fn query_file_dir(&mut self, query: &'a str, accurate: bool) -> Vec<String> {
        let mut output = vec![];
        let mut listed_file_dir = self.file_dir_list();
        while listed_file_dir.len() != 0 {
            if accurate {
                match listed_file_dir.last() {
                    Some(x) => {
                        if x.matches(query).collect::<Vec<&str>>().len() != 0 {
                            output.push(x.to_string());
                            listed_file_dir.pop()
                        } else {
                            listed_file_dir.pop()
                        };
                    }
                    None => break,
                }
            } else {
                let char_q: Vec<char> = query.chars().collect();
                match listed_file_dir.last() {
                    Some(x) => {
                        if x.matches(query).collect::<Vec<&str>>().len() != 0 {
                            output.push(x.to_string());
                            listed_file_dir.pop()
                        } else {
                            let mut allow = false;
                            for each_char in char_q {
                                if x.matches(each_char).collect::<Vec<&str>>().len() != 0 {
                                    allow = true;
                                } else {
                                    allow = false;
                                    break;
                                }
                            }
                            if allow {
                                output.push(x.to_string());
                            }
                            listed_file_dir.pop()
                        };
                    }
                    None => break,
                }
            }
        }
        output
    }
}