vfs/database.go

177 lines
3.9 KiB
Go
Raw Normal View History

2015-05-08 09:28:53 +00:00
/*
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package main
2015-05-09 04:59:38 +00:00
import (
"bazil.org/fuse/fs"
2015-05-26 10:15:49 +00:00
"errors"
"fmt"
2015-05-09 04:59:38 +00:00
"io/ioutil"
2015-05-27 08:23:39 +00:00
"os"
2015-05-26 10:15:49 +00:00
"path"
2015-05-09 13:48:08 +00:00
"path/filepath"
2015-05-26 10:15:49 +00:00
"regexp"
"strconv"
2015-05-18 02:58:49 +00:00
"sync/atomic"
2015-05-26 10:15:49 +00:00
"time"
2015-05-09 04:59:38 +00:00
)
2015-05-10 07:15:17 +00:00
type database struct {
2015-05-16 07:50:15 +00:00
base string
vers []*version
inodeCnt uint64
2015-05-09 13:48:08 +00:00
}
2015-05-10 07:15:17 +00:00
func newDatabase(dir string) (*database, error) {
db := &database{base: dir}
2015-05-09 13:48:08 +00:00
if err := db.load(dir); err != nil {
return nil, err
}
return db, nil
2015-05-08 09:28:53 +00:00
}
2015-05-10 07:15:17 +00:00
func (this *database) load(dir string) error {
2015-05-14 12:00:14 +00:00
var err error
this.base, err = filepath.Abs(dir)
2015-05-09 13:48:08 +00:00
if err != nil {
return err
}
2015-05-27 08:23:39 +00:00
if err := this.buildNewVersion(this.base); err != nil {
return nil
}
names, err := this.scanVersions(this.base)
2015-05-10 05:14:15 +00:00
if err != nil {
return err
}
2015-05-09 13:48:08 +00:00
2015-05-27 08:23:39 +00:00
this.vers, err = this.buildVersions(this.base, names)
2015-05-09 04:59:38 +00:00
if err != nil {
return err
}
2015-05-14 12:00:14 +00:00
if lastVer := this.lastVersion(); lastVer != nil {
return lastVer.resolve()
}
2015-05-10 05:14:15 +00:00
2015-05-09 13:48:08 +00:00
return nil
2015-05-09 04:59:38 +00:00
}
2015-05-10 07:15:17 +00:00
func (this *database) save() error {
return nil
}
2015-05-27 08:23:39 +00:00
func (this *database) buildVersions(base string, names []string) ([]*version, error) {
2015-05-10 07:15:17 +00:00
var vers []*version
2015-05-09 13:48:08 +00:00
2015-05-10 07:15:17 +00:00
var parent *version
2015-05-26 10:27:11 +00:00
for _, name := range names {
timestamp, err := this.parseVerName(name)
2015-05-26 10:15:49 +00:00
if err != nil {
return nil, err
}
2015-05-26 10:27:11 +00:00
ver, err := newVersion(path.Join(base, name), timestamp, this, parent)
2015-05-10 05:14:15 +00:00
if err != nil {
return nil, err
}
2015-05-09 13:48:08 +00:00
2015-05-10 07:15:17 +00:00
vers = append(vers, ver)
parent = ver
2015-05-10 05:14:15 +00:00
}
2015-05-10 07:15:17 +00:00
return vers, nil
2015-05-09 13:48:08 +00:00
}
2015-05-27 08:23:39 +00:00
func (this *database) buildNewVersion(base string) error {
name := this.buildVerName(time.Now())
2015-05-27 08:29:24 +00:00
if err := os.Mkdir(path.Join(base, name), 0755); err != nil {
return err
}
if err := os.Mkdir(path.Join(base, name, "root"), 0755); err != nil {
return err
}
return nil
2015-05-27 08:23:39 +00:00
}
2015-05-10 10:41:15 +00:00
func (this *database) lastVersion() *version {
count := len(this.vers)
if count == 0 {
return nil
}
return this.vers[count-1]
}
2015-05-27 08:23:39 +00:00
func (this *database) scanVersions(dir string) ([]string, error) {
2015-05-09 04:59:38 +00:00
nodes, err := ioutil.ReadDir(dir)
if err != nil {
return nil, err
}
2015-05-26 10:27:11 +00:00
var names []string
2015-05-09 04:59:38 +00:00
for _, node := range nodes {
2015-05-10 05:14:15 +00:00
if node.IsDir() {
2015-05-26 10:27:11 +00:00
names = append(names, node.Name())
2015-05-09 13:48:08 +00:00
}
2015-05-09 04:59:38 +00:00
}
2015-05-08 09:28:53 +00:00
2015-05-26 10:27:11 +00:00
return names, nil
2015-05-08 09:28:53 +00:00
}
2015-05-16 07:50:15 +00:00
func (this *database) Root() (fs.Node, error) {
return this.lastVersion().root, nil
}
2015-05-16 07:50:15 +00:00
func (this *database) AllocInode() uint64 {
2015-05-18 02:58:49 +00:00
return atomic.AddUint64(&this.inodeCnt, 1)
2015-05-16 07:50:15 +00:00
}
2015-05-26 10:15:49 +00:00
func (this *database) buildVerName(timestamp time.Time) string {
2015-05-27 08:29:24 +00:00
return fmt.Sprintf("ver_%.16x", timestamp.Unix())
2015-05-26 10:15:49 +00:00
}
func (this *database) parseVerName(name string) (time.Time, error) {
2015-05-27 08:29:24 +00:00
re, err := regexp.Compile(`ver_([0-9a-f]+)$`)
2015-05-26 10:15:49 +00:00
if err != nil {
return time.Unix(0, 0), err
}
matches := re.FindStringSubmatch(name)
if len(matches) < 2 {
return time.Unix(0, 0), errors.New("invalid version identifier")
}
timestamp, err := strconv.ParseInt(matches[1], 16, 64)
if err != nil {
return time.Unix(0, 0), err
}
return time.Unix(timestamp, 0), nil
}