2016-08-12 00:15:47 +02:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2016-08-12 02:02:10 +02:00
|
|
|
"math/rand"
|
2016-08-12 00:15:47 +02:00
|
|
|
"net"
|
2016-08-12 02:02:10 +02:00
|
|
|
"runtime"
|
|
|
|
"sync/atomic"
|
2016-08-12 00:15:47 +02:00
|
|
|
"testing"
|
|
|
|
|
2016-08-17 03:42:08 +02:00
|
|
|
"github.com/chihaya/chihaya/bittorrent"
|
2016-08-12 00:15:47 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type benchData struct {
|
|
|
|
infohashes [1000]bittorrent.InfoHash
|
|
|
|
peers [1000]bittorrent.Peer
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateInfohashes() (a [1000]bittorrent.InfoHash) {
|
2016-08-12 02:02:10 +02:00
|
|
|
r := rand.New(rand.NewSource(0))
|
2016-08-12 00:15:47 +02:00
|
|
|
for i := range a {
|
2016-08-12 02:02:10 +02:00
|
|
|
b := [20]byte{}
|
|
|
|
n, err := r.Read(b[:])
|
|
|
|
if err != nil || n != 20 {
|
|
|
|
panic("unable to create random bytes")
|
|
|
|
}
|
|
|
|
a[i] = bittorrent.InfoHash(b)
|
2016-08-12 00:15:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func generatePeers() (a [1000]bittorrent.Peer) {
|
2016-08-12 02:02:10 +02:00
|
|
|
r := rand.New(rand.NewSource(0))
|
2016-08-12 00:15:47 +02:00
|
|
|
for i := range a {
|
2016-08-12 02:02:10 +02:00
|
|
|
ip := make([]byte, 4)
|
|
|
|
n, err := r.Read(ip)
|
|
|
|
if err != nil || n != 4 {
|
|
|
|
panic("unable to create random bytes")
|
|
|
|
}
|
|
|
|
id := [20]byte{}
|
|
|
|
n, err = r.Read(id[:])
|
|
|
|
if err != nil || n != 20 {
|
|
|
|
panic("unable to create random bytes")
|
|
|
|
}
|
|
|
|
port := uint16(r.Uint32())
|
2016-08-12 00:15:47 +02:00
|
|
|
a[i] = bittorrent.Peer{
|
2016-08-12 02:02:10 +02:00
|
|
|
ID: bittorrent.PeerID(id),
|
2016-11-28 20:55:04 +01:00
|
|
|
IP: bittorrent.IP{IP: net.IP(ip), AddressFamily: bittorrent.IPv4},
|
2016-08-12 02:02:10 +02:00
|
|
|
Port: port,
|
2016-08-12 00:15:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type executionFunc func(int, PeerStore, *benchData) error
|
|
|
|
type setupFunc func(PeerStore, *benchData) error
|
|
|
|
|
2016-08-12 02:02:10 +02:00
|
|
|
func runBenchmark(b *testing.B, ps PeerStore, parallel bool, sf setupFunc, ef executionFunc) {
|
2016-08-12 00:15:47 +02:00
|
|
|
bd := &benchData{generateInfohashes(), generatePeers()}
|
2016-08-12 02:02:10 +02:00
|
|
|
spacing := int32(1000 / runtime.NumCPU())
|
2016-08-12 00:15:47 +02:00
|
|
|
if sf != nil {
|
|
|
|
err := sf(ps, bd)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2016-08-12 02:02:10 +02:00
|
|
|
offset := int32(0)
|
|
|
|
|
2016-08-12 00:15:47 +02:00
|
|
|
b.ResetTimer()
|
2016-08-12 02:02:10 +02:00
|
|
|
if parallel {
|
|
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
|
|
i := int(atomic.AddInt32(&offset, spacing))
|
|
|
|
for pb.Next() {
|
|
|
|
err := ef(i, ps, bd)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
err := ef(i, ps, bd)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
2016-08-12 00:15:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
b.StopTimer()
|
2016-08-12 02:39:09 +02:00
|
|
|
|
|
|
|
errChan := ps.Stop()
|
|
|
|
for err := range errChan {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
2016-08-12 00:15:47 +02:00
|
|
|
}
|
|
|
|
|
2017-08-24 12:45:17 +02:00
|
|
|
// Nop executes a no-op for each iteration.
|
|
|
|
// It should produce the same results for each PeerStore.
|
|
|
|
// This can be used to get an estimate of the impact of the benchmark harness
|
|
|
|
// on benchmark results and an estimate of the general performance of the system
|
|
|
|
// benchmarked on.
|
|
|
|
//
|
|
|
|
// Nop can run in parallel.
|
|
|
|
func Nop(b *testing.B, ps PeerStore) {
|
|
|
|
runBenchmark(b, ps, true, putPeers, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// Put benchmarks the PutSeeder method of a PeerStore by repeatedly Putting the
|
|
|
|
// same Peer for the same InfoHash.
|
|
|
|
//
|
|
|
|
// Put can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func Put(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
return ps.PutSeeder(bd.infohashes[0], bd.peers[0])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// Put1k benchmarks the PutSeeder method of a PeerStore by cycling through 1000
|
|
|
|
// Peers and Putting them into the swarm of one infohash.
|
|
|
|
//
|
|
|
|
// Put1k can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func Put1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
return ps.PutSeeder(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// Put1kInfohash benchmarks the PutSeeder method of a PeerStore by cycling
|
|
|
|
// through 1000 infohashes and putting the same peer into their swarms.
|
|
|
|
//
|
|
|
|
// Put1kInfohash can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func Put1kInfohash(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
return ps.PutSeeder(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// Put1kInfohash1k benchmarks the PutSeeder method of a PeerStore by cycling
|
|
|
|
// through 1000 infohashes and 1000 Peers and calling Put with them.
|
|
|
|
//
|
|
|
|
// Put1kInfohash1k can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func Put1kInfohash1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
err := ps.PutSeeder(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
2016-08-12 00:15:47 +02:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutDelete benchmarks the PutSeeder and DeleteSeeder methods of a PeerStore by
|
|
|
|
// calling PutSeeder followed by DeleteSeeder for one Peer and one infohash.
|
|
|
|
//
|
|
|
|
// PutDelete can not run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func PutDelete(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
err := ps.PutSeeder(bd.infohashes[0], bd.peers[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ps.DeleteSeeder(bd.infohashes[0], bd.peers[0])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutDelete1k benchmarks the PutSeeder and DeleteSeeder methods in the same way
|
|
|
|
// PutDelete does, but with one from 1000 Peers per iteration.
|
|
|
|
//
|
|
|
|
// PutDelete1k can not run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func PutDelete1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
err := ps.PutSeeder(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ps.DeleteSeeder(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutDelete1kInfohash behaves like PutDelete1k with 1000 infohashes instead of
|
|
|
|
// 1000 Peers.
|
|
|
|
//
|
|
|
|
// PutDelete1kInfohash can not run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func PutDelete1kInfohash(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
err := ps.PutSeeder(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
if err != nil {
|
|
|
|
}
|
|
|
|
return ps.DeleteSeeder(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutDelete1kInfohash1k behaves like PutDelete1k with 1000 infohashes in
|
|
|
|
// addition to 1000 Peers.
|
|
|
|
//
|
|
|
|
// PutDelete1kInfohash1k can not run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func PutDelete1kInfohash1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
err := ps.PutSeeder(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
2016-08-12 00:15:47 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-08-12 02:02:10 +02:00
|
|
|
err = ps.DeleteSeeder(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
2016-08-12 00:15:47 +02:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// DeleteNonexist benchmarks the DeleteSeeder method of a PeerStore by
|
|
|
|
// attempting to delete a Peer that is nonexistent.
|
|
|
|
//
|
|
|
|
// DeleteNonexist can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func DeleteNonexist(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.DeleteSeeder(bd.infohashes[0], bd.peers[0])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// DeleteNonexist1k benchmarks the DeleteSeeder method of a PeerStore by
|
|
|
|
// attempting to delete one of 1000 nonexistent Peers.
|
|
|
|
//
|
|
|
|
// DeleteNonexist can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func DeleteNonexist1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.DeleteSeeder(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// DeleteNonexist1kInfohash benchmarks the DeleteSeeder method of a PeerStore by
|
|
|
|
// attempting to delete one Peer from one of 1000 infohashes.
|
|
|
|
//
|
|
|
|
// DeleteNonexist1kInfohash can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func DeleteNonexist1kInfohash(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.DeleteSeeder(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// DeleteNonexist1kInfohash1k benchmarks the Delete method of a PeerStore by
|
|
|
|
// attempting to delete one of 1000 Peers from one of 1000 Infohashes.
|
|
|
|
//
|
|
|
|
// DeleteNonexist1kInfohash1k can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func DeleteNonexist1kInfohash1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.DeleteSeeder(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// GradNonexist benchmarks the GraduateLeecher method of a PeerStore by
|
|
|
|
// attempting to graduate a nonexistent Peer.
|
|
|
|
//
|
|
|
|
// GradNonexist can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func GradNonexist(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.GraduateLeecher(bd.infohashes[0], bd.peers[0])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// GradNonexist1k benchmarks the GraduateLeecher method of a PeerStore by
|
|
|
|
// attempting to graduate one of 1000 nonexistent Peers.
|
|
|
|
//
|
|
|
|
// GradNonexist1k can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func GradNonexist1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.GraduateLeecher(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// GradNonexist1kInfohash benchmarks the GraduateLeecher method of a PeerStore
|
|
|
|
// by attempting to graduate a nonexistent Peer for one of 100 Infohashes.
|
|
|
|
//
|
|
|
|
// GradNonexist1kInfohash can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func GradNonexist1kInfohash(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.GraduateLeecher(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// GradNonexist1kInfohash1k benchmarks the GraduateLeecher method of a PeerStore
|
|
|
|
// by attempting to graduate one of 1000 nonexistent Peers for one of 1000
|
|
|
|
// infohashes.
|
|
|
|
//
|
|
|
|
// GradNonexist1kInfohash1k can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func GradNonexist1kInfohash1k(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.GraduateLeecher(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
|
|
|
return nil
|
2016-08-12 00:15:47 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutGradDelete benchmarks the PutLeecher, GraduateLeecher and DeleteSeeder
|
|
|
|
// methods of a PeerStore by adding one leecher to a swarm, promoting it to a
|
|
|
|
// seeder and deleting the seeder.
|
|
|
|
//
|
|
|
|
// PutGradDelete can not run in parallel.
|
2016-08-12 02:02:10 +02:00
|
|
|
func PutGradDelete(b *testing.B, ps PeerStore) {
|
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
err := ps.PutLeecher(bd.infohashes[0], bd.peers[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ps.GraduateLeecher(bd.infohashes[0], bd.peers[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ps.DeleteSeeder(bd.infohashes[0], bd.peers[0])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutGradDelete1k behaves like PutGradDelete with one of 1000 Peers.
|
|
|
|
//
|
|
|
|
// PutGradDelete1k can not run in parallel.
|
2016-08-12 02:02:10 +02:00
|
|
|
func PutGradDelete1k(b *testing.B, ps PeerStore) {
|
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
err := ps.PutLeecher(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ps.GraduateLeecher(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ps.DeleteSeeder(bd.infohashes[0], bd.peers[i%1000])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutGradDelete1kInfohash behaves like PutGradDelete with one of 1000
|
|
|
|
// infohashes.
|
|
|
|
//
|
|
|
|
// PutGradDelete1kInfohash can not run in parallel.
|
2016-08-12 02:02:10 +02:00
|
|
|
func PutGradDelete1kInfohash(b *testing.B, ps PeerStore) {
|
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
err := ps.PutLeecher(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ps.GraduateLeecher(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ps.DeleteSeeder(bd.infohashes[i%1000], bd.peers[0])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// PutGradDelete1kInfohash1k behaves like PutGradDelete with one of 1000 Peers
|
|
|
|
// and one of 1000 infohashes.
|
|
|
|
//
|
|
|
|
// PutGradDelete1kInfohash can not run in parallel.
|
2016-08-12 02:02:10 +02:00
|
|
|
func PutGradDelete1kInfohash1k(b *testing.B, ps PeerStore) {
|
|
|
|
runBenchmark(b, ps, false, nil, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
err := ps.PutLeecher(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
2016-08-12 00:15:47 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-08-12 02:02:10 +02:00
|
|
|
err = ps.GraduateLeecher(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
2016-08-12 00:15:47 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-08-12 02:02:10 +02:00
|
|
|
err = ps.DeleteSeeder(bd.infohashes[i%1000], bd.peers[(i*3)%1000])
|
2016-08-12 00:15:47 +02:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-08-12 02:02:10 +02:00
|
|
|
func putPeers(ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
for i := 0; i < 1000; i++ {
|
|
|
|
for j := 0; j < 1000; j++ {
|
|
|
|
var err error
|
|
|
|
if j < 1000/2 {
|
|
|
|
err = ps.PutLeecher(bd.infohashes[i], bd.peers[j])
|
|
|
|
} else {
|
|
|
|
err = ps.PutSeeder(bd.infohashes[i], bd.peers[j])
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// AnnounceLeecher benchmarks the AnnouncePeers method of a PeerStore for
|
|
|
|
// announcing a leecher.
|
|
|
|
// The swarm announced to has 500 seeders and 500 leechers.
|
|
|
|
//
|
|
|
|
// AnnounceLeecher can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func AnnounceLeecher(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, putPeers, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
_, err := ps.AnnouncePeers(bd.infohashes[0], false, 50, bd.peers[0])
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// AnnounceLeecher1kInfohash behaves like AnnounceLeecher with one of 1000
|
|
|
|
// infohashes.
|
|
|
|
//
|
|
|
|
// AnnounceLeecher1kInfohash can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func AnnounceLeecher1kInfohash(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, putPeers, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
_, err := ps.AnnouncePeers(bd.infohashes[i%1000], false, 50, bd.peers[0])
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// AnnounceSeeder behaves like AnnounceLeecher with a seeder instead of a
|
|
|
|
// leecher.
|
|
|
|
//
|
|
|
|
// AnnounceSeeder can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func AnnounceSeeder(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, putPeers, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
_, err := ps.AnnouncePeers(bd.infohashes[0], true, 50, bd.peers[0])
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-05 20:06:42 +02:00
|
|
|
// AnnounceSeeder1kInfohash behaves like AnnounceSeeder with one of 1000
|
|
|
|
// infohashes.
|
|
|
|
//
|
|
|
|
// AnnounceSeeder1kInfohash can run in parallel.
|
2016-08-12 00:15:47 +02:00
|
|
|
func AnnounceSeeder1kInfohash(b *testing.B, ps PeerStore) {
|
2016-08-12 02:02:10 +02:00
|
|
|
runBenchmark(b, ps, true, putPeers, func(i int, ps PeerStore, bd *benchData) error {
|
2016-08-12 00:15:47 +02:00
|
|
|
_, err := ps.AnnouncePeers(bd.infohashes[i%1000], true, 50, bd.peers[0])
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
2017-08-24 12:45:17 +02:00
|
|
|
|
|
|
|
// ScrapeSwarm benchmarks the ScrapeSwarm method of a PeerStore.
|
|
|
|
// The swarm scraped has 500 seeders and 500 leechers.
|
|
|
|
//
|
|
|
|
// ScrapeSwarm can run in parallel.
|
|
|
|
func ScrapeSwarm(b *testing.B, ps PeerStore) {
|
|
|
|
runBenchmark(b, ps, true, putPeers, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.ScrapeSwarm(bd.infohashes[0], bittorrent.IPv4)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ScrapeSwarm1kInfohash behaves like ScrapeSwarm with one of 1000 infohashes.
|
|
|
|
//
|
|
|
|
// ScrapeSwarm1kInfohash can run in parallel.
|
|
|
|
func ScrapeSwarm1kInfohash(b *testing.B, ps PeerStore) {
|
|
|
|
runBenchmark(b, ps, true, putPeers, func(i int, ps PeerStore, bd *benchData) error {
|
|
|
|
ps.ScrapeSwarm(bd.infohashes[i%1000], bittorrent.IPv4)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|