2018-05-26 20:32:15 +08:00
|
|
|
package abstract_sql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"database/sql"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AbstractSqlStore struct {
|
|
|
|
DB *sql.DB
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *AbstractSqlStore) InsertEntry(entry *filer2.Entry) (err error) {
|
|
|
|
|
|
|
|
dir, name := entry.FullPath.DirAndName()
|
|
|
|
meta, err := entry.EncodeAttributesAndChunks()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("mysql encode %s: %s", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
2018-05-27 05:08:55 +08:00
|
|
|
res, err := store.DB.Exec("INSERT INTO filemeta (dirhash,name,directory,meta) VALUES(?,?,?,?)",
|
2018-05-27 12:24:03 +08:00
|
|
|
hashToLong(dir), name, dir, meta)
|
2018-05-26 20:32:15 +08:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("mysql insert %s: %s", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = res.RowsAffected()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("mysql insert %s but no rows affected: %s", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *AbstractSqlStore) UpdateEntry(entry *filer2.Entry) (err error) {
|
|
|
|
|
|
|
|
dir, name := entry.FullPath.DirAndName()
|
|
|
|
meta, err := entry.EncodeAttributesAndChunks()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("mysql encode %s: %s", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
2018-05-27 05:08:55 +08:00
|
|
|
res, err := store.DB.Exec("UPDATE filemeta SET meta=? WHERE dirhash=? AND name=? AND directory=?",
|
2018-05-27 12:24:03 +08:00
|
|
|
meta, hashToLong(dir), name, dir)
|
2018-05-26 20:32:15 +08:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("mysql update %s: %s", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = res.RowsAffected()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("mysql update %s but no rows affected: %s", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *AbstractSqlStore) FindEntry(fullpath filer2.FullPath) (*filer2.Entry, error) {
|
|
|
|
|
|
|
|
dir, name := fullpath.DirAndName()
|
2018-05-27 05:08:55 +08:00
|
|
|
row := store.DB.QueryRow("SELECT meta FROM filemeta WHERE dirhash=? AND name=? AND directory=?",
|
2018-05-27 12:24:03 +08:00
|
|
|
hashToLong(dir), name, dir)
|
2018-05-26 20:32:15 +08:00
|
|
|
var data []byte
|
|
|
|
if err := row.Scan(&data); err != nil {
|
|
|
|
return nil, fmt.Errorf("mysql read entry %s: %v", fullpath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
entry := &filer2.Entry{
|
|
|
|
FullPath: fullpath,
|
|
|
|
}
|
|
|
|
if err := entry.DecodeAttributesAndChunks(data); err != nil {
|
|
|
|
return entry, fmt.Errorf("mysql decode %s : %v", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return entry, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *AbstractSqlStore) DeleteEntry(fullpath filer2.FullPath) (*filer2.Entry, error) {
|
|
|
|
|
|
|
|
entry, _ := store.FindEntry(fullpath)
|
|
|
|
|
|
|
|
dir, name := fullpath.DirAndName()
|
|
|
|
|
2018-05-27 05:08:55 +08:00
|
|
|
res, err := store.DB.Exec("DELETE FROM filemeta WHERE dirhash=? AND name=? AND directory=?",
|
2018-05-27 12:24:03 +08:00
|
|
|
hashToLong(dir), name, dir)
|
2018-05-26 20:32:15 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("mysql delete %s: %s", fullpath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = res.RowsAffected()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("mysql delete %s but no rows affected: %s", fullpath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return entry, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *AbstractSqlStore) ListDirectoryEntries(fullpath filer2.FullPath, startFileName string, inclusive bool, limit int) (entries []*filer2.Entry, err error) {
|
|
|
|
|
2018-05-27 05:08:55 +08:00
|
|
|
sqlText := "SELECT NAME, meta FROM filemeta WHERE dirhash=? AND name>? AND directory=? LIMIT ?"
|
2018-05-27 04:35:56 +08:00
|
|
|
if inclusive {
|
2018-05-27 05:08:55 +08:00
|
|
|
sqlText = "SELECT NAME, meta FROM filemeta WHERE dirhash=? AND name>=? AND directory=? LIMIT ?"
|
2018-05-27 04:35:56 +08:00
|
|
|
}
|
|
|
|
|
2018-05-27 12:24:03 +08:00
|
|
|
rows, err := store.DB.Query(sqlText, hashToLong(string(fullpath)), startFileName, string(fullpath), limit)
|
2018-05-26 20:32:15 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("mysql list %s : %v", fullpath, err)
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
|
|
|
for rows.Next() {
|
|
|
|
var name string
|
|
|
|
var data []byte
|
|
|
|
if err = rows.Scan(&name, &data); err != nil {
|
|
|
|
glog.V(0).Infof("mysql scan %s : %v", fullpath, err)
|
|
|
|
return nil, fmt.Errorf("mysql scan %s: %v", fullpath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
entry := &filer2.Entry{
|
2018-05-27 04:35:56 +08:00
|
|
|
FullPath: filer2.NewFullPath(string(fullpath), name),
|
2018-05-26 20:32:15 +08:00
|
|
|
}
|
|
|
|
if err = entry.DecodeAttributesAndChunks(data); err != nil {
|
|
|
|
glog.V(0).Infof("mysql scan decode %s : %v", entry.FullPath, err)
|
|
|
|
return nil, fmt.Errorf("mysql scan decode %s : %v", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
entries = append(entries, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
return entries, nil
|
|
|
|
}
|