mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-06 19:45:29 +00:00
improve extension parsing logic
This commit is contained in:
parent
a7ed9fcc60
commit
a9f2e614ed
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -560,6 +560,7 @@ version = "0.4.0"
|
||||
dependencies = [
|
||||
"assert_cmd",
|
||||
"atty",
|
||||
"bstr 1.1.0",
|
||||
"bzip2",
|
||||
"clap",
|
||||
"clap_complete",
|
||||
|
@ -12,6 +12,7 @@ description = "A command-line utility for easily compressing and decompressing f
|
||||
|
||||
[dependencies]
|
||||
atty = "0.2.14"
|
||||
bstr = "1.1.0"
|
||||
bzip2 = "0.4.3"
|
||||
clap = { version = "4.0.32", features = ["derive", "env"] }
|
||||
filetime = "0.2.19"
|
||||
|
@ -259,7 +259,7 @@ pub fn run(
|
||||
let mut formats = vec![];
|
||||
|
||||
for path in files.iter() {
|
||||
let (_, file_formats) = extension::separate_known_extensions_from_name(path);
|
||||
let file_formats = extension::extensions_from_path(path);
|
||||
formats.push(file_formats);
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,8 @@
|
||||
//! Our representation of all the supported compression formats.
|
||||
|
||||
use std::{ffi::OsStr, fmt, path::Path};
|
||||
use std::{fmt, path::Path};
|
||||
|
||||
use bstr::ByteSlice;
|
||||
|
||||
use self::CompressionFormat::*;
|
||||
use crate::warning;
|
||||
@ -104,54 +106,61 @@ pub const SUPPORTED_EXTENSIONS: &[&str] = &[
|
||||
"zst",
|
||||
];
|
||||
|
||||
pub fn to_extension(ext: &[u8]) -> Option<Extension> {
|
||||
Some(Extension::new(
|
||||
match ext {
|
||||
b"tar" => &[Tar],
|
||||
b"tgz" => &[Tar, Gzip],
|
||||
b"tbz" | b"tbz2" => &[Tar, Bzip],
|
||||
b"tlz4" => &[Tar, Lz4],
|
||||
b"txz" | b"tlzma" => &[Tar, Lzma],
|
||||
b"tsz" => &[Tar, Snappy],
|
||||
b"tzst" => &[Tar, Zstd],
|
||||
b"zip" => &[Zip],
|
||||
b"bz" | b"bz2" => &[Bzip],
|
||||
b"gz" => &[Gzip],
|
||||
b"lz4" => &[Lz4],
|
||||
b"xz" | b"lzma" => &[Lzma],
|
||||
b"sz" => &[Snappy],
|
||||
b"zst" => &[Zstd],
|
||||
_ => return None,
|
||||
},
|
||||
ext.to_str_lossy(),
|
||||
))
|
||||
}
|
||||
|
||||
pub fn split_extension<'a>(name: &mut &'a [u8]) -> Option<&'a [u8]> {
|
||||
let (new_name, ext) = name.rsplit_once_str(b".")?;
|
||||
if matches!(new_name, b"" | b"." | b"..") {
|
||||
return None;
|
||||
}
|
||||
*name = new_name;
|
||||
Some(ext)
|
||||
}
|
||||
|
||||
/// Extracts extensions from a path.
|
||||
///
|
||||
/// Returns both the remaining path and the list of extension objects
|
||||
pub fn separate_known_extensions_from_name(mut path: &Path) -> (&Path, Vec<Extension>) {
|
||||
pub fn separate_known_extensions_from_name(path: &Path) -> (&Path, Vec<Extension>) {
|
||||
let mut extensions = vec![];
|
||||
|
||||
if let Some(file_stem) = path.file_stem().and_then(OsStr::to_str) {
|
||||
let file_stem = file_stem.trim_matches('.');
|
||||
let Some(mut name) = path.file_name().and_then(<[u8] as ByteSlice>::from_os_str) else {
|
||||
return (path, extensions);
|
||||
};
|
||||
|
||||
// While there is known extensions at the tail, grab them
|
||||
while let Some(extension) = split_extension(&mut name).and_then(to_extension) {
|
||||
extensions.insert(0, extension);
|
||||
}
|
||||
|
||||
if let Ok(name) = name.to_str() {
|
||||
let file_stem = name.trim_matches('.');
|
||||
if SUPPORTED_EXTENSIONS.contains(&file_stem) {
|
||||
warning!("Received a file with name '{file_stem}', but {file_stem} was expected as the extension.");
|
||||
}
|
||||
}
|
||||
|
||||
// While there is known extensions at the tail, grab them
|
||||
while let Some(extension) = path.extension().and_then(OsStr::to_str) {
|
||||
let formats: &[CompressionFormat] = match extension {
|
||||
"tar" => &[Tar],
|
||||
"tgz" => &[Tar, Gzip],
|
||||
"tbz" | "tbz2" => &[Tar, Bzip],
|
||||
"tlz4" => &[Tar, Lz4],
|
||||
"txz" | "tlzma" => &[Tar, Lzma],
|
||||
"tsz" => &[Tar, Snappy],
|
||||
"tzst" => &[Tar, Zstd],
|
||||
"zip" => &[Zip],
|
||||
"bz" | "bz2" => &[Bzip],
|
||||
"gz" => &[Gzip],
|
||||
"lz4" => &[Lz4],
|
||||
"xz" | "lzma" => &[Lzma],
|
||||
"sz" => &[Snappy],
|
||||
"zst" => &[Zstd],
|
||||
_ => break,
|
||||
};
|
||||
|
||||
let extension = Extension::new(formats, extension);
|
||||
extensions.push(extension);
|
||||
|
||||
// Update for the next iteration
|
||||
path = if let Some(stem) = path.file_stem() {
|
||||
Path::new(stem)
|
||||
} else {
|
||||
Path::new("")
|
||||
};
|
||||
}
|
||||
// Put the extensions in the correct order: left to right
|
||||
extensions.reverse();
|
||||
|
||||
(path, extensions)
|
||||
(name.to_path().unwrap(), extensions)
|
||||
}
|
||||
|
||||
/// Extracts extensions from a path, return only the list of extension objects
|
||||
|
Loading…
x
Reference in New Issue
Block a user