leo-package 1.0.7

Package parser of the Leo programming language
Documentation
// Copyright (C) 2019-2020 Aleo Systems Inc.
// This file is part of the Leo library.

// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.

use crate::errors::InputsDirectoryError;

use std::{
    borrow::Cow,
    fs,
    fs::ReadDir,
    path::{Path, PathBuf},
};

pub static INPUTS_DIRECTORY_NAME: &str = "inputs/";

pub struct InputsDirectory;

impl InputsDirectory {
    /// Creates a directory at the provided path with the default directory name.
    pub fn create(path: &Path) -> Result<(), InputsDirectoryError> {
        let mut path = Cow::from(path);
        if path.is_dir() && !path.ends_with(INPUTS_DIRECTORY_NAME) {
            path.to_mut().push(INPUTS_DIRECTORY_NAME);
        }

        fs::create_dir_all(&path).map_err(InputsDirectoryError::Creating)
    }

    /// Returns a list of files in the input directory.
    pub fn files(path: &Path) -> Result<Vec<PathBuf>, InputsDirectoryError> {
        let mut path = path.to_owned();
        path.push(INPUTS_DIRECTORY_NAME);
        let directory = fs::read_dir(&path).map_err(InputsDirectoryError::Reading)?;

        let mut file_paths = Vec::new();
        parse_file_paths(directory, &mut file_paths)?;

        Ok(file_paths)
    }
}

fn parse_file_paths(directory: ReadDir, file_paths: &mut Vec<PathBuf>) -> Result<(), InputsDirectoryError> {
    for file_entry in directory.into_iter() {
        let file_entry = file_entry.map_err(InputsDirectoryError::GettingFileEntry)?;
        let file_path = file_entry.path();

        // Verify that the entry is structured as a valid file or directory
        let file_type = file_entry
            .file_type()
            .map_err(|error| InputsDirectoryError::GettingFileType(file_path.as_os_str().to_owned(), error))?;
        if file_type.is_dir() {
            let directory = fs::read_dir(&file_path).map_err(InputsDirectoryError::Reading)?;

            parse_file_paths(directory, file_paths)?;
            continue;
        } else if !file_type.is_file() {
            return Err(InputsDirectoryError::InvalidFileType(
                file_path.as_os_str().to_owned(),
                file_type,
            ));
        }

        file_paths.push(file_path);
    }

    Ok(())
}