Documentation
¶
Index ¶
- Constants
- Variables
- func GetFileType(path string) (string, error)
- func NewHttpServer(db *Database, storage, cache *RWFileStorage, addr string) *http.Server
- func NewRemoteServer(remoteURL string) *remoteServer
- type Book
- type BookId
- type Database
- func (db *Database) Close()
- func (db *Database) Delete(bucket, key []byte) error
- func (db *Database) DeleteBook(bookid BookId) error
- func (db *Database) DeleteFile(path string) error
- func (db *Database) Dump(w io.Writer) error
- func (db *Database) Find(uniqueIds []string) (*Book, error)
- func (db *Database) Get(bucket, key []byte, obj interface{}) error
- func (db *Database) GetBook(bookid BookId) (*Book, error)
- func (db *Database) GetBookFiles(bookid BookId) ([]*File, error)
- func (db *Database) GetFile(path string) (*File, error)
- func (db *Database) ListBooks(w io.Writer, matchFuncs ...func(book *Book) bool) error
- func (db *Database) Put(bucket, key []byte, obj interface{}) error
- func (db *Database) PutBook(b *Book) error
- func (db *Database) PutFile(f *File) error
- func (db *Database) RawPut(key, value []byte) error
- func (db *Database) RefineFunc(dir string, chooser MetadataChooserFunc) func(*Book) error
- func (db *Database) Reindex() error
- func (db *Database) Restore(r io.Reader) error
- func (db *Database) Scan(bucket []byte) *DatabaseIterator
- func (db *Database) Search(queryStr string, offset, limit int) (*SearchResult, error)
- func (db *Database) Suggest(term string) (*SearchResult, error)
- func (db *Database) Sync(storage *FileStorage, remote SyncClient) error
- func (db *Database) Update(dir string, chooser MetadataChooserFunc)
- func (db *Database) WithBookIDs(r io.Reader, f func(book *Book) error) error
- type DatabaseIterator
- type File
- type FileStorage
- func (s *FileStorage) Abs(path string) string
- func (s *FileStorage) Create(path string) (*os.File, error)
- func (s *FileStorage) Exists(path string) bool
- func (s *FileStorage) Open(path string) (*os.File, error)
- func (s *FileStorage) Rel(abspath string) (string, error)
- func (s *FileStorage) Rename(oldpath, newpath string) error
- func (s *FileStorage) Walk(w *util.Walker, fn filepath.WalkFunc)
- type Metadata
- type MetadataChooserFunc
- type MetadataProvider
- type MetadataRefiner
- type MetadataSource
- type RWFileStorage
- type SearchResult
- type SyncClient
Constants ¶
const ( SourceDB = 1 << iota SourceFS )
Variables ¶
var ( BookBucket = []byte("ebook") FileBucket = []byte("file") BookFileBucket = []byte("ebook_file") )
Functions ¶
func GetFileType ¶
func NewHttpServer ¶
func NewHttpServer(db *Database, storage, cache *RWFileStorage, addr string) *http.Server
func NewRemoteServer ¶
func NewRemoteServer(remoteURL string) *remoteServer
Types ¶
type Database ¶
type Database struct {
// contains filtered or unexported fields
}
func (*Database) DeleteBook ¶
func (*Database) DeleteFile ¶
func (*Database) ListBooks ¶
ListBooks writes IDs of books that match any of a series of functions to an io.Writer.
func (*Database) RefineFunc ¶
func (db *Database) RefineFunc(dir string, chooser MetadataChooserFunc) func(*Book) error
func (*Database) Reindex ¶
Reindex the entire database. This is an administrative operation, to be performed after an incompatible index schema change. It will delete the existing index and re-create it from scratch.
func (*Database) Scan ¶
func (db *Database) Scan(bucket []byte) *DatabaseIterator
Scan an entire bucket.
func (*Database) Search ¶
func (db *Database) Search(queryStr string, offset, limit int) (*SearchResult, error)
Search the database with a query string.
func (*Database) Suggest ¶
func (db *Database) Suggest(term string) (*SearchResult, error)
Autocomplete runs a fuzzy search for a term.
func (*Database) Sync ¶
func (db *Database) Sync(storage *FileStorage, remote SyncClient) error
Sync the local database with a remote one. This is a one-way synchronization: files missing on the remote side will be uploaded to it.
func (*Database) Update ¶
func (db *Database) Update(dir string, chooser MetadataChooserFunc)
type DatabaseIterator ¶
type DatabaseIterator struct {
// contains filtered or unexported fields
}
func (*DatabaseIterator) Close ¶
func (i *DatabaseIterator) Close() error
func (*DatabaseIterator) Id ¶
func (i *DatabaseIterator) Id() BookId
func (*DatabaseIterator) Next ¶
func (i *DatabaseIterator) Next() bool
func (*DatabaseIterator) RawKey ¶
func (i *DatabaseIterator) RawKey() []byte
func (*DatabaseIterator) RawValue ¶
func (i *DatabaseIterator) RawValue() []byte
func (*DatabaseIterator) Value ¶
func (i *DatabaseIterator) Value(obj interface{}) error
type FileStorage ¶
type FileStorage struct {
Root string
}
FileStorage exposes a read-only filesystem hierarchy as a root for relative paths (so that you can move archives around while the database is still valid). Calls will still accept absolute paths for backwards compatibility.
func NewFileStorage ¶
func NewFileStorage(root string) *FileStorage
func (*FileStorage) Abs ¶
func (s *FileStorage) Abs(path string) string
Return the absolute path of a file, given its relative path.
func (*FileStorage) Create ¶
func (s *FileStorage) Create(path string) (*os.File, error)
Create a new file for the given key. Directories containing the output file will be automatically created.
func (*FileStorage) Exists ¶
func (s *FileStorage) Exists(path string) bool
Exists returns true if the specified file exists.
func (*FileStorage) Rel ¶
func (s *FileStorage) Rel(abspath string) (string, error)
Return the relative path of a file with respect to the storage root.
func (*FileStorage) Rename ¶
func (s *FileStorage) Rename(oldpath, newpath string) error
Rename oldpath to newpath.
type Metadata ¶
type Metadata struct { Title string Date string Description string ISBN []string Creator []string Language []string Publisher []string Format []string Keywords []string Sources []MetadataSource }
func (*Metadata) Complete ¶
Complete returns true if we're satisfied with the quality of the information about this book. If this returns true, remote checks will be skipped.
func (*Metadata) Equals ¶
Equals returns true if we think the two Metadata objects refer to the same book.
func (*Metadata) Merge ¶
Merge with a more authoritative metadata source. Fields that are set in 'other' will take precedence over the ones in the receiver.
func (*Metadata) Sufficient ¶
Sufficient returns true if the object contains enough information. If this check does not pass, the book won't be added to the database.
type MetadataChooserFunc ¶
type MetadataProvider ¶
type MetadataProvider interface { Name() string Lookup(*FileStorage, string, string) (*Metadata, error) GetBookCover(*FileStorage, string) (string, error) }
A metadata provider generates metadata from the local filesystem.
type MetadataRefiner ¶
type MetadataRefiner interface { Name() string Lookup(*Metadata) ([]*Metadata, error) GetBookCover(*Metadata) ([]byte, error) }
A metadata refiner improves on existing metadata and may provide more than one result to choose from. It usually involves talking to a remote service.
type MetadataSource ¶
type RWFileStorage ¶
type RWFileStorage struct { *FileStorage Nesting int }
RWFileStorage adds a read-write API on top of a FileStorage, based on unique keys and directory sharding.
func NewRWFileStorage ¶
func NewRWFileStorage(root string, nesting int) *RWFileStorage
func (*RWFileStorage) Path ¶
func (s *RWFileStorage) Path(key string) string
Path of the file corresponding to the given key, relative to the root directory.
type SearchResult ¶
type SyncClient ¶
type SyncClient interface { DiffRequest(*diffRequest) (*diffResponse, error) SendBook(*Book, *FileStorage, []*File) error }