use buffered writes & readers

This commit is contained in:
Marcello 2024-02-14 23:33:59 +01:00
parent 5983d9b587
commit 33aec78b16
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk

View file

@ -1,7 +1,7 @@
use std::{ use std::{
fmt::Display, fmt::Display,
fs::File, fs::File,
io::{Read, Write}, io::{BufRead, BufReader, BufWriter, Read, Write},
}; };
use anyhow::{Context, Result}; use anyhow::{Context, Result};
@ -11,11 +11,14 @@ use serde_json::Value;
fn main() -> Result<()> { fn main() -> Result<()> {
let args = Args::parse(); let args = Args::parse();
let mut reader: Box<dyn Read> = match args.input { let mut reader: Box<dyn BufRead> = match args.input {
Some(ref filename) => Box::new( None => Box::new(std::io::stdin().lock()),
File::open(filename).with_context(|| format!("Could not open file `{filename}`"))?, Some(ref filename) => {
), let file = File::open(filename)
None => Box::new(std::io::stdin()), .with_context(|| format!("Could not open file `{filename}`"))?;
Box::new(BufReader::new(file))
}
}; };
let mut buffer = String::new(); let mut buffer = String::new();
@ -38,9 +41,12 @@ fn main() -> Result<()> {
.join("\n"); .join("\n");
let mut writer: Box<dyn Write> = match args.output { let mut writer: Box<dyn Write> = match args.output {
Some(ref filename) => Box::new( Some(ref filename) => {
File::create(filename).with_context(|| format!("Could not open file `{filename}`"))?, let file = File::create(filename)
), .with_context(|| format!("Could not open file `{filename}`"))?;
Box::new(BufWriter::new(file))
}
None => Box::new(std::io::stdout()), None => Box::new(std::io::stdout()),
}; };