aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/src/car.rs
blob: 22f83bcc5c5b32ad344be77f6e95b0f2693dd045 (plain)
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
use anyhow::Result;

use crate::vendored::iroh_car::{CarHeader, CarReader, CarWriter};
use futures::TryStreamExt;
use ipfs_sqlite_block_store::BlockStore;
use libipld::{Block, Cid};
use std::path::PathBuf;
use tokio::fs::File;
use tokio::io::{AsyncRead, BufReader};

/// Synchronous wrapper for loading in-memory CAR bytes (`&[u8]`) into a blockstore.
///
/// Does not do any pinning, even temporarily. Returns the root CID indicated in the CAR file
/// header.
pub fn load_car_bytes_to_blockstore(
    db: &mut BlockStore<libipld::DefaultParams>,
    car_bytes: &[u8],
) -> Result<Cid> {
    let rt = tokio::runtime::Builder::new_current_thread()
        .enable_all()
        .build()?;
    rt.block_on(inner_car_bytes_loader(db, car_bytes))
}

/// Synchronous wrapper for loading on-disk CAR file (by path) into a blockstore.
///
/// Does not do any pinning, even temporarily. Returns the root CID indicated in the CAR file
/// header.
pub fn load_car_path_to_blockstore(
    db: &mut BlockStore<libipld::DefaultParams>,
    car_path: &PathBuf,
) -> Result<Cid> {
    let rt = tokio::runtime::Builder::new_current_thread()
        .enable_all()
        .build()?;
    rt.block_on(inner_car_path_loader(db, car_path))
}

pub fn read_car_bytes_from_blockstore(
    db: &mut BlockStore<libipld::DefaultParams>,
    root: &Cid,
) -> Result<Vec<u8>> {
    let rt = tokio::runtime::Builder::new_current_thread()
        .enable_all()
        .build()?;
    rt.block_on(inner_car_bytes_reader(db, root))
}

async fn inner_car_bytes_loader(
    db: &mut BlockStore<libipld::DefaultParams>,
    car_bytes: &[u8],
) -> Result<Cid> {
    let car_reader = CarReader::new(car_bytes).await?;
    inner_car_loader(db, car_reader).await
}

async fn inner_car_path_loader(
    db: &mut BlockStore<libipld::DefaultParams>,
    car_path: &PathBuf,
) -> Result<Cid> {
    let car_reader = {
        let file = File::open(car_path).await?;
        let buf_reader = BufReader::new(file);
        CarReader::new(buf_reader).await?
    };
    inner_car_loader(db, car_reader).await
}

async fn inner_car_loader<R: AsyncRead + Send + Unpin>(
    db: &mut BlockStore<libipld::DefaultParams>,
    car_reader: CarReader<R>,
) -> Result<Cid> {
    let car_header = car_reader.header().clone();
    car_reader
        .stream()
        .try_for_each(|(cid, raw)| {
            // TODO: error handling here instead of unwrap (?)
            let block = Block::new(cid, raw).unwrap();
            db.put_block(block, None).unwrap();
            futures::future::ready(Ok(()))
        })
        .await?;
    Ok(car_header.roots()[0])
}

async fn inner_car_bytes_reader(
    db: &mut BlockStore<libipld::DefaultParams>,
    root: &Cid,
) -> Result<Vec<u8>> {
    let car_header = CarHeader::new_v1(vec![*root]);
    let buf: Vec<u8> = Default::default();
    let mut car_writer = CarWriter::new(car_header, buf);

    let cid_list = db.get_descendants::<Vec<_>>(root)?;
    for cid in cid_list {
        let block = db.get_block(&cid)?.expect("block content");
        car_writer.write(cid, block).await?;
    }
    Ok(car_writer.finish().await?)
}