simino 1.0.0

Batch rename utility for developers
Documentation
use crate::cli;
use anyhow::Result;
use regex::Regex;
use std::collections::HashMap;
use std::fs;
use std::path::{Path, MAIN_SEPARATOR};

#[derive(PartialEq)]
pub enum SortOrder {
    Asc,
    Desc,
}

pub enum Source {
    Regex(Regex, usize, Option<usize>),
    Map(Vec<(String, String)>),
    Sort(SortOrder),
}

impl Source {
    pub fn new_regex(
        pattern: &str,
        depth: Option<usize>,
        max_depth: Option<usize>,
    ) -> Result<Self> {
        Ok(Self::Regex(
            Regex::new(pattern)?,
            depth.unwrap_or(pattern.chars().filter(|c| *c == MAIN_SEPARATOR).count() + 1),
            max_depth,
        ))
    }

    pub fn new_map(filename: &Path) -> Result<Self> {
        let contents = fs::read_to_string(filename)?;
        Ok(Self::Map(serde_json::from_str(contents.as_str()).map(
            |map: HashMap<String, String>| map.into_iter().collect(),
        )?))
    }

    pub fn new_sort(order: cli::Order) -> Result<Self> {
        Ok(Self::Sort(match order {
            cli::Order::Asc => SortOrder::Asc,
            cli::Order::Desc => SortOrder::Desc,
        }))
    }
}