use std::env;
use std::fmt;
use std::io;
use std::path;
use directories::ProjectDirs;
use log::*;
use crate::vfs::{self, VFS};
use crate::{Error, Result};
#[derive(Debug)]
pub struct Filesystem {
vfs: vfs::OverlayFS,
resources_path: path::PathBuf,
zip_path: path::PathBuf,
user_config_path: path::PathBuf,
user_data_path: path::PathBuf,
}
pub enum File {
VfsFile(Box<dyn vfs::VFile>),
}
impl fmt::Debug for File {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
File::VfsFile(ref _file) => write!(f, "VfsFile"),
}
}
}
impl io::Read for File {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
match *self {
File::VfsFile(ref mut f) => f.read(buf),
}
}
}
impl io::Write for File {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
match *self {
File::VfsFile(ref mut f) => f.write(buf),
}
}
fn flush(&mut self) -> io::Result<()> {
match *self {
File::VfsFile(ref mut f) => f.flush(),
}
}
}
impl Filesystem {
pub fn new(id: &str, author: &str) -> Result<Filesystem> {
let mut root_path = env::current_exe()?;
if root_path.file_name().is_some() {
let _ = root_path.pop();
}
let mut overlay = vfs::OverlayFS::new();
let mut resources_path;
let mut resources_zip_path;
let user_data_path;
let user_config_path;
let project_dirs = match ProjectDirs::from("", author, id) {
Some(dirs) => dirs,
None => {
return Err(Error::VfsError(String::from(
"No valid home directory path could be retrieved.",
)));
}
};
{
resources_path = root_path.clone();
resources_path.push("resources");
trace!("Resources path: {:?}", resources_path);
let physfs = vfs::PhysicalFS::new(&resources_path, true);
overlay.push(Box::new(physfs));
}
{
resources_zip_path = root_path.clone();
resources_zip_path.push("resources.zip");
if resources_zip_path.exists() {
trace!("Resources zip file: {:?}", resources_zip_path);
let zipfs = vfs::ZipFS::new(&resources_zip_path)?;
overlay.push(Box::new(zipfs));
} else {
trace!("No resources zip file found");
}
}
{
user_data_path = project_dirs.data_local_dir();
trace!("User-local data path: {:?}", user_data_path);
let physfs = vfs::PhysicalFS::new(&user_data_path, true);
overlay.push(Box::new(physfs));
}
{
user_config_path = project_dirs.config_dir();
trace!("User-local configuration path: {:?}", user_config_path);
let physfs = vfs::PhysicalFS::new(&user_config_path, false);
overlay.push(Box::new(physfs));
}
let fs = Filesystem {
vfs: overlay,
resources_path,
zip_path: resources_zip_path,
user_config_path: user_config_path.to_path_buf(),
user_data_path: user_data_path.to_path_buf(),
};
Ok(fs)
}
pub fn open<P: AsRef<path::Path>>(&mut self, path: P) -> Result<File> {
self.vfs.open(path.as_ref()).map(|f| File::VfsFile(f))
}
pub fn open_options<P: AsRef<path::Path>>(
&mut self,
path: P,
options: vfs::OpenOptions,
) -> Result<File> {
self.vfs
.open_options(path.as_ref(), options)
.map(|f| File::VfsFile(f))
.map_err(|e| {
Error::VfsError(format!(
"Tried to open {:?} but got error: {:?}",
path.as_ref(),
e
))
})
}
pub fn create<P: AsRef<path::Path>>(&mut self, path: P) -> Result<File> {
self.vfs.create(path.as_ref()).map(|f| File::VfsFile(f))
}
pub fn create_dir<P: AsRef<path::Path>>(&mut self, path: P) -> Result<()> {
self.vfs.mkdir(path.as_ref())
}
pub fn delete<P: AsRef<path::Path>>(&mut self, path: P) -> Result<()> {
self.vfs.rm(path.as_ref())
}
pub fn delete_dir<P: AsRef<path::Path>>(&mut self, path: P) -> Result<()> {
self.vfs.rmrf(path.as_ref())
}
pub fn exists<P: AsRef<path::Path>>(&self, path: P) -> bool {
self.vfs.exists(path.as_ref())
}
pub fn is_file<P: AsRef<path::Path>>(&self, path: P) -> bool {
self.vfs
.metadata(path.as_ref())
.map(|m| m.is_file())
.unwrap_or(false)
}
pub fn is_dir<P: AsRef<path::Path>>(&self, path: P) -> bool {
self.vfs
.metadata(path.as_ref())
.map(|m| m.is_dir())
.unwrap_or(false)
}
pub fn read_dir<P: AsRef<path::Path>>(
&mut self,
path: P,
) -> Result<Box<dyn Iterator<Item = path::PathBuf>>> {
let itr = self.vfs.read_dir(path.as_ref())?.map(|fname| {
fname.expect("Could not read file in read_dir()? Should never happen, I hope!")
});
Ok(Box::new(itr))
}
fn write_to_string(&mut self) -> String {
use std::fmt::Write;
let mut s = String::new();
for vfs in self.vfs.roots() {
write!(s, "Source {:?}", vfs).expect("Could not write to string; should never happen?");
match vfs.read_dir(path::Path::new("/")) {
Ok(files) => {
for itm in files {
write!(s, " {:?}", itm)
.expect("Could not write to string; should never happen?");
}
}
Err(e) => write!(s, " Could not read source: {:?}", e)
.expect("Could not write to string; should never happen?"),
}
}
s
}
pub fn print_all(&mut self) {
println!("{}", self.write_to_string());
}
pub fn log_all(&mut self) {
info!("{}", self.write_to_string());
}
pub fn mount(&mut self, path: &path::Path, readonly: bool) {
let physfs = vfs::PhysicalFS::new(path, readonly);
trace!("Mounting new path: {:?}", physfs);
self.vfs.push(Box::new(physfs));
}
pub fn add_zip_file<R: io::Read + io::Seek + 'static>(&mut self, reader: R) -> Result<()> {
let zipfs = vfs::ZipFS::from_read(reader)?;
trace!("Adding zip file from reader");
self.vfs.push(Box::new(zipfs));
Ok(())
}
}
#[cfg(test)]
mod tests {
use crate::filesystem::*;
use crate::*;
use std::io::{Read, Write};
use std::path;
fn dummy_fs_for_tests() -> Filesystem {
let mut path = path::PathBuf::from(env!("CARGO_MANIFEST_DIR"));
path.push("resources");
let physfs = vfs::PhysicalFS::new(&path, false);
let mut ofs = vfs::OverlayFS::new();
ofs.push(Box::new(physfs));
Filesystem {
vfs: ofs,
resources_path: "".into(),
zip_path: "".into(),
user_config_path: "".into(),
user_data_path: "".into(),
}
}
#[test]
fn headless_test_file_exists() {
let f = dummy_fs_for_tests();
let tile_file = path::Path::new("/test_file");
assert!(f.exists(tile_file));
assert!(f.is_file(tile_file));
let tile_file = path::Path::new("/oglebog.png");
assert!(!f.exists(tile_file));
assert!(!f.is_file(tile_file));
assert!(!f.is_dir(tile_file));
}
#[test]
fn headless_test_read_dir() {
let mut f = dummy_fs_for_tests();
let dir_contents_size = f.read_dir("/").unwrap().count();
assert!(dir_contents_size > 0);
}
#[test]
fn headless_test_create_delete_file() {
let mut fs = dummy_fs_for_tests();
let test_file = path::Path::new("/testfile.txt");
let bytes = "test".as_bytes();
{
let mut file = fs.create(test_file).unwrap();
let _ = file.write(bytes).unwrap();
}
{
let mut buffer = Vec::new();
let mut file = fs.open(test_file).unwrap();
let _ = file.read_to_end(&mut buffer).unwrap();
assert_eq!(bytes, buffer.as_slice());
}
fs.delete(test_file).unwrap();
}
#[test]
fn headless_test_file_not_found() {
let mut fs = dummy_fs_for_tests();
{
let rel_file = "testfile.txt";
match fs.open(rel_file) {
Err(Error::ResourceNotFound(_, _)) => (),
Err(e) => panic!("Invalid error for opening file with relative path: {:?}", e),
Ok(f) => panic!("Should have gotten an error but instead got {:?}!", f),
}
}
{
match fs.open("/ooglebooglebarg.txt") {
Err(Error::ResourceNotFound(_, _)) => (),
Err(e) => panic!("Invalid error for opening nonexistent file: {}", e),
Ok(f) => panic!("Should have gotten an error but instead got {:?}", f),
}
}
}
}