tracker/storage/storage.go

89 lines
2.2 KiB
Go
Raw Normal View History

// Copyright 2013 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
// Package storage provides a generic interface for manipulating a
// BitTorrent tracker's data store.
2013-06-22 01:31:32 +02:00
package storage
import (
"errors"
2013-06-22 01:31:32 +02:00
"fmt"
"github.com/pushrax/chihaya/config"
2013-06-22 01:31:32 +02:00
)
var (
drivers = make(map[string]Driver)
ErrTxDone = errors.New("storage: Transaction has already been committed or rolled back")
)
2013-06-22 01:31:32 +02:00
2013-06-26 03:58:06 +02:00
type Driver interface {
New(*config.Storage) DS
2013-06-22 01:31:32 +02:00
}
// Register makes a database driver available by the provided name.
// If Register is called twice with the same name or if driver is nil,
// it panics.
2013-06-26 03:58:06 +02:00
func Register(name string, driver Driver) {
2013-06-22 01:31:32 +02:00
if driver == nil {
panic("storage: Register driver is nil")
}
if _, dup := drivers[name]; dup {
panic("storage: Register called twice for driver " + name)
}
drivers[name] = driver
}
// Open opens a data store specified by a storage configuration.
func Open(conf *config.Storage) (DS, error) {
driver, ok := drivers[conf.Driver]
2013-06-22 01:31:32 +02:00
if !ok {
return nil, fmt.Errorf(
"storage: unknown driver %q (forgotten import?)",
conf.Driver,
2013-06-22 01:31:32 +02:00
)
}
2013-07-04 00:24:03 +02:00
pool := driver.New(conf)
return pool, nil
2013-06-22 01:31:32 +02:00
}
// DS represents a data store handle. It's expected to be safe for concurrent
// use by multiple goroutines.
//
// A pool of connections or a database/sql.DB is a great concrete type to
// implement the DS interface.
type DS interface {
2013-06-23 09:56:28 +02:00
Close() error
2013-06-22 01:31:32 +02:00
Begin() (Tx, error)
2013-07-04 00:24:03 +02:00
FindUser(passkey string) (*User, bool, error)
FindTorrent(infohash string) (*Torrent, bool, error)
ClientWhitelisted(peerID string) (bool, error)
2013-07-04 00:24:03 +02:00
}
2013-06-22 01:31:32 +02:00
// Tx represents an in-progress data store transaction.
// A transaction must end with a call to Commit or Rollback.
//
// After a call to Commit or Rollback, all operations on the
// transaction must fail with ErrTxDone.
2013-07-04 00:24:03 +02:00
type Tx interface {
Commit() error
Rollback() error
2013-07-04 00:24:03 +02:00
2013-07-12 06:36:24 +02:00
// Torrents
Snatch(userID, torrentID uint64) error
Unprune(torrentID uint64) error
// Peers
NewLeecher(torrent *Torrent, p *Peer) error
RmLeecher(torrentID uint64, peerID string) error
NewSeeder(torrent *Torrent, p *Peer) error
RmSeeder(torrentID uint64, peerID string) error
// Users
DecrementSlots(userID uint64) error
2013-06-22 01:31:32 +02:00
}