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
use crate::LibUserResult;
use sunrise_libuser::error::{Error, FileSystemError};
use storage_device::StorageDevice;
use crate::interface::filesystem::*;
use libfat::directory::dir_entry::DirectoryEntry as FatDirectoryEntry;
use libfat::directory::dir_entry_iterator::DirectoryEntryIterator as FatDirectoryEntryIterator;
use super::error::from_driver;
use core::fmt;
use spin::Mutex;
use alloc::sync::Arc;
use alloc::boxed::Box;
use sunrise_libuser::fs::{DirectoryEntry, DirectoryEntryType};
use libfat::FileSystemIterator;
use arrayvec::ArrayString;
pub struct DirectoryFilterPredicate;
impl DirectoryFilterPredicate {
pub fn all(entry: &FatDirectoryEntry) -> bool {
let name = entry.file_name.as_str();
name != "." && name != ".."
}
pub fn dirs(entry: &FatDirectoryEntry) -> bool {
entry.attribute.is_directory() && Self::all(entry)
}
pub fn files(entry: &FatDirectoryEntry) -> bool {
!entry.attribute.is_directory() && Self::all(entry)
}
}
pub struct DirectoryInterface {
base_path: ArrayString<[u8; PATH_LEN]>,
inner_fs: Arc<Mutex<libfat::filesystem::FatFileSystem<Box<dyn StorageDevice<Error = Error> + Send>>>>,
internal_iter: FatDirectoryEntryIterator,
filter_fn: fn(&FatDirectoryEntry) -> bool,
entry_count: u64,
}
impl fmt::Debug for DirectoryInterface {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("DirectoryInterface")
.field("base_path", &&self.base_path[..])
.field("entry_count", &self.entry_count)
.finish()
}
}
impl<'a> DirectoryInterface {
pub fn new(base_path: ArrayString<[u8; PATH_LEN]>, inner_fs: Arc<Mutex<libfat::filesystem::FatFileSystem<Box<dyn StorageDevice<Error = Error> + Send>>>>, internal_iter: FatDirectoryEntryIterator, filter_fn: fn(&FatDirectoryEntry) -> bool, entry_count: u64) -> Self {
DirectoryInterface { base_path, inner_fs, internal_iter, filter_fn, entry_count }
}
fn convert_entry(
fat_dir_entry: FatDirectoryEntry,
base_path: &ArrayString<[u8; PATH_LEN]>,
) -> LibUserResult<DirectoryEntry> {
let mut path_str: ArrayString<[u8; PATH_LEN]> = ArrayString::new();
let file_size = fat_dir_entry.file_size;
let directory_entry_type = if fat_dir_entry.attribute.is_directory() {
DirectoryEntryType::Directory
} else {
DirectoryEntryType::File
};
if path_str.try_push_str(base_path.as_str()).is_err() || path_str.try_push_str(fat_dir_entry.file_name.as_str()).is_err() {
return Err(FileSystemError::InvalidInput.into())
}
let mut path = [0x0; PATH_LEN];
let path_str_slice = path_str.as_bytes();
path[..path_str_slice.len()].copy_from_slice(path_str_slice);
Ok(DirectoryEntry {
path,
attribute: 0,
directory_entry_type,
file_size: u64::from(file_size),
})
}
}
impl DirectoryOperations for DirectoryInterface {
fn read(&mut self, buf: &mut [DirectoryEntry]) -> LibUserResult<u64> {
for (index, entry) in buf.iter_mut().enumerate() {
let mut raw_dir_entry;
loop {
let filesystem = self.inner_fs.lock();
let entry_opt = self.internal_iter.next(&filesystem);
if entry_opt.is_none() {
return Ok(index as u64);
}
raw_dir_entry = entry_opt.unwrap().map_err(from_driver)?;
let filter_fn = self.filter_fn;
if filter_fn(&raw_dir_entry) {
break;
}
}
*entry = Self::convert_entry(
raw_dir_entry,
&self.base_path,
)?;
}
Ok(buf.len() as u64)
}
fn entry_count(&self) -> LibUserResult<u64> {
Ok(self.entry_count)
}
}