rust-fatfs/src/dir.rs

400 lines
12 KiB
Rust
Raw Normal View History

2017-09-24 06:05:43 +08:00
use std::ascii::AsciiExt;
2017-09-24 09:08:00 +08:00
use std::fmt;
use std::io::prelude::*;
use std::io;
use std::io::{Cursor, ErrorKind, SeekFrom};
use byteorder::{LittleEndian, ReadBytesExt};
2017-10-06 22:42:29 +08:00
#[cfg(feature = "chrono")]
use chrono::{TimeZone, Local};
#[cfg(feature = "chrono")]
use chrono;
2017-09-23 05:20:06 +08:00
use fs::{FileSystemRef, DiskSlice};
use file::File;
#[derive(Clone)]
2017-10-07 21:00:27 +08:00
pub(crate) enum DirRawStream<'a, 'b: 'a> {
File(File<'a, 'b>),
Root(DiskSlice<'a, 'b>),
}
2017-10-07 21:00:27 +08:00
impl <'a, 'b> Read for DirRawStream<'a, 'b> {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
match self {
2017-10-07 21:00:27 +08:00
&mut DirRawStream::File(ref mut file) => file.read(buf),
&mut DirRawStream::Root(ref mut raw) => raw.read(buf),
}
}
}
2017-10-07 21:00:27 +08:00
impl <'a, 'b> Seek for DirRawStream<'a, 'b> {
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
match self {
2017-10-07 21:00:27 +08:00
&mut DirRawStream::File(ref mut file) => file.seek(pos),
&mut DirRawStream::Root(ref mut raw) => raw.seek(pos),
}
}
}
2017-09-23 05:36:44 +08:00
bitflags! {
#[derive(Default)]
pub struct FileAttributes: u8 {
2017-09-23 05:36:44 +08:00
const READ_ONLY = 0x01;
const HIDDEN = 0x02;
const SYSTEM = 0x04;
const VOLUME_ID = 0x08;
const DIRECTORY = 0x10;
const ARCHIVE = 0x20;
const LFN = Self::READ_ONLY.bits | Self::HIDDEN.bits
| Self::SYSTEM.bits | Self::VOLUME_ID.bits;
}
}
#[allow(dead_code)]
#[derive(Clone, Debug, Default)]
struct DirFileEntryData {
name: [u8; 11],
attrs: FileAttributes,
reserved_0: u8,
2017-09-23 04:27:39 +08:00
create_time_0: u8,
create_time_1: u16,
create_date: u16,
access_date: u16,
first_cluster_hi: u16,
2017-09-23 04:27:39 +08:00
modify_time: u16,
modify_date: u16,
first_cluster_lo: u16,
size: u32,
}
#[allow(dead_code)]
#[derive(Clone, Debug, Default)]
struct DirLfnEntryData {
order: u8,
name_0: [u16; 5],
attrs: FileAttributes,
entry_type: u8,
checksum: u8,
name_1: [u16; 6],
reserved_0: u16,
name_2: [u16; 2],
}
#[derive(Clone, Debug)]
enum DirEntryData {
File(DirFileEntryData),
Lfn(DirLfnEntryData),
}
2017-09-24 09:08:00 +08:00
#[derive(Clone)]
pub struct DirEntry<'a, 'b: 'a> {
data: DirFileEntryData,
lfn: Vec<u16>,
fs: FileSystemRef<'a, 'b>,
}
#[derive(Clone, Copy, Debug)]
pub struct Date {
2017-10-06 22:42:29 +08:00
pub year: u16,
pub month: u16,
pub day: u16,
}
impl Date {
2017-10-06 22:42:29 +08:00
pub(crate) fn from_word(dos_date: u16) -> Self {
let (year, month, day) = ((dos_date >> 9) + 1980, (dos_date >> 5) & 0xF, dos_date & 0x1F);
Date { year, month, day }
2017-10-06 22:42:29 +08:00
}
}
#[derive(Clone, Copy, Debug)]
pub struct Time {
pub hour: u16,
pub min: u16,
pub sec: u16,
}
impl Time {
2017-10-06 22:42:29 +08:00
pub(crate) fn from_word(dos_time: u16) -> Self {
let (hour, min, sec) = (dos_time >> 11, (dos_time >> 5) & 0x3F, (dos_time & 0x1F) * 2);
Time { hour, min, sec }
2017-10-06 22:42:29 +08:00
}
}
#[derive(Clone, Copy, Debug)]
pub struct DateTime {
pub date: Date,
pub time: Time,
}
impl DateTime {
2017-10-06 22:42:29 +08:00
pub(crate) fn from_words(dos_date: u16, dos_time: u16) -> Self {
DateTime {
date: Date::from_word(dos_date),
time: Time::from_word(dos_time),
2017-10-06 22:42:29 +08:00
}
}
}
#[cfg(feature = "chrono")]
impl From<Date> for chrono::Date<Local> {
fn from(date: Date) -> Self {
2017-10-06 22:42:29 +08:00
Local.ymd(date.year as i32, date.month as u32, date.day as u32)
}
}
#[cfg(feature = "chrono")]
impl From<DateTime> for chrono::DateTime<Local> {
fn from(date_time: DateTime) -> Self {
chrono::Date::<Local>::from(date_time.date)
2017-10-06 22:42:29 +08:00
.and_hms(date_time.time.hour as u32, date_time.time.min as u32, date_time.time.sec as u32)
}
}
impl <'a, 'b> DirEntry<'a, 'b> {
pub fn short_file_name(&self) -> String {
let name_str = String::from_utf8_lossy(&self.data.name[0..8]);
let ext_str = String::from_utf8_lossy(&self.data.name[8..11]);
let name_trimmed = name_str.trim_right();
let ext_trimmed = ext_str.trim_right();
if ext_trimmed.is_empty() {
name_trimmed.to_string()
} else {
format!("{}.{}", name_trimmed, ext_trimmed)
}
2017-09-23 05:36:44 +08:00
}
pub fn file_name(&self) -> String {
if self.lfn.len() > 0 {
String::from_utf16_lossy(&self.lfn)
} else {
self.short_file_name()
}
}
pub fn attributes(&self) -> FileAttributes {
2017-09-24 09:08:00 +08:00
self.data.attrs
2017-09-23 04:27:39 +08:00
}
2017-09-24 06:05:43 +08:00
pub fn is_dir(&self) -> bool {
self.data.attrs.contains(FileAttributes::DIRECTORY)
2017-09-24 06:05:43 +08:00
}
pub fn is_file(&self) -> bool {
!self.is_dir()
}
pub(crate) fn first_cluster(&self) -> Option<u32> {
let n = ((self.data.first_cluster_hi as u32) << 16) | self.data.first_cluster_lo as u32;
if n == 0 { None } else { Some(n) }
2017-09-23 04:27:39 +08:00
}
pub fn to_file(&self) -> File<'a, 'b> {
2017-09-24 06:05:43 +08:00
if self.is_dir() {
panic!("This is a directory");
}
File::new(self.first_cluster(), Some(self.data.size), self.fs)
2017-09-23 04:27:39 +08:00
}
pub fn to_dir(&self) -> Dir<'a, 'b> {
2017-09-24 06:05:43 +08:00
if !self.is_dir() {
panic!("This is a file");
}
let file = File::new(self.first_cluster(), None, self.fs);
2017-10-07 21:00:27 +08:00
Dir::new(DirRawStream::File(file), self.fs)
2017-09-24 06:05:43 +08:00
}
pub fn len(&self) -> u64 {
self.data.size as u64
2017-09-23 04:27:39 +08:00
}
pub fn created(&self) -> DateTime {
DateTime::from_words(self.data.create_date, self.data.create_time_1)
2017-09-23 04:27:39 +08:00
}
pub fn accessed(&self) -> Date {
Date::from_word(self.data.access_date)
2017-09-24 09:08:00 +08:00
}
pub fn modified(&self) -> DateTime {
DateTime::from_words(self.data.modify_date, self.data.modify_time)
2017-09-24 09:08:00 +08:00
}
}
impl <'a, 'b> fmt::Debug for DirEntry<'a, 'b> {
2017-09-24 09:08:00 +08:00
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
self.data.fmt(f)
2017-09-23 04:27:39 +08:00
}
}
#[derive(Clone)]
pub struct Dir<'a, 'b: 'a> {
2017-10-07 21:00:27 +08:00
rdr: DirRawStream<'a, 'b>,
fs: FileSystemRef<'a, 'b>,
}
impl <'a, 'b> Dir<'a, 'b> {
2017-10-07 21:00:27 +08:00
pub(crate) fn new(rdr: DirRawStream<'a, 'b>, fs: FileSystemRef<'a, 'b>) -> Dir<'a, 'b> {
Dir { rdr, fs }
}
pub fn iter(&self) -> DirIter<'a, 'b> {
DirIter {
rdr: self.rdr.clone(),
fs: self.fs.clone(),
err: false,
}
}
fn split_path<'c>(path: &'c str) -> (&'c str, Option<&'c str>) {
let mut path_split = path.trim_matches('/').splitn(2, "/");
let comp = path_split.next().unwrap();
let rest_opt = path_split.next();
(comp, rest_opt)
}
fn find_entry(&mut self, name: &str) -> io::Result<DirEntry<'a, 'b>> {
for r in self.iter() {
let e = r?;
if e.file_name().eq_ignore_ascii_case(name) {
return Ok(e);
}
}
Err(io::Error::new(ErrorKind::NotFound, "file not found"))
}
pub fn open_dir(&mut self, path: &str) -> io::Result<Dir<'a, 'b>> {
let (name, rest_opt) = Self::split_path(path);
let e = self.find_entry(name)?;
match rest_opt {
Some(rest) => e.to_dir().open_dir(rest),
None => Ok(e.to_dir())
}
}
pub fn open_file(&mut self, path: &str) -> io::Result<File<'a, 'b>> {
let (name, rest_opt) = Self::split_path(path);
let e = self.find_entry(name)?;
match rest_opt {
Some(rest) => e.to_dir().open_file(rest),
None => Ok(e.to_file())
}
}
}
#[derive(Clone)]
pub struct DirIter<'a, 'b: 'a> {
2017-10-07 21:00:27 +08:00
rdr: DirRawStream<'a, 'b>,
fs: FileSystemRef<'a, 'b>,
err: bool,
}
impl <'a, 'b> DirIter<'a, 'b> {
fn read_dir_entry_data(&mut self) -> io::Result<DirEntryData> {
let mut name = [0; 11];
self.rdr.read(&mut name)?;
let attrs = FileAttributes::from_bits(self.rdr.read_u8()?).expect("invalid attributes"); // FIXME
if attrs == FileAttributes::LFN {
let mut data = DirLfnEntryData {
attrs, ..Default::default()
};
let mut cur = Cursor::new(&name);
data.order = cur.read_u8()?;
cur.read_u16_into::<LittleEndian>(&mut data.name_0)?;
data.entry_type = self.rdr.read_u8()?;
data.checksum = self.rdr.read_u8()?;
self.rdr.read_u16_into::<LittleEndian>(&mut data.name_1)?;
data.reserved_0 = self.rdr.read_u16::<LittleEndian>()?;
self.rdr.read_u16_into::<LittleEndian>(&mut data.name_2)?;
Ok(DirEntryData::Lfn(data))
} else {
let data = DirFileEntryData {
name,
attrs,
reserved_0: self.rdr.read_u8()?,
create_time_0: self.rdr.read_u8()?,
create_time_1: self.rdr.read_u16::<LittleEndian>()?,
create_date: self.rdr.read_u16::<LittleEndian>()?,
access_date: self.rdr.read_u16::<LittleEndian>()?,
first_cluster_hi: self.rdr.read_u16::<LittleEndian>()?,
modify_time: self.rdr.read_u16::<LittleEndian>()?,
modify_date: self.rdr.read_u16::<LittleEndian>()?,
first_cluster_lo: self.rdr.read_u16::<LittleEndian>()?,
size: self.rdr.read_u32::<LittleEndian>()?,
};
Ok(DirEntryData::File(data))
}
}
}
2017-09-24 08:24:42 +08:00
impl <'a, 'b> Iterator for DirIter<'a, 'b> {
type Item = io::Result<DirEntry<'a, 'b>>;
2017-09-24 08:24:42 +08:00
2017-10-02 03:31:44 +08:00
fn next(&mut self) -> Option<Self::Item> {
if self.err {
return None;
}
let mut lfn_buf = Vec::<u16>::new();
2017-09-24 08:24:42 +08:00
loop {
2017-09-24 09:08:00 +08:00
let res = self.read_dir_entry_data();
let data = match res {
Ok(data) => data,
Err(err) => {
self.err = true;
return Some(Err(err));
},
2017-09-24 08:24:42 +08:00
};
match data {
DirEntryData::File(data) => {
// Check if this is end of dif
if data.name[0] == 0 {
return None;
}
// Check if this is deleted or volume ID entry
if data.name[0] == 0xE5 || data.attrs.contains(FileAttributes::VOLUME_ID) {
lfn_buf.clear();
continue;
}
// Truncate 0 and 0xFFFF characters from LFN buffer
let mut lfn_len = lfn_buf.len();
loop {
if lfn_len == 0 {
break;
}
match lfn_buf[lfn_len-1] {
0xFFFF | 0 => lfn_len -= 1,
_ => break,
}
}
lfn_buf.truncate(lfn_len);
return Some(Ok(DirEntry {
data,
lfn: lfn_buf,
fs: self.fs,
}));
},
DirEntryData::Lfn(data) => {
// Check if this is deleted entry
if data.order == 0xE5 {
lfn_buf.clear();
continue;
}
const LFN_PART_LEN: usize = 13;
let index = (data.order & 0x1F) - 1;
let pos = LFN_PART_LEN * index as usize;
// resize LFN buffer to have enough space for entire name
if lfn_buf.len() < pos + LFN_PART_LEN {
lfn_buf.resize(pos + LFN_PART_LEN, 0);
}
// copy name parts into LFN buffer
lfn_buf[pos+0..pos+5].clone_from_slice(&data.name_0);
lfn_buf[pos+5..pos+11].clone_from_slice(&data.name_1);
lfn_buf[pos+11..pos+13].clone_from_slice(&data.name_2);
}
};
2017-09-24 08:24:42 +08:00
}
}
}