This repository was archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathrepo-nodejs.js
62 lines (55 loc) · 1.88 KB
/
repo-nodejs.js
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
'use strict'
const os = require('os')
const { createRepo } = require('ipfs-repo')
const path = require('path')
const DatastoreFS = require('datastore-fs')
const DatastoreLevel = require('datastore-level')
const BlockstoreDatastoreAdapter = require('blockstore-datastore-adapter')
const { ShardingDatastore, shard: { NextToLast } } = require('datastore-core')
/**
* @typedef {import('ipfs-repo-migrations').ProgressCallback} MigrationProgressCallback
*/
/**
* @param {import('../types').Print} print
* @param {import('ipfs-core-utils/src/multicodecs')} codecs
* @param {object} options
* @param {string} [options.path]
* @param {boolean} [options.autoMigrate]
* @param {MigrationProgressCallback} [options.onMigrationProgress]
*/
module.exports = (print, codecs, options = {}) => {
const repoPath = options.path || path.join(os.homedir(), '.jsipfs')
/**
* @type {number}
*/
let lastMigration
/**
* @type {MigrationProgressCallback}
*/
const onMigrationProgress = options.onMigrationProgress || function (version, percentComplete, message) {
if (version !== lastMigration) {
lastMigration = version
print(`Migrating repo from v${version - 1} to v${version}`)
}
print(`${percentComplete.toString().padStart(6, ' ')}% ${message}`)
}
return createRepo(repoPath, (codeOrName) => codecs.getCodec(codeOrName), {
root: new DatastoreFS(repoPath, {
extension: ''
}),
blocks: new BlockstoreDatastoreAdapter(
new ShardingDatastore(
new DatastoreFS(`${repoPath}/blocks`, {
extension: '.data'
}),
new NextToLast(2)
)
),
datastore: new DatastoreLevel(`${repoPath}/datastore`),
keys: new DatastoreFS(`${repoPath}/keys`),
pins: new DatastoreLevel(`${repoPath}/pins`)
}, {
autoMigrate: options.autoMigrate != null ? options.autoMigrate : true,
onMigrationProgress: onMigrationProgress
})
}