improve help, implement From trait, remove getters

master
Mathias Rothenhaeusler 2023-08-05 17:55:41 +02:00
parent 43a25a8ec9
commit ec59af73f2
3 changed files with 27 additions and 46 deletions

View File

@ -3,18 +3,18 @@ use clap::Parser;
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)] #[command(author, version, about, long_about = None)]
pub struct MyArgs { pub struct MyArgs {
#[arg(name = "source")] // Define the argument without a short or long version #[arg(name = "source", help = "First file of the comparision.")]
pub source: String, pub source: String,
#[arg(name = "compare")] // Define the argument without a short or long version #[arg(name = "compare", help = "Second file of the comparision.")]
pub compare: String, pub compare: String,
#[arg(short, long)] #[arg(short, long, help = "Column which is base of the comparision.")]
pub column: usize, pub column: usize,
#[arg(short, long)] #[arg(short, long, help = "Optional output filename.")]
pub output: Option<String>, pub output: Option<String>,
#[arg(short, long, default_value_t = ';'.to_string())] #[arg(short, long, default_value_t = ';'.to_string(), help = "Column separator.")]
pub delimiter: String, pub delimiter: String,
} }

View File

@ -9,46 +9,27 @@ use super::args::MyArgs;
#[derive(Debug)] #[derive(Debug)]
pub struct Params { pub struct Params {
delimiter: String, pub delimiter: String,
source: String, pub source: String,
compared: String, pub compared: String,
column: usize, pub column: usize,
output: Option<String>, pub output: Option<String>,
} }
impl Params { impl From<MyArgs> for Params {
pub fn new_from_matches(matches: MyArgs) -> Self {
Self { fn from(matches: MyArgs) -> Self {
Params {
delimiter: matches.delimiter, delimiter: matches.delimiter,
source: matches.source, source: matches.source,
compared: matches.compare, compared: matches.compare,
column: matches.column, column: matches.column,
output: { output: {
let this = matches.output; let this = matches.output;
this.map(|x| x.to_string()) this.map(|x| ToString::to_string(&x))
}, },
} }
} }
pub fn delimiter(&self) -> &String {
&self.delimiter
}
pub fn source(&self) -> &String {
&self.source
}
pub fn compared(&self) -> &String {
&self.compared
}
pub fn column(&self) -> usize {
self.column
}
pub fn output_mut(&mut self) -> &Option<String> {
&self.output
}
} }
pub struct CsvLine { pub struct CsvLine {
@ -88,7 +69,11 @@ pub fn write_to_file(filename: String, diff: Vec<CsvLine>) {
} }
} }
pub fn compare(reader: BufReader<File>, reader2: BufReader<File>, params: &Params) -> Result<Vec<CsvLine>, String> { pub fn compare(
reader: BufReader<File>,
reader2: BufReader<File>,
params: &Params,
) -> Result<Vec<CsvLine>, String> {
let vec1: Vec<CsvLine> = reader let vec1: Vec<CsvLine> = reader
.lines() .lines()
.map(|line| { .map(|line| {
@ -120,7 +105,7 @@ pub fn compare(reader: BufReader<File>, reader2: BufReader<File>, params: &Param
fn find_diff(vec1: &[CsvLine], vec2: &[CsvLine], params: &Params) -> Result<Vec<CsvLine>, String> { fn find_diff(vec1: &[CsvLine], vec2: &[CsvLine], params: &Params) -> Result<Vec<CsvLine>, String> {
let mut diff: Vec<CsvLine> = Vec::new(); let mut diff: Vec<CsvLine> = Vec::new();
for i in vec1.iter() { for i in vec1.iter() {
let splitter: Vec<&str> = i.line.split(params.delimiter()).collect(); let splitter: Vec<&str> = i.line.split(&params.delimiter).collect();
if splitter.len() <= params.column { if splitter.len() <= params.column {
return Err("Column out of bound".to_string()); return Err("Column out of bound".to_string());
} }
@ -128,8 +113,8 @@ fn find_diff(vec1: &[CsvLine], vec2: &[CsvLine], params: &Params) -> Result<Vec<
let found = !matches!( let found = !matches!(
vec2.iter().position(|r| { vec2.iter().position(|r| {
let splitter_b: Vec<&str> = r.line.split(params.delimiter()).collect(); let splitter_b: Vec<&str> = r.line.split(&params.delimiter).collect();
let search = splitter_b[params.column()]; let search = splitter_b[params.column];
search == value search == value
}), }),
None None

View File

@ -8,17 +8,13 @@ use csv::compare;
use crate::csv::args::MyArgs; use crate::csv::args::MyArgs;
use crate::csv::compare::{write_to_file, Params}; use crate::csv::compare::{write_to_file, Params};
/// # Panics
///
/// Panics if delimter is set wrong and column to compare
/// is not available.
fn main() { fn main() {
let args = MyArgs::parse(); let args = MyArgs::parse();
let mut params: Params = Params::new_from_matches(args); let params: Params = Params::from(args);
let file: File = { let file: File = {
let this = File::open(params.source()); let this = File::open(&params.source);
match this { match this {
Ok(file) => file, Ok(file) => file,
Err(e) => { Err(e) => {
@ -28,7 +24,7 @@ fn main() {
} }
}; };
let file2 = { let file2 = {
let this = File::open(params.compared()); let this = File::open(&params.compared);
match this { match this {
Ok(file) => file, Ok(file) => file,
Err(e) => { Err(e) => {
@ -49,7 +45,7 @@ fn main() {
} }
}; };
let option_string_ref: &Option<String> = params.output_mut(); let option_string_ref: Option<String> = params.output;
if let Some(string_ref) = option_string_ref { if let Some(string_ref) = option_string_ref {
write_to_file(string_ref.clone(), diff); write_to_file(string_ref.clone(), diff);
} }