magnetico/pkg/persistence/stdout.go

79 lines
1.7 KiB
Go
Raw Normal View History

2019-09-18 02:51:58 +02:00
package persistence
import (
"encoding/hex"
2019-09-18 02:51:58 +02:00
"encoding/json"
"net/url"
"os"
"github.com/pkg/errors"
)
func makeStdoutDatabase(_ *url.URL) (Database, error) {
s := new(stdout)
s.encoder = json.NewEncoder(os.Stdout)
return s, nil
}
type stdout struct {
encoder *json.Encoder
}
func (s *stdout) Engine() databaseEngine {
return Stdout
}
func (s *stdout) DoesTorrentExist(infoHash []byte) (bool, error) {
// Always say that "No the torrent does not exist" because we do not have
// a way to know if we have seen it before or not.
// TODO:
// A possible improvement would be using bloom filters (with low false positive
// probabilities) to apply some reasonable filtering.
return false, nil
}
func (s *stdout) AddNewTorrent(infoHash []byte, name string, files []File) error {
2019-09-22 03:00:59 +02:00
err := s.encoder.Encode(SimpleTorrentSummary{
InfoHash: hex.EncodeToString(infoHash),
Name: name,
Files: files,
2019-09-18 02:51:58 +02:00
})
if err != nil {
return errors.Wrap(err, "DB engine stdout encode error")
}
return nil
}
func (s *stdout) Close() error {
return os.Stdout.Sync()
}
func (s *stdout) GetNumberOfTorrents() (uint, error) {
2020-11-27 18:55:57 +01:00
return 0, NotImplementedError
2019-09-18 02:51:58 +02:00
}
func (s *stdout) QueryTorrents(
query string,
epoch int64,
orderBy OrderingCriteria,
ascending bool,
limit uint,
lastOrderedValue *float64,
lastID *uint64,
) ([]TorrentMetadata, error) {
2020-11-27 18:55:57 +01:00
return nil, NotImplementedError
2019-09-18 02:51:58 +02:00
}
func (s *stdout) GetTorrent(infoHash []byte) (*TorrentMetadata, error) {
2020-11-27 18:55:57 +01:00
return nil, NotImplementedError
2019-09-18 02:51:58 +02:00
}
func (s *stdout) GetFiles(infoHash []byte) ([]File, error) {
2020-11-27 18:55:57 +01:00
return nil, NotImplementedError
2019-09-18 02:51:58 +02:00
}
func (s *stdout) GetStatistics(from string, n uint) (*Statistics, error) {
2020-11-27 18:55:57 +01:00
return nil, NotImplementedError
2019-09-18 02:51:58 +02:00
}