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
mod auto_increment;
mod base;
mod mutable;

use {
	crate::{database::*, Result},
	serde::Serialize,
	std::{fmt::Debug, path::Path},
	thiserror::Error,
	umya_spreadsheet::{new_file_empty_worksheet, reader, writer, Spreadsheet, Worksheet},
};

#[derive(Error, Serialize, Debug, PartialEq)]
pub enum SheetDatabaseError {
	#[error("FSError")]
	FSError,
	#[error("failed to parse column information")]
	FailedColumnParse,
	#[error("failed to create sheet")]
	FailedToCreateSheet,
	#[error("failed to get sheet")]
	FailedToGetSheet,
}

pub struct SheetDatabase {
	book: Spreadsheet,
	path: String,
}

impl DBFull for SheetDatabase {}

impl SheetDatabase {
	pub fn new(path: &str) -> Result<Self> {
		let book =
			reader::xlsx::read(Path::new(path)).unwrap_or_else(|_| new_file_empty_worksheet());
		let path = path.to_string();
		Ok(Self { book, path })
	}
	pub(crate) fn save(&self) -> Result<()> {
		writer::xlsx::write(&self.book, Path::new(&self.path))
			.map_err(|_| SheetDatabaseError::FSError.into())
	}

	pub(crate) fn get_sheet_mut(&mut self, sheet_name: &str) -> Result<&mut Worksheet> {
		self.book
			.get_sheet_by_name_mut(sheet_name)
			.map_err(|_| SheetDatabaseError::FailedToGetSheet.into())
	}
}