2017-09-23 02:50:41 +08:00
|
|
|
use std::io::prelude::*;
|
|
|
|
use std::io;
|
2017-09-23 05:20:06 +08:00
|
|
|
use std::io::Cursor;
|
2017-09-23 02:50:41 +08:00
|
|
|
use std::str;
|
|
|
|
use byteorder::{LittleEndian, ReadBytesExt};
|
2017-09-23 05:20:06 +08:00
|
|
|
use chrono::{DateTime, Date, TimeZone, Local};
|
|
|
|
|
2017-09-24 01:42:09 +08:00
|
|
|
use fs::FatSharedStateRef;
|
2017-09-23 04:27:39 +08:00
|
|
|
use file::FatFile;
|
2017-09-23 02:50:41 +08:00
|
|
|
|
2017-09-23 05:36:44 +08:00
|
|
|
bitflags! {
|
|
|
|
pub struct FatFileAttributes: u8 {
|
|
|
|
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;
|
|
|
|
}
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub struct FatDirEntry {
|
|
|
|
name: [u8; 11],
|
2017-09-23 05:36:44 +08:00
|
|
|
attrs: FatFileAttributes,
|
2017-09-23 02:50:41 +08:00
|
|
|
reserved_0: u8,
|
2017-09-23 04:27:39 +08:00
|
|
|
create_time_0: u8,
|
|
|
|
create_time_1: u16,
|
|
|
|
create_date: u16,
|
2017-09-23 02:50:41 +08:00
|
|
|
access_date: u16,
|
|
|
|
first_cluster_hi: u16,
|
2017-09-23 04:27:39 +08:00
|
|
|
modify_time: u16,
|
|
|
|
modify_date: u16,
|
2017-09-23 02:50:41 +08:00
|
|
|
first_cluster_lo: u16,
|
|
|
|
size: u32,
|
2017-09-24 01:42:09 +08:00
|
|
|
state: FatSharedStateRef,
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|
|
|
|
|
2017-09-23 04:27:39 +08:00
|
|
|
fn convert_date(dos_date: u16) -> Date<Local> {
|
|
|
|
let (year, month, day) = ((dos_date >> 9) + 1980, (dos_date >> 5) & 0xF, dos_date & 0x1F);
|
|
|
|
Local.ymd(year as i32, month as u32, day as u32)
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|
|
|
|
|
2017-09-23 04:27:39 +08:00
|
|
|
fn convert_date_time(dos_date: u16, dos_time: u16) -> DateTime<Local> {
|
|
|
|
let (hour, min, sec) = (dos_time >> 11, (dos_time >> 5) & 0x3F, (dos_time & 0x1F) * 2);
|
|
|
|
convert_date(dos_date).and_hms(hour as u32, min as u32, sec as u32)
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|
|
|
|
|
2017-09-23 04:27:39 +08:00
|
|
|
impl FatDirEntry {
|
|
|
|
|
|
|
|
pub fn get_name(&self) -> String {
|
2017-09-23 05:36:44 +08:00
|
|
|
str::from_utf8(&self.name).unwrap().trim_right().to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_attrs(&self) -> FatFileAttributes {
|
|
|
|
self.attrs
|
2017-09-23 04:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_cluster(&self) -> u32 {
|
|
|
|
((self.first_cluster_hi as u32) << 16) | self.first_cluster_lo as u32
|
|
|
|
}
|
|
|
|
|
2017-09-24 01:42:09 +08:00
|
|
|
pub fn get_file(&self) -> FatFile {
|
|
|
|
FatFile::new(self.get_cluster(), self.size, self.state.clone())
|
2017-09-23 04:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_size(&self) -> u32 {
|
|
|
|
self.size
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_create_time(&self) -> DateTime<Local> {
|
|
|
|
convert_date_time(self.create_date, self.create_time_1)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_access_date(&self) -> Date<Local> {
|
|
|
|
convert_date(self.access_date)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_modify_time(&self) -> DateTime<Local> {
|
|
|
|
convert_date_time(self.modify_date, self.modify_time)
|
|
|
|
}
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|
|
|
|
|
2017-09-24 01:42:09 +08:00
|
|
|
pub struct FatDir {
|
|
|
|
rdr: Box<Read>,
|
|
|
|
state: FatSharedStateRef,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FatDir {
|
|
|
|
|
|
|
|
pub(crate) fn new(rdr: Box<Read>, state: FatSharedStateRef) -> FatDir {
|
|
|
|
FatDir { rdr, state }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list(&mut self) -> io::Result<Vec<FatDirEntry>> {
|
2017-09-23 02:50:41 +08:00
|
|
|
let mut entries = Vec::new();
|
2017-09-24 01:42:09 +08:00
|
|
|
let cluster_size = self.state.borrow().get_cluster_size() as usize;
|
|
|
|
let mut buf = vec![0; cluster_size];
|
2017-09-23 02:50:41 +08:00
|
|
|
loop {
|
2017-09-24 01:42:09 +08:00
|
|
|
let size = self.rdr.read(&mut buf)?;
|
2017-09-23 06:22:31 +08:00
|
|
|
if size == 0 {
|
|
|
|
break;
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|
2017-09-23 06:22:31 +08:00
|
|
|
|
|
|
|
let mut cur = Cursor::new(&buf[..size]);
|
|
|
|
loop {
|
2017-09-24 01:42:09 +08:00
|
|
|
let entry = self.read_dir_entry(&mut cur)?;
|
2017-09-23 06:22:31 +08:00
|
|
|
if entry.name[0] == 0 {
|
|
|
|
break; // end of dir
|
|
|
|
}
|
|
|
|
if entry.name[0] == 0xE5 {
|
|
|
|
continue; // deleted
|
|
|
|
}
|
|
|
|
entries.push(entry);
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|
|
|
|
}
|
2017-09-23 06:22:31 +08:00
|
|
|
|
2017-09-23 02:50:41 +08:00
|
|
|
Ok(entries)
|
|
|
|
}
|
2017-09-24 01:42:09 +08:00
|
|
|
|
|
|
|
fn read_dir_entry(&self, rdr: &mut Read) -> io::Result<FatDirEntry> {
|
|
|
|
let mut name = [0; 11];
|
|
|
|
rdr.read(&mut name)?;
|
|
|
|
Ok(FatDirEntry {
|
|
|
|
name: name,
|
|
|
|
attrs: FatFileAttributes::from_bits(rdr.read_u8()?).unwrap(),
|
|
|
|
reserved_0: rdr.read_u8()?,
|
|
|
|
create_time_0: rdr.read_u8()?,
|
|
|
|
create_time_1: rdr.read_u16::<LittleEndian>()?,
|
|
|
|
create_date: rdr.read_u16::<LittleEndian>()?,
|
|
|
|
access_date: rdr.read_u16::<LittleEndian>()?,
|
|
|
|
first_cluster_hi: rdr.read_u16::<LittleEndian>()?,
|
|
|
|
modify_time: rdr.read_u16::<LittleEndian>()?,
|
|
|
|
modify_date: rdr.read_u16::<LittleEndian>()?,
|
|
|
|
first_cluster_lo: rdr.read_u16::<LittleEndian>()?,
|
|
|
|
size: rdr.read_u32::<LittleEndian>()?,
|
|
|
|
state: self.state.clone(),
|
|
|
|
})
|
|
|
|
}
|
2017-09-23 02:50:41 +08:00
|
|
|
}
|