aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel <kingdread@gmx.de>2020-04-10 14:25:02 +0200
committerDaniel <kingdread@gmx.de>2020-04-10 14:25:02 +0200
commit3c429432382dfad6d4ac97349c96e4a4eb292089 (patch)
tree56ce917134047b890a15cc46e7f430e823106482 /src
parentde9e9c4d7a0b656b38c17c1a88631ba207419b02 (diff)
downloadraidgrep-3c429432382dfad6d4ac97349c96e4a4eb292089.tar.gz
raidgrep-3c429432382dfad6d4ac97349c96e4a4eb292089.tar.bz2
raidgrep-3c429432382dfad6d4ac97349c96e4a4eb292089.zip
pipeline: accept boxed trait objects
It's kinda silly to have new() be generic when all it does is box the objects anyway. It only makes code harder to write, as we cannot unify the types to call Pipeline::new(), and instead we have to rely on calling Pipeline::new() in the branches themselves. It's not the biggest issue when we only have different formats, but at some point we might want to add different aggregators as well (like a sorting one or a counting one), so it would be bad if we suddenly had to add all those branches. This fix changes that, and we can build the pipeline piecewise by having a Box<dyn Format> around, allowing us to combine it freely with any Box<dyn Aggregator>.
Diffstat (limited to 'src')
-rw-r--r--src/output/mod.rs14
-rw-r--r--src/output/pipeline.rs16
2 files changed, 17 insertions, 13 deletions
diff --git a/src/output/mod.rs b/src/output/mod.rs
index 84ed0a4..aadcbf9 100644
--- a/src/output/mod.rs
+++ b/src/output/mod.rs
@@ -8,18 +8,20 @@ pub mod pipeline;
pub use self::pipeline::Pipeline;
+use self::formats::Format;
/// Build an pipeline for the given command line options.
pub fn build_pipeline(opt: &Opt) -> Pipeline {
let stream = io::stdout();
let aggregator = aggregators::WriteThrough;
- if opt.file_name_only {
- Pipeline::new(stream, formats::FileOnly, aggregator)
+ let format: Box<dyn Format> = if opt.file_name_only {
+ Box::new(formats::FileOnly)
} else {
- let format = formats::HumanReadable {
+ Box::new(formats::HumanReadable {
show_guilds: opt.guilds,
- };
- Pipeline::new(stream, format, aggregator)
- }
+ })
+ };
+
+ Pipeline::new(Box::new(stream), format, Box::new(aggregator))
}
diff --git a/src/output/pipeline.rs b/src/output/pipeline.rs
index fb23a6f..9664928 100644
--- a/src/output/pipeline.rs
+++ b/src/output/pipeline.rs
@@ -1,22 +1,24 @@
-use super::{formats::Format, aggregators::Aggregator};
use super::super::LogResult;
+use super::{aggregators::Aggregator, formats::Format};
use std::{io::Write, sync::Mutex};
-
pub struct Pipeline {
format: Box<dyn Format>,
aggregator: Box<dyn Aggregator>,
writer: Mutex<Box<dyn Write + Send>>,
}
-
impl Pipeline {
- pub fn new<W: Write + 'static + Send, F: Format + 'static, A: Aggregator + 'static>(writer: W, format: F, aggregator: A) -> Pipeline {
+ pub fn new(
+ writer: Box<dyn Write + Send>,
+ format: Box<dyn Format>,
+ aggregator: Box<dyn Aggregator>,
+ ) -> Pipeline {
Pipeline {
- format: Box::new(format),
- aggregator: Box::new(aggregator),
- writer: Mutex::new(Box::new(writer)),
+ format,
+ aggregator,
+ writer: Mutex::new(writer),
}
}