vfs/node.go

163 lines
4.0 KiB
Go
Raw Normal View History

2015-05-16 07:43:46 +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-16 11:33:35 +00:00
import (
2015-05-16 14:04:34 +00:00
"bazil.org/fuse"
2015-05-16 11:33:35 +00:00
"os"
2015-05-16 14:04:34 +00:00
"syscall"
"time"
2015-05-16 11:33:35 +00:00
)
2015-05-16 07:43:46 +00:00
2015-05-28 09:20:38 +00:00
//
// versionedNode
//
2015-05-16 07:43:46 +00:00
type versionedNode struct {
2015-06-16 09:08:30 +00:00
path string
info os.FileInfo
ver *version
parent *versionedNode
versioned bool
2015-05-16 07:43:46 +00:00
}
2015-06-16 05:32:03 +00:00
func newVersionedNode(path string, ver *version, parent *versionedNode) (*versionedNode, error) {
2015-05-24 11:56:29 +00:00
info, err := os.Stat(ver.rebasePath(path))
if err != nil {
return nil, err
}
2015-06-16 05:32:03 +00:00
return newVersionedNodeStat(path, ver, parent, info), nil
2015-05-24 11:56:29 +00:00
}
2015-06-16 05:32:03 +00:00
func newVersionedNodeStat(path string, ver *version, parent *versionedNode, info os.FileInfo) *versionedNode {
2015-06-16 09:08:30 +00:00
return &versionedNode{path, info, ver, parent, false}
}
2015-05-26 07:28:12 +00:00
func (this *versionedNode) setAttr(req *fuse.SetattrRequest, resp *fuse.SetattrResponse) error {
if req.Valid&fuse.SetattrMode != 0 {
if err := os.Chmod(this.rebasedPath(), req.Mode); err != nil {
return err
}
}
if setGid, setUid := req.Valid&fuse.SetattrGid != 0, req.Valid&fuse.SetattrUid != 0; setGid || setUid {
gid, uid := this.owner()
if setGid {
gid = req.Gid
}
if setUid {
uid = req.Uid
}
if err := os.Chown(this.rebasedPath(), int(uid), int(gid)); err != nil {
return err
}
}
if setAtime, setMtime := req.Valid&fuse.SetattrAtime != 0, req.Valid&fuse.SetattrMtime != 0; setAtime || setMtime {
atime, mtime, _ := this.times()
if setAtime {
atime = req.Atime
}
if setMtime {
mtime = req.Mtime
}
if err := os.Chtimes(this.rebasedPath(), atime, mtime); err != nil {
return err
}
}
2015-06-16 08:05:29 +00:00
if err := this.sync(); err != nil {
2015-05-26 07:28:12 +00:00
return err
}
this.attr(&resp.Attr)
return nil
}
2015-06-16 08:05:29 +00:00
func (this *versionedNode) sync() error {
2015-05-26 07:28:12 +00:00
info, err := os.Stat(this.rebasedPath())
if err != nil {
return err
}
this.info = info
return nil
}
2015-06-16 09:22:29 +00:00
func (this *versionedNode) remove() error {
ver := this.ver
if this.versioned {
if err := os.Remove(this.rebasedPath()); err != nil {
return err
}
ver = ver.parent
}
ver.removePath(this.path)
return nil
}
2015-05-16 07:43:46 +00:00
func (this *versionedNode) rebasedPath() string {
return this.ver.rebasePath(this.path)
}
2015-05-16 11:33:35 +00:00
2015-05-26 07:28:12 +00:00
func (this *versionedNode) owner() (gid, uid uint32) {
stat := this.info.Sys().(*syscall.Stat_t)
gid = stat.Gid
uid = stat.Uid
return
}
func (this *versionedNode) times() (atime, mtime, ctime time.Time) {
stat := this.info.Sys().(*syscall.Stat_t)
atime = time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
mtime = this.info.ModTime()
ctime = time.Unix(int64(stat.Ctim.Sec), int64(stat.Ctim.Nsec))
return
}
2015-05-16 14:04:34 +00:00
func (this *versionedNode) attr(attr *fuse.Attr) {
stat := this.info.Sys().(*syscall.Stat_t)
attr.Size = uint64(this.info.Size())
attr.Blocks = uint64(stat.Blocks)
2015-05-26 07:28:12 +00:00
attr.Atime, attr.Mtime, attr.Ctime = this.times()
2015-05-16 14:04:34 +00:00
attr.Mode = this.info.Mode()
attr.Nlink = uint32(stat.Nlink)
2015-05-26 07:38:17 +00:00
attr.Gid, attr.Uid = this.owner()
2015-05-16 14:04:34 +00:00
attr.Rdev = uint32(stat.Rdev)
}
2015-06-16 09:22:29 +00:00
//
// versionedNodeMap
//
type versionedNodeMap map[string]*versionedNode