1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
use std::collections::HashMap;

use chrono_tz::Tz;
use clap::ArgMatches;

use crate::chopper::chopper::{ChopperDriver, Source};
use crate::chopper::header_graph::{HeaderChain, HeaderGraph, HeaderNode};
use crate::chopper::types::{Header, TimestampRange};
use crate::cli_app::CliApp;
use crate::driver::{driver::Driver, merge_join::MergeJoin};
use crate::error::{self, CliResult};
use crate::input::input_factory::InputFactory;
use crate::source::csv_configs::{CSVInputConfig, CSVOutputConfig, TimestampConfig, TimestampCol};
use crate::source::source_factory::SourceFactory;
use crate::transport::transport_factory::TransportFactory;
use crate::util::{csv_util, timestamp_util};
use crate::write::factory;

pub fn chopper_cli(transport_factories: Option<Vec<Box<dyn TransportFactory>>>,
                   source_factories: Option<Vec<Box<dyn SourceFactory>>>,
                   timezone_map: Option<HashMap<&str, Tz>>) -> CliResult<()>
{
    let mut driver = parse_cli_args(transport_factories, source_factories, timezone_map)?;
    driver.drive()
}

pub fn parse_cli_args(transport_factories: Option<Vec<Box<dyn TransportFactory>>>,
                      source_factories: Option<Vec<Box<dyn SourceFactory>>>,
                      timezone_map: Option<HashMap<&str, Tz>>) -> CliResult<Box<dyn ChopperDriver>>
{
    let matches = CliApp.create_cli_app().get_matches();
    if matches.is_present("backtrace") {
        error::turn_on_backtrace()
    }

    let timezone: Tz = match matches.value_of("timezone") {
        None => timestamp_util::DEFAULT_ZONE,
        Some(t) =>  match timezone_map {
            None => t.parse().unwrap(),
            Some(map) => match map.get(t) {
                None => t.parse().unwrap(),
                Some(tz) => *tz
            }
        }
    };
    let timestamp_range= TimestampRange::new(
        matches.value_of("begin"),
        matches.value_of("end"),
        timezone)?;

    let inputs = match matches.values_of("input") {
        None => None,
        Some(i) => {
            let mut inputs_vec: Vec<&str> = Vec::new();
            for s in i {
                inputs_vec.push(s);
            }
            Some(inputs_vec)
        },
    };
    let outputs = match matches.value_of("output") {
        None => None,
        Some(s) => Some(s)
    };

    // csv only
    let csv_input_config = parse_csv_config(&matches, timezone)?;
    let output_delimiter = matches.value_of("csv_output_delimiter").unwrap();
    let print_timestamp = match matches.value_of("csv_print_ts").unwrap() {
        "auto" => None,
        "true" => Some(true),
        "false" => Some(false),
        _ => unreachable!()
    };

    setup_graph(inputs,
                outputs,
                transport_factories,
                source_factories,
                timestamp_range,
                csv_input_config,
                output_delimiter,
                print_timestamp)
}

fn setup_graph(inputs: Option<Vec<&str>>,
               output: Option<&str>,
               transport_factories: Option<Vec<Box<dyn TransportFactory>>>,
               source_factories: Option<Vec<Box<dyn SourceFactory>>>,
               timestamp_range: TimestampRange,
               csv_input_config: CSVInputConfig,
               csv_output_delimiter: &str,
               csv_output_print_timestamp: Option<bool>) -> CliResult<Box<dyn ChopperDriver>>
{
    // get sources and headers
    let mut sources: Vec<Box<dyn Source>> = Vec::new();
    let mut headers: Vec<Header> = Vec::new();
    let mut input_factory
        = InputFactory::new(
        Some(csv_input_config),
        source_factories,
        transport_factories)?;

    let csv_output_config = match csv_output_print_timestamp {
        Some(b) => CSVOutputConfig::new(csv_output_delimiter, b),
        None => csv_util::create_csv_output_config_from_source(&mut sources, csv_output_delimiter)
    };

    let mut header_nodes: Vec<HeaderNode> = Vec::new();
    let mut chains: Vec<HeaderChain> = Vec::new();
    match inputs {
        Some(inputs) => {
            for i in 0..inputs.len() {
                let source = input_factory.create_source_from_path(inputs.get(i).unwrap())?;
                headers.push(source.header().clone());
                sources.push(source);
                // add Merge to chains if multiple input files
                if inputs.len() > 1 {
                    let merge = HeaderNode::Merge(inputs.len(), i);
                    let chain = HeaderChain::new(vec![merge]);
                    chains.push(chain);
                }
            }
            // add MergeHeaderSink as first header node if multiple input files
            if inputs.len() > 1 {
                let merge = MergeJoin::new(inputs.len())?;
                let num_of_header_to_process = merge.num_of_header_to_process();
                let node_merge_sink = HeaderNode::MergeHeaderSink(merge, num_of_header_to_process);
                header_nodes.push(node_merge_sink);
            }
        }
        None => {
            // default source factory is csv
            let source
                = input_factory.create_source_from_stdin("csv")?;
            headers.push(source.header().clone());
            sources.push(source);
        }
    }
    let header_sink = factory::new_header_sink(output, Some(csv_output_config))?;
    let node_hs = HeaderNode::HeaderSink(header_sink);
    header_nodes.push(node_hs);
    chains.push(HeaderChain::new(header_nodes));
    let graph = HeaderGraph::new(chains);

    Ok(Box::new(Driver::new(sources, graph, timestamp_range, headers)?))
}

fn parse_csv_config(matches: &ArgMatches, timezone: Tz) -> CliResult<CSVInputConfig> {
    let input_delimiter = matches.value_of("csv_input_delimiter").unwrap();
    let has_header = matches.is_present("csv_has_header");

    // timestamp config
    let mut ts_fmt: Option<String> = None;
    let ts_col = match matches.value_of("csv_ts_col_date") {
        None => {
            // format
            match matches.value_of("csv_ts_fmt") {
                None => (),
                Some(fmt) => ts_fmt = Some(fmt.to_string())
            }
            // col
            let ts = matches.value_of("csv_ts_col").unwrap();
            TimestampCol::Timestamp(ts.parse::<usize>().unwrap())
        },
        Some(d) => {
            // format
            match matches.value_of("csv_ts_fmt_date") {
                None => (),
                Some(d) => {
                    let t = matches.value_of("csv_ts_fmt_time").unwrap();
                    ts_fmt = Some(format!("{}{}", d, t))
                }
            };
            // col
            let date = d.parse::<usize>().unwrap();
            let time = match matches.value_of("csv_ts_col_time") {
                Some(t) => t.parse::<usize>().unwrap(),
                None => unreachable!()
            };
            TimestampCol::DateAndTime(date, time)
        }
    };
    let ts_config = TimestampConfig::new(ts_col, ts_fmt, timezone);

    CSVInputConfig::new(input_delimiter, has_header, ts_config)
}