feco3 0.5.0

A library for working with .fec files
Documentation
//! The second section of an .FEC file (after the header, before the itemizations)
//! is the cover line
//! This is a single line with summary information about the file.
//!
//! See the test case .fec files for examples.
use crate::record::Record;
use crate::schemas::{LineParser, LiteralLineParser};
use crate::Error;

/// The cover line in an FecFile.
///
/// See
/// [https://github.com/NickCrews/feco3/wiki](https://github.com/NickCrews/feco3/wiki)
/// for more info.
#[derive(Debug, Clone, Default)]
pub struct Cover {
    /// What form is this .fec file, eg "F3X"
    pub form_type: String,
    /// Who filed this .fec file, eg "C00101766"
    pub filer_committee_id: String,
}

pub fn parse_cover_line<'a>(
    fec_version: &str,
    line: &mut impl Iterator<Item = &'a String>,
) -> Result<Cover, Error> {
    let mut cover = Cover::default();
    let line = line.collect::<Vec<&String>>();
    log::debug!("parsing cover line {} {:?}", fec_version, line);
    let record = LiteralLineParser.parse_line(fec_version, &mut line.into_iter())?;
    cover.form_type = record.record_code.clone();
    cover.filer_committee_id = get(&record, "filer_committee_id_number")?;
    log::debug!("parsed cover line {:?}", cover);
    Ok(cover)
}

fn get(record: &Record, field_name: &str) -> Result<String, Error> {
    Ok(record
        .get_value(field_name)
        .ok_or(Error::CoverParseError(format!(
            "no '{}' in cover line",
            field_name
        )))?
        .to_string())
}