forked from filedrive-team/go-graphsplit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
541 lines (500 loc) · 12.3 KB
/
utils.go
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
package graphsplit
import (
"context"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"runtime"
"strings"
"sync"
"time"
"github.com/ipfs/go-blockservice"
"github.com/ipfs/go-cid"
"github.com/ipfs/go-datastore"
dss "github.com/ipfs/go-datastore/sync"
bstore "github.com/ipfs/go-ipfs-blockstore"
chunker "github.com/ipfs/go-ipfs-chunker"
offline "github.com/ipfs/go-ipfs-exchange-offline"
format "github.com/ipfs/go-ipld-format"
"github.com/ipfs/go-merkledag"
dag "github.com/ipfs/go-merkledag"
"github.com/ipfs/go-unixfs"
"github.com/ipfs/go-unixfs/importer/balanced"
ihelper "github.com/ipfs/go-unixfs/importer/helpers"
"golang.org/x/xerrors"
ipld "github.com/ipfs/go-ipld-format"
"github.com/ipld/go-car"
ipldprime "github.com/ipld/go-ipld-prime"
basicnode "github.com/ipld/go-ipld-prime/node/basic"
"github.com/ipld/go-ipld-prime/traversal/selector"
"github.com/ipld/go-ipld-prime/traversal/selector/builder"
)
const UnixfsLinksPerLevel = 1 << 10
const UnixfsChunkSize uint64 = 1 << 20
type Finfo struct {
Path string
Name string
Info os.FileInfo
SeekStart int64
SeekEnd int64
}
// file system tree node
type fsNode struct {
Name string
Hash string
Size uint64
Link []fsNode
}
type FSBuilder struct {
root *dag.ProtoNode
ds ipld.DAGService
}
func NewFSBuilder(root *dag.ProtoNode, ds ipld.DAGService) *FSBuilder {
return &FSBuilder{root, ds}
}
func (b *FSBuilder) Build() (*fsNode, error) {
fsn, err := unixfs.FSNodeFromBytes(b.root.Data())
if err != nil {
return nil, xerrors.Errorf("input dag is not a unixfs node: %s", err)
}
rootn := &fsNode{
Hash: b.root.Cid().String(),
Size: fsn.FileSize(),
Link: []fsNode{},
}
if !fsn.IsDir() {
return rootn, nil
}
for _, ln := range b.root.Links() {
fn, err := b.getNodeByLink(ln)
if err != nil {
return nil, err
}
rootn.Link = append(rootn.Link, fn)
}
return rootn, nil
}
func (b *FSBuilder) getNodeByLink(ln *format.Link) (fn fsNode, err error) {
ctx := context.Background()
fn = fsNode{
Name: ln.Name,
Hash: ln.Cid.String(),
Size: ln.Size,
}
nd, err := b.ds.Get(ctx, ln.Cid)
if err != nil {
log.Warn(err)
return
}
nnd, ok := nd.(*dag.ProtoNode)
if !ok {
err = xerrors.Errorf("failed to transformed to dag.ProtoNode")
return
}
fsn, err := unixfs.FSNodeFromBytes(nnd.Data())
if err != nil {
log.Warnf("input dag is not a unixfs node: %s", err)
return
}
if !fsn.IsDir() {
return
}
for _, ln := range nnd.Links() {
node, err := b.getNodeByLink(ln)
if err != nil {
return node, err
}
fn.Link = append(fn.Link, node)
}
return
}
func BuildIpldGraph(ctx context.Context, fileList []Finfo, graphName, parentPath, carDir string, parallel int, cb GraphBuildCallback) {
node, fsDetail, err := buildIpldGraph(ctx, fileList, parentPath, carDir, parallel)
if err != nil {
//log.Fatal(err)
cb.OnError(err)
return
}
cb.OnSuccess(node, graphName, fsDetail)
}
func buildIpldGraph(ctx context.Context, fileList []Finfo, parentPath, carDir string, parallel int) (ipld.Node, string, error) {
bs2 := bstore.NewBlockstore(dss.MutexWrap(datastore.NewMapDatastore()))
dagServ := merkledag.NewDAGService(blockservice.New(bs2, offline.Exchange(bs2)))
cidBuilder, err := merkledag.PrefixForCidVersion(0)
if err != nil {
return nil, "", err
}
fileNodeMap := make(map[string]*dag.ProtoNode)
dirNodeMap := make(map[string]*dag.ProtoNode)
var rootNode *dag.ProtoNode
rootNode = unixfs.EmptyDirNode()
rootNode.SetCidBuilder(cidBuilder)
var rootKey = "root"
dirNodeMap[rootKey] = rootNode
fmt.Println("************ start to build ipld **************")
// build file node
// parallel build
cpun := runtime.NumCPU()
if parallel > cpun {
parallel = cpun
}
pchan := make(chan struct{}, parallel)
wg := sync.WaitGroup{}
lock := sync.Mutex{}
for i, item := range fileList {
wg.Add(1)
go func(i int, item Finfo) {
defer func() {
<-pchan
wg.Done()
}()
pchan <- struct{}{}
fileNode, err := BuildFileNode(item, dagServ, cidBuilder)
if err != nil {
log.Warn(err)
return
}
fn, ok := fileNode.(*dag.ProtoNode)
if !ok {
emsg := "file node should be *dag.ProtoNode"
log.Warn(emsg)
return
}
lock.Lock()
fileNodeMap[item.Path] = fn
lock.Unlock()
fmt.Println(item.Path)
log.Infof("file node: %s", fileNode)
}(i, item)
}
wg.Wait()
// build dir tree
for _, item := range fileList {
// log.Info(item.Path)
// log.Infof("file name: %s, file size: %d, item size: %d, seek-start:%d, seek-end:%d", item.Name, item.Info.Size(), item.SeekEnd-item.SeekStart, item.SeekStart, item.SeekEnd)
dirStr := path.Dir(item.Path)
parentPath = path.Clean(parentPath)
// when parent path equal target path, and the parent path is also a file path
if parentPath == path.Clean(item.Path) {
dirStr = ""
} else if parentPath != "" && strings.HasPrefix(dirStr, parentPath) {
dirStr = dirStr[len(parentPath):]
}
if strings.HasPrefix(dirStr, "/") {
dirStr = dirStr[1:]
}
var dirList []string
if dirStr == "" {
dirList = []string{}
} else {
dirList = strings.Split(dirStr, "/")
}
fileNode, ok := fileNodeMap[item.Path]
if !ok {
panic("unexpected, missing file node")
}
if len(dirList) == 0 {
dirNodeMap[rootKey].AddNodeLink(item.Name, fileNode)
continue
}
//log.Info(item.Path)
//log.Info(dirList)
i := len(dirList) - 1
for ; i >= 0; i-- {
// get dirNodeMap by index
var ok bool
var dirNode *dag.ProtoNode
var parentNode *dag.ProtoNode
var parentKey string
dir := dirList[i]
dirKey := getDirKey(dirList, i)
log.Info(dirList)
log.Infof("dirKey: %s", dirKey)
dirNode, ok = dirNodeMap[dirKey]
if !ok {
dirNode = unixfs.EmptyDirNode()
dirNode.SetCidBuilder(cidBuilder)
dirNodeMap[dirKey] = dirNode
}
// add file node to its nearest parent node
if i == len(dirList)-1 {
dirNode.AddNodeLink(item.Name, fileNode)
}
if i == 0 {
parentKey = rootKey
} else {
parentKey = getDirKey(dirList, i-1)
}
log.Infof("parentKey: %s", parentKey)
parentNode, ok = dirNodeMap[parentKey]
if !ok {
parentNode = unixfs.EmptyDirNode()
parentNode.SetCidBuilder(cidBuilder)
dirNodeMap[parentKey] = parentNode
}
if isLinked(parentNode, dir) {
parentNode, err = parentNode.UpdateNodeLink(dir, dirNode)
if err != nil {
return nil, "", err
}
dirNodeMap[parentKey] = parentNode
} else {
parentNode.AddNodeLink(dir, dirNode)
}
}
}
for _, node := range dirNodeMap {
//fmt.Printf("add node to store: %v\n", node)
//fmt.Printf("key: %s, links: %v\n", key, len(node.Links()))
dagServ.Add(ctx, node)
}
rootNode = dirNodeMap[rootKey]
fmt.Printf("root node cid: %s\n", rootNode.Cid())
log.Infof("start to generate car for %s", rootNode.Cid())
genCarStartTime := time.Now()
//car
carF, err := os.Create(path.Join(carDir, rootNode.Cid().String()+".car"))
if err != nil {
return nil, "", err
}
defer carF.Close()
selector := allSelector()
sc := car.NewSelectiveCar(ctx, bs2, []car.Dag{{Root: rootNode.Cid(), Selector: selector}})
err = sc.Write(carF)
// cario := cario.NewCarIO()
// err = cario.WriteCar(context.Background(), bs2, rootNode.Cid(), selector, carF)
if err != nil {
return nil, "", err
}
log.Infof("generate car file completed, time elapsed: %s", time.Now().Sub(genCarStartTime))
fsBuilder := NewFSBuilder(rootNode, dagServ)
fsNode, err := fsBuilder.Build()
if err != nil {
return nil, "", err
}
fsNodeBytes, err := json.Marshal(fsNode)
if err != nil {
return nil, "", err
}
//log.Info(dirNodeMap)
fmt.Println("++++++++++++ finished to build ipld +++++++++++++")
return rootNode, fmt.Sprintf("%s", fsNodeBytes), nil
}
func allSelector() ipldprime.Node {
ssb := builder.NewSelectorSpecBuilder(basicnode.Prototype.Any)
return ssb.ExploreRecursive(selector.RecursionLimitNone(),
ssb.ExploreAll(ssb.ExploreRecursiveEdge())).
Node()
}
func getDirKey(dirList []string, i int) (key string) {
for j := 0; j <= i; j++ {
key += dirList[j]
if j < i {
key += "."
}
}
return
}
func isLinked(node *dag.ProtoNode, name string) bool {
for _, lk := range node.Links() {
if lk.Name == name {
return true
}
}
return false
}
type fileSlice struct {
r *os.File
offset int64
start int64
end int64
fileSize int64
}
func (fs *fileSlice) Read(p []byte) (n int, err error) {
if fs.end == 0 {
fs.end = fs.fileSize - 1
}
if fs.offset == 0 && fs.start > 0 {
_, err = fs.r.Seek(fs.start, 0)
if err != nil {
log.Warn(err)
return 0, err
}
fs.offset = fs.start
}
//fmt.Printf("offset: %d, end: %d, start: %d, size: %d\n", fs.offset, fs.end, fs.start, fs.fileSize)
if fs.end-fs.offset+1 == 0 {
return 0, io.EOF
}
if fs.end-fs.offset+1 < 0 {
return 0, xerrors.Errorf("read data out bound of the slice")
}
plen := len(p)
leftLen := fs.end - fs.offset + 1
if leftLen > int64(plen) {
n, err = fs.r.Read(p)
if err != nil {
log.Warn(err)
return
}
//fmt.Printf("read num: %d\n", n)
fs.offset += int64(n)
return
}
b := make([]byte, leftLen)
n, err = fs.r.Read(b)
if err != nil {
return
}
//fmt.Printf("read num: %d\n", n)
fs.offset += int64(n)
return copy(p, b), io.EOF
}
func BuildFileNode(item Finfo, bufDs ipld.DAGService, cidBuilder cid.Builder) (node ipld.Node, err error) {
var r io.Reader
f, err := os.Open(item.Path)
if err != nil {
return nil, err
}
defer f.Close()
r = f
// read all data of item
if item.SeekStart > 0 || item.SeekEnd > 0 {
r = &fileSlice{
r: f,
start: item.SeekStart,
end: item.SeekEnd,
fileSize: item.Info.Size(),
}
}
params := ihelper.DagBuilderParams{
Maxlinks: UnixfsLinksPerLevel,
RawLeaves: false,
CidBuilder: cidBuilder,
Dagserv: bufDs,
NoCopy: false,
}
db, err := params.New(chunker.NewSizeSplitter(r, int64(UnixfsChunkSize)))
if err != nil {
return nil, err
}
node, err = balanced.Layout(db)
if err != nil {
return nil, err
}
return
}
func GenGraphName(graphName string, sliceCount, sliceTotal int) string {
if sliceTotal == 1 {
return fmt.Sprintf("%s.car", graphName)
}
return fmt.Sprintf("%s-total-%d-part-%d.car", graphName, sliceTotal, sliceCount+1)
}
func GetGraphCount(args []string, sliceSize int64) int {
list, err := GetFileList(args)
if err != nil {
panic(err)
}
var totalSize int64 = 0
for _, path := range list {
finfo, err := os.Stat(path)
if err != nil {
panic(err)
}
totalSize += finfo.Size()
}
if totalSize == 0 {
return 0
}
count := (totalSize / sliceSize) + 1
return int(count)
}
func GetFileListAsync(args []string) chan Finfo {
fichan := make(chan Finfo, 0)
go func() {
defer close(fichan)
for _, path := range args {
finfo, err := os.Stat(path)
if err != nil {
log.Warn(err)
return
}
// 忽略隐藏目录
if strings.HasPrefix(finfo.Name(), ".") {
continue
}
if finfo.IsDir() {
files, err := ioutil.ReadDir(path)
if err != nil {
log.Warn(err)
return
}
templist := make([]string, 0)
for _, n := range files {
templist = append(templist, fmt.Sprintf("%s/%s", path, n.Name()))
}
embededChan := GetFileListAsync(templist)
if err != nil {
log.Warn(err)
return
}
for item := range embededChan {
fichan <- item
}
} else {
fichan <- Finfo{
Path: path,
Name: finfo.Name(),
Info: finfo,
}
}
}
}()
return fichan
}
func GetFileList(args []string) (fileList []string, err error) {
fileList = make([]string, 0)
for _, path := range args {
finfo, err := os.Stat(path)
if err != nil {
return nil, err
}
// 忽略隐藏目录
if strings.HasPrefix(finfo.Name(), ".") {
continue
}
if finfo.IsDir() {
files, err := ioutil.ReadDir(path)
if err != nil {
return nil, err
}
templist := make([]string, 0)
for _, n := range files {
templist = append(templist, fmt.Sprintf("%s/%s", path, n.Name()))
}
list, err := GetFileList(templist)
if err != nil {
return nil, err
}
fileList = append(fileList, list...)
} else {
fileList = append(fileList, path)
}
}
return
}
// piece info
type PieceInfo struct {
PayloadCid string `csv:"payload_cid"`
Filename string `csv:"filename"`
PieceCid string `csv:"piece_cid"`
PieceSize uint64 `csv:"piece_size"`
}
// manifest
type Manifest struct {
PayloadCid string `csv:"payload_cid"`
Filename string `csv:"filename"`
}