fusego/samples/forgetfs/forget_fs.go

81 lines
2.3 KiB
Go
Raw Normal View History

2015-03-30 08:09:25 +03:00
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package forgetfs
2015-03-30 08:20:02 +03:00
import (
"github.com/jacobsa/fuse"
2015-03-30 08:20:42 +03:00
"github.com/jacobsa/fuse/fuseops"
2015-03-30 08:20:02 +03:00
"github.com/jacobsa/fuse/fuseutil"
)
2015-03-30 08:09:25 +03:00
// Create a file system whose sole contents are a file named "foo" and a
// directory named "bar".
//
// The file "foo" may be opened for reading and/or writing, but reads and
2015-03-30 08:15:13 +03:00
// writes aren't supported. Additionally, any non-existent file or directory
// name may be created within any directory, but the resulting inode will
// appear to have been unlinked immediately.
2015-03-30 08:09:25 +03:00
//
// The file system maintains reference counts for the inodes involved. It will
// panic if a reference count becomes negative or if an inode ID is re-used
// after we expect it to be dead. Its Check method may be used to check that
// there are no inodes with non-zero reference counts remaining, after
// unmounting.
2015-03-30 08:16:25 +03:00
func NewFileSystem() (fs *ForgetFS) {
2015-03-30 08:20:02 +03:00
impl := &fsImpl{}
fs = &ForgetFS{
impl: impl,
server: fuseutil.NewFileSystemServer(impl),
}
2015-03-30 08:09:25 +03:00
return
}
2015-03-30 08:20:02 +03:00
////////////////////////////////////////////////////////////////////////
// ForgetFS
////////////////////////////////////////////////////////////////////////
2015-03-30 08:09:25 +03:00
type ForgetFS struct {
2015-03-30 08:20:02 +03:00
impl *fsImpl
server fuse.Server
2015-03-30 08:17:53 +03:00
}
func (fs *ForgetFS) ServeOps(c *fuse.Connection) {
2015-03-30 08:20:02 +03:00
fs.server.ServeOps(c)
2015-03-30 08:09:25 +03:00
}
// Panic if there are any inodes that have a non-zero reference count. For use
// after unmounting.
func (fs *ForgetFS) Check() {
panic("TODO")
}
2015-03-30 08:20:02 +03:00
////////////////////////////////////////////////////////////////////////
// Actual implementation
////////////////////////////////////////////////////////////////////////
type fsImpl struct {
fuseutil.NotImplementedFileSystem
}
2015-03-30 08:20:42 +03:00
func (fs *fsImpl) Init(
op *fuseops.InitOp) {
var err error
defer fuseutil.RespondToOp(op, &err)
return
}