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
Kirill Smelkov
go-fuse
Commits
f0c88414
Commit
f0c88414
authored
May 16, 2012
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use preallocated buffer for ReadDir.
parent
7ea8b832
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
19 deletions
+27
-19
fuse/direntry.go
fuse/direntry.go
+24
-15
fuse/opcode.go
fuse/opcode.go
+3
-4
No files found.
fuse/direntry.go
View file @
f0c88414
...
...
@@ -11,6 +11,7 @@ import (
)
var
_
=
log
.
Print
var
eightPadding
[
8
]
byte
// DirEntry is a type for PathFileSystem and NodeFileSystem to return
// directory contents in.
...
...
@@ -20,13 +21,17 @@ type DirEntry struct {
}
type
DirEntryList
struct
{
buf
bytes
.
Buffer
buf
*
bytes
.
Buffer
offset
uint64
maxSize
int
}
func
NewDirEntryList
(
max
int
,
off
uint64
)
*
DirEntryList
{
return
&
DirEntryList
{
maxSize
:
max
,
offset
:
off
}
func
NewDirEntryList
(
data
[]
byte
,
off
uint64
)
*
DirEntryList
{
return
&
DirEntryList
{
buf
:
bytes
.
NewBuffer
(
data
[
:
0
]),
maxSize
:
len
(
data
),
offset
:
off
,
}
}
func
(
l
*
DirEntryList
)
AddString
(
name
string
,
inode
uint64
,
mode
uint32
)
bool
{
...
...
@@ -38,31 +43,35 @@ func (l *DirEntryList) AddDirEntry(e DirEntry) bool {
}
func
(
l
*
DirEntryList
)
Add
(
name
[]
byte
,
inode
uint64
,
mode
uint32
)
bool
{
lastLen
:=
l
.
buf
.
Len
()
l
.
offset
++
dirent
:=
raw
.
Dirent
{
Off
:
l
.
offset
,
Off
:
l
.
offset
+
1
,
Ino
:
inode
,
NameLen
:
uint32
(
len
(
name
)),
Typ
:
ModeToType
(
mode
),
}
padding
:=
8
-
len
(
name
)
&
7
if
padding
==
8
{
padding
=
0
}
delta
:=
padding
+
int
(
unsafe
.
Sizeof
(
raw
.
Dirent
{}))
+
len
(
name
)
newLen
:=
delta
+
l
.
buf
.
Len
()
if
newLen
>
l
.
maxSize
{
return
false
}
_
,
err
:=
l
.
buf
.
Write
(
asSlice
(
unsafe
.
Pointer
(
&
dirent
),
unsafe
.
Sizeof
(
raw
.
Dirent
{})))
if
err
!=
nil
{
panic
(
"Serialization of Dirent failed"
)
}
l
.
buf
.
Write
(
name
)
padding
:=
8
-
len
(
name
)
&
7
if
padding
<
8
{
l
.
buf
.
Write
(
make
([]
byte
,
padding
))
if
padding
>
0
{
l
.
buf
.
Write
(
eightPadding
[
:
padding
])
}
l
.
offset
=
dirent
.
Off
if
l
.
buf
.
Len
()
>
l
.
maxSize
{
l
.
buf
.
Truncate
(
lastLen
)
l
.
offset
--
return
false
if
l
.
buf
.
Len
()
!=
newLen
{
log
.
Panicf
(
"newLen mismatch %d %d"
,
l
.
buf
.
Len
(),
newLen
)
}
return
true
}
...
...
fuse/opcode.go
View file @
f0c88414
...
...
@@ -119,12 +119,11 @@ func doCreate(state *MountState, req *request) {
func
doReadDir
(
state
*
MountState
,
req
*
request
)
{
in
:=
(
*
ReadIn
)(
req
.
inData
)
entries
:=
NewDirEntryList
(
int
(
in
.
Size
),
uint64
(
in
.
Offset
))
buf
:=
state
.
buffers
.
AllocBuffer
(
in
.
Size
)
entries
:=
NewDirEntryList
(
buf
,
uint64
(
in
.
Offset
))
code
:=
state
.
fileSystem
.
ReadDir
(
entries
,
req
.
inHeader
,
in
)
if
entries
!=
nil
{
req
.
flatData
=
entries
.
Bytes
()
}
req
.
flatData
=
entries
.
Bytes
()
req
.
status
=
code
}
...
...
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