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
use std::path;
use users::UsersCache;
use crate::args::Args;
use crate::completion::{Completion, InputCompleted};
use crate::config::Colors;
use crate::content_window::ContentWindow;
use crate::fileinfo::{FileInfo, FileKind, PathContent};
use crate::filter::FilterKind;
use crate::fm_error::{FmError, FmResult};
use crate::input::Input;
use crate::mode::Mode;
use crate::preview::{Directory, Preview};
use crate::selectable_content::SelectableContent;
use crate::shortcut::Shortcut;
use crate::visited::History;
pub struct Tab {
pub mode: Mode,
pub previous_mode: Mode,
pub window: ContentWindow,
pub input: Input,
pub path_content: PathContent,
pub height: usize,
pub show_hidden: bool,
pub completion: Completion,
pub must_quit: bool,
pub preview: Preview,
pub history: History,
pub shortcut: Shortcut,
pub searched: Option<String>,
pub directory: Directory,
pub filter: FilterKind,
}
impl Tab {
pub fn new(args: Args, height: usize, users_cache: UsersCache) -> FmResult<Self> {
let path = std::fs::canonicalize(path::Path::new(&args.path))?;
let directory = Directory::empty(&path, &users_cache)?;
let filter = FilterKind::All;
let show_hidden = false;
let path_content = PathContent::new(&path, users_cache, &filter, show_hidden)?;
let show_hidden = false;
let mode = Mode::Normal;
let previous_mode = Mode::Normal;
let window = ContentWindow::new(path_content.content.len(), height);
let input = Input::default();
let completion = Completion::default();
let must_quit = false;
let preview = Preview::Empty;
let mut history = History::default();
history.push(&path);
let shortcut = Shortcut::new();
let searched = None;
Ok(Self {
mode,
previous_mode,
window,
input,
path_content,
height,
completion,
must_quit,
preview,
history,
shortcut,
searched,
directory,
filter,
show_hidden,
})
}
pub fn fill_completion(&mut self) -> FmResult<()> {
match self.mode {
Mode::InputCompleted(InputCompleted::Goto) => {
let current_path = self.path_content_str().unwrap_or_default().to_owned();
self.completion.goto(&self.input.string(), ¤t_path)
}
Mode::InputCompleted(InputCompleted::Exec) => {
self.completion.exec(&self.input.string())
}
Mode::InputCompleted(InputCompleted::Search)
if matches!(self.previous_mode, Mode::Normal) =>
{
self.completion
.search_from_normal(&self.input.string(), &self.path_content)
}
Mode::InputCompleted(InputCompleted::Search)
if matches!(self.previous_mode, Mode::Tree) =>
{
self.completion
.search_from_tree(&self.input.string(), &self.directory.content)
}
Mode::InputCompleted(InputCompleted::Command) => {
self.completion.command(&self.input.string())
}
_ => Ok(()),
}
}
pub fn refresh_view(&mut self) -> FmResult<()> {
self.filter = FilterKind::All;
self.input.reset();
self.path_content
.reset_files(&self.filter, self.show_hidden)?;
self.window.reset(self.path_content.content.len());
self.preview = Preview::new_empty();
self.completion.reset();
self.directory.clear();
Ok(())
}
pub fn go_to_child(&mut self) -> FmResult<()> {
let childpath = &self
.path_content
.selected()
.ok_or_else(|| FmError::custom("go_to_child", "Empty directory"))?
.path
.clone();
self.history.push(childpath);
self.set_pathcontent(childpath)?;
self.window.reset(self.path_content.content.len());
self.input.cursor_start();
Ok(())
}
pub fn set_height(&mut self, height: usize) {
self.window.set_height(height);
self.height = height;
}
pub fn must_quit(&self) -> bool {
self.must_quit
}
pub fn path_content_str(&self) -> Option<&str> {
self.path_content.path.to_str()
}
pub fn set_pathcontent(&mut self, path: &path::Path) -> FmResult<()> {
self.history.push(path);
self.path_content
.change_directory(path, &self.filter, self.show_hidden)?;
self.window.reset(self.path_content.content.len());
std::env::set_current_dir(path)?;
Ok(())
}
pub fn set_window(&mut self) {
let len = self.path_content.content.len();
self.window.reset(len);
}
pub fn set_filter(&mut self, filter: FilterKind) {
self.filter = filter
}
pub fn scroll_to(&mut self, index: usize) {
self.window.scroll_to(index);
}
pub fn find_jump_index(&self, jump_target: &path::Path) -> Option<usize> {
self.path_content
.content
.iter()
.position(|file| file.path == jump_target)
}
pub fn refresh_shortcuts(&mut self, mount_points: &[&path::Path]) {
self.shortcut.refresh(mount_points)
}
pub fn go_to_index(&mut self, index: usize) {
self.path_content.select_index(index);
self.window.scroll_to(index);
}
pub fn refresh_users(&mut self, users_cache: UsersCache) -> FmResult<()> {
self.path_content
.refresh_users(users_cache, &self.filter, self.show_hidden)
}
pub fn search_from(&mut self, searched_name: &str, current_index: usize) {
let mut found = false;
let mut next_index = current_index;
for (index, file) in self.path_content.enumerate().skip(current_index) {
if file.filename.contains(searched_name) {
next_index = index;
found = true;
break;
};
}
if found {
self.go_to_index(next_index);
return;
}
for (index, file) in self.path_content.enumerate().take(current_index) {
if file.filename.contains(searched_name) {
next_index = index;
found = true;
break;
};
}
if found {
self.go_to_index(next_index)
}
}
pub fn tree_select_root(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
self.directory.select_root(colors)
}
pub fn move_to_parent(&mut self) -> FmResult<()> {
let path = self.path_content.path.clone();
let Some(parent) = path.parent() else { return Ok(()) };
self.set_pathcontent(parent)
}
pub fn tree_select_parent(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
if self.directory.tree.position.len() <= 1 {
self.move_to_parent()?;
self.make_tree(colors)?
}
self.directory.select_parent(colors)
}
pub fn tree_page_down(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
self.directory.page_down(colors)
}
pub fn tree_page_up(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
self.directory.page_up(colors)
}
pub fn tree_select_next(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
self.directory.select_next(colors)
}
pub fn tree_select_prev(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
self.directory.select_prev(colors)
}
pub fn tree_select_first_child(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
self.directory.select_first_child(colors)
}
pub fn tree_go_to_bottom_leaf(&mut self, colors: &Colors) -> FmResult<()> {
self.directory.unselect_children();
self.directory.go_to_bottom_leaf(colors)
}
pub fn current_path(&mut self) -> &path::Path {
match self.mode {
Mode::Tree => &self.directory.tree.current_node.fileinfo.path,
_ => &self.path_content.path,
}
}
pub fn directory_of_selected(&self) -> FmResult<&path::Path> {
match self.mode {
Mode::Tree => {
let fileinfo = &self.directory.tree.current_node.fileinfo;
match fileinfo.file_kind {
FileKind::Directory => Ok(&self.directory.tree.current_node.fileinfo.path),
_ => Ok(fileinfo.path.parent().ok_or_else(|| {
FmError::custom("path of selected", "selected file should have a parent")
})?),
}
}
_ => Ok(&self.path_content.path),
}
}
pub fn selected(&self) -> Option<&FileInfo> {
match self.mode {
Mode::Tree => Some(&self.directory.tree.current_node.fileinfo),
_ => self.path_content.selected(),
}
}
pub fn make_tree(&mut self, colors: &Colors) -> FmResult<()> {
let path = self.path_content.path.clone();
let users_cache = &self.path_content.users_cache;
self.directory = Directory::new(
&path,
users_cache,
colors,
&self.filter,
self.show_hidden,
None,
)?;
Ok(())
}
pub fn set_mode(&mut self, new_mode: Mode) {
self.previous_mode = self.mode;
self.mode = new_mode;
}
pub fn reset_mode(&mut self) {
self.mode = self.previous_mode;
self.previous_mode = Mode::Normal;
}
pub fn need_second_window(&self) -> bool {
!matches!(self.mode, Mode::Normal | Mode::Tree | Mode::Preview)
}
}