replace (ScanError, PathBuf) with just ScanError (which now contains a PathBuf)
This commit is contained in:
parent
c270383e6f
commit
32da919f81
4 changed files with 20 additions and 16 deletions
|
@ -14,7 +14,7 @@ use crate::{Findings, BACKEND};
|
||||||
const VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");
|
const VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");
|
||||||
|
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
type Entries = [Result<Findings, (ScanError, PathBuf)>];
|
type Entries = [Result<Findings, ScanError>];
|
||||||
|
|
||||||
enum Writable<'a> {
|
enum Writable<'a> {
|
||||||
String(&'a str),
|
String(&'a str),
|
||||||
|
@ -86,11 +86,11 @@ pub trait Format {
|
||||||
|
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
// something went wrong 0uo
|
// something went wrong 0uo
|
||||||
match error.0 {
|
match error {
|
||||||
// failed to read the file
|
// failed to read the file
|
||||||
ScanError::File => self.unreadable(f, &error.1)?,
|
ScanError::File(path) => self.unreadable(f, path)?,
|
||||||
// file was read successfully, but we couldn't determine a mimetype
|
// file was read successfully, but we couldn't determine a mimetype
|
||||||
ScanError::Mime => self.unknown_type(f, &error.1)?,
|
ScanError::Mime(path) => self.unknown_type(f, path)?,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
12
src/main.rs
12
src/main.rs
|
@ -116,7 +116,7 @@ fn main() {
|
||||||
r.recommended_extension().unwrap_or_else(|| "???".into())
|
r.recommended_extension().unwrap_or_else(|| "???".into())
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
Err(f) => warn!("{:#?}: Error 0uo - {}", f.1, f.0),
|
Err(f) => warn!("Error 0uo - {}", f),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -191,26 +191,26 @@ fn extension_from_path(path: &Path) -> Option<String> {
|
||||||
map(|e| String::from(e.to_string_lossy())) // Convert from OsStr to String
|
map(|e| String::from(e.to_string_lossy())) // Convert from OsStr to String
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Inspects the given entry, returning a [Findings] on success and a tuple of [ScanError] and [PathBuf] on failure.
|
/// Inspects the given entry, returning a [Findings] on success and a [ScanError] on failure.
|
||||||
///
|
///
|
||||||
/// In the event of an IO error, the returned ScanError will be of type [ScanError::File]. Otherwise, a
|
/// In the event of an IO error, the returned ScanError will be of type [ScanError::File]. Otherwise, a
|
||||||
/// [ScanError::Mime] will be returned, meaning that the file was scanned successfully, but a mimetype could not be
|
/// [ScanError::Mime] will be returned, meaning that the file was scanned successfully, but a mimetype could not be
|
||||||
/// determined.
|
/// determined.
|
||||||
fn scan_file(entry: &DirEntry) -> Result<Findings, (ScanError, PathBuf)> {
|
fn scan_file(entry: &DirEntry) -> Result<Findings, ScanError> {
|
||||||
// try to determine mimetype for this entry
|
// try to determine mimetype for this entry
|
||||||
let result = inspectors::mime_type(MIMEDB.get().unwrap(), entry.path());
|
let result = inspectors::mime_type(MIMEDB.get().unwrap(), entry.path());
|
||||||
|
|
||||||
if result.is_err() {
|
if result.is_err() {
|
||||||
// an error occurred while trying to read the file
|
// an error occurred while trying to read the file
|
||||||
// error!("{}: {}", entry.path().to_string_lossy(), error);
|
// error!("{}: {}", entry.path().to_string_lossy(), error);
|
||||||
return Err((ScanError::File, entry.path().to_path_buf()));
|
return Err(ScanError::File(entry.path().to_path_buf()));
|
||||||
}
|
}
|
||||||
|
|
||||||
let result = result.unwrap();
|
let result = result.unwrap();
|
||||||
if result.is_none() {
|
if result.is_none() {
|
||||||
// the file was read successfully, but we were unable to determine its mimetype
|
// the file was read successfully, but we were unable to determine its mimetype
|
||||||
// warn!("Couldn't determine mimetype for {}", entry.path().to_string_lossy());
|
// warn!("Couldn't determine mimetype for {}", entry.path().to_string_lossy());
|
||||||
return Err((ScanError::Mime, entry.path().to_path_buf()));
|
return Err(ScanError::Mime(entry.path().to_path_buf()));
|
||||||
}
|
}
|
||||||
|
|
||||||
let result = result.unwrap();
|
let result = result.unwrap();
|
||||||
|
@ -235,7 +235,7 @@ fn scan_file(entry: &DirEntry) -> Result<Findings, (ScanError, PathBuf)> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Takes a slice of [DirEntry]s and calls [scan_file] on each one, returning the results in a vector.
|
/// Takes a slice of [DirEntry]s and calls [scan_file] on each one, returning the results in a vector.
|
||||||
fn scan_from_walkdir(entries: &[DirEntry]) -> Vec<Result<Findings, (ScanError, PathBuf)>> {
|
fn scan_from_walkdir(entries: &[DirEntry]) -> Vec<Result<Findings, ScanError>> {
|
||||||
cfg_if! {
|
cfg_if! {
|
||||||
if #[cfg(feature = "multi-threaded")] {
|
if #[cfg(feature = "multi-threaded")] {
|
||||||
// rather than using a standard par_iter, split the entries into chunks of 32 first.
|
// rather than using a standard par_iter, split the entries into chunks of 32 first.
|
||||||
|
|
|
@ -27,7 +27,7 @@ pub struct Parameters {
|
||||||
)]
|
)]
|
||||||
pub exts: Option<Vec<SmartString<LazyCompact>>>,
|
pub exts: Option<Vec<SmartString<LazyCompact>>>,
|
||||||
|
|
||||||
/// write good docs 0uo
|
/// Use a preset list of extensions as the search filter
|
||||||
#[clap(short = 'E', long, arg_enum, required_unless_present = "exts")]
|
#[clap(short = 'E', long, arg_enum, required_unless_present = "exts")]
|
||||||
pub ext_set: Option<ExtensionSet>,
|
pub ext_set: Option<ExtensionSet>,
|
||||||
|
|
||||||
|
|
|
@ -1,21 +1,25 @@
|
||||||
use std::fmt::{Display, Formatter, Result};
|
use std::fmt::{Display, Formatter, Result};
|
||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum ScanError {
|
pub enum ScanError {
|
||||||
/// Something went wrong while trying to read the given file.
|
/// Something went wrong while trying to read the given file.
|
||||||
File,
|
File(PathBuf),
|
||||||
/// Failed to determine the mimetype of the given file.
|
/// Failed to determine the mimetype of the given file.
|
||||||
Mime,
|
Mime(PathBuf),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Display for ScanError {
|
impl Display for ScanError {
|
||||||
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
|
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
|
||||||
write!(
|
write!(
|
||||||
f,
|
f,
|
||||||
"{}",
|
"Couldn't {} file: {}",
|
||||||
match self {
|
match self {
|
||||||
Self::File => "Couldn't read file",
|
Self::File(_) => "read",
|
||||||
Self::Mime => "Couldn't determine mime type",
|
Self::Mime(_) => "determine mime type of",
|
||||||
|
},
|
||||||
|
match self {
|
||||||
|
Self::File(f) | Self::Mime(f) => f.to_string_lossy()
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue