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
// Copyright 2019-2024 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0, MIT
use super::*;

use crate::chain_sync::SyncStage;

#[derive(Clone, Serialize, Deserialize, JsonSchema)]
#[schemars(rename = "SyncStage")]
pub struct SyncStageLotusJson(
    #[schemars(with = "String")]
    #[serde(with = "crate::lotus_json::stringify")]
    SyncStage,
);

impl HasLotusJson for SyncStage {
    type LotusJson = SyncStageLotusJson;

    #[cfg(test)]
    fn snapshots() -> Vec<(serde_json::Value, Self)> {
        vec![(json!("idle worker"), Self::Idle)]
    }

    fn into_lotus_json(self) -> Self::LotusJson {
        SyncStageLotusJson(self)
    }

    fn from_lotus_json(SyncStageLotusJson(sync_stage): Self::LotusJson) -> Self {
        sync_stage
    }
}