2016-08-31 07:48:50 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
2016-08-31 08:02:45 +00:00
|
|
|
"io"
|
2016-08-31 07:48:50 +00:00
|
|
|
"path/filepath"
|
|
|
|
|
2016-08-31 11:00:44 +00:00
|
|
|
"github.com/anacrolix/missinggo"
|
2016-08-31 07:48:50 +00:00
|
|
|
"github.com/boltdb/bolt"
|
|
|
|
|
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
|
|
|
)
|
|
|
|
|
2016-08-31 11:00:44 +00:00
|
|
|
const (
|
|
|
|
// Chosen to match the usual chunk size in a torrent client. This way,
|
|
|
|
// most chunk writes are to exactly one full item in bolt DB.
|
|
|
|
chunkSize = 1 << 14
|
|
|
|
)
|
2016-08-31 08:04:11 +00:00
|
|
|
|
2016-08-31 07:48:50 +00:00
|
|
|
var (
|
2016-08-31 11:00:44 +00:00
|
|
|
// The key for the data bucket.
|
|
|
|
data = []byte("data")
|
|
|
|
// The key for the completion flag bucket.
|
2016-08-31 07:48:50 +00:00
|
|
|
completed = []byte("completed")
|
2016-08-31 11:00:44 +00:00
|
|
|
// The value to assigned to pieces that are complete in the completed
|
|
|
|
// bucket.
|
|
|
|
completedValue = []byte{1}
|
2016-08-31 07:48:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type boltDBClient struct {
|
2016-08-31 11:00:44 +00:00
|
|
|
// TODO: This is never closed.
|
2016-08-31 07:48:50 +00:00
|
|
|
db *bolt.DB
|
|
|
|
}
|
|
|
|
|
|
|
|
type boltDBTorrent struct {
|
|
|
|
cl *boltDBClient
|
|
|
|
ih metainfo.Hash
|
|
|
|
}
|
|
|
|
|
|
|
|
type boltDBPiece struct {
|
|
|
|
db *bolt.DB
|
|
|
|
p metainfo.Piece
|
|
|
|
key [24]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewBoltDB(filePath string) Client {
|
|
|
|
ret := &boltDBClient{}
|
|
|
|
var err error
|
|
|
|
ret.db, err = bolt.Open(filepath.Join(filePath, "bolt.db"), 0600, nil)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *boltDBClient) OpenTorrent(info *metainfo.Info, infoHash metainfo.Hash) (Torrent, error) {
|
|
|
|
return &boltDBTorrent{me, infoHash}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *boltDBTorrent) Piece(p metainfo.Piece) Piece {
|
|
|
|
ret := &boltDBPiece{p: p, db: me.cl.db}
|
|
|
|
copy(ret.key[:], me.ih[:])
|
|
|
|
binary.BigEndian.PutUint32(ret.key[20:], uint32(p.Index()))
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (boltDBTorrent) Close() error { return nil }
|
|
|
|
|
|
|
|
func (me *boltDBPiece) GetIsComplete() (complete bool) {
|
|
|
|
err := me.db.View(func(tx *bolt.Tx) error {
|
|
|
|
cb := tx.Bucket(completed)
|
|
|
|
// db := tx.Bucket(data)
|
|
|
|
complete =
|
|
|
|
cb != nil && len(cb.Get(me.key[:])) != 0
|
|
|
|
// db != nil && int64(len(db.Get(me.key[:]))) == me.p.Length()
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *boltDBPiece) MarkComplete() error {
|
|
|
|
return me.db.Update(func(tx *bolt.Tx) (err error) {
|
|
|
|
b, err := tx.CreateBucketIfNotExists(completed)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2016-08-31 11:00:44 +00:00
|
|
|
b.Put(me.key[:], completedValue)
|
2016-08-31 07:48:50 +00:00
|
|
|
return
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *boltDBPiece) ReadAt(b []byte, off int64) (n int, err error) {
|
|
|
|
err = me.db.View(func(tx *bolt.Tx) error {
|
|
|
|
db := tx.Bucket(data)
|
|
|
|
if db == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2016-08-31 08:04:11 +00:00
|
|
|
ci := off / chunkSize
|
|
|
|
off %= chunkSize
|
2016-08-31 07:48:50 +00:00
|
|
|
for len(b) != 0 {
|
|
|
|
ck := me.chunkKey(int(ci))
|
|
|
|
_b := db.Get(ck[:])
|
2016-08-31 08:04:11 +00:00
|
|
|
if len(_b) != chunkSize {
|
2016-08-31 07:48:50 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
n1 := copy(b, _b[off:])
|
|
|
|
off = 0
|
|
|
|
ci++
|
|
|
|
b = b[n1:]
|
|
|
|
n += n1
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2016-08-31 08:02:45 +00:00
|
|
|
if n == 0 && err == nil {
|
|
|
|
if off < me.p.Length() {
|
|
|
|
err = io.ErrUnexpectedEOF
|
|
|
|
} else {
|
|
|
|
err = io.EOF
|
|
|
|
}
|
|
|
|
}
|
2016-08-31 07:48:50 +00:00
|
|
|
// // log.Println(n, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *boltDBPiece) chunkKey(index int) (ret [26]byte) {
|
|
|
|
copy(ret[:], me.key[:])
|
|
|
|
binary.BigEndian.PutUint16(ret[24:], uint16(index))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *boltDBPiece) WriteAt(b []byte, off int64) (n int, err error) {
|
|
|
|
err = me.db.Update(func(tx *bolt.Tx) error {
|
|
|
|
db, err := tx.CreateBucketIfNotExists(data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-08-31 08:04:11 +00:00
|
|
|
ci := off / chunkSize
|
|
|
|
off %= chunkSize
|
2016-08-31 07:48:50 +00:00
|
|
|
for len(b) != 0 {
|
2016-08-31 08:04:11 +00:00
|
|
|
_b := make([]byte, chunkSize)
|
2016-08-31 07:48:50 +00:00
|
|
|
ck := me.chunkKey(int(ci))
|
|
|
|
copy(_b, db.Get(ck[:]))
|
|
|
|
n1 := copy(_b[off:], b)
|
|
|
|
db.Put(ck[:], _b)
|
|
|
|
if n1 > len(b) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
b = b[n1:]
|
|
|
|
off = 0
|
|
|
|
ci++
|
|
|
|
n += n1
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|