squawk 2.47.0

Linter for Postgresql focused on database migrations.
use anyhow::Result;
use std::path::PathBuf;

use log::info;

/// Given a list of patterns or paths, along with exclusion patterns, find matching files.
pub fn find_paths(path_patterns: &[String], exclude_patterns: &[String]) -> Result<Vec<PathBuf>> {
    let mut matched_paths = vec![];
    let exclude_paths: Vec<_> = exclude_patterns
        .iter()
        .map(|x| glob::Pattern::new(x))
        .collect::<Result<_, _>>()?;
    for path in path_patterns
        .iter()
        .flat_map(|x| glob::glob(x))
        .flatten()
        .collect::<Result<Vec<_>, _>>()?
    {
        if path.is_dir() {
            info!("skipping directory path: {}", path.display());
            continue;
        }
        if let Some(pattern) = exclude_paths
            .iter()
            .find(|&excluded| excluded.matches(path.to_str().unwrap()))
        {
            info!(
                "skipping excluded file path: {}. pattern: {}",
                path.display(),
                pattern
            );

            continue;
        }
        matched_paths.push(path);
    }
    Ok(matched_paths)
}