This is a generic log file Fill Ingredient crate for use with rettle
ETL. This crate uses nom as the parser library to allow any project to define how it wants to parse logs by supplying a custom built parser.
```rust
struct LogTea { log_type: String, datetime: String, msg: String, }
impl Tea for LogTea { fn as_any(&self) -> &dyn Any { self } }
// Custom parser setup. fn logtype(input: &str) -> IResult<&str, &str> { delimited(char('['), isnot("]"), char(']'))(input) }
fn datetime(input: &str) -> IResult<&str, &str> { take(19u8)(input) }
fn msg(input: &str) -> IResult<&str, &str> { notlineending(input) }
fn parselog(input: &str) -> IResult<&str, LogTea> { // Parse log attributes. let (input, logtype) = log_type(input)?; let (input, _) = tag(" - ")(input)?; let (input, datetime) = datetime(input)?; let (input, _) = space1(input)?; let (input, msg) = msg(input)?;
// Convert &str to String
let log_type = String::from(log_type);
let datetime = String::from(datetime);
let msg = String::from(msg);
Ok((input, LogTea { log_type, datetime, msg }))
}
fn main() { let testfilllogarg = FillLogArg::new("fixtures/log.LOG", 50, parse_log);
let brewery = Brewery::new(4, Instant::now());
let fill_logtea = FillLogTea::new::<LogTea>("log_tea_source", "log_fixture", test_fill_logarg);
let new_pot = Pot::new()
.add_source(fill_logtea);
// Steep/Pour operations of choice
new_pot.brew(&brewery);
} ```