dep ensure
This commit is contained in:
parent
1158ac4760
commit
c8c18403e4
371 changed files with 168673 additions and 1 deletions
62
vendor/github.com/hanwen/go-fuse/fuse/print_linux.go
generated
vendored
Normal file
62
vendor/github.com/hanwen/go-fuse/fuse/print_linux.go
generated
vendored
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package fuse
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
func init() {
|
||||
OpenFlagNames[syscall.O_DIRECT] = "DIRECT"
|
||||
OpenFlagNames[syscall.O_LARGEFILE] = "LARGEFILE"
|
||||
OpenFlagNames[syscall_O_NOATIME] = "NOATIME"
|
||||
|
||||
}
|
||||
|
||||
func (a *Attr) string() string {
|
||||
return fmt.Sprintf(
|
||||
"{M0%o SZ=%d L=%d "+
|
||||
"%d:%d "+
|
||||
"B%d*%d i%d:%d "+
|
||||
"A %d.%09d "+
|
||||
"M %d.%09d "+
|
||||
"C %d.%09d}",
|
||||
a.Mode, a.Size, a.Nlink,
|
||||
a.Uid, a.Gid,
|
||||
a.Blocks, a.Blksize,
|
||||
a.Rdev, a.Ino, a.Atime, a.Atimensec, a.Mtime, a.Mtimensec,
|
||||
a.Ctime, a.Ctimensec)
|
||||
}
|
||||
|
||||
func (me *CreateIn) string() string {
|
||||
return fmt.Sprintf(
|
||||
"{0%o [%s] (0%o)}", me.Mode,
|
||||
FlagString(OpenFlagNames, int64(me.Flags), "O_RDONLY"), me.Umask)
|
||||
}
|
||||
|
||||
func (me *GetAttrIn) string() string {
|
||||
return fmt.Sprintf("{Fh %d}", me.Fh_)
|
||||
}
|
||||
|
||||
func (me *MknodIn) string() string {
|
||||
return fmt.Sprintf("{0%o (0%o), %d}", me.Mode, me.Umask, me.Rdev)
|
||||
}
|
||||
|
||||
func (me *ReadIn) string() string {
|
||||
return fmt.Sprintf("{Fh %d off %d sz %d %s L %d %s}",
|
||||
me.Fh, me.Offset, me.Size,
|
||||
FlagString(readFlagNames, int64(me.ReadFlags), ""),
|
||||
me.LockOwner,
|
||||
FlagString(OpenFlagNames, int64(me.Flags), "RDONLY"))
|
||||
}
|
||||
|
||||
func (me *WriteIn) string() string {
|
||||
return fmt.Sprintf("{Fh %d off %d sz %d %s L %d %s}",
|
||||
me.Fh, me.Offset, me.Size,
|
||||
FlagString(writeFlagNames, int64(me.WriteFlags), ""),
|
||||
me.LockOwner,
|
||||
FlagString(OpenFlagNames, int64(me.Flags), "RDONLY"))
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue