Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
0f692baf
提交
0f692baf
authored
8月 03, 2017
作者:
Łukasz Magiera
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
reprovider: reduce pinned strategy i/o overhead
License: MIT Signed-off-by:
Łukasz Magiera
<
magik6k@gmail.com
>
上级
7e5e0cba
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
52 行增加
和
17 行删除
+52
-17
providers.go
exchange/reprovide/providers.go
+52
-17
没有找到文件。
exchange/reprovide/providers.go
浏览文件 @
0f692baf
...
...
@@ -2,7 +2,6 @@ package reprovide
import
(
"context"
"errors"
blocks
"github.com/ipfs/go-ipfs/blocks/blockstore"
merkledag
"github.com/ipfs/go-ipfs/merkledag"
...
...
@@ -29,36 +28,72 @@ func NewPinnedProvider(pinning pin.Pinner, dag merkledag.DAGService, onlyRoots b
outCh
:=
make
(
chan
*
cid
.
Cid
)
go
func
()
{
defer
close
(
outCh
)
set
.
ForEach
(
func
(
c
*
cid
.
Cid
)
error
{
for
c
:=
range
set
.
new
{
select
{
case
<-
ctx
.
Done
()
:
return
errors
.
New
(
"context cancelled"
)
return
case
outCh
<-
c
:
}
return
nil
})
}
}()
return
outCh
,
nil
}
}
func
pinSet
(
ctx
context
.
Context
,
pinning
pin
.
Pinner
,
dag
merkledag
.
DAGService
,
onlyRoots
bool
)
(
*
cid
.
Set
,
error
)
{
set
:=
cid
.
NewSet
()
for
_
,
key
:=
range
pinning
.
DirectKeys
()
{
set
.
Add
(
key
)
}
func
pinSet
(
ctx
context
.
Context
,
pinning
pin
.
Pinner
,
dag
merkledag
.
DAGService
,
onlyRoots
bool
)
(
*
streamingSet
,
error
)
{
set
:=
newStreamingSet
()
go
func
()
{
for
_
,
key
:=
range
pinning
.
DirectKeys
()
{
set
.
add
(
key
)
}
for
_
,
key
:=
range
pinning
.
RecursiveKeys
()
{
set
.
A
dd
(
key
)
for
_
,
key
:=
range
pinning
.
RecursiveKeys
()
{
set
.
a
dd
(
key
)
if
!
onlyRoots
{
err
:=
merkledag
.
EnumerateChildren
(
ctx
,
dag
.
GetLinks
,
key
,
set
.
Visit
)
if
err
!=
nil
{
return
nil
,
err
if
!
onlyRoots
{
err
:=
merkledag
.
EnumerateChildren
(
ctx
,
dag
.
GetLinks
,
key
,
set
.
add
)
if
err
!=
nil
{
return
//TODO: propagate to chan / log?
}
}
}
}
close
(
set
.
new
)
}()
return
set
,
nil
}
type
streamingSet
struct
{
set
map
[
string
]
struct
{}
new
chan
*
cid
.
Cid
}
// NewSet initializes and returns a new Set.
func
newStreamingSet
()
*
streamingSet
{
return
&
streamingSet
{
set
:
make
(
map
[
string
]
struct
{}),
new
:
make
(
chan
*
cid
.
Cid
),
}
}
// has returns if the Set contains a given Cid.
func
(
s
*
streamingSet
)
has
(
c
*
cid
.
Cid
)
bool
{
_
,
ok
:=
s
.
set
[
string
(
c
.
Bytes
())]
return
ok
}
// add adds a Cid to the set only if it is
// not in it already.
func
(
s
*
streamingSet
)
add
(
c
*
cid
.
Cid
)
bool
{
if
!
s
.
has
(
c
)
{
s
.
set
[
string
(
c
.
Bytes
())]
=
struct
{}{}
s
.
new
<-
c
return
true
}
return
false
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论