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
use serde::{Deserialize, Serialize};
use time::OffsetDateTime;
use std::{
fs::File,
path::{Path, PathBuf},
};
use crate::CobbleResult;
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct LogFile {
pub name: String,
pub path: PathBuf,
pub _type: LogFileType,
pub modified: Option<OffsetDateTime>,
}
impl LogFile {
pub fn extract(&self, target: impl AsRef<Path>) -> CobbleResult<PathBuf> {
match self._type {
LogFileType::Plain => Ok(self.path.clone()),
LogFileType::Compressed => {
let file = File::open(&self.path)?;
let mut archive = zip::ZipArchive::new(file)?;
let mut log_file = archive.by_index(0)?;
let target_path = PathBuf::from(target.as_ref());
if log_file.is_file() {
let mut target_file = File::create(&target_path)?;
std::io::copy(&mut log_file, &mut target_file)?;
}
Ok(target_path)
}
}
}
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub enum LogFileType {
Plain,
Compressed,
}