djal_parser 0.1.1

A library to parse configuration files
Documentation
use std::{fmt::Display};

use crate::{
    error_handling::{FileReadingError, ParsingError},
    read::read_file,
};
pub struct Entry {
    name: String,
    content: String,
    line: usize
}

impl Entry {
    pub fn name(&self) -> &String {
        &self.name
    }

    pub fn content(&self) -> &String {
        &self.content
    }

    pub fn line_number(&self) -> usize {
        self.line
    }
}

impl Display for Entry {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Key : {} \nContent : {}", self.name(), self.content())
    }
}

pub fn parse_file(path: &str) -> Result<Vec<Entry>, FileReadingError> {
    let block_result = read_file(path);
    let mut block = String::new();
    if let Ok(b) = block_result {
        block = b;
    } else if let Err(e) = block_result {
        return Err(FileReadingError::new(path.to_string(), e.to_string()));
    }

    let mut entries: Vec<Entry> = Vec::new();
    for (line_number, line) in block.lines().enumerate() {
        let mut in_text: bool = false;
        let trimmed_line: String = line
            .chars()
            .filter(|c| {
                if *c == '"' {
                    in_text = !in_text;
                }
                !c.is_whitespace() || in_text
            })
            .collect();
        let (without_comment, _) = trimmed_line.split_once("!!").unwrap_or((&trimmed_line, ""));
        let mut name: String = String::new();
        let mut value: String = String::new();

        for element in without_comment.split(':') {
            if name.is_empty() {
                name = String::from(element);
                continue;
            } else if value.is_empty() {
                value = String::from(element);
                continue;
            } else {
                return Err(FileReadingError::from(ParsingError::new(
                    path.to_string(),
                    String::from("Too many arguments on single line"),
                    line_number,
                )));
            }
        }
        if !name.is_empty() {
            entries.push(Entry {
                name,
                content: value,
                line: line_number
            });
        }
    }

    Ok(entries)
}