seaweedfs/weed/filer/filer.go

35 lines
967 B
Go
Raw Normal View History

2014-04-09 16:44:58 +00:00
package filer
2016-09-08 03:35:54 +00:00
import (
"errors"
)
type FileId string //file id in SeaweedFS
2014-04-09 16:44:58 +00:00
type FileEntry struct {
2014-05-13 05:57:23 +00:00
Name string `json:"name,omitempty"` //file name without path
Id FileId `json:"fid,omitempty"`
2014-04-09 16:44:58 +00:00
}
type DirectoryId int32
type DirectoryEntry struct {
Name string //dir name without path
Id DirectoryId
}
2014-04-09 16:44:58 +00:00
type Filer interface {
CreateFile(fullFileName string, fid string) (err error)
FindFile(fullFileName string) (fid string, err error)
DeleteFile(fullFileName string) (fid string, err error)
//Optional functions. embedded filer support these
FindDirectory(dirPath string) (dirId DirectoryId, err error)
2014-04-09 16:44:58 +00:00
ListDirectories(dirPath string) (dirs []DirectoryEntry, err error)
ListFiles(dirPath string, lastFileName string, limit int) (files []FileEntry, err error)
DeleteDirectory(dirPath string, recursive bool) (err error)
Move(fromPath string, toPath string) (err error)
2014-04-09 16:44:58 +00:00
}
2016-09-08 03:35:54 +00:00
var ErrNotFound = errors.New("filer: no entry is found in filer store")