Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
43ff3c50
提交
43ff3c50
authored
11月 26, 2014
作者:
Brian Tiger Chow
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
style(blockservice) s/Remote/Exchange
License: MIT Signed-off-by:
Brian Tiger Chow
<
brian@perfmode.com
>
上级
f7cb6b99
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
7 行增加
和
7 行删除
+7
-7
blockservice.go
blockservice/blockservice.go
+7
-7
没有找到文件。
blockservice/blockservice.go
浏览文件 @
43ff3c50
...
...
@@ -25,7 +25,7 @@ var ErrNotFound = errors.New("blockservice: key not found")
type
BlockService
struct
{
// TODO don't expose underlying impl details
Blockstore
blockstore
.
Blockstore
Remote
exchange
.
Interface
Exchange
exchange
.
Interface
}
// NewBlockService creates a BlockService with given datastore instance.
...
...
@@ -36,7 +36,7 @@ func New(bs blockstore.Blockstore, rem exchange.Interface) (*BlockService, error
if
rem
==
nil
{
log
.
Warning
(
"blockservice running in local (offline) mode."
)
}
return
&
BlockService
{
Blockstore
:
bs
,
Remot
e
:
rem
},
nil
return
&
BlockService
{
Blockstore
:
bs
,
Exchang
e
:
rem
},
nil
}
// AddBlock adds a particular block to the service, Putting it into the datastore.
...
...
@@ -66,9 +66,9 @@ func (s *BlockService) AddBlock(b *blocks.Block) (u.Key, error) {
// TODO this operation rate-limits blockservice operations, we should
// consider moving this to an sync process.
if
s
.
Remot
e
!=
nil
{
if
s
.
Exchang
e
!=
nil
{
ctx
:=
context
.
TODO
()
err
=
s
.
Remot
e
.
HasBlock
(
ctx
,
b
)
err
=
s
.
Exchang
e
.
HasBlock
(
ctx
,
b
)
}
return
k
,
err
}
...
...
@@ -82,9 +82,9 @@ func (s *BlockService) GetBlock(ctx context.Context, k u.Key) (*blocks.Block, er
return
block
,
nil
// TODO be careful checking ErrNotFound. If the underlying
// implementation changes, this will break.
}
else
if
err
==
ds
.
ErrNotFound
&&
s
.
Remot
e
!=
nil
{
}
else
if
err
==
ds
.
ErrNotFound
&&
s
.
Exchang
e
!=
nil
{
log
.
Debug
(
"Blockservice: Searching bitswap."
)
blk
,
err
:=
s
.
Remot
e
.
GetBlock
(
ctx
,
k
)
blk
,
err
:=
s
.
Exchang
e
.
GetBlock
(
ctx
,
k
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -117,7 +117,7 @@ func (s *BlockService) GetBlocks(ctx context.Context, ks []u.Key) <-chan *blocks
}
}
rblocks
,
err
:=
s
.
Remot
e
.
GetBlocks
(
ctx
,
misses
)
rblocks
,
err
:=
s
.
Exchang
e
.
GetBlocks
(
ctx
,
misses
)
if
err
!=
nil
{
log
.
Errorf
(
"Error with GetBlocks: %s"
,
err
)
return
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论