Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
551c4093
提交
551c4093
authored
9月 17, 2014
作者:
Juan Batiz-Benet
提交者:
Brian Tiger Chow
9月 22, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chan queue
上级
ae1f7688
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
117 行增加
和
1 行删除
+117
-1
queue_test.go
peer/queue/queue_test.go
+59
-1
sync.go
peer/queue/sync.go
+58
-0
没有找到文件。
peer/queue/queue_test.go
浏览文件 @
551c4093
package
queue
import
(
"fmt"
"testing"
"time"
peer
"github.com/jbenet/go-ipfs/peer"
u
"github.com/jbenet/go-ipfs/util"
context
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
)
func
newPeer
(
id
string
)
*
peer
.
Peer
{
return
&
peer
.
Peer
{
ID
:
peer
.
ID
(
id
)}
}
func
Test
Peerstor
e
(
t
*
testing
.
T
)
{
func
Test
Queu
e
(
t
*
testing
.
T
)
{
p1
:=
newPeer
(
"11140beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a31"
)
p2
:=
newPeer
(
"11140beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a32"
)
...
...
@@ -60,3 +64,57 @@ func TestPeerstore(t *testing.T) {
}
}
func
newPeerTime
(
t
time
.
Time
)
*
peer
.
Peer
{
s
:=
fmt
.
Sprintf
(
"hmmm time: %v"
,
t
)
h
,
_
:=
u
.
Hash
([]
byte
(
s
))
return
&
peer
.
Peer
{
ID
:
peer
.
ID
(
h
)}
}
func
TestSyncQueue
(
t
*
testing
.
T
)
{
ctx
,
_
:=
context
.
WithTimeout
(
context
.
Background
(),
time
.
Second
*
2
)
pq
:=
NewXORDistancePQ
(
u
.
Key
(
"11140beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a31"
))
cq
:=
NewChanQueue
(
ctx
,
pq
)
countIn
:=
0
countOut
:=
0
produce
:=
func
()
{
tick
:=
time
.
Tick
(
time
.
Millisecond
)
for
{
select
{
case
tim
:=
<-
tick
:
countIn
++
cq
.
EnqChan
<-
newPeerTime
(
tim
)
case
<-
ctx
.
Done
()
:
return
}
}
}
consume
:=
func
()
{
for
{
select
{
case
<-
cq
.
DeqChan
:
countOut
++
case
<-
ctx
.
Done
()
:
return
}
}
}
for
i
:=
0
;
i
<
10
;
i
++
{
go
produce
()
go
produce
()
go
consume
()
}
select
{
case
<-
ctx
.
Done
()
:
}
if
countIn
!=
countOut
{
t
.
Errorf
(
"didnt get them all out: %d/%d"
,
countOut
,
countIn
)
}
}
peer/queue/sync.go
0 → 100644
浏览文件 @
551c4093
package
queue
import
(
context
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
peer
"github.com/jbenet/go-ipfs/peer"
)
// ChanQueue makes any PeerQueue synchronizable through channels.
type
ChanQueue
struct
{
Queue
PeerQueue
EnqChan
chan
*
peer
.
Peer
DeqChan
chan
*
peer
.
Peer
}
// NewChanQueue creates a ChanQueue by wrapping pq.
func
NewChanQueue
(
ctx
context
.
Context
,
pq
PeerQueue
)
*
ChanQueue
{
cq
:=
&
ChanQueue
{
Queue
:
pq
,
EnqChan
:
make
(
chan
*
peer
.
Peer
,
10
),
DeqChan
:
make
(
chan
*
peer
.
Peer
,
10
),
}
go
cq
.
process
(
ctx
)
return
cq
}
func
(
cq
*
ChanQueue
)
process
(
ctx
context
.
Context
)
{
var
next
*
peer
.
Peer
for
{
if
cq
.
Queue
.
Len
()
==
0
{
select
{
case
next
=
<-
cq
.
EnqChan
:
case
<-
ctx
.
Done
()
:
close
(
cq
.
DeqChan
)
return
}
}
else
{
next
=
cq
.
Queue
.
Dequeue
()
}
select
{
case
item
:=
<-
cq
.
EnqChan
:
cq
.
Queue
.
Enqueue
(
item
)
cq
.
Queue
.
Enqueue
(
next
)
next
=
nil
case
cq
.
DeqChan
<-
next
:
next
=
nil
case
<-
ctx
.
Done
()
:
close
(
cq
.
DeqChan
)
return
}
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论