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
use crate::{AemoFile, FileKeyable, GetFromRawAemo, RawAemoFile, Result};
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct File {
    header: crate::AemoHeader,
    forecast: Vec<RooftopForecast>,
}

impl AemoFile for File {
    fn from_raw(RawAemoFile { header, mut data }: RawAemoFile) -> Result<Self> {
        Ok(Self {
            header,
            forecast: RooftopForecast::from_map(&mut data)?,
        })
    }
}

#[derive(Deserialize, Serialize, Debug, Clone)]
pub struct RooftopForecast {
    #[serde(deserialize_with = "crate::au_datetime_deserialize")]
    version_datetime: chrono::NaiveDateTime,
    regionid: String,
    #[serde(deserialize_with = "crate::au_datetime_deserialize")]
    interval_datetime: chrono::NaiveDateTime,
    powermean: f64,
    powerpoe50: f64,
    powerpoelow: f64,
    powerpoehigh: f64,
    #[serde(deserialize_with = "crate::au_datetime_deserialize")]
    lastchanged: chrono::NaiveDateTime,
}

impl FileKeyable for RooftopForecast {
    fn key() -> crate::FileKey {
        ("ROOFTOP".into(), "FORECAST".into(), 1)
    }
}

impl GetFromRawAemo for RooftopForecast {
    type Output = Self;
}