2014-04-09 16:44:58 +00:00
|
|
|
package filer
|
|
|
|
|
2016-09-08 03:35:54 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2015-04-16 21:11:25 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-01-05 22:58:30 +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 {
|
2015-01-05 22:58:30 +00:00
|
|
|
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
|
2014-07-21 06:12:49 +00:00
|
|
|
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)
|
2014-04-18 05:33:21 +00:00
|
|
|
DeleteDirectory(dirPath string, recursive bool) (err error)
|
2014-07-21 06:12:49 +00:00
|
|
|
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")
|