// Copyright (c) 2017-2019, scoobybejesus // Redistributions must include the license: https://github.com/scoobybejesus/cryptools/blob/master/LEGAL.txt use std::error::Error; use std::collections::{HashMap}; use crptls::transaction::{Transaction, ActionRecord}; use crptls::account::{Account, RawAccount}; use crptls::core_functions::{ImportProcessParameters}; use crate::export_csv; use crate::export_txt; pub (crate) const REPORTS: [&'static str; 9] = [ "1. CSV: Account Sums", "2. CSV: Account Sums (Non-zero only)", "3. CSV: Account Sums (Orig. basis vs like-kind basis)", "4. CSV: Transactions by movement (every movement)", "5. CSV: Transactions by movement (summarized by long-term/short-term)", "6. CSV: Transactions by movement (every movement, w/ orig. and like-kind basis", "7. TXT: Accounts by lot (every movement)", "8. TXT: Accounts by lot (every lot balance)", "9. TXT: Accounts by lot (every non-zero lot balance)", ]; pub struct ListState { pub items: Vec, pub selected: usize, } impl ListState { fn new(items: Vec) -> ListState { ListState { items, selected: 0 } } fn select_previous(&mut self) { if self.selected > 0 { self.selected -= 1; } } fn select_next(&mut self) { if self.selected < self.items.len() - 1 { self.selected += 1 } } } pub struct PrintWindow<'a> { pub title: &'a str, pub should_quit: bool, pub tasks: ListState<(&'a str)>, pub to_print: Vec, } impl<'a> PrintWindow<'a> { pub fn new(title: &'a str) -> PrintWindow<'a> { PrintWindow { title, should_quit: false, tasks: ListState::new(REPORTS.to_vec()), to_print: Vec::with_capacity(REPORTS.len() + 3), } } pub fn on_up(&mut self) { self.tasks.select_previous(); } pub fn on_down(&mut self) { self.tasks.select_next(); } pub fn on_key(&mut self, c: char) { match c { 'q' => { self.to_print = Vec::with_capacity(0); self.should_quit = true; } 'p' => { Self::change_vec_to_chrono_order_and_dedup(&mut self.to_print); self.should_quit = true; } 'x' => { self.to_print.push(self.tasks.selected) } _ => {} } } fn change_vec_to_chrono_order_and_dedup(vec: &mut Vec) { let length = vec.len(); for _ in 0..length { for j in 0..length-1 { if vec[j] > vec[j+1] { vec.swap(j, j+1) } } } vec.dedup(); } } pub fn export( app: &PrintWindow, settings: &ImportProcessParameters, action_records_map: &HashMap, raw_acct_map: &HashMap, account_map: &HashMap, transactions_map: &HashMap, ) -> Result<(), Box> { let reports = REPORTS.to_vec(); for report in app.to_print.iter() { println!("Exporting: {}", reports[*report]); match report + 1 { 1 => { export_csv::_1_account_sums_to_csv( &settings, &raw_acct_map, &account_map ); } 2 => { export_csv::_2_account_sums_nonzero_to_csv( &account_map, &settings, &raw_acct_map ); } 3 => { export_csv::_3_account_sums_to_csv_with_orig_basis( &settings, &raw_acct_map, &account_map ); } 4 => { export_csv::_4_transaction_mvmt_detail_to_csv( &settings, &action_records_map, &raw_acct_map, &account_map, &transactions_map )?; } 5 => { export_csv::_5_transaction_mvmt_summaries_to_csv( &settings, &action_records_map, &raw_acct_map, &account_map, &transactions_map )?; } 6 => { export_csv::_6_transaction_mvmt_detail_to_csv_w_orig( &settings, &action_records_map, &raw_acct_map, &account_map, &transactions_map )?; } 7 => { export_txt::_1_account_lot_detail_to_txt( &settings, &raw_acct_map, &account_map, &transactions_map, &action_records_map )?; } 8 => { export_txt::_2_account_lot_summary_to_txt( &settings, &raw_acct_map, &account_map, )?; } 9 => { export_txt::_3_account_lot_summary_non_zero_to_txt( &settings, &raw_acct_map, &account_map, )?; } _ => {} } } Ok(()) }