Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Levin Zimmermann
go-fuse
Commits
488fec85
Commit
488fec85
authored
Jan 07, 2014
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nodefs/pathfs: document public methods.
parent
ae5bbbe4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
2 deletions
+34
-2
fuse/nodefs/fsconnector.go
fuse/nodefs/fsconnector.go
+2
-0
fuse/pathfs/pathfs.go
fuse/pathfs/pathfs.go
+32
-2
No files found.
fuse/nodefs/fsconnector.go
View file @
488fec85
...
...
@@ -373,6 +373,8 @@ func (c *FileSystemConnector) Unmount(node *Inode) fuse.Status {
// FileNotify notifies the kernel that data and metadata of this inode
// has changed. After this call completes, the kernel will issue a
// new GetAttr requests for metadata and new Read calls for content.
// Use negative offset for metadata-only invalidation, and zero-length
// for invalidating all content.
func
(
c
*
FileSystemConnector
)
FileNotify
(
node
*
Inode
,
off
int64
,
length
int64
)
fuse
.
Status
{
var
nId
uint64
if
node
==
c
.
rootNode
{
...
...
fuse/pathfs/pathfs.go
View file @
488fec85
...
...
@@ -43,10 +43,14 @@ type PathNodeFs struct {
options
*
PathNodeFsOptions
}
// SetDebug toggles debug information: it will log path names for
// each operation processed.
func
(
fs
*
PathNodeFs
)
SetDebug
(
dbg
bool
)
{
fs
.
debug
=
dbg
}
// Mount mounts a another node filesystem with the given root on the
// path. The last component of the path should not exist yet.
func
(
fs
*
PathNodeFs
)
Mount
(
path
string
,
root
nodefs
.
Node
,
opts
*
nodefs
.
Options
)
fuse
.
Status
{
dir
,
name
:=
filepath
.
Split
(
path
)
if
dir
!=
""
{
...
...
@@ -59,7 +63,7 @@ func (fs *PathNodeFs) Mount(path string, root nodefs.Node, opts *nodefs.Options)
return
fs
.
connector
.
Mount
(
parent
,
name
,
root
,
opts
)
}
// Forgets all known information on client inodes.
// Forget
ClientInodes forget
s all known information on client inodes.
func
(
fs
*
PathNodeFs
)
ForgetClientInodes
()
{
if
!
fs
.
options
.
ClientInodes
{
return
...
...
@@ -79,10 +83,12 @@ func (fs *PathNodeFs) RereadClientInodes() {
fs
.
root
.
updateClientInodes
()
}
// UnmountNode unmounts the node filesystem with the given root.
func
(
fs
*
PathNodeFs
)
UnmountNode
(
node
*
nodefs
.
Inode
)
fuse
.
Status
{
return
fs
.
connector
.
Unmount
(
node
)
}
// UnmountNode unmounts the node filesystem with the given root.
func
(
fs
*
PathNodeFs
)
Unmount
(
path
string
)
fuse
.
Status
{
node
:=
fs
.
Node
(
path
)
if
node
==
nil
{
...
...
@@ -91,6 +97,7 @@ func (fs *PathNodeFs) Unmount(path string) fuse.Status {
return
fs
.
connector
.
Unmount
(
node
)
}
// String returns a name for this file system
func
(
fs
*
PathNodeFs
)
String
()
string
{
name
:=
fs
.
fs
.
String
()
if
name
==
"defaultFileSystem"
{
...
...
@@ -100,10 +107,14 @@ func (fs *PathNodeFs) String() string {
return
name
}
// Connector returns the FileSystemConnector (the bridge to the raw
// protocol) for this PathNodeFs.
func
(
fs
*
PathNodeFs
)
Connector
()
*
nodefs
.
FileSystemConnector
{
return
fs
.
connector
}
// Node looks up the Inode that corresponds to the given path name, or
// returns nil if not found.
func
(
fs
*
PathNodeFs
)
Node
(
name
string
)
*
nodefs
.
Inode
{
n
,
rest
:=
fs
.
LastNode
(
name
)
if
len
(
rest
)
>
0
{
...
...
@@ -117,15 +128,23 @@ func (fs *PathNodeFs) LookupNode(name string) *nodefs.Inode {
return
fs
.
connector
.
LookupNode
(
fs
.
Root
()
.
Inode
(),
name
)
}
// Path constructs a path for the given Inode. If the file system
// implements hard links through client-inode numbers, the path may
// not be unique.
func
(
fs
*
PathNodeFs
)
Path
(
node
*
nodefs
.
Inode
)
string
{
pNode
:=
node
.
Node
()
.
(
*
pathInode
)
return
pNode
.
GetPath
()
}
// LastNode finds the deepest inode known corresponding to a path. The
// unknown part of the filename is also returned.
func
(
fs
*
PathNodeFs
)
LastNode
(
name
string
)
(
*
nodefs
.
Inode
,
[]
string
)
{
return
fs
.
connector
.
Node
(
fs
.
Root
()
.
Inode
(),
name
)
}
// FileNotify notifies that file contents were changed within the
// given range. Use negative offset for metadata-only invalidation,
// and zero-length for invalidating all content.
func
(
fs
*
PathNodeFs
)
FileNotify
(
path
string
,
off
int64
,
length
int64
)
fuse
.
Status
{
node
,
r
:=
fs
.
connector
.
Node
(
fs
.
root
.
Inode
(),
path
)
if
len
(
r
)
>
0
{
...
...
@@ -134,6 +153,9 @@ func (fs *PathNodeFs) FileNotify(path string, off int64, length int64) fuse.Stat
return
fs
.
connector
.
FileNotify
(
node
,
off
,
length
)
}
// EntryNotify makes the kernel forget the entry data from the given
// name from a directory. After this call, the kernel will issue a
// new lookup request for the given name when necessary.
func
(
fs
*
PathNodeFs
)
EntryNotify
(
dir
string
,
name
string
)
fuse
.
Status
{
node
,
rest
:=
fs
.
connector
.
Node
(
fs
.
root
.
Inode
(),
dir
)
if
len
(
rest
)
>
0
{
...
...
@@ -142,6 +164,10 @@ func (fs *PathNodeFs) EntryNotify(dir string, name string) fuse.Status {
return
fs
.
connector
.
EntryNotify
(
node
,
name
)
}
// Notify ensures that the path name is invalidates: if the inode is
// known, it issues an file content Notify, if not, an entry notify
// for the path is issued. The latter will clear out non-existence
// cache entries.
func
(
fs
*
PathNodeFs
)
Notify
(
path
string
)
fuse
.
Status
{
node
,
rest
:=
fs
.
connector
.
Node
(
fs
.
root
.
Inode
(),
path
)
if
len
(
rest
)
>
0
{
...
...
@@ -150,8 +176,9 @@ func (fs *PathNodeFs) Notify(path string) fuse.Status {
return
fs
.
connector
.
FileNotify
(
node
,
0
,
0
)
}
// AllFiles returns all open files for the inode corresponding with
// the given mask.
func
(
fs
*
PathNodeFs
)
AllFiles
(
name
string
,
mask
uint32
)
[]
nodefs
.
WithFlags
{
n
:=
fs
.
Node
(
name
)
if
n
==
nil
{
return
nil
...
...
@@ -159,6 +186,8 @@ func (fs *PathNodeFs) AllFiles(name string, mask uint32) []nodefs.WithFlags {
return
n
.
Files
(
mask
)
}
// NewPathNodeFs returns a file system that translates from inodes to
// path names.
func
NewPathNodeFs
(
fs
FileSystem
,
opts
*
PathNodeFsOptions
)
*
PathNodeFs
{
root
:=
new
(
pathInode
)
root
.
fs
=
fs
...
...
@@ -177,6 +206,7 @@ func NewPathNodeFs(fs FileSystem, opts *PathNodeFsOptions) *PathNodeFs {
return
pfs
}
// Root returns the root node for the path filesystem.
func
(
fs
*
PathNodeFs
)
Root
()
nodefs
.
Node
{
return
fs
.
root
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment