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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// Copyright 2019-2024 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0, MIT

use std::sync::Arc;

use crate::blocks::Tipset;
use crate::shim::clock::ChainEpoch;
#[cfg(test)]
use chrono::TimeZone;
use chrono::{DateTime, Duration, Utc};

/// Current state of the `ChainSyncer` using the `ChainExchange` protocol.
#[derive(PartialEq, Eq, Debug, Clone, Copy, strum::Display, strum::EnumString)]
#[cfg_attr(test, derive(derive_quickcheck_arbitrary::Arbitrary))]
pub enum SyncStage {
    /// Idle state.
    #[strum(to_string = "idle worker")]
    Idle,
    /// Syncing headers from the heaviest tipset to genesis.
    #[strum(to_string = "header sync")]
    Headers,
    /// Persisting headers on chain from heaviest to genesis.
    #[strum(to_string = "persisting headers")]
    PersistHeaders,
    /// Syncing messages and performing state transitions.
    #[strum(to_string = "message sync")]
    Messages,
    /// `ChainSync` completed and is following chain.
    #[strum(to_string = "complete")]
    Complete,
    #[cfg_attr(test, arbitrary(skip))]
    /// Error has occurred while syncing.
    #[strum(to_string = "error")]
    Error,
}

impl Default for SyncStage {
    fn default() -> Self {
        Self::Headers
    }
}

/// State of the node's syncing process.
/// This state is different from the general state of the `ChainSync` process.
#[derive(Clone, Debug, Default, PartialEq)]
#[cfg_attr(test, derive(derive_quickcheck_arbitrary::Arbitrary))]
pub struct SyncState {
    base: Option<Arc<Tipset>>,
    target: Option<Arc<Tipset>>,

    stage: SyncStage,
    epoch: ChainEpoch,

    #[cfg_attr(test, arbitrary(gen(maybe_epoch0)))]
    start: Option<DateTime<Utc>>,
    #[cfg_attr(test, arbitrary(gen(maybe_epoch0)))]
    end: Option<DateTime<Utc>>,
    message: String,
}

#[cfg(test)]
fn maybe_epoch0(g: &mut quickcheck::Gen) -> Option<DateTime<Utc>> {
    match quickcheck::Arbitrary::arbitrary(g) {
        true => None,
        false => Some(Utc.timestamp_nanos(0)),
    }
}

impl SyncState {
    /// Initializes the syncing state with base and target tipsets and sets
    /// start time.
    pub fn init(&mut self, base: Arc<Tipset>, target: Arc<Tipset>) {
        *self = Self {
            target: Some(target),
            base: Some(base),
            start: Some(Utc::now()),
            ..Default::default()
        }
    }

    /// Get the current [`SyncStage`] of the `Syncer`
    pub fn stage(&self) -> SyncStage {
        self.stage
    }

    /// Returns the current [`Tipset`]
    pub fn target(&self) -> &Option<Arc<Tipset>> {
        &self.target
    }

    /// Return a reference to the base [`Tipset`]
    pub fn base(&self) -> &Option<Arc<Tipset>> {
        &self.base
    }

    /// Return the current [`ChainEpoch`]
    pub fn epoch(&self) -> ChainEpoch {
        self.epoch
    }

    /// Get the elapsed time of the current syncing process.
    /// Returns `None` if syncing has not started
    pub fn get_elapsed_time(&self) -> Option<Duration> {
        if let Some(start) = self.start {
            let elapsed_time = Utc::now() - start;
            Some(elapsed_time)
        } else {
            None
        }
    }

    /// Sets the sync stage for the syncing state. If setting to complete, sets
    /// end timer to now.
    pub fn set_stage(&mut self, stage: SyncStage) {
        if let SyncStage::Complete = stage {
            self.end = Some(Utc::now());
        }
        self.stage = stage;
    }

    /// Sets epoch of the sync.
    pub fn set_epoch(&mut self, epoch: ChainEpoch) {
        self.epoch = epoch;
    }

    /// Sets error for the sync.
    pub fn error(&mut self, err: String) {
        self.message = err;
        self.stage = SyncStage::Error;
        self.end = Some(Utc::now());
    }
}

mod lotus_json {
    use super::SyncState;
    use crate::{blocks::Tipset, chain_sync::SyncStage, lotus_json::*};
    use chrono::{DateTime, Utc};
    use std::sync::Arc;

    use serde::{Deserialize, Serialize};
    #[cfg(test)]
    use serde_json::json;

    #[derive(Serialize, Deserialize, schemars::JsonSchema)]
    #[schemars(rename = "SyncState")]
    #[serde(rename_all = "PascalCase")]
    pub struct SyncStateLotusJson {
        #[schemars(with = "LotusJson<Option<Tipset>>")]
        #[serde(
            with = "crate::lotus_json",
            skip_serializing_if = "Option::is_none",
            default
        )]
        base: Option<Tipset>,
        #[schemars(with = "LotusJson<Option<Tipset>>")]
        #[serde(
            with = "crate::lotus_json",
            skip_serializing_if = "Option::is_none",
            default
        )]
        target: Option<Tipset>,

        #[schemars(with = "LotusJson<SyncStage>")]
        #[serde(with = "crate::lotus_json")]
        stage: SyncStage,
        epoch: i64,

        #[schemars(with = "LotusJson<Option<DateTime<Utc>>>")]
        #[serde(
            with = "crate::lotus_json",
            skip_serializing_if = "Option::is_none",
            default
        )]
        start: Option<DateTime<Utc>>,
        #[schemars(with = "LotusJson<Option<DateTime<Utc>>>")]
        #[serde(
            with = "crate::lotus_json",
            skip_serializing_if = "Option::is_none",
            default
        )]
        end: Option<DateTime<Utc>>,
        message: String,
    }

    impl HasLotusJson for SyncState {
        type LotusJson = SyncStateLotusJson;

        #[cfg(test)]
        fn snapshots() -> Vec<(serde_json::Value, Self)> {
            vec![(
                json!({
                    "Epoch": 0,
                    "Message": "",
                    "Stage": "header sync",
                }),
                Self::default(),
            )]
        }

        fn into_lotus_json(self) -> Self::LotusJson {
            let Self {
                base,
                target,
                stage,
                epoch,
                start,
                end,
                message,
            } = self;
            Self::LotusJson {
                base: base.as_deref().cloned(),
                target: target.as_deref().cloned(),
                stage,
                epoch,
                start,
                end,
                message,
            }
        }

        fn from_lotus_json(lotus_json: Self::LotusJson) -> Self {
            let Self::LotusJson {
                base,
                target,
                stage,
                epoch,
                start,
                end,
                message,
            } = lotus_json;
            Self {
                base: base.map(Arc::new),
                target: target.map(Arc::new),
                stage,
                epoch,
                start,
                end,
                message,
            }
        }
    }

    #[test]
    fn snapshots() {
        assert_all_snapshots::<SyncState>()
    }

    #[cfg(test)]
    quickcheck::quickcheck! {
        fn quickcheck(val: SyncState) -> () {
            assert_unchanged_via_json(val)
        }
    }
}