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
use crate::{Ipfs};
use async_stream::stream;
use futures::stream::Stream;
use libipld::{Cid, Ipld, IpldCodec};
use std::borrow::Borrow;
use std::collections::HashSet;
use std::collections::VecDeque;
use std::fmt;
#[derive(Clone, PartialEq, Eq)]
pub struct Edge {
pub source: Cid,
pub destination: Cid,
pub name: Option<String>,
}
impl fmt::Debug for Edge {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
fmt,
"Edge {{ source: {}, destination: {}, name: {:?} }}",
self.source, self.destination, self.name
)
}
}
#[derive(Debug, thiserror::Error)]
pub enum IpldRefsError {
#[error("loading failed")]
Loading(#[from] crate::Error),
#[error("block not found locally: {}", .0)]
BlockNotFound(Cid),
}
pub(crate) struct IpldRefs {
max_depth: Option<u64>,
unique: bool,
download_blocks: bool,
}
impl Default for IpldRefs {
fn default() -> Self {
IpldRefs {
max_depth: None, unique: false,
download_blocks: true,
}
}
}
impl IpldRefs {
#[allow(dead_code)]
pub fn with_max_depth(mut self, depth: u64) -> IpldRefs {
self.max_depth = Some(depth);
self
}
pub fn with_only_unique(mut self) -> IpldRefs {
self.unique = true;
self
}
pub fn with_existing_blocks(mut self) -> IpldRefs {
self.download_blocks = false;
self
}
pub fn refs_of_resolved<'a, MaybeOwned, Iter>(
self,
ipfs: MaybeOwned,
iplds: Iter,
) -> impl Stream<Item = Result<Edge, IpldRefsError>> + Send + 'a
where
MaybeOwned: Borrow<Ipfs> + Send + 'a,
Iter: IntoIterator<Item = (Cid, Ipld)> + Send + 'a,
{
iplds_refs_inner(ipfs, iplds, self)
}
}
pub fn iplds_refs<'a, MaybeOwned, Iter>(
ipfs: MaybeOwned,
iplds: Iter,
max_depth: Option<u64>,
unique: bool,
) -> impl Stream<Item = Result<Edge, libipld::error::Error>> + Send + 'a
where
MaybeOwned: Borrow<Ipfs> + Send + 'a,
Iter: IntoIterator<Item = (Cid, Ipld)> + Send + 'a,
{
use futures::stream::TryStreamExt;
let opts = IpldRefs {
max_depth,
unique,
download_blocks: true,
};
iplds_refs_inner(ipfs, iplds, opts).map_err(|e| match e {
IpldRefsError::Loading(e) => e,
x => unreachable!(
"iplds_refs_inner should not return other errors for download_blocks: false; {}",
x
),
})
}
fn iplds_refs_inner<'a, MaybeOwned, Iter>(
ipfs: MaybeOwned,
iplds: Iter,
opts: IpldRefs,
) -> impl Stream<Item = Result<Edge, IpldRefsError>> + Send + 'a
where
MaybeOwned: Borrow<Ipfs> + Send + 'a,
Iter: IntoIterator<Item = (Cid, Ipld)>,
{
let mut work = VecDeque::new();
let mut queued_or_visited = HashSet::new();
let IpldRefs {
max_depth,
unique,
download_blocks,
} = opts;
let empty_stream = max_depth.map(|n| n == 0).unwrap_or(false);
if !empty_stream {
for (origin, ipld) in iplds {
for (link_name, next_cid) in ipld_links(&origin, ipld) {
if unique && !queued_or_visited.insert(next_cid) {
trace!("skipping already queued {}", next_cid);
continue;
}
work.push_back((0, next_cid, origin, link_name));
}
}
}
stream! {
if empty_stream {
return;
}
while let Some((depth, cid, source, link_name)) = work.pop_front() {
let traverse_links = match max_depth {
Some(d) if d <= depth => {
continue;
},
Some(d) if d + 1 == depth => false,
_ => true
};
let borrowed = ipfs.borrow();
let block = if download_blocks {
match borrowed.get_block(&cid).await {
Ok(block) => block,
Err(e) => {
warn!("failed to load {}, linked from {}: {}", cid, source, e);
continue;
}
}
} else {
match borrowed.repo.get_block_now(&cid).await {
Ok(Some(block)) => block,
Ok(None) => {
yield Err(IpldRefsError::BlockNotFound(cid.to_owned()));
return;
}
Err(e) => {
yield Err(IpldRefsError::from(e));
return;
}
}
};
trace!(cid = %cid, "loaded next");
let ipld = match block.decode::<IpldCodec, Ipld>() {
Ok(ipld) => ipld,
Err(e) => {
warn!(cid = %cid, source = %cid, "failed to parse: {}", e);
yield Err(e.into());
continue;
}
};
if traverse_links {
for (link_name, next_cid) in ipld_links(&cid, ipld) {
if unique && !queued_or_visited.insert(next_cid) {
trace!(queued = %next_cid, "skipping already queued");
continue;
}
work.push_back((depth + 1, next_cid, cid, link_name));
}
}
yield Ok(Edge { source, destination: cid, name: link_name });
}
}
}
fn ipld_links(
cid: &Cid,
ipld: Ipld,
) -> impl Iterator<Item = (Option<String>, Cid)> + Send + 'static {
let items = if cid.codec() == <IpldCodec as Into<u64>>::into(IpldCodec::DagPb) {
dagpb_links(ipld)
} else {
ipld.iter()
.filter_map(|val| match val {
Ipld::Link(cid) => Some(cid),
_ => None,
})
.cloned()
.map(|cid| (None, cid))
.collect::<Vec<(Option<String>, Cid)>>()
};
items.into_iter()
}
fn dagpb_links(ipld: Ipld) -> Vec<(Option<String>, Cid)> {
let links = match ipld {
Ipld::Map(mut m) => m.remove("Links"),
_ => return Vec::new(),
};
let links = match links {
Some(Ipld::List(v)) => v,
x => panic!("Expected dag-pb2ipld \"Links\" to be a list, got: {x:?}"),
};
links
.into_iter()
.enumerate()
.filter_map(|(i, ipld)| {
match ipld {
Ipld::Map(mut m) => {
let link = match m.remove("Hash") {
Some(Ipld::Link(cid)) => cid,
Some(x) => panic!(
"Expected dag-pb2ipld \"Links[{i}]/Hash\" to be a link, got: {x:?}"
),
None => return None,
};
let name = match m.remove("Name") {
Some(Ipld::String(s)) if s == "/" => {
unimplemented!("Slashes as the name of link")
}
Some(Ipld::String(s)) => Some(s),
Some(x) => panic!(
"Expected dag-pb2ipld \"Links[{i}]/Name\" to be a string, got: {x:?}"
),
None => unimplemented!(
"Default name for dag-pb2ipld links, should it be index?"
),
};
Some((name, link))
}
x => panic!(
"Expected dag-pb2ipld \"Links[{i}]\" to be a map, got: {x:?}"
),
}
})
.collect()
}
#[cfg(test)]
mod tests {
use super::{ipld_links, iplds_refs, Edge};
use crate::{Block, Node};
use futures::stream::TryStreamExt;
use hex_literal::hex;
use libipld::{Cid, Ipld, IpldCodec};
use std::collections::HashSet;
use std::convert::TryFrom;
#[test]
fn dagpb_links() {
let payload = hex!(
"12330a2212206aad27d7e2fc815cd15bf679535062565dc927a831547281
fc0af9e5d7e67c74120b6166726963616e2e747874180812340a221220fd
36ac5279964db0cba8f7fa45f8c4c44ef5e2ff55da85936a378c96c9c632
04120c616d6572696361732e747874180812360a2212207564c20415869d
77a8a40ca68a9158e397dd48bdff1325cdb23c5bcd181acd17120e617573
7472616c69616e2e7478741808"
);
let cid = Cid::try_from("QmbrFTo4s6H23W6wmoZKQC2vSogGeQ4dYiceSqJddzrKVa").unwrap();
let decoded = Block::new(cid, payload.to_vec())
.unwrap()
.decode::<IpldCodec, Ipld>()
.unwrap();
let links = ipld_links(&cid, decoded)
.map(|(name, _)| name.unwrap())
.collect::<Vec<_>>();
assert_eq!(links, ["african.txt", "americas.txt", "australian.txt",]);
}
#[tokio::test]
async fn all_refs_from_root() {
let Node { ipfs, .. } = preloaded_testing_ipfs().await;
let (root, dag0, unixfs0, dag1, unixfs1) = (
"bafyreihpc3vupfos5yqnlakgpjxtyx3smkg26ft7e2jnqf3qkyhromhb64",
"bafyreidquig3arts3bmee53rutt463hdyu6ff4zeas2etf2h2oh4dfms44",
"QmPJ4A6Su27ABvvduX78x2qdWMzkdAYxqeH5TVrHeo3xyy",
"bafyreibvjvcv745gig4mvqs4hctx4zfkono4rjejm2ta6gtyzkqxfjeily",
"QmRgutAxd8t7oGkSm4wmeuByG6M51wcTso6cubDdQtuEfL",
);
let root_block = ipfs.get_block(&Cid::try_from(root).unwrap()).await.unwrap();
let ipld = root_block.decode::<IpldCodec, Ipld>().unwrap();
let all_edges: Vec<_> = iplds_refs(ipfs, vec![(*root_block.cid(), ipld)], None, false)
.map_ok(
|Edge {
source,
destination,
..
}| (source.to_string(), destination.to_string()),
)
.try_collect()
.await
.unwrap();
let expected = [
(root, dag0),
(dag0, unixfs0),
(dag0, dag1),
(dag1, unixfs1),
(root, unixfs0),
(root, dag1),
(dag1, unixfs1),
(root, unixfs1),
];
println!("found edges:\n{all_edges:#?}");
assert_edges(&expected, all_edges.as_slice());
}
#[tokio::test]
async fn all_unique_refs_from_root() {
let Node { ipfs, .. } = preloaded_testing_ipfs().await;
let (root, dag0, unixfs0, dag1, unixfs1) = (
"bafyreihpc3vupfos5yqnlakgpjxtyx3smkg26ft7e2jnqf3qkyhromhb64",
"bafyreidquig3arts3bmee53rutt463hdyu6ff4zeas2etf2h2oh4dfms44",
"QmPJ4A6Su27ABvvduX78x2qdWMzkdAYxqeH5TVrHeo3xyy",
"bafyreibvjvcv745gig4mvqs4hctx4zfkono4rjejm2ta6gtyzkqxfjeily",
"QmRgutAxd8t7oGkSm4wmeuByG6M51wcTso6cubDdQtuEfL",
);
let root_block = ipfs.get_block(&Cid::try_from(root).unwrap()).await.unwrap();
let ipld = root_block.decode::<IpldCodec, Ipld>().unwrap();
let destinations: HashSet<_> =
iplds_refs(ipfs, vec![(*root_block.cid(), ipld)], None, true)
.map_ok(|Edge { destination, .. }| destination.to_string())
.try_collect()
.await
.unwrap();
let expected = [dag0, unixfs0, dag1, unixfs1]
.iter()
.map(|&s| String::from(s))
.collect::<HashSet<_>>();
let diff = destinations
.symmetric_difference(&expected)
.map(|s| s.as_str())
.collect::<Vec<&str>>();
assert!(diff.is_empty(), "{diff:?}");
}
fn assert_edges(expected: &[(&str, &str)], actual: &[(String, String)]) {
let expected: HashSet<_> = expected.iter().map(|&(a, b)| (a, b)).collect();
let actual: HashSet<_> = actual
.iter()
.map(|(a, b)| (a.as_str(), b.as_str()))
.collect();
let diff: Vec<_> = expected.symmetric_difference(&actual).collect();
assert!(diff.is_empty(), "{diff:#?}");
}
async fn preloaded_testing_ipfs() -> Node {
let ipfs = Node::new("test_node").await;
let blocks = [
(
"bafyreidquig3arts3bmee53rutt463hdyu6ff4zeas2etf2h2oh4dfms44",
&hex!("a263626172d82a58230012200e317512b6f9f86e015a154cb97a9ddcdc7e372cccceb3947921634953c6537463666f6fd82a58250001711220354d455ff3a641b8cac25c38a77e64aa735dc8a48966a60f1a78caa172a4885e")[..]
),
(
"QmPJ4A6Su27ABvvduX78x2qdWMzkdAYxqeH5TVrHeo3xyy",
&hex!("0a0d08021207626172666f6f0a1807")[..]
),
(
"bafyreibvjvcv745gig4mvqs4hctx4zfkono4rjejm2ta6gtyzkqxfjeily",
&hex!("a163666f6fd82a582300122031c3d57080d8463a3c63b2923df5a1d40ad7a73eae5a14af584213e5f504ac33")[..]
),
(
"QmRgutAxd8t7oGkSm4wmeuByG6M51wcTso6cubDdQtuEfL",
&hex!("0a0d08021207666f6f6261720a1807")[..]
),
(
"bafyreihpc3vupfos5yqnlakgpjxtyx3smkg26ft7e2jnqf3qkyhromhb64",
&hex!("84d82a5825000171122070a20db04672d858427771a4e7cf6ce3c53c52f32404b4499747d38fc19592e7d82a58230012200e317512b6f9f86e015a154cb97a9ddcdc7e372cccceb3947921634953c65374d82a58250001711220354d455ff3a641b8cac25c38a77e64aa735dc8a48966a60f1a78caa172a4885ed82a582300122031c3d57080d8463a3c63b2923df5a1d40ad7a73eae5a14af584213e5f504ac33")[..]
)
];
for (cid_str, data) in blocks.iter() {
let cid = Cid::try_from(*cid_str).unwrap();
let block = Block::new(cid, data.to_vec()).unwrap();
block.decode::<IpldCodec, Ipld>().unwrap();
ipfs.put_block(block).await.unwrap();
}
ipfs
}
}