use std::io::ErrorKind;
use chrono::prelude::*;
use crate::scanner_rust::{generic_array::typenum::U52, ScannerAscii, ScannerError};
#[inline]
pub fn get_rtc_date_time() -> Result<NaiveDateTime, ScannerError> {
let mut sc: ScannerAscii<_, U52> = ScannerAscii::scan_path2("/proc/driver/rtc")?;
sc.drop_next_bytes("rtc_time".len())?.ok_or(ErrorKind::UnexpectedEof)?;
sc.drop_next_until(": ")?.ok_or(ErrorKind::UnexpectedEof)?;
let hour = sc.next_u32_until(":")?.ok_or(ErrorKind::UnexpectedEof)?;
let minute = sc.next_u32_until(":")?.ok_or(ErrorKind::UnexpectedEof)?;
let second = sc.next_u32()?.ok_or(ErrorKind::UnexpectedEof)?;
sc.drop_next_bytes("rtc_time".len())?.ok_or(ErrorKind::UnexpectedEof)?;
sc.drop_next_until(": ")?.ok_or(ErrorKind::UnexpectedEof)?;
let year = sc.next_i32_until("-")?.ok_or(ErrorKind::UnexpectedEof)?;
let month = sc.next_u32_until("-")?.ok_or(ErrorKind::UnexpectedEof)?;
let date = sc.next_u32()?.ok_or(ErrorKind::UnexpectedEof)?;
Ok(NaiveDateTime::new(
NaiveDate::from_ymd_opt(year, month, date).unwrap(),
NaiveTime::from_hms_opt(hour, minute, second).unwrap(),
))
}