mithril_common/messages/
cardano_database.rs

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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
use anyhow::anyhow;
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

use crate::entities::{
    AncillaryLocation, AncillaryLocations, CardanoDbBeacon, CompressionAlgorithm, DigestLocation,
    DigestsLocations, Epoch, ImmutablesLocation, ImmutablesLocations, MultiFilesUri, TemplateUri,
};
use crate::StdResult;

/// The message part that represents the locations of the Cardano database digests.
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct DigestsMessagePart {
    /// Size of the uncompressed digests file.
    pub size_uncompressed: u64,

    /// Locations of the digests.
    pub locations: Vec<DigestLocation>,
}

impl DigestsMessagePart {
    /// Return the list of locations without the unknown locations, failing if all locations are unknown.
    pub fn sanitized_locations(&self) -> StdResult<Vec<DigestLocation>> {
        let sanitized_locations: Vec<_> = self
            .locations
            .iter()
            .filter(|l| !matches!(l, DigestLocation::Unknown))
            .cloned()
            .collect();

        if sanitized_locations.is_empty() {
            Err(anyhow!("All digests locations are unknown."))
        } else {
            Ok(sanitized_locations)
        }
    }
}

/// The message part that represents the locations of the Cardano database immutables.
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct ImmutablesMessagePart {
    /// Average size for one immutable file.
    pub average_size_uncompressed: u64,

    /// Locations of the immutable files.
    pub locations: Vec<ImmutablesLocation>,
}

impl ImmutablesMessagePart {
    /// Return the list of locations without the unknown locations, failing if all locations are unknown.
    pub fn sanitized_locations(&self) -> StdResult<Vec<ImmutablesLocation>> {
        let sanitized_locations: Vec<_> = self
            .locations
            .iter()
            .filter(|l| !matches!(l, ImmutablesLocation::Unknown))
            .cloned()
            .collect();

        if sanitized_locations.is_empty() {
            Err(anyhow!("All locations are unknown."))
        } else {
            Ok(sanitized_locations)
        }
    }
}

/// The message part that represents the locations of the Cardano database ancillary.
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct AncillaryMessagePart {
    /// Size of the uncompressed ancillary file.
    pub size_uncompressed: u64,

    /// Locations of the ancillary files.
    pub locations: Vec<AncillaryLocation>,
}

impl AncillaryMessagePart {
    /// Return the list of locations without the unknown locations, failing if all locations are unknown.
    pub fn sanitized_locations(&self) -> StdResult<Vec<AncillaryLocation>> {
        let sanitized_locations: Vec<_> = self
            .locations
            .iter()
            .filter(|l| !matches!(l, AncillaryLocation::Unknown))
            .cloned()
            .collect();

        if sanitized_locations.is_empty() {
            Err(anyhow!("All locations are unknown."))
        } else {
            Ok(sanitized_locations)
        }
    }
}

impl From<DigestsLocations> for DigestsMessagePart {
    fn from(part: DigestsLocations) -> Self {
        Self {
            size_uncompressed: part.size_uncompressed,
            locations: part.locations,
        }
    }
}

impl From<ImmutablesLocations> for ImmutablesMessagePart {
    fn from(part: ImmutablesLocations) -> Self {
        Self {
            average_size_uncompressed: part.average_size_uncompressed,
            locations: part.locations,
        }
    }
}

impl From<AncillaryLocations> for AncillaryMessagePart {
    fn from(part: AncillaryLocations) -> Self {
        Self {
            size_uncompressed: part.size_uncompressed,
            locations: part.locations,
        }
    }
}

/// Cardano database snapshot.
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct CardanoDatabaseSnapshotMessage {
    /// Hash of the Cardano database snapshot.
    pub hash: String,

    /// Merkle root of the Cardano database snapshot.
    pub merkle_root: String,

    /// Cardano network
    pub network: String,

    /// Mithril beacon on the Cardano chain.
    pub beacon: CardanoDbBeacon,

    /// Hash of the associated certificate
    pub certificate_hash: String,

    /// Size of the uncompressed Cardano database files.
    pub total_db_size_uncompressed: u64,

    /// Locations of the the immutable file digests.
    pub digests: DigestsMessagePart,

    /// Locations of the immutable files.
    pub immutables: ImmutablesMessagePart,

    /// Locations of the ancillary files.
    pub ancillary: AncillaryMessagePart,

    /// Version of the Cardano node used to create the snapshot.
    pub cardano_node_version: String,

    /// Date and time at which the snapshot was created
    pub created_at: DateTime<Utc>,
}

impl CardanoDatabaseSnapshotMessage {
    /// Return a dummy test entity (test-only).
    pub fn dummy() -> Self {
        Self {
            hash: "d4071d518a3ace0f6c04a9c0745b9e9560e3e2af1b373bafc4e0398423e9abfb".to_string(),
            merkle_root: "c8224920b9f5ad7377594eb8a15f34f08eb3103cc5241d57cafc5638403ec7c6"
                .to_string(),
            network: "preview".to_string(),
            beacon: CardanoDbBeacon {
                epoch: Epoch(123),
                immutable_file_number: 2345,
            },
            certificate_hash: "f6c01b373bafc4e039844071d5da3ace4a9c0745b9e9560e3e2af01823e9abfb"
                .to_string(),
            total_db_size_uncompressed: 800796318,
            created_at: DateTime::parse_from_rfc3339("2023-01-19T13:43:05.618857482Z")
                .unwrap()
                .with_timezone(&Utc),
            digests: DigestsMessagePart {
                size_uncompressed: 1024,
                locations: vec![DigestLocation::Aggregator {
                    uri: "https://host-1/digest-1".to_string(),
                }],
            },
            immutables: ImmutablesMessagePart {
                average_size_uncompressed: 512,
                locations: vec![
                    ImmutablesLocation::CloudStorage {
                        uri: MultiFilesUri::Template(TemplateUri(
                            "https://host-1/immutables-2".to_string(),
                        )),
                        compression_algorithm: Some(CompressionAlgorithm::Gzip),
                    },
                    ImmutablesLocation::CloudStorage {
                        uri: MultiFilesUri::Template(TemplateUri(
                            "https://host-2/immutables-2".to_string(),
                        )),
                        compression_algorithm: Some(CompressionAlgorithm::Gzip),
                    },
                ],
            },
            ancillary: AncillaryMessagePart {
                size_uncompressed: 2048,
                locations: vec![AncillaryLocation::CloudStorage {
                    uri: "https://host-1/ancillary-3".to_string(),
                    compression_algorithm: Some(CompressionAlgorithm::Gzip),
                }],
            },
            cardano_node_version: "0.0.1".to_string(),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    const CURRENT_JSON: &str = r#"
    {
        "hash": "d4071d518a3ace0f6c04a9c0745b9e9560e3e2af1b373bafc4e0398423e9abfb",
        "merkle_root": "c8224920b9f5ad7377594eb8a15f34f08eb3103cc5241d57cafc5638403ec7c6",
        "network": "preview",
        "beacon": {
            "epoch": 123,
            "immutable_file_number": 2345
        },
        "certificate_hash": "f6c01b373bafc4e039844071d5da3ace4a9c0745b9e9560e3e2af01823e9abfb",
        "total_db_size_uncompressed": 800796318,
        "digests": {
            "size_uncompressed": 1024,
            "locations": [
                {
                    "type": "aggregator",
                    "uri": "https://host-1/digest-1"
                }
            ]
        },
        "immutables": {
            "average_size_uncompressed": 2048,
            "locations": [
                {
                    "type": "cloud_storage",
                    "uri": {
                        "Template": "https://host-1/immutables-{immutable_file_number}"
                    },
                    "compression_algorithm": "gzip"
                },
                {
                    "type": "cloud_storage",
                    "uri": {
                        "Template": "https://host-2/immutables-{immutable_file_number}"
                    }
                }
            ]
        },
        "ancillary": {
            "size_uncompressed": 4096,
            "locations": [
                {
                    "type": "cloud_storage",
                    "uri": "https://host-1/ancillary-3",
                    "compression_algorithm": "gzip"
                }
            ]
        },
        "cardano_node_version": "0.0.1",
        "created_at": "2023-01-19T13:43:05.618857482Z"
    }"#;

    fn golden_current_message() -> CardanoDatabaseSnapshotMessage {
        CardanoDatabaseSnapshotMessage {
            hash: "d4071d518a3ace0f6c04a9c0745b9e9560e3e2af1b373bafc4e0398423e9abfb".to_string(),
            merkle_root: "c8224920b9f5ad7377594eb8a15f34f08eb3103cc5241d57cafc5638403ec7c6"
                .to_string(),
            network: "preview".to_string(),
            beacon: CardanoDbBeacon {
                epoch: Epoch(123),
                immutable_file_number: 2345,
            },
            certificate_hash: "f6c01b373bafc4e039844071d5da3ace4a9c0745b9e9560e3e2af01823e9abfb"
                .to_string(),
            total_db_size_uncompressed: 800796318,
            created_at: DateTime::parse_from_rfc3339("2023-01-19T13:43:05.618857482Z")
                .unwrap()
                .with_timezone(&Utc),
            digests: DigestsMessagePart {
                size_uncompressed: 1024,
                locations: vec![DigestLocation::Aggregator {
                    uri: "https://host-1/digest-1".to_string(),
                }],
            },
            immutables: ImmutablesMessagePart {
                average_size_uncompressed: 2048,
                locations: vec![
                    ImmutablesLocation::CloudStorage {
                        uri: MultiFilesUri::Template(TemplateUri(
                            "https://host-1/immutables-{immutable_file_number}".to_string(),
                        )),
                        compression_algorithm: Some(CompressionAlgorithm::Gzip),
                    },
                    ImmutablesLocation::CloudStorage {
                        uri: MultiFilesUri::Template(TemplateUri(
                            "https://host-2/immutables-{immutable_file_number}".to_string(),
                        )),
                        compression_algorithm: None,
                    },
                ],
            },
            ancillary: AncillaryMessagePart {
                size_uncompressed: 4096,
                locations: vec![AncillaryLocation::CloudStorage {
                    uri: "https://host-1/ancillary-3".to_string(),
                    compression_algorithm: Some(CompressionAlgorithm::Gzip),
                }],
            },
            cardano_node_version: "0.0.1".to_string(),
        }
    }

    #[test]
    fn test_current_json_deserialized_into_current_message() {
        let json = CURRENT_JSON;
        let message: CardanoDatabaseSnapshotMessage = serde_json::from_str(json).expect(
            "This JSON is expected to be successfully parsed into a CardanoDatabaseSnapshotMessage instance.",
        );

        assert_eq!(golden_current_message(), message);
    }

    #[test]
    fn test_a_future_json_deserialized_with_unknown_location_types() {
        let json = r#"
        {
            "hash": "d4071d518a3ace0f6c04a9c0745b9e9560e3e2af1b373bafc4e0398423e9abfb",
            "merkle_root": "c8224920b9f5ad7377594eb8a15f34f08eb3103cc5241d57cafc5638403ec7c6",
            "network": "preview",
            "beacon": {
                "epoch": 123,
                "immutable_file_number": 2345
            },
            "certificate_hash": "f6c01b373bafc4e039844071d5da3ace4a9c0745b9e9560e3e2af01823e9abfb",
            "total_db_size_uncompressed": 800796318,
            "digests": {
                "size_uncompressed": 1024,
                "locations": [
                    {
                        "type": "whatever",
                        "new_field": "digest-1"
                    }
                ]
            },
            "immutables": {
                "average_size_uncompressed": 512,
                "locations": [
                    {
                        "type": "whatever",
                        "new_field": [123, 125]
                    }
                ]
            },
            "ancillary": {
                "size_uncompressed": 4096,
                "locations": [
                    {
                        "type": "whatever",
                        "new_field": "ancillary-3"
                    }
                ]
            },
            "compression_algorithm": "gzip",
            "cardano_node_version": "0.0.1",
            "created_at": "2023-01-19T13:43:05.618857482Z"
        }"#;
        let message: CardanoDatabaseSnapshotMessage = serde_json::from_str(json).expect(
            "This JSON is expected to be successfully parsed into a CardanoDatabaseSnapshotMessage instance.",
        );

        assert_eq!(message.digests.locations.len(), 1);
        assert_eq!(DigestLocation::Unknown, message.digests.locations[0]);

        assert_eq!(message.immutables.locations.len(), 1);
        assert_eq!(ImmutablesLocation::Unknown, message.immutables.locations[0]);

        assert_eq!(message.ancillary.locations.len(), 1);
        assert_eq!(AncillaryLocation::Unknown, message.ancillary.locations[0]);
    }

    mod sanitize_immutable_locations {
        use super::*;

        #[test]
        fn succeeds_and_leave_all_locations_intact_if_no_unknown_location() {
            let immutable_locations = ImmutablesMessagePart {
                locations: vec![ImmutablesLocation::CloudStorage {
                    uri: MultiFilesUri::Template(TemplateUri(
                        "http://whatever/{immutable_file_number}.tar.gz".to_string(),
                    )),
                    compression_algorithm: None,
                }],
                average_size_uncompressed: 512,
            };

            let sanitize_locations = immutable_locations
                .sanitized_locations()
                .expect("Should succeed since there are no unknown locations.");
            assert_eq!(sanitize_locations, immutable_locations.locations);
        }

        #[test]
        fn succeeds_and_remove_unknown_locations_if_some_locations_are_not_unknown() {
            let immutable_locations = ImmutablesMessagePart {
                locations: vec![
                    ImmutablesLocation::CloudStorage {
                        uri: MultiFilesUri::Template(TemplateUri(
                            "http://whatever/{immutable_file_number}.tar.gz".to_string(),
                        )),
                        compression_algorithm: None,
                    },
                    ImmutablesLocation::Unknown,
                ],
                average_size_uncompressed: 512,
            };

            let sanitize_locations = immutable_locations
                .sanitized_locations()
                .expect("Should succeed since not all locations are unknown.");
            assert_eq!(
                sanitize_locations,
                vec![ImmutablesLocation::CloudStorage {
                    uri: MultiFilesUri::Template(TemplateUri(
                        "http://whatever/{immutable_file_number}.tar.gz".to_string(),
                    )),
                    compression_algorithm: None,
                }]
            );
        }

        #[test]
        fn fails_if_all_locations_are_unknown() {
            ImmutablesMessagePart {
                locations: vec![ImmutablesLocation::Unknown],
                average_size_uncompressed: 512,
            }
            .sanitized_locations()
            .expect_err("Should fail since all locations are unknown.");
        }
    }

    mod sanitize_ancillary_locations {
        use super::*;

        #[test]
        fn succeeds_and_leave_all_locations_intact_if_no_unknown_location() {
            let ancillary_locations = AncillaryMessagePart {
                locations: vec![AncillaryLocation::CloudStorage {
                    uri: "http://whatever/ancillary.tar.gz".to_string(),
                    compression_algorithm: None,
                }],
                size_uncompressed: 1024,
            };

            let sanitize_locations = ancillary_locations
                .sanitized_locations()
                .expect("Should succeed since there are no unknown locations.");
            assert_eq!(sanitize_locations, ancillary_locations.locations);
        }

        #[test]
        fn succeeds_and_remove_unknown_locations_if_some_locations_are_not_unknown() {
            let ancillary_locations = AncillaryMessagePart {
                locations: vec![
                    AncillaryLocation::CloudStorage {
                        uri: "http://whatever/digests.tar.gz".to_string(),
                        compression_algorithm: None,
                    },
                    AncillaryLocation::Unknown,
                ],
                size_uncompressed: 512,
            };

            let sanitize_locations = ancillary_locations
                .sanitized_locations()
                .expect("Should succeed since not all locations are unknown.");
            assert_eq!(
                sanitize_locations,
                vec![AncillaryLocation::CloudStorage {
                    uri: "http://whatever/digests.tar.gz".to_string(),
                    compression_algorithm: None,
                }]
            );
        }

        #[test]
        fn fails_if_all_locations_are_unknown() {
            AncillaryMessagePart {
                locations: vec![AncillaryLocation::Unknown],
                size_uncompressed: 512,
            }
            .sanitized_locations()
            .expect_err("Should fail since all locations are unknown.");
        }
    }

    mod sanitize_digests_locations {
        use super::*;

        #[test]
        fn succeeds_and_leave_all_locations_intact_if_no_unknown_location() {
            let digests_locations = DigestsMessagePart {
                locations: vec![DigestLocation::CloudStorage {
                    uri: "http://whatever/digests.tar.gz".to_string(),
                    compression_algorithm: None,
                }],
                size_uncompressed: 512,
            };

            let sanitize_locations = digests_locations
                .sanitized_locations()
                .expect("Should succeed since there are no unknown locations.");
            assert_eq!(sanitize_locations, digests_locations.locations);
        }

        #[test]
        fn succeeds_and_remove_unknown_locations_if_some_locations_are_not_unknown() {
            let digests_locations = DigestsMessagePart {
                locations: vec![
                    DigestLocation::CloudStorage {
                        uri: "http://whatever/digests.tar.gz".to_string(),
                        compression_algorithm: None,
                    },
                    DigestLocation::Unknown,
                ],
                size_uncompressed: 512,
            };

            let sanitize_locations = digests_locations
                .sanitized_locations()
                .expect("Should succeed since not all locations are unknown.");
            assert_eq!(
                sanitize_locations,
                vec![DigestLocation::CloudStorage {
                    uri: "http://whatever/digests.tar.gz".to_string(),
                    compression_algorithm: None,
                }]
            );
        }

        #[test]
        fn fails_if_all_locations_are_unknown() {
            DigestsMessagePart {
                locations: vec![DigestLocation::Unknown],
                size_uncompressed: 512,
            }
            .sanitized_locations()
            .expect_err("Should fail since all locations are unknown.");
        }
    }
}