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
// use std::fmt::{Debug, Formatter};
//
// use log::error;
//
// use crate::fs::path::SPath;
// use crate::fs::read_error::ListError;
// use crate::widgets::list_widget::provider::ListItemProvider;
//
// #[derive(Debug)]
// pub struct SPathListItemProvider {
// spath: SPath,
// }
//
// impl SPathListItemProvider {
// pub fn new(spath: SPath) -> Self {
// Self {
// spath
// }
// }
// }
//
// impl ListItemProvider<SPath> for SPathListItemProvider {
// fn iter(&self) -> Box<dyn Iterator<Item=&SPath> + '_> {
// if self.spath.is_dir() {
// match self.spath.blocking_list() {
// Ok(items) => {
// Box::new(items.into_iter().map(|d| &d))
// }
// Err(e) => {
// error!("failed listing {:?}", self.spath);
// Box::new(std::iter::empty())
// }
// }
// } else {
// Box::new(std::iter::empty())
// }
// }
// }
//
//
// #[derive(Debug)]
// pub struct SPathListFilesItemProvider {
// spath: SPath,
// }
//
// impl SPathListFilesItemProvider {
// pub fn new(spath: SPath) -> Self {
// Self {
// spath
// }
// }
// }
//
// impl ListItemProvider<SPath> for SPathListFilesItemProvider {
// fn iter(&self) -> Box<dyn Iterator<Item=&SPath> + '_> {
// if self.spath.is_dir() {
// match self.spath.blocking_list() {
// Ok(items) => {
// Box::new(items.into_iter().filter(|i| i.is_file()))
// }
// Err(e) => {
// error!("failed listing {:?}", self.spath);
// Box::new(std::iter::empty())
// }
// }
// } else {
// Box::new(std::iter::empty())
// }
// }
// }